1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 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()