1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Just returning false is the default.

llvm-svn: 200890
This commit is contained in:
Rafael Espindola 2014-02-06 00:03:15 +00:00
parent 1e0e825161
commit c27ddf11ba
4 changed files with 0 additions and 20 deletions

View File

@ -683,10 +683,6 @@ public:
MachO::CPU_TYPE_ARM,
Subtype);
}
virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
return false;
}
};
} // end anonymous namespace

View File

@ -170,10 +170,6 @@ namespace {
(is64 ? MachO::CPU_TYPE_POWERPC64 : MachO::CPU_TYPE_POWERPC),
MachO::CPU_SUBTYPE_POWERPC_ALL);
}
virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
return false;
}
};
class ELFPPCAsmBackend : public PPCAsmBackend {
@ -187,10 +183,6 @@ namespace {
bool is64 = getPointerSize() == 8;
return createPPCELFObjectWriter(OS, is64, OSABI);
}
virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
return false;
}
};
} // end anonymous namespace

View File

@ -141,10 +141,6 @@ namespace {
uint8_t OSABI = MCELFObjectTargetWriter::getOSABI(OSType);
return createSparcELFObjectWriter(OS, is64Bit(), OSABI);
}
virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
return false;
}
};
} // end anonymous namespace

View File

@ -70,10 +70,6 @@ public:
LLVM_OVERRIDE {
return createSystemZObjectWriter(OS, OSABI);
}
virtual bool doesSectionRequireSymbols(const MCSection &Section) const
LLVM_OVERRIDE {
return false;
}
};
} // end anonymous namespace