Switch a bunch of Linker tests from using elaborate echo productions to
[oota-llvm.git] / test / Linker / Inputs / linkage.b.ll
1 @X = external global i32 
2
3 declare i32 @foo() 
4
5 define void @bar() {
6         load i32* @X
7         call i32 @foo()
8         ret void
9 }
10