blob: 8a29d0fb1be21d7ac8816726fdbecb13ed68e42f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
; RUN: %S/ConcreteTest.py --klee=%klee --lli=%lli %s
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
}
|