1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

New testcase for PR610

llvm-svn: 22545
This commit is contained in:
Chris Lattner 2005-07-28 20:18:33 +00:00
parent 0fcc129f80
commit 941a101c38

View File

@ -0,0 +1,5 @@
// RUN: %llvmgcc %s -S -o - | grep TheGlobal | not grep weak
extern int TheGlobal;
int foo() { return TheGlobal; }
int TheGlobal = 1;