Saleem Abdulrasool | cd187f0 | 2015-02-28 00:13:13 +0000 | [diff] [blame^] | 1 | // RUN: %clang_cc1 -triple i686-windows-gnu -fms-compatibility -g -emit-llvm %s -o - \ |
2 | // RUN: | FileCheck %s | ||||
3 | |||||
4 | struct __declspec(dllexport) s { | ||||
5 | static const unsigned int ui = 0; | ||||
6 | }; | ||||
7 | |||||
8 | // CHECK: , [[SCOPE:![^,]*]], {{.*}}, i32* @_ZN1s2uiE, {{.*}}} ; [ DW_TAG_variable ] [ui] [line 5] [def] | ||||
9 | // CHECK: [[SCOPE]] = {{.*}} ; [ DW_TAG_file_type ] | ||||
10 |