mirror of
https://github.com/RPCS3/llvm.git
synced 2025-05-13 17:06:15 +00:00
Fix section definition.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33359 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8cd4c3e653
commit
471ffaffd8
@ -753,7 +753,7 @@ bool ARMAsmPrinter::doFinalization(Module &M) {
|
|||||||
<< "\t.weak_definition " << name << "\n";
|
<< "\t.weak_definition " << name << "\n";
|
||||||
SwitchToDataSection("\t.section __DATA,__const_coal,coalesced", I);
|
SwitchToDataSection("\t.section __DATA,__const_coal,coalesced", I);
|
||||||
} else {
|
} else {
|
||||||
O << "\t.section\t.llvm.linkonce.d." << name << ",\"aw\",@progbits\n"
|
O << "\t.section\t.llvm.linkonce.d." << name << ",\"aw\",%progbits\n"
|
||||||
<< "\t.weak " << name << "\n";
|
<< "\t.weak " << name << "\n";
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
@ -774,7 +774,7 @@ bool ARMAsmPrinter::doFinalization(Module &M) {
|
|||||||
I->getSection() == ".dtors")) {
|
I->getSection() == ".dtors")) {
|
||||||
assert(!Subtarget->isDarwin());
|
assert(!Subtarget->isDarwin());
|
||||||
std::string SectionName = ".section " + I->getSection();
|
std::string SectionName = ".section " + I->getSection();
|
||||||
SectionName += ",\"aw\",@progbits";
|
SectionName += ",\"aw\",%progbits";
|
||||||
SwitchToDataSection(SectionName.c_str());
|
SwitchToDataSection(SectionName.c_str());
|
||||||
} else {
|
} else {
|
||||||
SwitchToDataSection(TAI->getDataSection(), I);
|
SwitchToDataSection(TAI->getDataSection(), I);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user