forked from OSchip/llvm-project
parent
fcc05627d4
commit
ed94f36154
|
@ -214,7 +214,7 @@ private:
|
||||||
// have to be as compact as possible, which is why we don't store the size (can
|
// 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.
|
// be found by looking at the next one) and put the hash in a side table.
|
||||||
struct SectionPiece {
|
struct SectionPiece {
|
||||||
SectionPiece(size_t Off, bool Live = false)
|
SectionPiece(size_t Off, bool Live)
|
||||||
: InputOff(Off), Live(Live || !Config->GcSections), OutputOff(-1) {}
|
: InputOff(Off), Live(Live || !Config->GcSections), OutputOff(-1) {}
|
||||||
|
|
||||||
size_t InputOff : 8 * sizeof(ssize_t) - 1;
|
size_t InputOff : 8 * sizeof(ssize_t) - 1;
|
||||||
|
|
Loading…
Reference in New Issue