diff options
Diffstat (limited to 'gold/symtab.h')
-rw-r--r-- | gold/symtab.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gold/symtab.h b/gold/symtab.h index b6e5504..9c7fb09 100644 --- a/gold/symtab.h +++ b/gold/symtab.h @@ -598,6 +598,11 @@ class Symbol void override_base_with_special(const Symbol* from); + // Allocate a common symbol by giving it a location in the output + // file. + void + allocate_base_common(Output_data*); + private: Symbol(const Symbol&); Symbol& operator=(const Symbol&); @@ -798,6 +803,11 @@ class Sized_symbol : public Symbol set_value(Value_type value) { this->value_ = value; } + // Allocate a common symbol by giving it a location in the output + // file. + void + allocate_common(Output_data*, Value_type value); + private: Sized_symbol(const Sized_symbol&); Sized_symbol& operator=(const Sized_symbol&); |