summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH.J. Lu <hjl@lucon.org>2000-05-02 17:57:02 +0000
committerH.J. Lu <hjl@lucon.org>2000-05-02 17:57:02 +0000
commit9eb4b9e00257f733d64a4d2ae7e7c5b26e28cf89 (patch)
treee73d17ffc0af9e21d334f921d71880da17396ab3
parent75ebe3f20356fd866d725602aa6f3e61e435b90a (diff)
downloadgdb-9eb4b9e00257f733d64a4d2ae7e7c5b26e28cf89.tar.gz
2000-05-02 H.J. Lu <hjl@gnu.org>
* ia64-tdep.c (ia64_gdbarch_init): Reference to ELFOSABI_NONE instead of ELFOSABI_SYSV.
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/ia64-tdep.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 2bf0f1feaa0..2a6214fb150 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2000-05-02 H.J. Lu <hjl@gnu.org>
+
+ * ia64-tdep.c (ia64_gdbarch_init): Reference to ELFOSABI_NONE
+ instead of ELFOSABI_SYSV.
+
Tue May 2 19:07:20 2000 Andrew Cagney <cagney@b1.cygnus.com>
* gdbarch.sh (NPC_REGNUM, NNPC_REGNUM): Add.
diff --git a/gdb/ia64-tdep.c b/gdb/ia64-tdep.c
index 2ff87806a14..e220e27b503 100644
--- a/gdb/ia64-tdep.c
+++ b/gdb/ia64-tdep.c
@@ -1897,7 +1897,7 @@ ia64_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
os_ident = elf_elfheader (info.abfd)->e_ident[EI_OSABI];
/* If os_ident is 0, it is not necessarily the case that we're on a
- SYSV system. (ELFOSABI_SYSV is defined to be 0.) GNU/Linux uses
+ SYSV system. (ELFOSABI_NONE is defined to be 0.) GNU/Linux uses
a note section to record OS/ABI info, but leaves e_ident[EI_OSABI]
zero. So we have to check for note sections too. */
if (os_ident == 0)