diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog index cd5b1e323..14e7fcfed 100644 --- a/libgloss/ChangeLog +++ b/libgloss/ChangeLog @@ -1,3 +1,7 @@ +2008-06-16 Corrin Meyer + + * m68k/cf-crt1.c[__mcf_family_m1qe]: Don't access CACR. + 2008-05-20 Nick Clifton * iq2000/crt0.S (__dso_handle): Define (weak). diff --git a/libgloss/m68k/cf-crt1.c b/libgloss/m68k/cf-crt1.c index fb569675c..bfcc32a03 100644 --- a/libgloss/m68k/cf-crt1.c +++ b/libgloss/m68k/cf-crt1.c @@ -68,7 +68,7 @@ void __attribute__ ((weak)) hardware_init_hook (void) /* Set the VBR. */ __asm__ __volatile__ ("movec.l %0,%/vbr" :: "r" (__interrupt_vector)); -#ifndef __mcf_family_5213 +#if !defined(__mcf_family_5213) && !defined(__mcf_family_51qe) /* Flush & enable the caches */ #define CACR_CINV (1 << 24) #define CACR_CENB (1 << 31)