blob: 774f7b1727c3fcf9a2cb9501c6c0959208b868aa [file] [log] [blame]
NAKAMURA Takumie095c652013-01-25 05:58:53 +00001// RUN: %clangxx -target x86_64-unknown-unknown -g -O0 %s -emit-llvm -S -o - | FileCheck %s
Eric Christopherc3ad1002013-01-16 19:54:35 +00002// PR14471
3
4
5class C
6{
7 static int a;
David Blaikiea89701b2013-01-20 01:19:17 +00008 const static bool const_a = true;
Eric Christopherc3ad1002013-01-16 19:54:35 +00009protected:
10 static int b;
David Blaikiea89701b2013-01-20 01:19:17 +000011 const static float const_b = 3.14;
Eric Christopherc3ad1002013-01-16 19:54:35 +000012public:
13 static int c;
14 const static int const_c = 18;
15 int d;
16};
17
18int C::a = 4;
19int C::b = 2;
20int C::c = 1;
21
22int main()
23{
24 C instance_C;
25 instance_C.d = 8;
26 return C::c;
27}
28
29// The definition of C::a drives the emission of class C, which is
30// why the definition of "a" comes before the declarations while
31// "b" and "c" come after.
32
33// CHECK: metadata !"a", {{.*}} @_ZN1C1aE, metadata ![[DECL_A:[0-9]+]]} ; [ DW_TAG_variable ] [a] {{.*}} [def]
34// CHECK: ![[DECL_A]] = metadata {{.*}} [ DW_TAG_member ] [a] [line {{.*}}, size 0, align 0, offset 0] [private] [static]
David Blaikiea89701b2013-01-20 01:19:17 +000035// CHECK: metadata !"const_a", {{.*}}, i1 true} ; [ DW_TAG_member ] [const_a] [line {{.*}}, size 0, align 0, offset 0] [private] [static]
Eric Christopherc3ad1002013-01-16 19:54:35 +000036// CHECK: ![[DECL_B:[0-9]+]] {{.*}} metadata !"b", {{.*}} [ DW_TAG_member ] [b] [line {{.*}}, size 0, align 0, offset 0] [protected] [static]
David Blaikiea89701b2013-01-20 01:19:17 +000037// CHECK: metadata !"const_b", {{.*}}, float 0x{{.*}}} ; [ DW_TAG_member ] [const_b] [line {{.*}}, size 0, align 0, offset 0] [protected] [static]
Eric Christopherc3ad1002013-01-16 19:54:35 +000038// CHECK: ![[DECL_C:[0-9]+]] {{.*}} metadata !"c", {{.*}} [ DW_TAG_member ] [c] [line {{.*}}, size 0, align 0, offset 0] [static]
39// CHECK: metadata !"const_c", {{.*}} [ DW_TAG_member ] [const_c] [line {{.*}}, size 0, align 0, offset 0] [static]
40// CHECK: metadata !"b", {{.*}} @_ZN1C1bE, metadata ![[DECL_B]]} ; [ DW_TAG_variable ] [b] {{.*}} [def]
41// CHECK: metadata !"c", {{.*}} @_ZN1C1cE, metadata ![[DECL_C]]} ; [ DW_TAG_variable ] [c] {{.*}} [def]