blob: a9bb28bfad4e40dccb9c9521222a18faaf46c43a [file] [log] [blame]
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00001// RUN: clang-cc -emit-llvm -o %t %s
2// RUN: grep '@g0 = external hidden constant i32' %t
Daniel Dunbar49988882009-01-13 02:25:00 +00003// RUN: grep '@g1 = hidden constant i32 1' %t
4
5__private_extern__ const int g0;
6__private_extern__ const int g1 = 1;
7
8int f0(void) {
9 return g0;
10}