summaryrefslogtreecommitdiff
path: root/libebl
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>2007-04-25 03:09:33 +0000
committerRoland McGrath <roland@redhat.com>2007-04-25 03:09:33 +0000
commit4be1524398af8e24011cfdfa77c66832f8654a56 (patch)
tree84d4745346b459516ec67743a1b86b47793f146f /libebl
parent89d6b4c552a469482d2a358fb492d39eb22beb13 (diff)
downloadelfutils-4be1524398af8e24011cfdfa77c66832f8654a56.tar.gz
2007-04-24 Roland McGrath <roland@redhat.com>
* run-strip-test.sh: When we saved the debug info, test unstrip too.
Diffstat (limited to 'libebl')
-rw-r--r--libebl/ChangeLog4
-rw-r--r--libebl/eblcorenotetypename.c4
2 files changed, 7 insertions, 1 deletions
diff --git a/libebl/ChangeLog b/libebl/ChangeLog
index 6465e720..cda50af4 100644
--- a/libebl/ChangeLog
+++ b/libebl/ChangeLog
@@ -1,3 +1,7 @@
+2007-04-22 Roland McGrath <roland@redhat.com>
+
+ * eblcorenotetypename.c (ebl_core_note_type_name): Handle NT_PRXFPREG.
+
2007-03-10 Roland McGrath <roland@redhat.com>
* eblcorenote.c (ebl_core_note): For normally-zero types,
diff --git a/libebl/eblcorenotetypename.c b/libebl/eblcorenotetypename.c
index b439188b..c2b57f9e 100644
--- a/libebl/eblcorenotetypename.c
+++ b/libebl/eblcorenotetypename.c
@@ -1,5 +1,5 @@
/* Return note type name.
- Copyright (C) 2002 Red Hat, Inc.
+ Copyright (C) 2002, 2007 Red Hat, Inc.
This file is part of Red Hat elfutils.
Written by Ulrich Drepper <drepper@redhat.com>, 2002.
@@ -92,6 +92,8 @@ ebl_core_note_type_name (ebl, type, buf, len)
if (type < sizeof (knowntypes) / sizeof (knowntypes[0])
&& knowntypes[type] != NULL)
res = knowntypes[type];
+ else if (type == NT_PRXFPREG)
+ res = "PRXFPREG";
else
{
snprintf (buf, len, "%s: %" PRIu32, gettext ("<unknown>"), type);