* 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:
parent
ef417f4de3
commit
37ba2569e3
2 changed files with 10 additions and 1 deletions
|
@ -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>
|
2003-08-13 Michael Snyder <msnyder@redhat.com>
|
||||||
|
|
||||||
* frv-tdep.c (frv_push_arguments): Use deprecated ftype.
|
* frv-tdep.c (frv_push_arguments): Use deprecated ftype.
|
||||||
|
|
|
@ -118,6 +118,9 @@ _initialize_hppa_hpux_tdep (void)
|
||||||
{
|
{
|
||||||
gdbarch_register_osabi (bfd_arch_hppa, 0, GDB_OSABI_HPUX_SOM,
|
gdbarch_register_osabi (bfd_arch_hppa, 0, GDB_OSABI_HPUX_SOM,
|
||||||
hppa_hpux_som_init_abi);
|
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);
|
hppa_hpux_elf_init_abi);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue