Daniel Dunbar | d7d5f02 | 2009-03-24 02:24:46 +0000 | [diff] [blame] | 1 | // RUN: clang-cc -emit-llvm -o %t %s && |
Daniel Dunbar | 4998888 | 2009-01-13 02:25:00 +0000 | [diff] [blame] | 2 | // RUN: grep '@g0 = external hidden constant i32' %t && |
3 | // RUN: grep '@g1 = hidden constant i32 1' %t | ||||
4 | |||||
5 | __private_extern__ const int g0; | ||||
6 | __private_extern__ const int g1 = 1; | ||||
7 | |||||
8 | int f0(void) { | ||||
9 | return g0; | ||||
10 | } |