From a0cd85b41f02ce5c476612eec182aa1ff3e6fe2b Mon Sep 17 00:00:00 2001 From: Richard Trembecký Date: Fri, 29 Apr 2016 22:33:41 +0200 Subject: test: add versions of some tests for LLVM 3.7 Clone some tests to have their 3.7 version. 'call's, 'load's and 'getelementptr's match the new specification in them. @andreamattavelli: Fixed test cases: BitCastAlias test cases included modification to alias specifications that require LLVM 3.8 [v2] added comments what was changed and why [v3] the new tests are without suffix, the old ones have ".leq36". Signed-off-by: Jiri Slaby --- test/Concrete/SimpleStoreAndLoad.leq36.ll | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 test/Concrete/SimpleStoreAndLoad.leq36.ll (limited to 'test/Concrete/SimpleStoreAndLoad.leq36.ll') diff --git a/test/Concrete/SimpleStoreAndLoad.leq36.ll b/test/Concrete/SimpleStoreAndLoad.leq36.ll new file mode 100644 index 00000000..7bb65ea7 --- /dev/null +++ b/test/Concrete/SimpleStoreAndLoad.leq36.ll @@ -0,0 +1,20 @@ +; REQUIRES: lt-llvm-3.7 +; RUN: %S/ConcreteTest.py --klee='%klee' --lli=%lli %s + +declare void @print_i32(i32) + +define i32 @main() { +entry: + %a = alloca i32, i32 4 + %tmp1 = getelementptr i32* %a, i32 0 + store i32 0, i32* %tmp1 + %tmp2 = load i32* %tmp1 + %tmp3 = icmp eq i32 %tmp2, 0 + br i1 %tmp3, label %exitTrue, label %exitFalse +exitTrue: + call void @print_i32(i32 1) + ret i32 0 +exitFalse: + call void @print_i32(i32 0) + ret i32 0 +} -- cgit 1.4.1