Let's try to fix GNU libstdc++ buildbots

llvm-svn: 245898
This commit is contained in:
Matthias Braun 2015-08-24 23:19:39 +00:00
parent f3b9c895fa
commit 7a8b1150bf
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}