Files
clang-p2996/clang/test/CodeGenCXX/virtual-operator-call.cpp
hyeongyu kim fd9b099906 Revert "[Clang/Test]: Rename enable_noundef_analysis to disable-noundef-analysis and turn it off by default"
This reverts commit aacfbb953e.

Revert "Fix lit test failures in CodeGenCoroutines"

This reverts commit 63fff0f5bf.
2021-11-09 02:15:55 +09:00

14 lines
243 B
C++

// RUN: %clang_cc1 %s -triple i386-unknown-unknown -emit-llvm -o - | FileCheck %s
struct A {
virtual int operator-();
};
void f(A a, A *ap) {
// CHECK: call i32 @_ZN1AngEv(%struct.A* {{[^,]*}} %a)
-a;
// CHECK: call i32 %
-*ap;
}