Support the invoke instruction

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@765 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2001-10-13 06:52:41 +00:00
parent 5a0d4179df
commit 93d39d23b4

View File

@ -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;