about summary refs log tree commit diff homepage
path: root/test/Concrete/GlobalVariable.ll
blob: 61c7031b5487812378b5fc5757f3f79cb73b6741 (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
}