Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2008-06-16 22:42:40 +0400
committerJeff Johnston <jjohnstn@redhat.com>2008-06-16 22:42:40 +0400
commit8ddb4e477e00ad8a96634b07a8a0c40dd2979440 (patch)
treeed5fdabb459879497b1af80eb244f075abc82542 /libgloss/m68k
parente161debaba6356c9a77353659c27e15e5eb87093 (diff)
2008-06-16 Corrin Meyer <cjmeyer@gmail.com>
* m68k/cf-crt1.c[__mcf_family_m1qe]: Don't access CACR.
Diffstat (limited to 'libgloss/m68k')
-rw-r--r--libgloss/m68k/cf-crt1.c2
1 files changed, 1 insertions, 1 deletions
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)