mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-01 15:17:25 +00:00
Honor explicit section information on Darwin.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46267 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -958,8 +958,11 @@ bool DarwinAsmPrinter::doFinalization(Module &M) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (!I->isConstant())
|
||||
if (I->hasSection()) {
|
||||
// Honor all section names on Darwin; ObjC uses this
|
||||
std::string SectionName = ".section " + I->getSection();
|
||||
SwitchToDataSection(SectionName.c_str());
|
||||
} else if (!I->isConstant())
|
||||
SwitchToDataSection(TAI->getDataSection(), I);
|
||||
else {
|
||||
// Read-only data.
|
||||
|
||||
Reference in New Issue
Block a user