diff options
author | Ian Lance Taylor <iant@google.com> | 2007-12-07 19:32:59 +0000 |
---|---|---|
committer | Ian Lance Taylor <iant@google.com> | 2007-12-07 19:32:59 +0000 |
commit | e8c846c359fda086b5e550fc795cc1c05b6ee003 (patch) | |
tree | a7efff24a88e4874d11de980263ed408bd5d7a97 /gold/symtab.h | |
parent | c68cf8ad105b1605718ea48e5f0f118b35be5654 (diff) | |
download | gdb-e8c846c359fda086b5e550fc795cc1c05b6ee003.zip gdb-e8c846c359fda086b5e550fc795cc1c05b6ee003.tar.gz gdb-e8c846c359fda086b5e550fc795cc1c05b6ee003.tar.bz2 |
From Cary Coutant: Fix handling of RELATIVE RELA relocs.
Diffstat (limited to 'gold/symtab.h')
-rw-r--r-- | gold/symtab.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/gold/symtab.h b/gold/symtab.h index 6d2577b..a4f1106 100644 --- a/gold/symtab.h +++ b/gold/symtab.h @@ -541,19 +541,6 @@ class Symbol set_is_copied_from_dynobj() { this->is_copied_from_dynobj_ = true; } - // Mark this symbol as needing its value written to the GOT even when - // the value is subject to dynamic relocation (e.g., when the target - // uses a RELATIVE relocation for the GOT entry). - void - set_needs_value_in_got() - { this->needs_value_in_got_ = true; } - - // Return whether this symbol needs its value written to the GOT even - // when the value is subject to dynamic relocation. - bool - needs_value_in_got() const - { return this->needs_value_in_got_; } - protected: // Instances of this class should always be created at a specific // size. @@ -730,9 +717,6 @@ class Symbol // True if we are using a COPY reloc for this symbol, so that the // real definition lives in a dynamic object. bool is_copied_from_dynobj_ : 1; - // True if the static value should be written to the GOT even - // when the final value is subject to dynamic relocation. - bool needs_value_in_got_ : 1; }; // The parts of a symbol which are size specific. Using a template |