blob: 56b1ab1a45f980d300392129e9f24faf35e6076d [file] [log] [blame]
Reid Spencerc0948362007-01-16 18:08:22 +00001; RUN: llvm-as %s -o - | llvm-dis > %t1.ll
2; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
3; RUN: diff %t1.ll %t2.ll
4
5; Test forward references and redefinitions of globals
6
7%A = global i17* %B
8%B = global i17 7
9
10declare void %X()
11
12declare void %X()
13
14define void %X() {
15 ret void
16}
17
18declare void %X()