mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-11 15:26:07 +00:00
Fix compilation error on MSVC.
llvm-svn: 57046
This commit is contained in:
parent
5944450d5f
commit
b9e76c172c
@ -653,7 +653,7 @@ void StrongPHIElimination::ScheduleCopies(MachineBasicBlock* MBB,
|
||||
std::map<unsigned, unsigned> map;
|
||||
|
||||
// Setup worklist of initial copies
|
||||
for (std::map<unsigned, unsigned>::iterator I = copy_set.begin(),
|
||||
for (std::multimap<unsigned, unsigned>::iterator I = copy_set.begin(),
|
||||
E = copy_set.end(); I != E; ) {
|
||||
map.insert(std::make_pair(I->first, I->first));
|
||||
map.insert(std::make_pair(I->second, I->second));
|
||||
|
Loading…
x
Reference in New Issue
Block a user