Remove default values which are always overwritten.

llvm-svn: 261913
diff --git a/lld/ELF/InputSection.h b/lld/ELF/InputSection.h
index 945b32a..9585a56 100644
--- a/lld/ELF/InputSection.h
+++ b/lld/ELF/InputSection.h
@@ -43,10 +43,10 @@
   InputSectionBase(ObjectFile<ELFT> *File, const Elf_Shdr *Header,
                    Kind SectionKind);
   OutputSectionBase<ELFT> *OutSec = nullptr;
-  uint32_t Align = 1;
+  uint32_t Align;
 
   // Used for garbage collection.
-  bool Live = false;
+  bool Live;
 
   // This pointer points to the "real" instance of this instance.
   // Usually Repl == this. However, if ICF merges two sections,