forked from OSchip/llvm-project
[ELF] Remove redundant override methods which just call base class functions
llvm-svn: 234356
This commit is contained in:
parent
0f764e57fc
commit
073e9fb5e1
|
@ -26,10 +26,6 @@ protected:
|
|||
// Add any runtime files and their atoms to the output
|
||||
void createImplicitFiles(std::vector<std::unique_ptr<File>> &) override;
|
||||
|
||||
void finalizeDefaultAtomValues() override {
|
||||
return DynamicLibraryWriter<ELFT>::finalizeDefaultAtomValues();
|
||||
}
|
||||
|
||||
private:
|
||||
class GOTFile : public SimpleFile {
|
||||
public:
|
||||
|
|
|
@ -25,10 +25,6 @@ protected:
|
|||
// Add any runtime files and their atoms to the output
|
||||
void createImplicitFiles(std::vector<std::unique_ptr<File>> &) override;
|
||||
|
||||
void finalizeDefaultAtomValues() override {
|
||||
return ExecutableWriter<ELFT>::finalizeDefaultAtomValues();
|
||||
}
|
||||
|
||||
private:
|
||||
class GOTFile : public SimpleFile {
|
||||
public:
|
||||
|
|
|
@ -24,10 +24,6 @@ protected:
|
|||
// Add any runtime files and their atoms to the output
|
||||
void createImplicitFiles(std::vector<std::unique_ptr<File>> &) override;
|
||||
|
||||
void finalizeDefaultAtomValues() override {
|
||||
return DynamicLibraryWriter<ELFT>::finalizeDefaultAtomValues();
|
||||
}
|
||||
|
||||
private:
|
||||
class GOTFile : public SimpleFile {
|
||||
public:
|
||||
|
|
|
@ -24,10 +24,6 @@ protected:
|
|||
// Add any runtime files and their atoms to the output
|
||||
void createImplicitFiles(std::vector<std::unique_ptr<File>> &) override;
|
||||
|
||||
void finalizeDefaultAtomValues() override {
|
||||
return ExecutableWriter<ELFT>::finalizeDefaultAtomValues();
|
||||
}
|
||||
|
||||
private:
|
||||
X86LinkingContext &_ctx;
|
||||
TargetLayout<ELFT> &_layout;
|
||||
|
|
|
@ -26,10 +26,6 @@ protected:
|
|||
// Add any runtime files and their atoms to the output
|
||||
void createImplicitFiles(std::vector<std::unique_ptr<File>> &) override;
|
||||
|
||||
void finalizeDefaultAtomValues() override {
|
||||
return DynamicLibraryWriter::finalizeDefaultAtomValues();
|
||||
}
|
||||
|
||||
private:
|
||||
class GOTFile : public SimpleFile {
|
||||
public:
|
||||
|
|
|
@ -33,10 +33,6 @@ protected:
|
|||
result.push_back(std::move(_gotFile));
|
||||
}
|
||||
|
||||
void finalizeDefaultAtomValues() override {
|
||||
return ExecutableWriter::finalizeDefaultAtomValues();
|
||||
}
|
||||
|
||||
private:
|
||||
class GOTFile : public SimpleFile {
|
||||
public:
|
||||
|
|
Loading…
Reference in New Issue