diff options
author | Tim Northover <tnorthover@apple.com> | 2015-11-05 21:54:58 +0000 |
---|---|---|
committer | Tim Northover <tnorthover@apple.com> | 2015-11-05 21:54:58 +0000 |
commit | 775aaeb7656dc3529a32e2cf2fd84aba5a189b7e (patch) | |
tree | b017c2e7e6ad4981f8727f8eca9395758b0d312a /llvm/lib/Target/Mips/Mips16FrameLowering.cpp | |
parent | 3f22bf947d3c7534ffd44bcc2bd23afb042d52a8 (diff) | |
download | bcm5719-llvm-775aaeb7656dc3529a32e2cf2fd84aba5a189b7e.tar.gz bcm5719-llvm-775aaeb7656dc3529a32e2cf2fd84aba5a189b7e.zip |
Remove windows line endings introduced by r252177. NFC.
llvm-svn: 252217
Diffstat (limited to 'llvm/lib/Target/Mips/Mips16FrameLowering.cpp')
-rw-r--r-- | llvm/lib/Target/Mips/Mips16FrameLowering.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/llvm/lib/Target/Mips/Mips16FrameLowering.cpp b/llvm/lib/Target/Mips/Mips16FrameLowering.cpp index 7994c61fcdd..26426c08716 100644 --- a/llvm/lib/Target/Mips/Mips16FrameLowering.cpp +++ b/llvm/lib/Target/Mips/Mips16FrameLowering.cpp @@ -36,17 +36,17 @@ void Mips16FrameLowering::emitPrologue(MachineFunction &MF, MachineBasicBlock &MBB) const { assert(&MF.front() == &MBB && "Shrink-wrapping not yet supported"); MachineFrameInfo *MFI = MF.getFrameInfo(); - const Mips16InstrInfo &TII =
- *static_cast<const Mips16InstrInfo *>(STI.getInstrInfo());
- MachineBasicBlock::iterator MBBI = MBB.begin();
-
- // Debug location must be unknown since the first debug location is used
- // to determine the end of the prologue.
- DebugLoc dl;
-
- uint64_t StackSize = MFI->getStackSize();
-
- // No need to allocate space on the stack.
+ const Mips16InstrInfo &TII = + *static_cast<const Mips16InstrInfo *>(STI.getInstrInfo()); + MachineBasicBlock::iterator MBBI = MBB.begin(); + + // Debug location must be unknown since the first debug location is used + // to determine the end of the prologue. + DebugLoc dl; + + uint64_t StackSize = MFI->getStackSize(); + + // No need to allocate space on the stack. if (StackSize == 0 && !MFI->adjustsStack()) return; MachineModuleInfo &MMI = MF.getMMI(); |