diff options
Diffstat (limited to 'lib/Transforms/Scalar/SCCP.cpp')
-rw-r--r-- | lib/Transforms/Scalar/SCCP.cpp | 3 |
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; |