mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Need to increment the iterator.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44153 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7c6ad0c06e
commit
87075caa18
@ -342,7 +342,7 @@ void RALinScan::linearScan()
|
||||
|
||||
// expire any remaining inactive intervals
|
||||
DEBUG(for (IntervalPtrs::reverse_iterator
|
||||
i = inactive_.rbegin(); i != inactive_.rend(); )
|
||||
i = inactive_.rbegin(); i != inactive_.rend(); ++i)
|
||||
DOUT << "\tinterval " << *i->first << " expired\n");
|
||||
inactive_.clear();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user