about summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorMartin Nowack <martin_nowack@tu-dresden.de>2017-11-02 11:28:49 +0100
committerCristian Cadar <c.cadar@imperial.ac.uk>2018-02-18 12:49:41 +0000
commitb96e0eac2fefa609b1e5d613986caa7c880185c3 (patch)
tree0418d9f6a84be857a21d36c1d03b434be41258eb
parent8383197858ed244c24577b23952e21f8d22f97ef (diff)
downloadklee-b96e0eac2fefa609b1e5d613986caa7c880185c3.tar.gz
Add missing endian information to avoid selecction of big endian systems
-rw-r--r--test/regression/2007-08-01-bool-zext-in-call.ll3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/regression/2007-08-01-bool-zext-in-call.ll b/test/regression/2007-08-01-bool-zext-in-call.ll
index 1a4bf4f3..d8b2cec0 100644
--- a/test/regression/2007-08-01-bool-zext-in-call.ll
+++ b/test/regression/2007-08-01-bool-zext-in-call.ll
@@ -1,7 +1,8 @@
 ; RUN: rm -rf %t.klee-out
 ; RUN: llvm-as -f %s -o - | %klee --output-dir=%t.klee-out
 ; RUN: not test -f %t.klee-out/test0001.abort.err
-
+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"
 declare void @klee_abort()
 
 define i32 @foo(i8 signext %val) {