about summary refs log tree commit diff homepage
path: root/test/Concrete/SimpleStoreAndLoad.ll
blob: 0201ba15c3e31ed969df5198802f23199046802d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
declare void @print_i32(i32)

define i32 @main() {
entry:
	%a = alloca i32, i32 4
	%tmp1 = getelementptr i32* %a, i32 0
	store i32 0, i32* %tmp1
	%tmp2 = load i32* %tmp1
	%tmp3 = icmp eq i32 %tmp2, 0
	br i1 %tmp3, label %exitTrue, label %exitFalse
exitTrue:
	call void @print_i32(i32 1)
	ret i32 0
exitFalse:
	call void @print_i32(i32 0)
	ret i32 0
}