about summary refs log tree commit diff homepage
path: root/test/Concrete/SimpleStoreAndLoad.ll
diff options
context:
space:
mode:
authorRichard Trembecký <richardt@centrum.sk>2016-04-29 22:33:41 +0200
committerCristian Cadar <c.cadar@imperial.ac.uk>2018-05-24 14:08:27 +0100
commita0cd85b41f02ce5c476612eec182aa1ff3e6fe2b (patch)
treeb7d938116cae4f4a18225e9aef2f8934b761e063 /test/Concrete/SimpleStoreAndLoad.ll
parent870f2d6aac35457e7524078a4b4a8b011f84c45c (diff)
downloadklee-a0cd85b41f02ce5c476612eec182aa1ff3e6fe2b.tar.gz
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 <jirislaby@gmail.com>
Diffstat (limited to 'test/Concrete/SimpleStoreAndLoad.ll')
-rw-r--r--test/Concrete/SimpleStoreAndLoad.ll7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/Concrete/SimpleStoreAndLoad.ll b/test/Concrete/SimpleStoreAndLoad.ll
index 1edad038..951a474e 100644
--- a/test/Concrete/SimpleStoreAndLoad.ll
+++ b/test/Concrete/SimpleStoreAndLoad.ll
@@ -1,3 +1,6 @@
+; LLVM 3.7 requires a type as the first argument to 'getelementptr'
+; 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_i32(i32)
@@ -5,9 +8,9 @@ declare void @print_i32(i32)
 define i32 @main() {
 entry:
 	%a = alloca i32, i32 4
-	%tmp1 = getelementptr i32* %a, i32 0
+	%tmp1 = getelementptr i32, i32* %a, i32 0
 	store i32 0, i32* %tmp1
-	%tmp2 = load i32* %tmp1
+	%tmp2 = load i32, i32* %tmp1
 	%tmp3 = icmp eq i32 %tmp2, 0
 	br i1 %tmp3, label %exitTrue, label %exitFalse
 exitTrue: