blob: cccf8148ac9225e7a825ea8c163a8a9af127f1a7 [file] [log] [blame]
// 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 noundef i32 @_ZN1AngEv(%struct.A* {{[^,]*}} %a)
-a;
// CHECK: call noundef i32 %
-*ap;
}