2015-10-08 14:31:22 +08:00
|
|
|
// RUN: %clang_cc1 -triple i686-windows-win32 -fms-extensions -debug-info-kind=limited -emit-llvm %s -o - \
|
2015-02-28 08:13:13 +08:00
|
|
|
// RUN: | FileCheck %s
|
|
|
|
|
2016-09-13 09:13:19 +08:00
|
|
|
// CHECK: @"\01?ui@s@@2IB" = weak_odr dllexport constant i32 0, comdat, align 4, !dbg [[UI:![0-9]+]]
|
|
|
|
|
2015-02-28 08:13:13 +08:00
|
|
|
struct __declspec(dllexport) s {
|
|
|
|
static const unsigned int ui = 0;
|
|
|
|
};
|
|
|
|
|
2016-12-17 03:39:18 +08:00
|
|
|
// CHECK: [[UI]] = distinct !DIGlobalVariable(name: "ui", linkageName: "\01?ui@s@@2IB", scope: ![[SCOPE:[0-9]+]],
|
2016-09-13 09:13:19 +08:00
|
|
|
// CHECK: ![[SCOPE]] = distinct !DICompileUnit(
|
2015-02-28 08:13:13 +08:00
|
|
|
|