diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-10-29 19:24:52 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-10-29 19:24:52 +0000 |
commit | 1573a8e880a07821703fd6054caba91b5f8739fd (patch) | |
tree | 1d237fe2db73949f44b2358686e7582b4814091a /gdb/ppc-linux-tdep.c | |
parent | 4a2bba68033924d6e7ae9f599cd263d9e3522a5f (diff) | |
download | gdb-1573a8e880a07821703fd6054caba91b5f8739fd.tar.gz |
2003-10-29 Andrew Cagney <cagney@redhat.com>
* ppc-linux-tdep.c (_initialize_ppc_linux_tdep): Instead of the
default PPC machine, register 32-bit and 64-bit PPC, and rs6k.
Diffstat (limited to 'gdb/ppc-linux-tdep.c')
-rw-r--r-- | gdb/ppc-linux-tdep.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/gdb/ppc-linux-tdep.c b/gdb/ppc-linux-tdep.c index 6270292212f..397f61667f2 100644 --- a/gdb/ppc-linux-tdep.c +++ b/gdb/ppc-linux-tdep.c @@ -1083,7 +1083,13 @@ ppc_linux_init_abi (struct gdbarch_info info, void _initialize_ppc_linux_tdep (void) { - gdbarch_register_osabi (bfd_arch_powerpc, 0, GDB_OSABI_LINUX, - ppc_linux_init_abi); + /* Register for all sub-familes of the POWER/PowerPC: 32-bit and + 64-bit PowerPC, and the older rs6k. */ + gdbarch_register_osabi (bfd_arch_powerpc, bfd_mach_ppc, GDB_OSABI_LINUX, + ppc_linux_init_abi); + gdbarch_register_osabi (bfd_arch_powerpc, bfd_mach_ppc64, GDB_OSABI_LINUX, + ppc_linux_init_abi); + gdbarch_register_osabi (bfd_arch_rs6000, bfd_mach_rs6k, GDB_OSABI_LINUX, + ppc_linux_init_abi); add_core_fns (&ppc_linux_regset_core_fns); } |