blob: 793554a2c79663b0c48e5225c05533ecc60b9ed2 [file] [log] [blame]
Chris Lattnerf05591d2004-07-14 22:59:47 +00001; Test forward references and redefinitions of globals
2
3%Y = global void()* %X
4
5%A = global int* %B
6%B = global int 7
7%B = global int 7
8
9
10declare void %X()
11
12declare void %X()
13
14void %X() {
15 ret void
16}
17
18declare void %X()