From d9d46241ece12351fce06b55baad2c83b50922a6 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 14 Jan 2009 21:01:16 +0000 Subject: [PATCH] Fix PR3325, a miscompilation of invokes by IPSCCP. Patch by Jay Foad! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62244 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Scalar/SCCP.cpp | 5 ++-- .../SCCP/2009-01-14-IPSCCP-Invoke.ll | 28 +++++++++++++++++++ 2 files changed, 30 insertions(+), 3 deletions(-) create mode 100644 test/Transforms/SCCP/2009-01-14-IPSCCP-Invoke.ll diff --git a/lib/Transforms/Scalar/SCCP.cpp b/lib/Transforms/Scalar/SCCP.cpp index 954bc0011e6..dfb47954591 100644 --- a/lib/Transforms/Scalar/SCCP.cpp +++ b/lib/Transforms/Scalar/SCCP.cpp @@ -1749,8 +1749,7 @@ bool IPSCCP::runOnModule(Module &M) { } else { for (BasicBlock::iterator BI = BB->begin(), E = BB->end(); BI != E; ) { Instruction *Inst = BI++; - if (Inst->getType() == Type::VoidTy || - isa(Inst)) + if (Inst->getType() == Type::VoidTy) continue; LatticeVal &IV = Values[Inst]; @@ -1766,7 +1765,7 @@ bool IPSCCP::runOnModule(Module &M) { Inst->replaceAllUsesWith(Const); // Delete the instruction. - if (!isa(Inst)) + if (!isa(Inst) && !isa(Inst)) Inst->eraseFromParent(); // Hey, we just changed something! diff --git a/test/Transforms/SCCP/2009-01-14-IPSCCP-Invoke.ll b/test/Transforms/SCCP/2009-01-14-IPSCCP-Invoke.ll new file mode 100644 index 00000000000..20f7c21b7c1 --- /dev/null +++ b/test/Transforms/SCCP/2009-01-14-IPSCCP-Invoke.ll @@ -0,0 +1,28 @@ +; RUN: llvm-as < %s | opt -ipsccp | llvm-dis | grep {ret i32 42} +; RUN: llvm-as < %s | opt -ipsccp | llvm-dis | grep {ret i32 undef} +; PR3325 + +define i32 @main() { + %tmp1 = invoke i32 @f() + to label %UnifiedReturnBlock unwind label %lpad + +lpad: + unreachable + +UnifiedReturnBlock: + ret i32 %tmp1 +} + +define internal i32 @f() { + ret i32 42 +} + +declare i8* @__cxa_begin_catch(i8*) nounwind + +declare i8* @llvm.eh.exception() nounwind + +declare i32 @llvm.eh.selector.i32(i8*, i8*, ...) nounwind + +declare void @__cxa_end_catch() + +declare i32 @__gxx_personality_v0(...)