summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2012-06-14 12:29:48 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2012-06-14 12:29:48 +0000
commit27bdc671ed36e2aae8013ac0b2da03443371e79b (patch)
tree67d16d8d5f81b633df769bdbd3a588c3e910e919 /llvm/lib/Target
parentb0ec375b96260aa2235ada67c5136c999c98389f (diff)
downloadbcm5719-llvm-27bdc671ed36e2aae8013ac0b2da03443371e79b.tar.gz
bcm5719-llvm-27bdc671ed36e2aae8013ac0b2da03443371e79b.zip
MipsLongBranch.cpp: Tweak llvm::next() to appease msvc.
llvm-svn: 158446
Diffstat (limited to 'llvm/lib/Target')
-rw-r--r--llvm/lib/Target/Mips/MipsLongBranch.cpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/llvm/lib/Target/Mips/MipsLongBranch.cpp b/llvm/lib/Target/Mips/MipsLongBranch.cpp
index 92b57722100..978c49ab30b 100644
--- a/llvm/lib/Target/Mips/MipsLongBranch.cpp
+++ b/llvm/lib/Target/Mips/MipsLongBranch.cpp
@@ -129,7 +129,7 @@ void MipsLongBranch::splitMBB(MachineBasicBlock *MBB) {
(!LastBr->isConditionalBranch() && !LastBr->isUnconditionalBranch()))
return;
- ReverseIter FirstBr = getNonDebugInstr(next(LastBr), End);
+ ReverseIter FirstBr = getNonDebugInstr(llvm::next(LastBr), End);
// MBB has only one branch instruction if FirstBr is not a branch
// instruction.
@@ -149,7 +149,7 @@ void MipsLongBranch::splitMBB(MachineBasicBlock *MBB) {
NewMBB->removeSuccessor(Tgt);
MBB->addSuccessor(NewMBB);
MBB->addSuccessor(Tgt);
- MF->insert(next(MachineFunction::iterator(MBB)), NewMBB);
+ MF->insert(llvm::next(MachineFunction::iterator(MBB)), NewMBB);
NewMBB->splice(NewMBB->end(), MBB, (++LastBr).base(), MBB->end());
}
@@ -319,10 +319,12 @@ void MipsLongBranch::expandToLongBranch(MBBInfo &I) {
// addiu $at, $at, %lo($tgt)
// jr $at
// nop
- I.Size += (addLongBranch(*MBB, next(Iter(I.Br)), Tgt, DL, true) - 1) * 4;
+ I.Size += (addLongBranch(*MBB, llvm::next(Iter(I.Br)), Tgt, DL, true)
+ - 1) * 4;
// Remove branch and clear InsideBundle bit of the next instruction.
- next(MachineBasicBlock::instr_iterator(I.Br))->setIsInsideBundle(false);
+ llvm::next(MachineBasicBlock::instr_iterator(I.Br))
+ ->setIsInsideBundle(false);
I.Br->eraseFromParent();
return;
}
@@ -346,7 +348,7 @@ void MipsLongBranch::expandToLongBranch(MBBInfo &I) {
// FallThrough:
MachineBasicBlock *NewMBB = MF->CreateMachineBasicBlock(MBB->getBasicBlock());
- MF->insert(next(MachineFunction::iterator(MBB)), NewMBB);
+ MF->insert(llvm::next(MachineFunction::iterator(MBB)), NewMBB);
MBB->removeSuccessor(Tgt);
MBB->addSuccessor(NewMBB);
NewMBB->addSuccessor(Tgt);
OpenPOWER on IntegriCloud