diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2016-04-26 20:45:31 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2016-04-26 20:45:31 +0000 |
commit | 6c75238aca1900d6c04034ef4ed7395ad79c0c1d (patch) | |
tree | e3592c34e12ec5732a1e72fd910f0f7ae202e732 /lld/ELF/OutputSections.cpp | |
parent | cf0dd1ebf27d0c5c50d4c64a7f3cdb89f8e45f08 (diff) | |
download | bcm5719-llvm-6c75238aca1900d6c04034ef4ed7395ad79c0c1d.tar.gz bcm5719-llvm-6c75238aca1900d6c04034ef4ed7395ad79c0c1d.zip |
Call repl in getSymbolBody. NFC.
Every caller was doing it.
llvm-svn: 267603
Diffstat (limited to 'lld/ELF/OutputSections.cpp')
-rw-r--r-- | lld/ELF/OutputSections.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/OutputSections.cpp b/lld/ELF/OutputSections.cpp index 146eaff0b7c..811ba80d862 100644 --- a/lld/ELF/OutputSections.cpp +++ b/lld/ELF/OutputSections.cpp @@ -1139,7 +1139,7 @@ void EHOutputSection<ELFT>::addSectionAux(EHInputSection<ELFT> *S, SymbolBody *Personality = nullptr; if (HasReloc) { uint32_t SymIndex = RelI->getSymbol(Config->Mips64EL); - Personality = &S->getFile()->getSymbolBody(SymIndex).repl(); + Personality = &S->getFile()->getSymbolBody(SymIndex); } std::pair<StringRef, SymbolBody *> CieInfo(Entry, Personality); |