mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
Do section switching right way for Mingw\Cygwin and Linux.
This will allow (after llvm-gcc linkage fix) more dummy tests using libstdc++ to pass on mingw :) llvm-svn: 31120
This commit is contained in:
parent
a07b38f113
commit
da7897a6c8
@ -180,12 +180,18 @@ bool X86SharedAsmPrinter::doFinalization(Module &M) {
|
||||
<< "\t.weak_definition " << name << "\n";
|
||||
SwitchToDataSection(".section __DATA,__const_coal,coalesced", I);
|
||||
} else if (Subtarget->isTargetCygwin()) {
|
||||
O << "\t.section\t.data$linkonce." << name << ",\"aw\"\n"
|
||||
<< "\t.globl " << name << "\n"
|
||||
std::string SectionName(".section\t.data$linkonce." +
|
||||
name +
|
||||
",\"aw\"\n");
|
||||
SwitchToDataSection(SectionName.c_str(), I);
|
||||
O << "\t.globl " << name << "\n"
|
||||
<< "\t.linkonce same_size\n";
|
||||
} else {
|
||||
O << "\t.section\t.llvm.linkonce.d." << name << ",\"aw\",@progbits\n"
|
||||
<< "\t.weak " << name << "\n";
|
||||
std::string SectionName("\t.section\t.llvm.linkonce.d." +
|
||||
name +
|
||||
",\"aw\",@progbits\n");
|
||||
SwitchToDataSection(SectionName.c_str(), I);
|
||||
O << "\t.weak " << name << "\n";
|
||||
}
|
||||
break;
|
||||
case GlobalValue::AppendingLinkage:
|
||||
|
Loading…
Reference in New Issue
Block a user