1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00
llvm-mirror/test/Feature/globalredefinition.ll
Chris Lattner 17ec8fde04 New, horrible, testcase
llvm-svn: 14829
2004-07-14 22:59:47 +00:00

19 lines
220 B
LLVM

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