From 9b12c500635117c977f5b64bc0fe23749aaf9acd Mon Sep 17 00:00:00 2001 From: Cary Coutant Date: Mon, 10 Mar 2014 13:38:20 -0700 Subject: [PATCH] Add function to set non-visibility part of st_other. 2014-03-10 Sasa Stankovic gold/ * symtab.h (Symbol::set_nonvis): New function. --- gold/ChangeLog | 4 ++++ gold/symtab.h | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/gold/ChangeLog b/gold/ChangeLog index 1e21236da0..6f1d88c6a6 100644 --- a/gold/ChangeLog +++ b/gold/ChangeLog @@ -1,3 +1,7 @@ +2014-03-10 Sasa Stankovic + + * symtab.h (Symbol::set_nonvis): New function. + 2014-03-10 Sasa Stankovic * symtab.cc (Sized_symbol<32>::init_output_data): diff --git a/gold/symtab.h b/gold/symtab.h index e50411f4fb..b06c7b4b18 100644 --- a/gold/symtab.h +++ b/gold/symtab.h @@ -259,6 +259,11 @@ class Symbol nonvis() const { return this->nonvis_; } + // Set the non-visibility part of the st_other field. + void + set_nonvis(unsigned int nonvis) + { this->nonvis_ = nonvis; } + // Return whether this symbol is a forwarder. This will never be // true of a symbol found in the hash table, but may be true of // symbol pointers attached to object files.