about summary refs log tree commit diff homepage
path: root/test/Concrete/InvokeAndUnwindOnce.ll
blob: dfd929db97dd7c516f9e437f28dbf9f67f778f8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
; RUN: %S/ConcreteTest.py --klee=%klee --lli=%lli %s

declare void @print_i32(i32)

define i8 @sum(i8 %a, i8 %b) {
	%c = add i8 %a, %b
	unwind
}

define i32 @main() {
	invoke i8 @sum(i8 1, i8 2) 
		to label %continue
		unwind label %error
continue:
	call void @print_i32(i32 1)
	ret i32 0
error:
	call void @print_i32(i32 0)
	ret i32 0
}