diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2016-02-22 20:49:58 +0000 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2016-02-22 20:49:58 +0000 |
commit | c5b668deb8848bca64e71efab5a3477857548e0f (patch) | |
tree | 18486a915fec62d41f58d03298bd7b60e2b2739a /llvm/lib/Target/Mips/MipsAsmPrinter.cpp | |
parent | 42bb25413302819745e302b87d3219cf137d3afe (diff) | |
download | bcm5719-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/Mips/MipsAsmPrinter.cpp')
-rw-r--r-- | llvm/lib/Target/Mips/MipsAsmPrinter.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/lib/Target/Mips/MipsAsmPrinter.cpp b/llvm/lib/Target/Mips/MipsAsmPrinter.cpp index 6c2d9830f4f..957529376b3 100644 --- a/llvm/lib/Target/Mips/MipsAsmPrinter.cpp +++ b/llvm/lib/Target/Mips/MipsAsmPrinter.cpp @@ -173,8 +173,9 @@ void MipsAsmPrinter::EmitInstruction(const MachineInstr *MI) { return; } - auto I = MI->getInstrIterator(); - auto E = MI->getParent()->instr_end(); + + MachineBasicBlock::const_instr_iterator I = MI->getIterator(); + MachineBasicBlock::const_instr_iterator E = MI->getParent()->instr_end(); do { // Do any auto-generated pseudo lowerings. |