From 93d39d23b4775e756aec453d3a92ca334f91424c Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 13 Oct 2001 06:52:41 +0000 Subject: [PATCH] Support the invoke instruction git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@765 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Scalar/SCCP.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/Transforms/Scalar/SCCP.cpp b/lib/Transforms/Scalar/SCCP.cpp index b92b54fd649..f91b786ce19 100644 --- a/lib/Transforms/Scalar/SCCP.cpp +++ b/lib/Transforms/Scalar/SCCP.cpp @@ -370,8 +370,9 @@ void SCCP::UpdateInstruction(Instruction *I) { case Instruction::Alloca: case Instruction::Load: case Instruction::Store: - // TODO: getfield/putfield? + // TODO: getfield case Instruction::Call: + case Instruction::Invoke: markOverdefined(I); // Memory and call's are all overdefined return;