blob: 3f3e26abfe90dfbc4e9ca19c1fc3ab3fd1409f79 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
; RUN: llvm-as -f %s -o - | %klee 2> %t1.log
; RUN: not test -f klee-last/test0001.abort.err
declare void @klee_abort()
define i32 @foo(i8 signext %val) {
%tmp = zext i8 %val to i32
ret i32 %tmp
}
define i32 @main() {
%res = call i32 bitcast (i32 (i8 signext)* @foo to i32 (i1)*)( i1 1 )
%check = icmp ne i32 %res, 255
br i1 %check, label %error, label %exit
error:
call void @klee_abort()
unreachable
exit:
ret i32 0
}
|