From: Roland McGrath Date: Wed, 23 Feb 2011 17:23:08 +0000 (-0800) Subject: Handle DW_AT_GNU_odr_signature in readelf. X-Git-Tag: elfutils-0.153~68 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=47c5323527dcc954d2d60e9ee87211597aabd101;p=thirdparty%2Felfutils.git Handle DW_AT_GNU_odr_signature in readelf. --- diff --git a/src/ChangeLog b/src/ChangeLog index d3d45b09f..c8b897a9a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2011-02-23 Roland McGrath + + * readelf.c (dwarf_attr_string): Grok DW_AT_GNU_odr_signature. + 2011-02-11 Roland McGrath * elfcmp.c (verbose): New variable. diff --git a/src/readelf.c b/src/readelf.c index 81ef6a9f4..0e50a6927 100644 --- a/src/readelf.c +++ b/src/readelf.c @@ -1,5 +1,5 @@ /* Print information from ELF file in human-readable form. - Copyright (C) 1999-2010 Red Hat, Inc. + Copyright (C) 1999-2011 Red Hat, Inc. This file is part of Red Hat elfutils. Written by Ulrich Drepper , 1999. @@ -3507,6 +3507,10 @@ dwarf_attr_string (unsigned int attrnum) result = "GNU_vector"; break; + case DW_AT_GNU_odr_signature: + result = "GNU_odr_signature"; + break; + case DW_AT_GNU_template_name: result = "GNU_template_name"; break;