Daniel Dunbar | 4fcfde4 | 2009-11-08 01:45:36 +0000 | [diff] [blame] | 1 | // RUN: clang-cc -emit-llvm -o %t %s |
2 | // RUN: grep '@g0 = external hidden constant i32' %t | ||||
Daniel Dunbar | 4998888 | 2009-01-13 02:25:00 +0000 | [diff] [blame] | 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 | } |