Just returning false is the default.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200890 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Rafael Espindola 2014-02-06 00:03:15 +00:00
parent a9ff3fd942
commit b725815069
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