diff options
| author | Rui Ueyama <ruiu@google.com> | 2016-02-25 18:49:09 +0000 |
|---|---|---|
| committer | Rui Ueyama <ruiu@google.com> | 2016-02-25 18:49:09 +0000 |
| commit | 6a9ef8550c49c774189551253053656f4e50f3f2 (patch) | |
| tree | 298dad98814bb50a7f46483a4d5fbc6ae5a148b3 | |
| parent | 0b28952993ae0f0d17153b4059900c60013ecb63 (diff) | |
| download | bcm5719-llvm-6a9ef8550c49c774189551253053656f4e50f3f2.tar.gz bcm5719-llvm-6a9ef8550c49c774189551253053656f4e50f3f2.zip | |
Remove default values which are always overwritten.
llvm-svn: 261913
| -rw-r--r-- | lld/ELF/InputSection.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/ELF/InputSection.h b/lld/ELF/InputSection.h index 945b32a84c2..9585a568378 100644 --- a/lld/ELF/InputSection.h +++ b/lld/ELF/InputSection.h @@ -43,10 +43,10 @@ public: 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, |

