1 // RUN: %clang_cc1 -triple i386-pc-win32 %s -emit-llvm -fms-compatibility -O2 -disable-llvm-passes -o - | FileCheck %s
3 __declspec(selectany
) int x1
= 1;
4 const __declspec(selectany
) int x2
= 2;
5 // CHECK: @x1 = weak_odr dso_local global i32 1, comdat, align 4
6 // CHECK: @x2 = weak_odr dso_local constant i32 2, comdat, align 4
8 // selectany turns extern variable declarations into definitions.
9 __declspec(selectany
) int x3
;
10 extern __declspec(selectany
) int x4
;
11 // CHECK: @x3 = weak_odr dso_local global i32 0, comdat, align 4
12 // CHECK: @x4 = weak_odr dso_local global i32 0, comdat, align 4
14 struct __declspec(align(16)) S
{
17 union { struct S s
; } u
;
19 // CHECK: @u = {{.*}}zeroinitializer, align 16
22 // CHECK: define dso_local void @t3() [[NAKED:#[0-9]+]] {
23 __declspec(naked
) void t3(void) {}
25 // CHECK: define dso_local void @t22() [[NUW:#[0-9]+]]
26 void __declspec(nothrow
) t22(void);
29 // CHECK: define dso_local void @t2() [[NI:#[0-9]+]] {
30 __declspec(noinline
) void t2(void) {}
32 // CHECK: call void @f20_t() [[NR:#[0-9]+]]
33 __declspec(noreturn
) void f20_t(void);
34 void f20(void) { f20_t(); }
36 __declspec(noalias
) void noalias_callee(int *x
);
37 // CHECK: call void @noalias_callee({{.*}}) [[NA:#[0-9]+]]
38 void noalias_caller(int *x
) { noalias_callee(x
); }
40 // CHECK: attributes [[NAKED]] = { naked noinline nounwind{{.*}} }
41 // CHECK: attributes [[NUW]] = { nounwind{{.*}} }
42 // CHECK: attributes [[NI]] = { noinline nounwind{{.*}} }
43 // CHECK: attributes [[NR]] = { noreturn }
44 // CHECK: attributes [[NA]] = { nounwind memory(argmem: readwrite, inaccessiblemem: readwrite){{.*}} }