about summary refs log tree commit diff homepage
path: root/test/Concrete/SimpleStoreAndLoad.leq36.ll
diff options
context:
space:
mode:
authorJulian Büning <julian.buening@rwth-aachen.de>2019-03-20 22:05:09 +0100
committerMartinNowack <martin.nowack@gmail.com>2019-03-21 12:46:01 +0000
commit3c22f088ce92854b9fcb5b41f67bf9a503ec9719 (patch)
treec7497c38f3e661f56a32d55d79b5d7868a070220 /test/Concrete/SimpleStoreAndLoad.leq36.ll
parent9767a37f9e8a743fa81629510346cb0a5a3a7900 (diff)
downloadklee-3c22f088ce92854b9fcb5b41f67bf9a503ec9719.tar.gz
remove tests for LLVM <= 3.7
Diffstat (limited to 'test/Concrete/SimpleStoreAndLoad.leq36.ll')
-rw-r--r--test/Concrete/SimpleStoreAndLoad.leq36.ll20
1 files changed, 0 insertions, 20 deletions
diff --git a/test/Concrete/SimpleStoreAndLoad.leq36.ll b/test/Concrete/SimpleStoreAndLoad.leq36.ll
deleted file mode 100644
index 7bb65ea7..00000000
--- a/test/Concrete/SimpleStoreAndLoad.leq36.ll
+++ /dev/null
@@ -1,20 +0,0 @@
-; 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
-}