blob: cbacf2253911c24ec30980de4acb061543be08c7 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 %s -emit-llvm -o - | grep TheGlobal | not grep weak
2
3extern int TheGlobal;
4int foo() { return TheGlobal; }
5int TheGlobal = 1;