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 | c8bfb7a49d6de5a6259df7cbf3b320f232b0d022 (patch) | |
tree | 61bf6d1b2a6e28718144cacca18e6a6fae8432a7 /lib/Target | |
parent | b5257664795d49ada0d4669fe8ed1cd49c04fbf3 (diff) | |
download | external_llvm-c8bfb7a49d6de5a6259df7cbf3b320f232b0d022.zip external_llvm-c8bfb7a49d6de5a6259df7cbf3b320f232b0d022.tar.gz external_llvm-c8bfb7a49d6de5a6259df7cbf3b320f232b0d022.tar.bz2 |
this really shouldn't switch sections without telling the asmprinter, but
hey it uses .previous, so it should work :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78004 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target')
-rw-r--r-- | lib/Target/Mips/AsmPrinter/MipsAsmPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/Mips/AsmPrinter/MipsAsmPrinter.cpp b/lib/Target/Mips/AsmPrinter/MipsAsmPrinter.cpp index 2c5724e..7666eab 100644 --- a/lib/Target/Mips/AsmPrinter/MipsAsmPrinter.cpp +++ b/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'; |