diff options
author | Rui Ueyama <ruiu@google.com> | 2017-10-10 23:09:23 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2017-10-10 23:09:23 +0000 |
commit | ed94f361548d4ae8b1f2e99c22ffa49edfe8f6ec (patch) | |
tree | 2ea83f0b3f8d6b5588c7306c180d3ec185d6f4e6 | |
parent | fcc05627d43f3ab272005b7f314689625af03525 (diff) | |
download | bcm5719-llvm-ed94f361548d4ae8b1f2e99c22ffa49edfe8f6ec.tar.gz bcm5719-llvm-ed94f361548d4ae8b1f2e99c22ffa49edfe8f6ec.zip |
Remove an unused default argument.
llvm-svn: 315386
-rw-r--r-- | lld/ELF/InputSection.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/InputSection.h b/lld/ELF/InputSection.h index b3cc8624efb..dd3d3740c8d 100644 --- a/lld/ELF/InputSection.h +++ b/lld/ELF/InputSection.h @@ -214,7 +214,7 @@ private: // have to be as compact as possible, which is why we don't store the size (can // be found by looking at the next one) and put the hash in a side table. struct SectionPiece { - SectionPiece(size_t Off, bool Live = false) + SectionPiece(size_t Off, bool Live) : InputOff(Off), Live(Live || !Config->GcSections), OutputOff(-1) {} size_t InputOff : 8 * sizeof(ssize_t) - 1; |