summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/X86/X86FrameLowering.cpp
diff options
context:
space:
mode:
authorDuncan P. N. Exon Smith <dexonsmith@apple.com>2016-02-22 20:49:58 +0000
committerDuncan P. N. Exon Smith <dexonsmith@apple.com>2016-02-22 20:49:58 +0000
commitc5b668deb8848bca64e71efab5a3477857548e0f (patch)
tree18486a915fec62d41f58d03298bd7b60e2b2739a /llvm/lib/Target/X86/X86FrameLowering.cpp
parent42bb25413302819745e302b87d3219cf137d3afe (diff)
downloadbcm5719-llvm-c5b668deb8848bca64e71efab5a3477857548e0f.tar.gz
bcm5719-llvm-c5b668deb8848bca64e71efab5a3477857548e0f.zip
Revert "CodeGen: MachineInstr::getIterator() => getInstrIterator(), NFC"
This reverts commit r261504, since it's not obvious the new name is better: http://lists.llvm.org/pipermail/llvm-commits/Week-of-Mon-20160222/334298.html I'll recommit if we get consensus that it's the right direction. llvm-svn: 261567
Diffstat (limited to 'llvm/lib/Target/X86/X86FrameLowering.cpp')
-rw-r--r--llvm/lib/Target/X86/X86FrameLowering.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Target/X86/X86FrameLowering.cpp b/llvm/lib/Target/X86/X86FrameLowering.cpp
index db802c3a7e3..378204f6c0c 100644
--- a/llvm/lib/Target/X86/X86FrameLowering.cpp
+++ b/llvm/lib/Target/X86/X86FrameLowering.cpp
@@ -464,8 +464,7 @@ void X86FrameLowering::inlineStackProbe(MachineFunction &MF,
if (ChkStkStub != nullptr) {
assert(!ChkStkStub->isBundled() &&
"Not expecting bundled instructions here");
- MachineBasicBlock::iterator MBBI =
- std::next(ChkStkStub->getInstrIterator());
+ MachineBasicBlock::iterator MBBI = std::next(ChkStkStub->getIterator());
assert(std::prev(MBBI).operator==(ChkStkStub) &&
"MBBI expected after __chkstk_stub.");
DebugLoc DL = PrologMBB.findDebugLoc(MBBI);
OpenPOWER on IntegriCloud