about summary refs log tree commit diff homepage
path: root/test/Concrete/BoolReadWrite.leq36.ll
diff options
context:
space:
mode:
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
-}