We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1d7596 commit fe32de7Copy full SHA for fe32de7
1 file changed
include/eld/Readers/ELFSection.h
@@ -165,10 +165,6 @@ class ELFSection : public ELFSectionBase {
165
166
bool hasNoFragments() const { return HasNoFragments; }
167
168
- void setFancyOffset() { IsFancyOffset = true; }
169
-
170
- bool isFancyOffset() const { return IsFancyOffset; }
171
172
/// offset - An integer specifying the offset of this section in the file.
173
/// Before layouting, output's ELFSection::offset() should return zero.
174
uint64_t offset() const { return Offset; }
@@ -321,7 +317,6 @@ class ELFSection : public ELFSectionBase {
321
317
bool Wanted = false;
322
318
bool WantedInOutput = false;
323
319
bool IsFixedAddr = false;
324
- bool IsFancyOffset = false;
325
320
326
/// FIXME: We can just query the fragment list instead of storing this?
327
bool HasNoFragments = false;
0 commit comments