aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/VirtRegMap.cpp
diff options
context:
space:
mode:
authorJeff Cohen <jeffc@jolt-lang.org>2006-02-03 03:48:54 +0000
committerJeff Cohen <jeffc@jolt-lang.org>2006-02-03 03:48:54 +0000
commit2ba0b02e15d8ed79e0c42fd6f85ab6c142d93a8a (patch)
treead09a7ca15f45d1ef71369664acd5ed777cd9d79 /lib/CodeGen/VirtRegMap.cpp
parent109afed40bec552e4d37115c971e082e79eb0093 (diff)
Fix VC++ compilation error caused by using a std::map iterator variable to receive
a std::multimap iterator value. For some reason, GCC doesn't have a problem with this. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25927 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/VirtRegMap.cpp')
-rw-r--r--lib/CodeGen/VirtRegMap.cpp2
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++);