diff options
| author | Chris Lattner <sabre@nondot.org> | 2009-02-12 07:06:42 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2009-02-12 07:06:42 +0000 |
| commit | feb129e81335b72154c03b686432215e892dfaac (patch) | |
| tree | 9cd38d98391003289c6d1b3140fe332a925512f2 /llvm/test/Transforms/Inline | |
| parent | 096f44de615482a5e698cec21fd293998aa2aa15 (diff) | |
| download | bcm5719-llvm-feb129e81335b72154c03b686432215e892dfaac.tar.gz bcm5719-llvm-feb129e81335b72154c03b686432215e892dfaac.zip | |
Fix a nasty bug (PR3550) where the inline pass could incorrectly mark
calls with the tail marker when inlining them through an invoke. Patch,
testcase, and perfect analysis by Jay Foad!
llvm-svn: 64364
Diffstat (limited to 'llvm/test/Transforms/Inline')
| -rw-r--r-- | llvm/test/Transforms/Inline/inline-invoke-tail.ll | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/llvm/test/Transforms/Inline/inline-invoke-tail.ll b/llvm/test/Transforms/Inline/inline-invoke-tail.ll new file mode 100644 index 00000000000..53f755e4456 --- /dev/null +++ b/llvm/test/Transforms/Inline/inline-invoke-tail.ll @@ -0,0 +1,35 @@ +; RUN: llvm-as < %s | opt -inline | llvm-dis | not grep {tail call void @llvm.memcpy.i32} +; PR3550 + +define internal void @foo(i32* %p, i32* %q) { + %pp = bitcast i32* %p to i8* + %qq = bitcast i32* %q to i8* + tail call void @llvm.memcpy.i32(i8* %pp, i8* %qq, i32 4, i32 1) + ret void +} + +declare void @llvm.memcpy.i32(i8* nocapture, i8* nocapture, i32, i32) nounwind + +define i32 @main() { + %a = alloca i32 ; <i32*> [#uses=3] + %b = alloca i32 ; <i32*> [#uses=2] + store i32 1, i32* %a, align 4 + store i32 0, i32* %b, align 4 + invoke void @foo(i32* %a, i32* %b) + to label %invcont unwind label %lpad + +invcont: + %retval = load i32* %a, align 4 + ret i32 %retval + +lpad: + %eh_ptr = call i8* @llvm.eh.exception() + %eh_select = call i32 (i8*, i8*, ...)* @llvm.eh.selector.i32(i8* %eh_ptr, i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*), i8* null) + unreachable +} + +declare i8* @llvm.eh.exception() nounwind + +declare i32 @llvm.eh.selector.i32(i8*, i8*, ...) nounwind + +declare i32 @__gxx_personality_v0(...) |

