diff options
Diffstat (limited to 'lld/ELF/OutputSections.h')
-rw-r--r-- | lld/ELF/OutputSections.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/ELF/OutputSections.h b/lld/ELF/OutputSections.h index d4846bca0ea..83136b01a0e 100644 --- a/lld/ELF/OutputSections.h +++ b/lld/ELF/OutputSections.h @@ -170,8 +170,8 @@ private: template <class ELFT> struct DynamicReloc { typedef typename llvm::object::ELFFile<ELFT>::Elf_Rel Elf_Rel; - InputSectionBase<ELFT> &C; - const Elf_Rel &RI; + InputSectionBase<ELFT> *C; + const Elf_Rel *RI; }; template <class ELFT> |