1 // RUN: %clang_cc1 %s -triple i686-pc-win32 -std=c++11 -fms-compatibility -emit-llvm -o - | FileCheck %s
9 const int S
<char>::x
[] = {1};
11 // CHECK-LABEL: @"?x@?$S@D@@2QBHB" = weak_odr dso_local constant [1 x i32] [i32 1], comdat
23 // CHECK-LABEL: define dso_local void @f()
24 // CHECK: call void @"??$destroy@X@@YAXPAX@Z"
27 // CHECK-LABEL: define linkonce_odr dso_local void @"??$destroy@X@@YAXPAX@Z"(ptr noundef %p)
28 // The pseudo-dtor expr should not generate calls to anything.