mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-16 14:31:59 +00:00
make cygwin use its own stubs set, instead of overloading a darwin one.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75105 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
48a7d0257f
commit
1ebd3bfcbd
@ -351,11 +351,10 @@ void X86ATTAsmPrinter::print_pcrel_imm(const MachineInstr *MI, unsigned OpNo) {
|
||||
// Assemble call via PLT for externally visible symbols.
|
||||
if (MO.getTargetFlags() == X86II::MO_PLT)
|
||||
O << "@PLT";
|
||||
|
||||
|
||||
if (Subtarget->isTargetCygMing() && GV->isDeclaration())
|
||||
// Save function name for later type emission
|
||||
FnStubs.insert(Name);
|
||||
CygMingStubs.insert(Name);
|
||||
}
|
||||
|
||||
printOffset(MO.getOffset());
|
||||
@ -1050,7 +1049,7 @@ bool X86ATTAsmPrinter::doFinalization(Module &M) {
|
||||
O << "\t.subsections_via_symbols\n";
|
||||
} else if (Subtarget->isTargetCygMing()) {
|
||||
// Emit type information for external functions
|
||||
for (StringSet<>::iterator i = FnStubs.begin(), e = FnStubs.end();
|
||||
for (StringSet<>::iterator i = CygMingStubs.begin(), e = CygMingStubs.end();
|
||||
i != e; ++i) {
|
||||
O << "\t.def\t " << i->getKeyData()
|
||||
<< ";\t.scl\t" << COFF::C_EXT
|
||||
|
@ -199,7 +199,7 @@ class VISIBILITY_HIDDEN X86ATTAsmPrinter : public AsmPrinter {
|
||||
void emitFunctionHeader(const MachineFunction &MF);
|
||||
|
||||
// Necessary for Darwin to print out the apprioriate types of linker stubs
|
||||
StringSet<> FnStubs, GVStubs, HiddenGVStubs;
|
||||
StringSet<> FnStubs, GVStubs, HiddenGVStubs, CygMingStubs;
|
||||
|
||||
// Necessary for dllexport support
|
||||
StringSet<> DLLExportedFns, DLLExportedGVs;
|
||||
|
Loading…
x
Reference in New Issue
Block a user