diff options
author | Julian Büning <julian.buening@rwth-aachen.de> | 2019-05-30 19:11:30 +0200 |
---|---|---|
committer | MartinNowack <2443641+MartinNowack@users.noreply.github.com> | 2020-06-25 16:30:10 +0100 |
commit | 6cba814e54ebb1eacebbe2ef07a102e9466272db (patch) | |
tree | def7dcc2addcee6575385c9c20bff39d405f7692 /test | |
parent | e4a2ca614279c8b6febe35edf169eb38c0d85178 (diff) | |
download | klee-6cba814e54ebb1eacebbe2ef07a102e9466272db.tar.gz |
regression test for unknown bitcast alias
Diffstat (limited to 'test')
-rw-r--r-- | test/regression/2019-05-30_unknown-bitcast-alias.ll | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/test/regression/2019-05-30_unknown-bitcast-alias.ll b/test/regression/2019-05-30_unknown-bitcast-alias.ll new file mode 100644 index 00000000..b70baa47 --- /dev/null +++ b/test/regression/2019-05-30_unknown-bitcast-alias.ll @@ -0,0 +1,44 @@ +; RUN: %llvmas %s -o=%t.bc +; RUN: rm -rf %t.klee-out +; RUN: %klee -exit-on-error-type=Abort -output-source -output-dir=%t.klee-out %t.bc + +; bitcast of @foo2, which is not known yet +@foo3 = alias i16 (...), bitcast (i32 (...)* @foo2 to i16 (...)*) +; @foo is not known yet +@foo2 = alias i32 (...), i32 (...)* @foo +@foo = alias i32 (...), bitcast (i32 ()* @__foo to i32 (...)*) + +@x = global i32 0, align 4 + +define i32 @__foo() { +entry: + %0 = load i32, i32* @x, align 4 + %inc = add nsw i32 %0, 1 + store i32 %inc, i32* @x, align 4 + ret i32 1 +} + +define i32 @main() { +entry: + %call1 = call i32 (...) @foo() + %call2 = call i32 (...) @foo2() + %call3 = call i16 (...) @foo3() + %load = load i32, i32* @x, align 4 + %inc1 = add nsw i32 %load, %call1 + %inc2 = add nsw i32 %inc1, %call2 + %zext = zext i16 %call3 to i32 + %inc3 = add nsw i32 %inc2, %zext + %cmp = icmp ne i32 %inc3, 6 + br i1 %cmp, label %if.then, label %if.end + +if.then: + call void @klee_abort() + unreachable + +if.end: + ret i32 0 +} + +declare void @klee_abort() #1 + +attributes #1 = { noreturn } |