fun with predicates! (add TRUNC i64->i1, AND i1 i1, fix XOR i1 i1)
[oota-llvm.git] / test / CFrontend / 2005-07-28-IncorrectWeakGlobal.c
1 // RUN: %llvmgcc %s -S -o - | grep TheGlobal | not grep weak
2
3 extern int TheGlobal;
4 int foo() { return TheGlobal; }
5 int TheGlobal = 1;