about summary refs log tree commit diff homepage
path: root/test/Intrinsics
diff options
context:
space:
mode:
authorMartin Nowack <martin@se.inf.tu-dresden.de>2017-07-22 01:28:40 +0200
committerMartin Nowack <martin@se.inf.tu-dresden.de>2017-07-23 12:18:35 +0200
commitafae176824d8fd1733e5e302a62e6bd09a86aff2 (patch)
tree417ff3c15fd0499d8e61a1f180c75beb5cde6d4b /test/Intrinsics
parent37e92d0c802524c19a9a84164253639aac47fee3 (diff)
downloadklee-afae176824d8fd1733e5e302a62e6bd09a86aff2.tar.gz
Updated test cases to reflect removal of LLVM 2.9
Diffstat (limited to 'test/Intrinsics')
-rw-r--r--test/Intrinsics/objectsize.ll4
-rw-r--r--test/Intrinsics/objectsize.llvm29.ll34
2 files changed, 0 insertions, 38 deletions
diff --git a/test/Intrinsics/objectsize.ll b/test/Intrinsics/objectsize.ll
index 8b75ce8f..4bb59596 100644
--- a/test/Intrinsics/objectsize.ll
+++ b/test/Intrinsics/objectsize.ll
@@ -1,7 +1,3 @@
-; Unfortunately LLVM 2.9 has a different suffix for the ``llvm.objectsize`` instrinsic
-; so this LLVM IR fails to verify for that version.
-;
-; REQUIRES: not-llvm-2.9
 ; RUN: %llvmas %s -o=%t.bc
 ; RUN: rm -rf %t.klee-out
 ; RUN: %klee -exit-on-error --output-dir=%t.klee-out -disable-opt %t.bc
diff --git a/test/Intrinsics/objectsize.llvm29.ll b/test/Intrinsics/objectsize.llvm29.ll
deleted file mode 100644
index 386eaddb..00000000
--- a/test/Intrinsics/objectsize.llvm29.ll
+++ /dev/null
@@ -1,34 +0,0 @@
-; FIXME: Remove this test case when we drop LLVM 2.9 support
-; REQUIRES: llvm-2.9
-; RUN: %llvmas %s -o=%t.bc
-; RUN: rm -rf %t.klee-out
-; RUN: %klee -exit-on-error --output-dir=%t.klee-out -disable-opt %t.bc
-; ModuleID = 'objectsize.c'
-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-S128"
-target triple = "x86_64-unknown-linux-gnu"
-
-define i32 @main() nounwind {
-entry:
-  %a = alloca i8*, align 8
-  %0 = load i8** %a, align 8
-  %1 = call i64 @llvm.objectsize.i64(i8* %0, i1 true)
-  %cmp = icmp ne i64 %1, 0
-  br i1 %cmp, label %abort.block, label %continue.block
-
-continue.block:
-  %2 = load i8** %a, align 8
-  %3 = call i64 @llvm.objectsize.i64(i8* %2, i1 false)
-  %cmp1 = icmp ne i64 %3, -1
-  br i1 %cmp1, label %abort.block, label %exit.block
-
-exit.block:
-  ret i32 0
-
-abort.block:
-  call void @abort()
-  unreachable
-}
-
-declare i64 @llvm.objectsize.i64(i8*, i1) nounwind readnone
-
-declare void @abort() noreturn nounwind