summaryrefslogtreecommitdiff
path: root/gcc/config/m68k/linux.h
diff options
context:
space:
mode:
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1996-06-08 18:19:47 +0000
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1996-06-08 18:19:47 +0000
commitda0f0eec6eda98904a3a04bcb690ea2b0afbbec0 (patch)
tree3765b0c3345b9333de5f01de3773548e7849f548 /gcc/config/m68k/linux.h
parent18906bd598482bdfad4cf045aa31cd090fb3bb4a (diff)
downloadgcc-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.h')
-rw-r--r--gcc/config/m68k/linux.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/m68k/linux.h b/gcc/config/m68k/linux.h
index 1d7ac32255f..5a53db14ba9 100644
--- a/gcc/config/m68k/linux.h
+++ b/gcc/config/m68k/linux.h
@@ -29,7 +29,7 @@ Boston, MA 02111-1307, USA. */
#define TARGET_VERSION fprintf (stderr, " (68k Linux/ELF)");
/* 68020 with 68881 */
-#define TARGET_DEFAULT 7
+#define TARGET_DEFAULT (MASK_BITFIELD|MASK_68881|MASK_68020)
/* for 68k machines this only needs to be TRUE for the 68000 */
@@ -104,7 +104,7 @@ Boston, MA 02111-1307, USA. */
"-D__ELF__ -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 \
"%{fPIC:-D__PIC__ -D__pic__} %{fpic:-D__PIC__ -D__pic__} %{!msoft-float:-D__HAVE_68881__} %{posix:-D_POSIX_SOURCE}"
#else