Files
clang-p2996/clang/test/CodeGen/private-extern.c
Daniel Dunbar a45cf5b6b0 Rename clang to clang-cc.
Tests and drivers updated, still need to shuffle dirs.

llvm-svn: 67602
2009-03-24 02:24:46 +00:00

11 lines
244 B
C

// RUN: clang-cc -emit-llvm -o %t %s &&
// RUN: grep '@g0 = external hidden constant i32' %t &&
// RUN: grep '@g1 = hidden constant i32 1' %t
__private_extern__ const int g0;
__private_extern__ const int g1 = 1;
int f0(void) {
return g0;
}