From ed94f361548d4ae8b1f2e99c22ffa49edfe8f6ec Mon Sep 17 00:00:00 2001 From: Rui Ueyama Date: Tue, 10 Oct 2017 23:09:23 +0000 Subject: [PATCH] Remove an unused default argument. llvm-svn: 315386 --- lld/ELF/InputSection.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lld/ELF/InputSection.h b/lld/ELF/InputSection.h index b3cc8624efbe..dd3d3740c8de 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;