summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lld/ELF/InputSection.h2
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;
OpenPOWER on IntegriCloud