LiveRange: Replace a creative vector erase loop with std::remove_if.
authorBenjamin Kramer <benny.kra@googlemail.com>
Sat, 28 Feb 2015 20:14:27 +0000 (20:14 +0000)
committerBenjamin Kramer <benny.kra@googlemail.com>
Sat, 28 Feb 2015 20:14:27 +0000 (20:14 +0000)
commit4c5dcb0a830366c36a715850eaafe7eb10d75a13
tree9965d1ae5158efbab27d062601cffe7323282b3d
parent79a8c4b0cd0bd96b3ade9bb86aacb2811ca071cc
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.

llvm-svn: 230863
llvm/lib/CodeGen/LiveInterval.cpp