When removing a function from the function set and adding it to deferred, we
[llvm.git] / test / Integer / globalredefinition_bt.ll
blobb369b2a5d800cde913054679e60e2cc539e2d42d
1 ; 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
5 ; Test forward references and redefinitions of globals
7 @A = global i17* @B
8 @B = global i17 7
10 declare void @X()
12 declare void @X()
14 define void @X() {
15   ret void
18 declare void @X()