From 1d415c335ef7cfd5e353434ab0a461f04ed3acdb Mon Sep 17 00:00:00 2001 From: George Rimar Date: Fri, 3 Nov 2017 13:19:41 +0000 Subject: [PATCH] [ELF] - Remove excessive field initialization. NFC. It is already initialized in header file to same value. llvm-svn: 317320 --- lld/ELF/InputSection.cpp | 1 - 1 file changed, 1 deletion(-) 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; -- 2.7.4