about summary refs log tree commit diff homepage
path: root/test/Feature/GetElementPtr.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/Feature/GetElementPtr.leq36.ll
parent9767a37f9e8a743fa81629510346cb0a5a3a7900 (diff)
downloadklee-3c22f088ce92854b9fcb5b41f67bf9a503ec9719.tar.gz
remove tests for LLVM <= 3.7
Diffstat (limited to 'test/Feature/GetElementPtr.leq36.ll')
-rw-r--r--test/Feature/GetElementPtr.leq36.ll30
1 files changed, 0 insertions, 30 deletions
diff --git a/test/Feature/GetElementPtr.leq36.ll b/test/Feature/GetElementPtr.leq36.ll
deleted file mode 100644
index 349ecd1b..00000000
--- a/test/Feature/GetElementPtr.leq36.ll
+++ /dev/null
@@ -1,30 +0,0 @@
-; REQUIRES: lt-llvm-3.7
-; RUN: llvm-as %s -f -o %t1.bc
-; RUN: rm -rf %t.klee-out
-; RUN: %klee --output-dir=%t.klee-out --optimize=false %t1.bc > %t2
-; RUN: grep PASS %t2
-
-target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
-target triple = "x86_64-unknown-linux-gnu"
-
-declare i32 @puts(i8*)
-
-@.passstr = private constant [5 x i8] c"PASS\00", align 1
-@.failstr = private constant [5 x i8] c"FAIL\00", align 1
-
-define i32 @main() {
-entry:
-  %addr = alloca i8, align 4
-  %addrp1 = getelementptr i8* %addr, i32 1
-  %addrp1m1 = getelementptr i8* %addrp1, i32 -1
-  %test = icmp eq i8* %addr, %addrp1m1
-  br i1 %test, label %bbtrue, label %bbfalse
-
-bbtrue:
-  %0 = call i32 @puts(i8* getelementptr inbounds ([5 x i8]* @.passstr, i64 0, i64 0)) nounwind
-  ret i32 0
-
-bbfalse:
-  %1 = call i32 @puts(i8* getelementptr inbounds ([5 x i8]* @.failstr, i64 0, i64 0)) nounwind
-  ret i32 0
-}