blob: f77c7cb89169e0b5ebfafe3a405a555acc5c4f11 [file] [log] [blame]
Nico Weberea7386d2015-04-15 21:50:06 +00001// RUN: %clang_cc1 -triple i386-pc-win32 %s -emit-llvm -fms-compatibility -o - | FileCheck %s
2
3// selectany turns extern "C" variable declarations into definitions.
4extern __declspec(selectany) int x1;
5extern "C" __declspec(selectany) int x2;
6extern "C++" __declspec(selectany) int x3;
7extern "C" {
8__declspec(selectany) int x4;
9}
10// CHECK: @"\01?x1@@3HA" = weak_odr global i32 0, comdat, align 4
11// CHECK: @x2 = weak_odr global i32 0, comdat, align 4
12// CHECK: @"\01?x3@@3HA" = weak_odr global i32 0, comdat, align 4
13// CHECK: @x4 = weak_odr global i32 0, comdat, align 4