From 9b8285a4769308299e5a5fb84c87d6613541d67d Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Tue, 28 Aug 2007 04:11:50 +0000 Subject: Initialize plt_offset_ and has_plt_offset_ in a Symbol. --- gold/symtab.cc | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gold/symtab.cc') diff --git a/gold/symtab.cc b/gold/symtab.cc index 70fa890bcd..a570134983 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; } -- cgit v1.2.1