mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 18:32:50 +00:00
emit .subsections_via_symbols through MCStreamer instead of textually.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84509 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4a071d667d
commit
74cd3b7ceb
@ -1291,7 +1291,7 @@ void ARMAsmPrinter::EmitEndOfAsmFile(Module &M) {
|
||||
// implementation of multiple entry points). If this doesn't occur, the
|
||||
// linker can safely perform dead code stripping. Since LLVM never
|
||||
// generates code that does this, it is always safe to set.
|
||||
O << "\t.subsections_via_symbols\n";
|
||||
OutStreamer.EmitAssemblerFlag(MCStreamer::SubsectionsViaSymbols);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1129,7 +1129,7 @@ bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
|
||||
// implementation of multiple entry points). If this doesn't occur, the
|
||||
// linker can safely perform dead code stripping. Since LLVM never generates
|
||||
// code that does this, it is always safe to set.
|
||||
O << "\t.subsections_via_symbols\n";
|
||||
OutStreamer.EmitAssemblerFlag(MCStreamer::SubsectionsViaSymbols);
|
||||
|
||||
return AsmPrinter::doFinalization(M);
|
||||
}
|
||||
|
@ -870,7 +870,9 @@ void X86AsmPrinter::EmitEndOfAsmFile(Module &M) {
|
||||
// implementation of multiple entry points). If this doesn't occur, the
|
||||
// linker can safely perform dead code stripping. Since LLVM never
|
||||
// generates code that does this, it is always safe to set.
|
||||
O << "\t.subsections_via_symbols\n";
|
||||
//O << "\t.subsections_via_symbols\n";
|
||||
|
||||
OutStreamer.EmitAssemblerFlag(MCStreamer::SubsectionsViaSymbols);
|
||||
}
|
||||
|
||||
if (Subtarget->isTargetCOFF()) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user