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/linux-aout.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/linux-aout.h')
-rw-r--r-- | gcc/config/m68k/linux-aout.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/m68k/linux-aout.h b/gcc/config/m68k/linux-aout.h index 980d08f72f9..b21e76bf6a9 100644 --- a/gcc/config/m68k/linux-aout.h +++ b/gcc/config/m68k/linux-aout.h @@ -1,5 +1,5 @@ /* Definitions for Motorola m68k running Linux - Copyright (C) 1995 Free Software Foundation, Inc. + Copyright (C) 1995, 1996 Free Software Foundation, Inc. This file is part of GNU CC. @@ -22,7 +22,7 @@ Boston, MA 02111-1307, USA. */ #include <linux-aout.h> /* 68020 with 68881 */ -#define TARGET_DEFAULT 7 +#define TARGET_DEFAULT (MASK_BITFIELD|MASK_68881|MASK_68020) #define DBX_DEBUGGING_INFO @@ -30,7 +30,7 @@ Boston, MA 02111-1307, USA. */ "-Dunix -Dmc68000 -Dmc68020 -Dlinux -Asystem(unix) -Asystem(posix) -Acpu(m68k) -Amachine(m68k)" #undef CPP_SPEC -#if TARGET_DEFAULT & 2 +#if TARGET_DEFAULT & MASK_68881 #define CPP_SPEC \ "%{!msoft-float:-D__HAVE_68881__} %{posix:-D_POSIX_SOURCE}" #else |