New, horrible, testcase

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14829 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2004-07-14 22:59:47 +00:00
parent 8a32784ad4
commit f05591d359

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()