1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -fms-extensions -triple i686-pc-win32 -emit-llvm %s -o - | FileCheck %s 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuc class A { 4*f4a2713aSLionel Sambuc public: 5*f4a2713aSLionel Sambuc ~A() {} 6*f4a2713aSLionel Sambuc }; 7*f4a2713aSLionel Sambuc 8*f4a2713aSLionel Sambuc void f() { 9*f4a2713aSLionel Sambuc // CHECK: @_Z1fv 10*f4a2713aSLionel Sambuc // CHECK-NOT: call void @_ZN1AD1Ev 11*f4a2713aSLionel Sambuc // CHECK: ret void 12*f4a2713aSLionel Sambuc __noop(A()); 13*f4a2713aSLionel Sambuc }; 14*f4a2713aSLionel Sambuc 15