diff options
author | Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de> | 2004-02-11 10:15:17 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2004-02-11 10:15:17 +0000 |
commit | 7f9be2564e0d9d3f6f5bec2af54f5ac5594f7be3 (patch) | |
tree | eb6f5996b9d181e53787abe0d079b47febd9c57f /gcc/config/mips/linux64.h | |
parent | 6d0ef01e47ee5fa08d471d5801417942ecfdb3f9 (diff) | |
download | gcc-7f9be2564e0d9d3f6f5bec2af54f5ac5594f7be3.zip gcc-7f9be2564e0d9d3f6f5bec2af54f5ac5594f7be3.tar.gz gcc-7f9be2564e0d9d3f6f5bec2af54f5ac5594f7be3.tar.bz2 |
mips.h (TARGET_OLDABI): Define.
* config/mips/mips.h (TARGET_OLDABI): Define. Use TARGET_NEWABI and
TARGET_LODABI consistently.
* config/mips/mips.c (function_arg,mips_setup_incoming_varargs,
mips_va_arg,override_options,compute_frame_size,
mips_initial_elimination_offset,mips16_fp_args,build_mips16_call_stub
,mips_return_in_memory,mips_strict_argument_naming): Use TARGET_NEWABI
and TARGET_LODABI consistently.
* config/mips/mips.md (exception_receiver): Likewise.
* config/mips/linux64.h: Likewise.
From-SVN: r77643
Diffstat (limited to 'gcc/config/mips/linux64.h')
-rw-r--r-- | gcc/config/mips/linux64.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/config/mips/linux64.h b/gcc/config/mips/linux64.h index bac5d63..99ca55e 100644 --- a/gcc/config/mips/linux64.h +++ b/gcc/config/mips/linux64.h @@ -74,8 +74,7 @@ Boston, MA 02111-1307, USA. */ %{mabi=32:-melf32%{EB:b}%{EL:l}tsmip}" #undef LOCAL_LABEL_PREFIX -#define LOCAL_LABEL_PREFIX ((mips_abi == ABI_32 || mips_abi == ABI_O64) \ - ? "$" : ".") +#define LOCAL_LABEL_PREFIX (TARGET_OLDABI ? "$" : ".") /* The size in bytes of a DWARF field indicating an offset or length relative to a debug info section, specified to be 4 bytes in the DWARF-2 |