Transform: "icmp eq (trunc (lshr(X, cst1)), cst" to "icmp (and X, mask), cst"
[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;