New, horrible, testcase

llvm-svn: 14829
This commit is contained in:
Chris Lattner 2004-07-14 22:59:47 +00:00
parent 4c9210ed64
commit 7e40f4f9c5
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
; Test forward references and redefinitions of globals
%Y = global void()* %X
%A = global int* %B
%B = global int 7
%B = global int 7
declare void %X()
declare void %X()
void %X() {
ret void
}
declare void %X()