diff options
Diffstat (limited to 'ELF/Symbols.h')
-rw-r--r-- | ELF/Symbols.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ELF/Symbols.h b/ELF/Symbols.h index 406fd8e0f57b..773e1ad9588a 100644 --- a/ELF/Symbols.h +++ b/ELF/Symbols.h @@ -69,9 +69,9 @@ public: bool isLocal() const { return IsLocal; } bool isPreemptible() const; StringRef getName() const { return Name; } - void setName(StringRef S) { Name = S; } uint8_t getVisibility() const { return StOther & 0x3; } void parseSymbolVersion(); + void copy(SymbolBody *Other); bool isInGot() const { return GotIndex != -1U; } bool isInPlt() const { return PltIndex != -1U; } |