Remove initializer that are always set by the constructor.

llvm-svn: 265939
This commit is contained in:
Rafael Espindola 2016-04-11 13:47:35 +00:00
parent 571452c11f
commit ac568f9ea4
1 changed files with 5 additions and 5 deletions

View File

@ -176,11 +176,11 @@ template <class ELFT> struct DynamicReloc {
typedef typename ELFT::uint uintX_t;
uint32_t Type;
SymbolBody *Sym = nullptr;
OutputSectionBase<ELFT> *OffsetSec = nullptr;
uintX_t OffsetInSec = 0;
bool UseSymVA = false;
uintX_t Addend = 0;
SymbolBody *Sym;
OutputSectionBase<ELFT> *OffsetSec;
uintX_t OffsetInSec;
bool UseSymVA;
uintX_t Addend;
DynamicReloc(uint32_t Type, OutputSectionBase<ELFT> *OffsetSec,
uintX_t OffsetInSec, bool UseSymVA, SymbolBody *Sym,