OBS-URL: https://build.opensuse.org/package/show/devel:tools:statica/klee?expand=0&rev=32
124 lines
4.2 KiB
Diff
124 lines
4.2 KiB
Diff
From: Jiri Slaby <jirislaby@gmail.com>
|
|
Date: Wed, 1 Nov 2017 09:25:47 +0100
|
|
Subject: llvm38: test, change some tests
|
|
Patch-mainline: no
|
|
|
|
alias in LLVM 3.8 has a new format, it adds a AliaseeTy parameter. So
|
|
handle this in the tests.
|
|
|
|
Signed-off-by: Jiri Slaby <jirislaby@gmail.com>
|
|
---
|
|
test/Feature/BitcastAlias.llvm37.ll | 1 +
|
|
test/Feature/BitcastAlias.llvm38.ll | 35 +++++++++++++++++++++++++++++++++
|
|
test/Feature/BitcastAliasMD2U.llvm37.ll | 1 +
|
|
test/Feature/BitcastAliasMD2U.llvm38.ll | 35 +++++++++++++++++++++++++++++++++
|
|
4 files changed, 72 insertions(+)
|
|
create mode 100644 test/Feature/BitcastAlias.llvm38.ll
|
|
create mode 100644 test/Feature/BitcastAliasMD2U.llvm38.ll
|
|
|
|
diff --git a/test/Feature/BitcastAlias.llvm37.ll b/test/Feature/BitcastAlias.llvm37.ll
|
|
index 0d6e72604d6b..3b702ba2a6b0 100644
|
|
--- a/test/Feature/BitcastAlias.llvm37.ll
|
|
+++ b/test/Feature/BitcastAlias.llvm37.ll
|
|
@@ -1,4 +1,5 @@
|
|
; REQUIRES: geq-llvm-3.7
|
|
+; REQUIRES: lt-llvm-3.8
|
|
; RUN: llvm-as %s -f -o %t1.bc
|
|
; RUN: rm -rf %t.klee-out
|
|
; RUN: %klee --output-dir=%t.klee-out -disable-opt %t1.bc > %t2
|
|
diff --git a/test/Feature/BitcastAlias.llvm38.ll b/test/Feature/BitcastAlias.llvm38.ll
|
|
new file mode 100644
|
|
index 000000000000..ff7009b7711b
|
|
--- /dev/null
|
|
+++ b/test/Feature/BitcastAlias.llvm38.ll
|
|
@@ -0,0 +1,35 @@
|
|
+; REQUIRES: geq-llvm-3.8
|
|
+; RUN: llvm-as %s -f -o %t1.bc
|
|
+; RUN: rm -rf %t.klee-out
|
|
+; RUN: %klee --output-dir=%t.klee-out -disable-opt %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"
|
|
+
|
|
+@foo = alias i32 (i32), i32 (i32)* @__foo
|
|
+
|
|
+define i32 @__foo(i32 %i) nounwind {
|
|
+entry:
|
|
+ ret i32 %i
|
|
+}
|
|
+
|
|
+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(i32 %argc, i8** nocapture %argv) nounwind readnone {
|
|
+entry:
|
|
+ %call = call i32 (i64) bitcast (i32 (i32)* @foo to i32 (i64)*)(i64 52)
|
|
+ %r = icmp eq i32 %call, 52
|
|
+ br i1 %r, label %bbtrue, label %bbfalse
|
|
+
|
|
+bbtrue:
|
|
+ %0 = call i32 @puts(i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.passstr, i64 0, i64 0)) nounwind
|
|
+ ret i32 0
|
|
+
|
|
+bbfalse:
|
|
+ %1 = call i32 @puts(i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.failstr, i64 0, i64 0)) nounwind
|
|
+ ret i32 0
|
|
+}
|
|
diff --git a/test/Feature/BitcastAliasMD2U.llvm37.ll b/test/Feature/BitcastAliasMD2U.llvm37.ll
|
|
index 12abf09373f8..2332a1968dea 100644
|
|
--- a/test/Feature/BitcastAliasMD2U.llvm37.ll
|
|
+++ b/test/Feature/BitcastAliasMD2U.llvm37.ll
|
|
@@ -1,4 +1,5 @@
|
|
; REQUIRES: geq-llvm-3.7
|
|
+; REQUIRES: lt-llvm-3.8
|
|
; RUN: llvm-as %s -f -o %t1.bc
|
|
; RUN: rm -rf %t.klee-out
|
|
; RUN: %klee --output-dir=%t.klee-out -disable-opt -search=nurs:md2u %t1.bc > %t2
|
|
diff --git a/test/Feature/BitcastAliasMD2U.llvm38.ll b/test/Feature/BitcastAliasMD2U.llvm38.ll
|
|
new file mode 100644
|
|
index 000000000000..f4e41293c347
|
|
--- /dev/null
|
|
+++ b/test/Feature/BitcastAliasMD2U.llvm38.ll
|
|
@@ -0,0 +1,35 @@
|
|
+; REQUIRES: geq-llvm-3.8
|
|
+; RUN: llvm-as %s -f -o %t1.bc
|
|
+; RUN: rm -rf %t.klee-out
|
|
+; RUN: %klee --output-dir=%t.klee-out -disable-opt -search=nurs:md2u %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"
|
|
+
|
|
+@foo = alias i32 (i32), i32 (i32)* @__foo
|
|
+
|
|
+define i32 @__foo(i32 %i) nounwind {
|
|
+entry:
|
|
+ ret i32 %i
|
|
+}
|
|
+
|
|
+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(i32 %argc, i8** nocapture %argv) nounwind readnone {
|
|
+entry:
|
|
+ %call = call i32 (i64) bitcast (i32 (i32)* @foo to i32 (i64)*)(i64 52)
|
|
+ %r = icmp eq i32 %call, 52
|
|
+ br i1 %r, label %bbtrue, label %bbfalse
|
|
+
|
|
+bbtrue:
|
|
+ %0 = call i32 @puts(i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.passstr, i64 0, i64 0)) nounwind
|
|
+ ret i32 0
|
|
+
|
|
+bbfalse:
|
|
+ %1 = call i32 @puts(i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.failstr, i64 0, i64 0)) nounwind
|
|
+ ret i32 0
|
|
+}
|
|
--
|
|
2.15.0
|
|
|