mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-08 04:51:23 +00:00
SDAGBuilder: Avoid iterator invalidation harder.
vector.begin()-1 is invalid too. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157525 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e82d598ef2
commit
dc54f8ebe2
@ -1991,7 +1991,7 @@ bool SelectionDAGBuilder::handleSmallSwitchRange(CaseRec& CR,
|
||||
// The last case block won't fall through into 'NextBlock' if we emit the
|
||||
// branches in this order. See if rearranging a case value would help.
|
||||
// We start at the bottom as it's the case with the least weight.
|
||||
for (CaseItr I = CR.Range.second-2, E = CR.Range.first-1; I != E; --I) {
|
||||
for (CaseItr I = CR.Range.second-2, E = CR.Range.first; I >= E; --I) {
|
||||
if (I->BB == NextBlock) {
|
||||
std::swap(*I, BackCase);
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user