diff options
author | Ralf Baechle <ralf@gnu.org> | 2001-01-15 06:56:14 +0100 |
---|---|---|
committer | Andreas Jaeger <aj@gcc.gnu.org> | 2001-01-15 06:56:14 +0100 |
commit | 1b26cad749848a2b8e1806a5727d1cea1b966617 (patch) | |
tree | 5dcfbcb4df58f815d1189848855f2018947206ab /gcc | |
parent | e5aed4e145dcdf60cb5d51a54ca7fa0d12d9e13a (diff) | |
download | gcc-1b26cad749848a2b8e1806a5727d1cea1b966617.zip gcc-1b26cad749848a2b8e1806a5727d1cea1b966617.tar.gz gcc-1b26cad749848a2b8e1806a5727d1cea1b966617.tar.bz2 |
linux.h (SUBTARGET_CPP_SPEC): Default ABI is 32; change SUBTARGET_CPP_SPEC apropriatly.
* config/mips/linux.h (SUBTARGET_CPP_SPEC): Default ABI is 32; change
SUBTARGET_CPP_SPEC apropriatly.
From-SVN: r39028
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/config/mips/linux.h | 4 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 45e1d59..a13862f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-01-14 Ralf Baechle <ralf@gnu.org> + + * config/mips/linux.h (SUBTARGET_CPP_SPEC): Default ABI is 32; change + SUBTARGET_CPP_SPEC apropriatly. + 2001-01-12 Mark Mitchell <mark@codesourcery.com> * varasm.c (make_decl_rtl): Fix typo in last change. @@ -54,7 +59,7 @@ Sun Jan 14 22:31:30 2001 J"orn Rennecke <amylaar@redhat.com> 2001-01-14 Richard Earnshaw <rearnsha@arm.com> - * config/arm/semi.h (ASM_SPEC): Pass -k to the assembler when + * config/arm/semi.h (ASM_SPEC): Pass -k to the assembler when compiling PIC. 2001-01-14 Kazu Hirata <kazu@hxi.com> diff --git a/gcc/config/mips/linux.h b/gcc/config/mips/linux.h index 313a1fe..e6dccb9 100644 --- a/gcc/config/mips/linux.h +++ b/gcc/config/mips/linux.h @@ -1,5 +1,5 @@ /* Definitions for MIPS running Linux-based GNU systems with ELF format. - Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc. + Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc. This file is part of GNU CC. @@ -99,7 +99,7 @@ Boston, MA 02111-1307, USA. */ %{mabi=32: -D_MIPS_SIM=_MIPS_SIM_ABI32} \ %{mabi=n32: -D_ABIN32=2 -D_MIPS_SIM=_ABIN32} \ %{mabi=64: -D_ABI64=3 -D_MIPS_SIM=_ABI64} \ -%{!mabi*: -D_ABIN32=2 -D_MIPS_SIM=_ABIN32} \ +%{!mabi*: -D_MIPS_SIM=_MIPS_SIM_ABI32} \ %{!mint64: -D_MIPS_SZINT=32}%{mint64: -D_MIPS_SZINT=64} \ %{mabi=32: -D_MIPS_SZLONG=32} \ %{mabi=n32: -D_MIPS_SZLONG=32} \ |