diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2011-05-18 21:49:12 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2011-05-18 21:49:12 +0000 |
commit | 243a217c15fdbf920f91fabfae460f957b25e0ec (patch) | |
tree | 6ea280c835169281ccf8d545b0b484bad949a7e6 /test/Feature | |
parent | bbaba2f7c94050712802b3ae39d92d727853ffc9 (diff) | |
download | klee-243a217c15fdbf920f91fabfae460f957b25e0ec.tar.gz |
Add ConstantStruct support to Executor::evalConstant
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@131586 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Feature')
-rw-r--r-- | test/Feature/ConstantStruct.ll | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/test/Feature/ConstantStruct.ll b/test/Feature/ConstantStruct.ll new file mode 100644 index 00000000..cfd7104e --- /dev/null +++ b/test/Feature/ConstantStruct.ll @@ -0,0 +1,32 @@ +; RUN: llvm-as %s -f -o %t1.bc +; RUN: %klee -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" + +%struct.sfoo = type { i32, i64 } + +declare i32 @puts(i8*) +declare i32 @printf(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: + %f0 = extractvalue %struct.sfoo { i32 3, i64 1 }, 0 + %f1 = extractvalue %struct.sfoo { i32 3, i64 1 }, 1 + %xf0 = zext i32 %f0 to i64 + %f0mf1 = sub i64 %xf0, %f1 + %r = icmp eq i64 %f0mf1, 2 + br i1 %r, label %bbtrue, label %bbfalse + +bbtrue: + %0 = call i32 @puts(i8* getelementptr inbounds ([5 x i8]* @.passstr, i64 0, i64 0)) nounwind + ret i32 0 + +bbfalse: + %1 = call i32 @puts(i8* getelementptr inbounds ([5 x i8]* @.failstr, i64 0, i64 0)) nounwind + ret i32 0 +} |