forked from OSchip/llvm-project
Let's try to fix GNU libstdc++ buildbots
llvm-svn: 245898
This commit is contained in:
parent
f3b9c895fa
commit
7a8b1150bf
|
@ -323,7 +323,7 @@ void MachineBasicBlock::printAsOperand(raw_ostream &OS,
|
|||
}
|
||||
|
||||
void MachineBasicBlock::removeLiveIn(unsigned Reg) {
|
||||
livein_iterator I = std::find(LiveIns.begin(), LiveIns.end(), Reg);
|
||||
livein_iterator I = std::find(livein_begin(), livein_end(), Reg);
|
||||
if (I != LiveIns.end())
|
||||
LiveIns.erase(I);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue