From a0cd85b41f02ce5c476612eec182aa1ff3e6fe2b Mon Sep 17 00:00:00 2001 From: Richard Trembecký Date: Fri, 29 Apr 2016 22:33:41 +0200 Subject: test: add versions of some tests for LLVM 3.7 Clone some tests to have their 3.7 version. 'call's, 'load's and 'getelementptr's match the new specification in them. @andreamattavelli: Fixed test cases: BitCastAlias test cases included modification to alias specifications that require LLVM 3.8 [v2] added comments what was changed and why [v3] the new tests are without suffix, the old ones have ".leq36". Signed-off-by: Jiri Slaby --- test/Concrete/BoolReadWrite.ll | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'test/Concrete/BoolReadWrite.ll') diff --git a/test/Concrete/BoolReadWrite.ll b/test/Concrete/BoolReadWrite.ll index f818ecaf..4dfb49e0 100644 --- a/test/Concrete/BoolReadWrite.ll +++ b/test/Concrete/BoolReadWrite.ll @@ -1,3 +1,5 @@ +; LLVM 3.7 requires a type as the first argument to 'load' +; REQUIRES: geq-llvm-3.7 ; RUN: %S/ConcreteTest.py --klee='%klee' --lli=%lli %s declare void @print_i1(i1) @@ -5,7 +7,7 @@ declare void @print_i1(i1) define i32 @main() { %mem = alloca i1 store i1 1, i1* %mem - %v = load i1* %mem + %v = load i1, i1* %mem br i1 %v, label %ok, label %exit ok: call void @print_i1(i1 %v) -- cgit 1.4.1