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:
authorCorinna Vinschen <corinna@vinschen.de>2010-07-19 20:57:18 +0400
committerCorinna Vinschen <corinna@vinschen.de>2010-07-19 20:57:18 +0400
commitfdd1a78d0774d1bae98b2781d3e5303ed8e0b004 (patch)
treed95e76276bd3fd176f69d2e7fde6c6b8aa8fdd87 /libgloss/m68k
parentbee6d43176c85f4d4eda2f829e7179a526a09b46 (diff)
* m68k/cf-crt1.c (hardware_init_hook): Accommodate new family
__mcf_family_51 since gcc 4.5.1.
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 bfcc32a03..3f37ae90d 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));
-#if !defined(__mcf_family_5213) && !defined(__mcf_family_51qe)
+#if !defined(__mcf_family_5213) && !defined(__mcf_family_51qe) && !defined(__mcf_family_51)
/* Flush & enable the caches */
#define CACR_CINV (1 << 24)
#define CACR_CENB (1 << 31)