summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>2007-11-09 22:44:26 +0000
committerRoland McGrath <roland@redhat.com>2007-11-09 22:44:26 +0000
commit07a696ef21bb513992093221be11b312443c62f9 (patch)
treeb057eccefc3e6dd4916541f82d30050f921f151a
parent6b72bb7ee1a51c8140310ab3a5d654876b2ec967 (diff)
2007-11-09 Roland McGrath <roland@redhat.com>
* readelf.c (attr_callback): Handle DW_AT_data_location.
-rw-r--r--config/elfutils.spec.in8
-rw-r--r--configure.ac2
-rw-r--r--src/ChangeLog4
-rw-r--r--src/readelf.c2
4 files changed, 7 insertions, 9 deletions
diff --git a/config/elfutils.spec.in b/config/elfutils.spec.in
index 4f8f3cf7..ffcf129e 100644
--- a/config/elfutils.spec.in
+++ b/config/elfutils.spec.in
@@ -180,14 +180,6 @@ rm -rf ${RPM_BUILD_ROOT}
%{_libdir}/libelf.a
%changelog
-* Sun Nov 11 2007 Ulrich Drepper <drepper@redhat.com> 0.131-1
-- libdw: DW_FORM_ref_addr support; dwarf_formref entry point now depreca
-ted; bug fixes for oddly-formatted DWARF
-- libdwfl: bug fixes in offline archive support, symbol table handling;
- apply partial relocations for dwfl_module_address_section on
-ET_REL
-- libebl: powerpc backend support for Altivec registers
-
* Mon Oct 15 2007 Ulrich Drepper <drepper@redhat.com> 0.130-1
- readelf: -p option can take an argument like -x for one section,
or no argument (as before) for all SHF_STRINGS sections;
diff --git a/configure.ac b/configure.ac
index b89f9a42..bf08914e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -16,7 +16,7 @@ dnl You should have received a copy of the GNU General Public License
dnl along with this program; if not, write to the Free Software Foundation,
dnl Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
dnl
-AC_INIT([Red Hat elfutils],[0.131],[http://bugzilla.redhat.com/bugzilla/],
+AC_INIT([Red Hat elfutils],[0.130],[http://bugzilla.redhat.com/bugzilla/],
[elfutils])
AC_CONFIG_AUX_DIR([config])
diff --git a/src/ChangeLog b/src/ChangeLog
index df4305c2..20436a1a 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
+2007-11-09 Roland McGrath <roland@redhat.com>
+
+ * readelf.c (attr_callback): Handle DW_AT_data_location.
+
2007-10-20 Roland McGrath <roland@redhat.com>
* unstrip.c (options): Update -R description.
diff --git a/src/readelf.c b/src/readelf.c
index 2197d840..83949b7c 100644
--- a/src/readelf.c
+++ b/src/readelf.c
@@ -4104,6 +4104,7 @@ attr_callback (Dwarf_Attribute *attrp, void *arg)
switch (attr)
{
case DW_AT_location:
+ case DW_AT_data_location:
case DW_AT_data_member_location:
case DW_AT_vtable_elem_location:
case DW_AT_string_length:
@@ -4192,6 +4193,7 @@ attr_callback (Dwarf_Attribute *attrp, void *arg)
switch (attr)
{
case DW_AT_location:
+ case DW_AT_data_location:
case DW_AT_data_member_location:
case DW_AT_vtable_elem_location:
case DW_AT_string_length: