* readelf.c (dynamic_segment_ia64_val): Print address and newline

for sections by default.  Comment fix.
This commit is contained in:
Jakub Jelinek 2003-07-01 15:54:15 +00:00
parent bac0268913
commit bdf4d63a1d
2 changed files with 12 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2003-07-01 Jakub Jelinek <jakub@redhat.com>
* readelf.c (dynamic_segment_ia64_val): Print address and newline
for sections by default. Comment fix.
2003-06-28 Danny Smith <dannysmith@users.sourceforge.net>
* rcparse.y (res_text_field): New res_id variable.

View File

@ -4671,12 +4671,17 @@ dynamic_segment_ia64_val (entry)
switch (entry->d_tag)
{
case DT_IA_64_PLT_RESERVE:
/* First 3 bytes reserved. */
/* First 3 slots reserved. */
print_vma (entry->d_un.d_ptr, PREFIX_HEX);
printf (" -- ");
print_vma (entry->d_un.d_ptr + (3 * 8), PREFIX_HEX);
printf ("\n");
break;
default:
print_vma (entry->d_un.d_ptr, PREFIX_HEX);
break;
}
putchar ('\n');
}
static int