about summary refs log tree commit diff homepage
path: root/test/Concrete/GlobalVariable.ll
blob: d15df064c85015717e58f98ffcab3e2d8dbc33ab (plain) (blame)
1
2
3
4
5
6
7
8
9
declare void @print_i32(i32)

@anInt = global i32 1
@aRef = global i32* @anInt

define i32 @main() {
        call void @print_i32(i32 0)
	ret i32 0
}