diff options
author | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2007-08-18 02:05:24 +0000 |
---|---|---|
committer | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2007-08-18 02:05:24 +0000 |
commit | 833a1f9b55eefca50b09e79169ff486879717d62 (patch) | |
tree | 8649c73d25dbef08088cb3bbcab4f5ae0677aa00 /llvm/lib/Target/Mips/MipsAsmPrinter.cpp | |
parent | 57921895901d26d90929e886f6cded63902ca6e4 (diff) | |
download | bcm5719-llvm-833a1f9b55eefca50b09e79169ff486879717d62.tar.gz bcm5719-llvm-833a1f9b55eefca50b09e79169ff486879717d62.zip |
Couple of small changes. Delay Slot handle header declared.
Newline added after macros at function init on generated asm!
llvm-svn: 41157
Diffstat (limited to 'llvm/lib/Target/Mips/MipsAsmPrinter.cpp')
-rw-r--r-- | llvm/lib/Target/Mips/MipsAsmPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/Mips/MipsAsmPrinter.cpp b/llvm/lib/Target/Mips/MipsAsmPrinter.cpp index 563386be131..48879ee3e38 100644 --- a/llvm/lib/Target/Mips/MipsAsmPrinter.cpp +++ b/llvm/lib/Target/Mips/MipsAsmPrinter.cpp @@ -209,9 +209,9 @@ emitFunctionStart(MachineFunction &MF) emitFrameDirective(MF); emitMaskDirective(MF); emitFMaskDirective(); - emitSetDirective(NOREORDER); emitSetDirective(NOMACRO); + O << "\n"; } /// Emit the directives used by GAS on the end of functions |