blob: b0987ccfa96ce6b262c8ce508a51fe1ca40cbe9e [file] [log] [blame]
Hans Wennborg9125b082014-01-13 19:48:13 +00001// RUN: %clang_cc1 -fms-extensions -triple i686-pc-win32 -cxx-abi itanium -emit-llvm %s -o - | FileCheck %s
Nico Weber636fc092012-10-13 22:30:41 +00002
3class A {
4 public:
5 ~A() {}
6};
7
8void f() {
9// CHECK: @_Z1fv
10// CHECK-NOT: call void @_ZN1AD1Ev
11// CHECK: ret void
12 __noop(A());
13};