about summary refs log tree commit diff homepage
path: root/test/Concrete/UnconditionalBranch.ll
blob: 957191285b2516ef066df1f3258a93317d9335d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
; RUN: %S/ConcreteTest.py --klee='%klee' --lli=%lli %s

declare void @print_i32(i32)

define i32 @main() {
entry:
	%a = add i32 0, 1
	br label %exit
exit:
	call void @print_i32(i32 %a)
	ret i32 0
}