diff options
author | Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> | 2010-03-05 21:04:59 +0000 |
---|---|---|
committer | Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> | 2010-03-05 21:04:59 +0000 |
commit | 44ec90b93bb675836c5ebf1498463393f72acb97 (patch) | |
tree | 813b32cf553fd1284d2f727ed1075862ffa337a9 /elfcpp/elfcpp.h | |
parent | f870a310ee7fbfd6ccaea95d632063cbdbd2b9c9 (diff) | |
download | fsf-binutils-gdb-44ec90b93bb675836c5ebf1498463393f72acb97.zip fsf-binutils-gdb-44ec90b93bb675836c5ebf1498463393f72acb97.tar.gz fsf-binutils-gdb-44ec90b93bb675836c5ebf1498463393f72acb97.tar.bz2 |
include:
* elf/common.h (VER_FLG_*): Document.
(VER_FLG_INFO): Define.
gold:
* dynobj.h (Verdef::Verdef): Add is_info arg, is_info member
function, is_info_ member.
* dynobj.cc (Verdef::write): Set VER_FLG_INFO if this->is_info_.
(Versions::Versions): Update caller.
(Versions::define_base_version): Likewise.
(Versions::add_def): Likewise.
elfcpp:
* elfcpp.h (VER_FLG_INFO): Define.
binutils:
* readelf.c (get_ver_flags): Handle VER_FLG_INFO.
Diffstat (limited to 'elfcpp/elfcpp.h')
-rw-r--r-- | elfcpp/elfcpp.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/elfcpp/elfcpp.h b/elfcpp/elfcpp.h index 8ecbc0a..52b8b25 100644 --- a/elfcpp/elfcpp.h +++ b/elfcpp/elfcpp.h @@ -1,6 +1,6 @@ // elfcpp.h -- main header file for elfcpp -*- C++ -*- -// Copyright 2006, 2007, 2008, 2009 Free Software Foundation, Inc. +// Copyright 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. // Written by Ian Lance Taylor <iant@google.com>. // This file is part of elfcpp. @@ -784,6 +784,7 @@ const int VER_NEED_CURRENT = 1; const int VER_FLG_BASE = 0x1; const int VER_FLG_WEAK = 0x2; +const int VER_FLG_INFO = 0x4; // Special constants found in the SHT_GNU_versym entries. |