// 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());
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
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;