mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-05 09:24:28 +00:00
Teach globalopt how to evaluate an invoke with a non-void return type.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@152634 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -2561,11 +2561,6 @@ bool Evaluator::EvaluateBlock(BasicBlock::iterator CurInst,
|
||||
return false;
|
||||
delete ValueStack.pop_back_val();
|
||||
InstResult = RetVal;
|
||||
|
||||
if (InvokeInst *II = dyn_cast<InvokeInst>(CurInst)) {
|
||||
NextBB = II->getNormalDest();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
} else if (isa<TerminatorInst>(CurInst)) {
|
||||
if (BranchInst *BI = dyn_cast<BranchInst>(CurInst)) {
|
||||
@ -2610,6 +2605,12 @@ bool Evaluator::EvaluateBlock(BasicBlock::iterator CurInst,
|
||||
setVal(CurInst, InstResult);
|
||||
}
|
||||
|
||||
// If we just processed an invoke, we finished evaluating the block.
|
||||
if (InvokeInst *II = dyn_cast<InvokeInst>(CurInst)) {
|
||||
NextBB = II->getNormalDest();
|
||||
return true;
|
||||
}
|
||||
|
||||
// Advance program counter.
|
||||
++CurInst;
|
||||
}
|
||||
|
Reference in New Issue
Block a user