[ELF] - Remove excessive field initialization. NFC.
authorGeorge Rimar <grimar@accesssoftek.com>
Fri, 3 Nov 2017 13:19:41 +0000 (13:19 +0000)
committerGeorge Rimar <grimar@accesssoftek.com>
Fri, 3 Nov 2017 13:19:41 +0000 (13:19 +0000)
It is already initialized in header file to same value.

llvm-svn: 317320

lld/ELF/InputSection.cpp

index 2e99e3c..9164436 100644 (file)
@@ -87,7 +87,6 @@ InputSectionBase::InputSectionBase(InputFile *File, uint64_t Flags,
     : SectionBase(SectionKind, Name, Flags, Entsize, Alignment, Type, Info,
                   Link),
       File(File), Data(Data), Repl(this) {
-  Assigned = false;
   NumRelocations = 0;
   AreRelocsRela = false;