aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Target/ARM/ARMFrameLowering.cpp
diff options
context:
space:
mode:
authorDuncan P. N. Exon Smith <dexonsmith@apple.com>2016-02-27 20:01:33 +0000
committerDuncan P. N. Exon Smith <dexonsmith@apple.com>2016-02-27 20:01:33 +0000
commitfd8cc23220d25dfe6956470da8bd63d26649c428 (patch)
tree121ce8d85170b862228e2a15d45da0bc7ad8b68b /llvm/lib/Target/ARM/ARMFrameLowering.cpp
parent982224cfb8de39337e977219b3571c5a87aca4ce (diff)
downloadllvm-fd8cc23220d25dfe6956470da8bd63d26649c428.zip
llvm-fd8cc23220d25dfe6956470da8bd63d26649c428.tar.gz
llvm-fd8cc23220d25dfe6956470da8bd63d26649c428.tar.bz2
CodeGen: Change MachineInstr to use MachineInstr&, NFC
Change MachineInstr API to prefer MachineInstr& over MachineInstr* whenever the parameter is expected to be non-null. Slowly inching toward being able to fix PR26753. llvm-svn: 262149
Diffstat (limited to 'llvm/lib/Target/ARM/ARMFrameLowering.cpp')
-rw-r--r--llvm/lib/Target/ARM/ARMFrameLowering.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMFrameLowering.cpp b/llvm/lib/Target/ARM/ARMFrameLowering.cpp
index c5990bb..fec2224 100644
--- a/llvm/lib/Target/ARM/ARMFrameLowering.cpp
+++ b/llvm/lib/Target/ARM/ARMFrameLowering.cpp
@@ -1027,7 +1027,7 @@ void ARMFrameLowering::emitPopInst(MachineBasicBlock &MBB,
for (unsigned i = 0, e = Regs.size(); i < e; ++i)
MIB.addReg(Regs[i], getDefRegState(true));
if (DeleteRet && MI != MBB.end()) {
- MIB.copyImplicitOps(&*MI);
+ MIB.copyImplicitOps(*MI);
MI->eraseFromParent();
}
MI = MIB;