mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-17 04:24:00 +00:00
Add support for having multiple sections with the same name and comdat.
Using this in combination with -ffunction-sections allows LLVM to output a .o file with mulitple sections named .text. This saves space by avoiding long unique names of the form .text.<C++ mangled name>. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@228980 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -24,6 +24,9 @@ MCSectionELF::~MCSectionELF() {} // anchor.
|
||||
bool MCSectionELF::ShouldOmitSectionDirective(StringRef Name,
|
||||
const MCAsmInfo &MAI) const {
|
||||
|
||||
if (Unique)
|
||||
return false;
|
||||
|
||||
// FIXME: Does .section .bss/.data/.text work everywhere??
|
||||
if (Name == ".text" || Name == ".data" ||
|
||||
(Name == ".bss" && !MAI.usesELFSectionDirectiveForBSS()))
|
||||
@ -144,6 +147,10 @@ void MCSectionELF::PrintSwitchToSection(const MCAsmInfo &MAI,
|
||||
printName(OS, Group->getName());
|
||||
OS << ",comdat";
|
||||
}
|
||||
|
||||
if (Unique)
|
||||
OS << ",unique";
|
||||
|
||||
OS << '\n';
|
||||
|
||||
if (Subsection)
|
||||
|
Reference in New Issue
Block a user