diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-03 21:57:00 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-03 21:57:00 +0000 |
commit | feb01a100b305be28d698742d50dce1784985cfb (patch) | |
tree | 3263bf30b5c5064fb0a97e55c4d7bb574d9eadf2 /llvm/lib/Target/Mips/AsmPrinter/MipsAsmPrinter.cpp | |
parent | ec9bc28812e6b845e585a780116a9a81ee8fc208 (diff) | |
download | bcm5719-llvm-feb01a100b305be28d698742d50dce1784985cfb.tar.gz bcm5719-llvm-feb01a100b305be28d698742d50dce1784985cfb.zip |
this really shouldn't switch sections without telling the asmprinter, but
hey it uses .previous, so it should work :)
llvm-svn: 78004
Diffstat (limited to 'llvm/lib/Target/Mips/AsmPrinter/MipsAsmPrinter.cpp')
-rw-r--r-- | llvm/lib/Target/Mips/AsmPrinter/MipsAsmPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/Mips/AsmPrinter/MipsAsmPrinter.cpp b/llvm/lib/Target/Mips/AsmPrinter/MipsAsmPrinter.cpp index 2c5724e68a5..7666eaba51b 100644 --- a/llvm/lib/Target/Mips/AsmPrinter/MipsAsmPrinter.cpp +++ b/llvm/lib/Target/Mips/AsmPrinter/MipsAsmPrinter.cpp @@ -421,7 +421,7 @@ printFCCOperand(const MachineInstr *MI, int opNum, const char *Modifier) { } bool MipsAsmPrinter::doInitialization(Module &M) { - // FIXME: Use SwitchToDataSection. + // FIXME: Use SwitchToSection. // Tell the assembler which ABI we are using O << "\t.section .mdebug." << emitCurrentABIString() << '\n'; |