diff options
| author | Richard Trembecký <richardt@centrum.sk> | 2016-04-29 22:33:41 +0200 |
|---|---|---|
| committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2018-05-24 14:08:27 +0100 |
| commit | a0cd85b41f02ce5c476612eec182aa1ff3e6fe2b (patch) | |
| tree | b7d938116cae4f4a18225e9aef2f8934b761e063 /test/Concrete/BoolReadWrite.leq36.ll | |
| parent | 870f2d6aac35457e7524078a4b4a8b011f84c45c (diff) | |
| download | klee-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/BoolReadWrite.leq36.ll')
| -rw-r--r-- | test/Concrete/BoolReadWrite.leq36.ll | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/Concrete/BoolReadWrite.leq36.ll b/test/Concrete/BoolReadWrite.leq36.ll new file mode 100644 index 00000000..34a50447 --- /dev/null +++ b/test/Concrete/BoolReadWrite.leq36.ll @@ -0,0 +1,16 @@ +; REQUIRES: lt-llvm-3.7 +; RUN: %S/ConcreteTest.py --klee='%klee' --lli=%lli %s + +declare void @print_i1(i1) + +define i32 @main() { + %mem = alloca i1 + store i1 1, i1* %mem + %v = load i1* %mem + br i1 %v, label %ok, label %exit +ok: + call void @print_i1(i1 %v) + br label %exit +exit: + ret i32 0 +} |
