diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-06-08 18:19:47 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-06-08 18:19:47 +0000 |
commit | da0f0eec6eda98904a3a04bcb690ea2b0afbbec0 (patch) | |
tree | 3765b0c3345b9333de5f01de3773548e7849f548 /gcc/config/m68k/altos3068.h | |
parent | 18906bd598482bdfad4cf045aa31cd090fb3bb4a (diff) | |
download | gcc-da0f0eec6eda98904a3a04bcb690ea2b0afbbec0.tar.gz |
(TARGET_DEFAULT): Use MASK_* macros instead of explicit constants in
definitions or conditionals.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@12245 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/m68k/altos3068.h')
-rw-r--r-- | gcc/config/m68k/altos3068.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gcc/config/m68k/altos3068.h b/gcc/config/m68k/altos3068.h index e778d4215b7..5903a12d5a6 100644 --- a/gcc/config/m68k/altos3068.h +++ b/gcc/config/m68k/altos3068.h @@ -1,8 +1,6 @@ /* Definitions of target machine for GNU compiler. Altos 3068 68020 version. - Copyright (C) 1988, 1989, 1993 Free Software Foundation, Inc. - -Written by Jyrki Kuoppala <jkp@cs.hut.fi> -Last modified: Mon Mar 6 22:47:58 1989 + Copyright (C) 1988, 1989, 1993, 1996 Free Software Foundation, Inc. + Contributed by Jyrki Kuoppala <jkp@cs.hut.fi> This file is part of GNU CC. @@ -28,7 +26,7 @@ Boston, MA 02111-1307, USA. */ /* 5 is without 68881. Change to 7 if you have 68881 */ #ifndef TARGET_DEFAULT -#define TARGET_DEFAULT 5 +#define TARGET_DEFAULT (MASK_BITFIELD|MASK_68020) /* Don't try using XFmode. */ #undef LONG_DOUBLE_TYPE_SIZE @@ -40,7 +38,7 @@ Boston, MA 02111-1307, USA. */ This will control the use of inline 68881 insns in certain macros. Also inform the program which CPU this is for. */ -#if TARGET_DEFAULT & 02 +#if TARGET_DEFAULT & MASK_68881 /* -m68881 is the default */ #define CPP_SPEC \ |