mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
LiveRange: Replace a creative vector erase loop with std::remove_if.
I didn't see this so far because it scans backwards, but that doesn't make it any less quadratic. NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230863 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0d2931f1cb
commit
2bcfcc1c65
@ -567,13 +567,9 @@ void LiveRange::removeSegment(SlotIndex Start, SlotIndex End,
|
||||
/// Also remove the value# from value# list.
|
||||
void LiveRange::removeValNo(VNInfo *ValNo) {
|
||||
if (empty()) return;
|
||||
iterator I = end();
|
||||
iterator E = begin();
|
||||
do {
|
||||
--I;
|
||||
if (I->valno == ValNo)
|
||||
segments.erase(I);
|
||||
} while (I != E);
|
||||
segments.erase(std::remove_if(begin(), end(), [ValNo](const Segment &S) {
|
||||
return S.valno == ValNo;
|
||||
}), end());
|
||||
// Now that ValNo is dead, remove it.
|
||||
markValNoForDeletion(ValNo);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user