* rs6000-tdep.c (rs6000_gdbarch_init): For xcoff executables, set

``mach'' to the value determined by bfd_default_set_arch_mach().
This commit is contained in:
Kevin Buettner 2003-04-03 17:56:25 +00:00
parent ed4c619a67
commit 35cec84181
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2003-04-03 Kevin Buettner <kevinb@redhat.com>
* rs6000-tdep.c (rs6000_gdbarch_init): For xcoff executables, set
``mach'' to the value determined by bfd_default_set_arch_mach().
2003-04-02 Bob Rossi <bob_rossi@cox.net>
* Makefile.in (SUBDIR_MI_OBS): Add "mi-cmd-file.o".

View File

@ -2741,9 +2741,9 @@ rs6000_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
else
{
arch = bfd_arch_powerpc;
mach = 0;
bfd_default_set_arch_mach (&abfd, arch, mach);
bfd_default_set_arch_mach (&abfd, arch, 0);
info.bfd_arch_info = bfd_get_arch_info (&abfd);
mach = info.bfd_arch_info->mach;
}
tdep = xmalloc (sizeof (struct gdbarch_tdep));
tdep->wordsize = wordsize;