diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-07-19 13:44:39 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-07-19 13:44:39 +0000 |
commit | 63d62050aa1b5d136a12e1b19eef5f43f613f72f (patch) | |
tree | 972b142d7b2c8f48500a42a1a54ff6296f81207c /gcc/config | |
parent | 7b0353a04316799c1d23dea2ebb5629c503c1e2f (diff) | |
download | gcc-63d62050aa1b5d136a12e1b19eef5f43f613f72f.tar.gz |
Use MASK_* macros instead of explicit constants.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@12527 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/m68k/m68k-none.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gcc/config/m68k/m68k-none.h b/gcc/config/m68k/m68k-none.h index c93a16349bd..5ee2498ffff 100644 --- a/gcc/config/m68k/m68k-none.h +++ b/gcc/config/m68k/m68k-none.h @@ -94,13 +94,13 @@ Unrecognized value in TARGET_CPU_DEFAULT. /* Define one of __HAVE_68881__, __HAVE_FPA__, or nothing (soft float), appropriately. */ #undef CPP_FPU_SPEC -#if TARGET_DEFAULT & 02 +#if TARGET_DEFAULT & MASK_68881 /* ??? Why isn't m68302 treated like m68000 here? */ #define CPP_FPU_SPEC \ "%{!mc68000:%{!m68000:%{!m68332:%{!m5200:%{!msoft-float:%{mfpa:-D__HAVE_FPA__ }%{!mfpa:-D__HAVE_68881__ }}}}}}" #else /* This can't currently happen, but we code it anyway to show how it's done. */ -#if TARGET_DEFAULT & 0100 +#if TARGET_DEFAULT & MASK_FPA #define CPP_FPU_SPEC \ "%{!msoft-float:%{m68881:-D__HAVE_68881__ }%{!m68881:-D__HAVE_FPA__ }}" #else @@ -113,10 +113,12 @@ Unrecognized value in TARGET_CPU_DEFAULT. Other definitions depend on what the default cpu is and switches given to the compiler: - -m68000: define nothing else + -m68000, -mc68000: define nothing else + -m68010: define mc68010 -m68020, -mc68020: define mc68020 -m68030: define mc68030 -m68040: define mc68040 + -m68060: define mc68060 -m68020-40: define mc68020 mc68030 mc68040 -m68302: define mc68302 -m68332: define mc68332 |