* m68k-tdep.c (m68k_gdbarch_init): Don't infer coldfire flavour
from the generic m68k arch.
This commit is contained in:
parent
34c8bcbae2
commit
4ed7793328
@ -1,3 +1,8 @@
|
|||||||
|
2007-06-30 Andreas Schwab <schwab@suse.de>
|
||||||
|
|
||||||
|
* m68k-tdep.c (m68k_gdbarch_init): Don't infer coldfire flavour
|
||||||
|
from the generic m68k arch.
|
||||||
|
|
||||||
2007-06-28 Michael Snyder <msnyder@access-company.com>
|
2007-06-28 Michael Snyder <msnyder@access-company.com>
|
||||||
|
|
||||||
* m2-typeprint.c (m2_print_type): Move pointer ref after null test
|
* m2-typeprint.c (m2_print_type): Move pointer ref after null test
|
||||||
|
@ -1110,14 +1110,14 @@ m68k_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
|
|||||||
and the type of long double depend on whether we're
|
and the type of long double depend on whether we're
|
||||||
on ColdFire or standard m68k. */
|
on ColdFire or standard m68k. */
|
||||||
|
|
||||||
if (info.bfd_arch_info)
|
if (info.bfd_arch_info && info.bfd_arch_info->mach != 0)
|
||||||
{
|
{
|
||||||
const bfd_arch_info_type *coldfire_arch =
|
const bfd_arch_info_type *coldfire_arch =
|
||||||
bfd_lookup_arch (bfd_arch_m68k, bfd_mach_mcf_isa_a_nodiv);
|
bfd_lookup_arch (bfd_arch_m68k, bfd_mach_mcf_isa_a_nodiv);
|
||||||
|
|
||||||
if (coldfire_arch
|
if (coldfire_arch
|
||||||
&& (*info.bfd_arch_info->compatible)
|
&& ((*info.bfd_arch_info->compatible)
|
||||||
(info.bfd_arch_info, coldfire_arch))
|
(info.bfd_arch_info, coldfire_arch)))
|
||||||
flavour = m68k_coldfire_flavour;
|
flavour = m68k_coldfire_flavour;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user