diff options
Diffstat (limited to 'ELF/OutputSections.h')
| -rw-r--r-- | ELF/OutputSections.h | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/ELF/OutputSections.h b/ELF/OutputSections.h index 45e1a232e2a9..5c494bba977a 100644 --- a/ELF/OutputSections.h +++ b/ELF/OutputSections.h @@ -206,6 +206,7 @@ template <class ELFT> struct Out {    static uint8_t First;    static EhOutputSection<ELFT> *EhFrame;    static OutputSection<ELFT> *Bss; +  static OutputSection<ELFT> *BssRelRo;    static OutputSectionBase *Opd;    static uint8_t *OpdBuf;    static PhdrEntry *TlsPhdr; @@ -252,6 +253,7 @@ template <class ELFT> uint64_t getHeaderSize() {  template <class ELFT> uint8_t Out<ELFT>::First;  template <class ELFT> EhOutputSection<ELFT> *Out<ELFT>::EhFrame;  template <class ELFT> OutputSection<ELFT> *Out<ELFT>::Bss; +template <class ELFT> OutputSection<ELFT> *Out<ELFT>::BssRelRo;  template <class ELFT> OutputSectionBase *Out<ELFT>::Opd;  template <class ELFT> uint8_t *Out<ELFT>::OpdBuf;  template <class ELFT> PhdrEntry *Out<ELFT>::TlsPhdr;  | 
