mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
17ec8fde04
llvm-svn: 14829
19 lines
220 B
LLVM
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()
|