Fix this test on 64-bit systems which seem to use i64 for gep indices sometimes
[oota-llvm.git] / test / FrontendC / 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;