blob: b579e2d08ce78bc336bd6cb3a30494e446000644 [file] [log] [blame]
// RUN: %clang_cc1 -fms-extensions -triple %itanium_abi_triple -emit-llvm %s -o - | FileCheck %s
class A {
public:
~A() {}
};
void f() {
// CHECK: @_Z1fv
// CHECK-NOT: call void @_ZN1AD1Ev
// CHECK: ret void
__noop(A());
};