* hppa-hpux-tdep.c (_initialize_hppa_hpux_tdep): Use the correct

bfd arch_info when registering the GDB_OSABI_HPUX_ELF initialization
       routine.
This commit is contained in:
Joel Brobecker 2003-08-14 00:23:51 +00:00
parent ef417f4de3
commit 37ba2569e3
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2003-08-13 J. Brobecker <brobecker@gnat.com>
* hppa-hpux-tdep.c (_initialize_hppa_hpux_tdep): Use the correct
bfd arch_info when registering the GDB_OSABI_HPUX_ELF initialization
routine.
2003-08-13 Michael Snyder <msnyder@redhat.com>
* frv-tdep.c (frv_push_arguments): Use deprecated ftype.

View File

@ -118,6 +118,9 @@ _initialize_hppa_hpux_tdep (void)
{
gdbarch_register_osabi (bfd_arch_hppa, 0, GDB_OSABI_HPUX_SOM,
hppa_hpux_som_init_abi);
gdbarch_register_osabi (bfd_arch_hppa, 0, GDB_OSABI_HPUX_ELF,
/* FIXME brobecker 2003-08-13: The machine number 25 corresponds to
the hppa2.0w bfd arch_info. A #define should probably be defined
in bfd, instead of using this hard-coded number. */
gdbarch_register_osabi (bfd_arch_hppa, 25, GDB_OSABI_HPUX_ELF,
hppa_hpux_elf_init_abi);
}