mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-09 11:25:55 +00:00
Disambiguate else.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100423 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -347,11 +347,12 @@ void MipsAsmPrinter::EmitStartOfAsmFile(Module &M) {
|
|||||||
OutStreamer.EmitRawText("\t.section .mdebug." + Twine(getCurrentABIString()));
|
OutStreamer.EmitRawText("\t.section .mdebug." + Twine(getCurrentABIString()));
|
||||||
|
|
||||||
// TODO: handle O64 ABI
|
// TODO: handle O64 ABI
|
||||||
if (Subtarget->isABI_EABI())
|
if (Subtarget->isABI_EABI()) {
|
||||||
if (Subtarget->isGP32bit())
|
if (Subtarget->isGP32bit())
|
||||||
OutStreamer.EmitRawText(StringRef("\t.section .gcc_compiled_long32"));
|
OutStreamer.EmitRawText(StringRef("\t.section .gcc_compiled_long32"));
|
||||||
else
|
else
|
||||||
OutStreamer.EmitRawText(StringRef("\t.section .gcc_compiled_long64"));
|
OutStreamer.EmitRawText(StringRef("\t.section .gcc_compiled_long64"));
|
||||||
|
}
|
||||||
|
|
||||||
// return to previous section
|
// return to previous section
|
||||||
OutStreamer.EmitRawText(StringRef("\t.previous"));
|
OutStreamer.EmitRawText(StringRef("\t.previous"));
|
||||||
|
Reference in New Issue
Block a user