From: George Rimar Date: Fri, 3 Nov 2017 13:19:41 +0000 (+0000) Subject: [ELF] - Remove excessive field initialization. NFC. X-Git-Tag: llvmorg-6.0.0-rc1~4224 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1d415c335ef7cfd5e353434ab0a461f04ed3acdb;p=platform%2Fupstream%2Fllvm.git [ELF] - Remove excessive field initialization. NFC. It is already initialized in header file to same value. llvm-svn: 317320 --- diff --git a/lld/ELF/InputSection.cpp b/lld/ELF/InputSection.cpp index 2e99e3c..9164436 100644 --- a/lld/ELF/InputSection.cpp +++ b/lld/ELF/InputSection.cpp @@ -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;