diff options
Diffstat (limited to 'lld/ELF/Writer.cpp')
-rw-r--r-- | lld/ELF/Writer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/Writer.cpp b/lld/ELF/Writer.cpp index b65bfe7bb87..2e31bfd7e81 100644 --- a/lld/ELF/Writer.cpp +++ b/lld/ELF/Writer.cpp @@ -1271,7 +1271,7 @@ template <class ELFT> void Writer<ELFT>::finalizeSections() { // at the end because some tags like RELSZ depend on result // of finalizing other sections. for (OutputSectionCommand *Cmd : OutputSectionCommands) - Cmd->Sec->finalize<ELFT>(); + Cmd->finalize<ELFT>(); // createThunks may have added local symbols to the static symbol table applySynthetic({InX::SymTab, InX::ShStrTab, InX::StrTab}, |