diff options
Diffstat (limited to 'lld/ELF/Thunks.cpp')
-rw-r--r-- | lld/ELF/Thunks.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/Thunks.cpp b/lld/ELF/Thunks.cpp index 099ac2c1fc3..3fcf225949d 100644 --- a/lld/ELF/Thunks.cpp +++ b/lld/ELF/Thunks.cpp @@ -225,7 +225,7 @@ template <class ELFT> void MipsThunk<ELFT>::addSymbols(ThunkSection<ELFT> &IS) { template <class ELFT> InputSection *MipsThunk<ELFT>::getTargetInputSection() const { - auto *DR = dyn_cast<DefinedRegular<ELFT>>(&this->Destination); + auto *DR = dyn_cast<DefinedRegular>(&this->Destination); return dyn_cast<InputSection>(DR->Section); } |