about summary refs log tree commit diff homepage
path: root/test/Concrete/BoolReadWrite.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/BoolReadWrite.leq36.ll
parent9767a37f9e8a743fa81629510346cb0a5a3a7900 (diff)
downloadklee-3c22f088ce92854b9fcb5b41f67bf9a503ec9719.tar.gz
remove tests for LLVM <= 3.7
Diffstat (limited to 'test/Concrete/BoolReadWrite.leq36.ll')
-rw-r--r--test/Concrete/BoolReadWrite.leq36.ll16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/Concrete/BoolReadWrite.leq36.ll b/test/Concrete/BoolReadWrite.leq36.ll
deleted file mode 100644
index 34a50447..00000000
--- a/test/Concrete/BoolReadWrite.leq36.ll
+++ /dev/null
@@ -1,16 +0,0 @@
-; REQUIRES: lt-llvm-3.7
-; RUN: %S/ConcreteTest.py --klee='%klee' --lli=%lli %s
-
-declare void @print_i1(i1)
-
-define i32 @main() {
-        %mem = alloca i1
-        store i1 1, i1* %mem
-        %v = load i1* %mem
-        br i1 %v, label %ok, label %exit
-ok:
-	call void @print_i1(i1 %v)
-        br label %exit
-exit:
-	ret i32 0
-}