diff options
author | Nick Clifton <nickc@redhat.com> | 2000-01-11 17:53:33 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-01-11 17:53:33 +0000 |
commit | 2d0e6f43d34855cf0d970894af0a19fdbbccade7 (patch) | |
tree | 1da96771f2fc91afac68406c18315df91a0fe24d /binutils | |
parent | 0d06e24ba79bdc3617c5e56a2c32b3a7f28a4bd5 (diff) | |
download | gdb-2d0e6f43d34855cf0d970894af0a19fdbbccade7.zip gdb-2d0e6f43d34855cf0d970894af0a19fdbbccade7.tar.gz gdb-2d0e6f43d34855cf0d970894af0a19fdbbccade7.tar.bz2 |
Fix mistakes made about interpretation of ELF ABI spec
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/readelf.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 4604630..146834b 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2000-01-11 Nick Clifton <nickc@cygnus.com> + + * readelf.c (get_dynamic_type): Remove DT_ENCODING. + 2000-01-10 Nick Clifton <nickc@cygnus.com> * readelf.c (get_note_type): Display NT_WIN32PSTATUS notes. diff --git a/binutils/readelf.c b/binutils/readelf.c index 0c8feb5..bc6fbc8 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -1059,7 +1059,7 @@ get_dynamic_type (type) case DT_FINI_ARRAYSZ: return "FINI_ARRAYSZ"; case DT_RUNPATH: return "RUNPATH"; case DT_FLAGS: return "FLAGS"; - case DT_ENCODING: return "ENCODING"; + case DT_PREINIT_ARRAY: return "PREINIT_ARRAY"; case DT_PREINIT_ARRAYSZ: return "PREINIT_ARRAYSZ"; |