forked from OSchip/llvm-project
COFF: Remove ExportSection, which has been dead since r114823
llvm-svn: 190887
This commit is contained in:
parent
e7af7bd8d0
commit
50689eb917
|
@ -154,7 +154,6 @@ public:
|
|||
void MakeSymbolReal(COFFSymbol &S, size_t Index);
|
||||
void MakeSectionReal(COFFSection &S, size_t Number);
|
||||
|
||||
bool ExportSection(COFFSection const *S);
|
||||
bool ExportSymbol(MCSymbolData const &SymbolData, MCAssembler &Asm);
|
||||
|
||||
bool IsPhysicalSection(COFFSection *S);
|
||||
|
@ -497,10 +496,6 @@ void WinCOFFObjectWriter::MakeSymbolReal(COFFSymbol &S, size_t Index) {
|
|||
S.Index = Index;
|
||||
}
|
||||
|
||||
bool WinCOFFObjectWriter::ExportSection(COFFSection const *S) {
|
||||
return !S->MCData->getFragmentList().empty();
|
||||
}
|
||||
|
||||
bool WinCOFFObjectWriter::ExportSymbol(MCSymbolData const &SymbolData,
|
||||
MCAssembler &Asm) {
|
||||
// This doesn't seem to be right. Strings referred to from the .data section
|
||||
|
|
Loading…
Reference in New Issue