SSE4 is apparently public now.
[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;