aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/Transforms/Scalar/SCCP.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/SCCP.cpp b/lib/Transforms/Scalar/SCCP.cpp
index b92b54fd64..f91b786ce1 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;