diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2011-08-01 02:26:27 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2011-08-01 02:26:27 +0000 |
commit | 3c2bacc7a9fb95caef07d87d9b6220712b7d613f (patch) | |
tree | 7aee0c72179d88a3a7adf6f6984d962d9f9fba48 /test | |
parent | 179a8930253e7e81dda77fda1db11a6d11b22f14 (diff) | |
download | klee-3c2bacc7a9fb95caef07d87d9b6220712b7d613f.tar.gz |
Make the Executor capable of handling bitcasts of aliases, by rewriting the
direct function call logic. git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@136605 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/Feature/BitcastAlias.ll | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/test/Feature/BitcastAlias.ll b/test/Feature/BitcastAlias.ll new file mode 100644 index 00000000..711ed7ad --- /dev/null +++ b/test/Feature/BitcastAlias.ll @@ -0,0 +1,33 @@ +; 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" + +@foo = alias i32 (i32)* @__foo + +define i32 @__foo(i32 %i) nounwind { +entry: + ret i32 %i +} + +declare i32 @puts(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: + %call = call i32 (i64)* bitcast (i32 (i32)* @foo to i32 (i64)*)(i64 52) + %r = icmp eq i32 %call, 52 + 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 +} |