diff options
Diffstat (limited to 'lib/CodeGen/VirtRegMap.cpp')
-rw-r--r-- | lib/CodeGen/VirtRegMap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/VirtRegMap.cpp b/lib/CodeGen/VirtRegMap.cpp index 8b08841ee9..0a66304ef5 100644 --- a/lib/CodeGen/VirtRegMap.cpp +++ b/lib/CodeGen/VirtRegMap.cpp @@ -234,7 +234,7 @@ namespace { void LocalSpiller::ClobberPhysRegOnly(unsigned PhysReg, std::map<int, unsigned> &SpillSlots, std::multimap<unsigned, int> &PhysRegsAvailable) { - std::map<unsigned, int>::iterator I = PhysRegsAvailable.lower_bound(PhysReg); + std::multimap<unsigned, int>::iterator I = PhysRegsAvailable.lower_bound(PhysReg); while (I != PhysRegsAvailable.end() && I->first == PhysReg) { int Slot = I->second; PhysRegsAvailable.erase(I++); |