diff options
author | Ian Lance Taylor <iant@google.com> | 2007-08-28 04:11:50 +0000 |
---|---|---|
committer | Ian Lance Taylor <iant@google.com> | 2007-08-28 04:11:50 +0000 |
commit | f4151f8959c7788640722b2a4dceb5b5abab9595 (patch) | |
tree | b7e99f19a0da071d3df0e1e771b5be97fec7fe93 /gold/symtab.cc | |
parent | 218c002443b8513213618e5bcf12fdf19c1b25ad (diff) | |
download | gdb-f4151f8959c7788640722b2a4dceb5b5abab9595.zip gdb-f4151f8959c7788640722b2a4dceb5b5abab9595.tar.gz gdb-f4151f8959c7788640722b2a4dceb5b5abab9595.tar.bz2 |
Initialize plt_offset_ and has_plt_offset_ in a Symbol.
Diffstat (limited to 'gold/symtab.cc')
-rw-r--r-- | gold/symtab.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gold/symtab.cc b/gold/symtab.cc index 70fa890..a570134 100644 --- a/gold/symtab.cc +++ b/gold/symtab.cc @@ -31,6 +31,7 @@ Symbol::init_fields(const char* name, const char* version, this->symtab_index_ = 0; this->dynsym_index_ = 0; this->got_offset_ = 0; + this->plt_offset_ = 0; this->type_ = type; this->binding_ = binding; this->visibility_ = visibility; @@ -42,6 +43,7 @@ Symbol::init_fields(const char* name, const char* version, this->in_reg_ = false; this->in_dyn_ = false; this->has_got_offset_ = false; + this->has_plt_offset_ = false; this->has_warning_ = false; } |