diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-10-20 00:15:20 +0000 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-10-20 00:15:20 +0000 |
commit | 7869148c4741f30893159e028ad991bd2e0a5d63 (patch) | |
tree | 03f9363bcf587246bf23e346ab2405b3890d952a /llvm/lib/Target/Mips/Mips16FrameLowering.cpp | |
parent | e75e5d8afa67ec827216cdcf61d09fb91291d059 (diff) | |
download | bcm5719-llvm-7869148c4741f30893159e028ad991bd2e0a5d63.tar.gz bcm5719-llvm-7869148c4741f30893159e028ad991bd2e0a5d63.zip |
Mips: Remove implicit ilist iterator conversions, NFC
llvm-svn: 250769
Diffstat (limited to 'llvm/lib/Target/Mips/Mips16FrameLowering.cpp')
-rw-r--r-- | llvm/lib/Target/Mips/Mips16FrameLowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/Mips/Mips16FrameLowering.cpp b/llvm/lib/Target/Mips/Mips16FrameLowering.cpp index 46cc99c6239..71c2bdba2f9 100644 --- a/llvm/lib/Target/Mips/Mips16FrameLowering.cpp +++ b/llvm/lib/Target/Mips/Mips16FrameLowering.cpp @@ -107,7 +107,7 @@ spillCalleeSavedRegisters(MachineBasicBlock &MBB, const std::vector<CalleeSavedInfo> &CSI, const TargetRegisterInfo *TRI) const { MachineFunction *MF = MBB.getParent(); - MachineBasicBlock *EntryBlock = MF->begin(); + MachineBasicBlock *EntryBlock = &MF->front(); // // Registers RA, S0,S1 are the callee saved registers and they |