1@X = external global i32
2
3declare i32 @foo()
4
5define void @bar() {
6	load i32* @X
7	call i32 @foo()
8	ret void
9}
10
11