Move field to the base class. NFC.
authorRafael Espindola <rafael.espindola@gmail.com>
Wed, 7 Sep 2016 20:41:19 +0000 (20:41 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Wed, 7 Sep 2016 20:41:19 +0000 (20:41 +0000)
llvm-svn: 280858

lld/ELF/InputSection.h

index 7529e4e..47d0e29 100644 (file)
@@ -53,6 +53,8 @@ public:
   bool Compressed;
   // If a section is compressed, this vector has uncompressed section data.
   SmallVector<char, 0> Uncompressed;
+
+  std::vector<Relocation> Relocations;
 };
 
 // This corresponds to a section of an input file.
@@ -102,7 +104,6 @@ public:
   void uncompress();
 
   void relocate(uint8_t *Buf, uint8_t *BufEnd);
-  std::vector<Relocation> Relocations;
 };
 
 template <class ELFT> InputSectionBase<ELFT> InputSectionBase<ELFT>::Discarded;