* readelf.c (get_parisc_segment_type): Handle PT_PARISC_WEAKORDER.

(get_parisc_section_type_name): Handle SHT_PARISC_DLKM.
This commit is contained in:
Dave Anglin 2005-08-13 23:59:43 +00:00
parent fbdbf38ba7
commit 614728199a
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2005-08-13 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
* readelf.c (get_parisc_segment_type): Handle PT_PARISC_WEAKORDER.
(get_parisc_section_type_name): Handle SHT_PARISC_DLKM.
2005-08-11 H.J. Lu <hongjiu.lu@intel.com>
* NEWS: Mention "-t/--section-details" and

View File

@ -2411,6 +2411,7 @@ get_parisc_segment_type (unsigned long type)
case PT_HP_CORE_UTSNAME: return "HP_CORE_UTSNAME";
case PT_PARISC_ARCHEXT: return "PARISC_ARCHEXT";
case PT_PARISC_UNWIND: return "PARISC_UNWIND";
case PT_PARISC_WEAKORDER: return "PARISC_WEAKORDER";
default:
break;
}
@ -2577,6 +2578,7 @@ get_parisc_section_type_name (unsigned int sh_type)
case SHT_PARISC_ANNOT: return "PARISC_ANNOT";
case SHT_PARISC_SYMEXTN: return "PARISC_SYMEXTN";
case SHT_PARISC_STUBS: return "PARISC_STUBS";
case SHT_PARISC_DLKM: return "PARISC_DLKM";
default:
break;
}