diff options
author | Sandra Loosemore <sandra@codesourcery.com> | 2007-08-09 18:42:11 -0400 |
---|---|---|
committer | Sandra Loosemore <sandra@gcc.gnu.org> | 2007-08-09 18:42:11 -0400 |
commit | cc4ebe7d653fd9e76b95bd3d734f1faeb34e6d48 (patch) | |
tree | b32b1b83c82ae9777421f9b01ad4eac7070ec38f /gcc/config/mips/mips.opt | |
parent | c2df0359e66439d94c4d0ba8a053cbe644ce2f09 (diff) | |
download | gcc-cc4ebe7d653fd9e76b95bd3d734f1faeb34e6d48.zip gcc-cc4ebe7d653fd9e76b95bd3d734f1faeb34e6d48.tar.gz gcc-cc4ebe7d653fd9e76b95bd3d734f1faeb34e6d48.tar.bz2 |
mips.opt (mhard-float, [...]): Make these control TARGET_HARD_FLOAT_ABI and TARGET_SOFT_FLOAT_ABI...
2007-08-09 Sandra Loosemore <sandra@codesourcery.com>
gcc/
* config/mips/mips.opt (mhard-float, msoft-float): Make these
control TARGET_HARD_FLOAT_ABI and TARGET_SOFT_FLOAT_ABI, rather
than TARGET_HARD_FLOAT and TARGET_SOFT_FLOAT.
* config/mips/mips.h (mips16_hard_float): Delete.
(TARGET_HARD_FLOAT_ABI, TARGET_SOFT_FLOAT_ABI): Delete these
definitions, and replace with....
(TARGET_HARD_FLOAT, TARGET_SOFT_FLOAT): Define.
* config/mips/mips.c (mips16_hard_float): Delete. Replace
all references with (TARGET_MIPS16 && TARGET_HARD_FLOAT_ABI).
(MIPS_MARCH_CONTROLS_SOFT_FLOAT): Update comments.
(override_options): Replace MASK_SOFT_FLOAT references with
MASK_SOFT_FLOAT_ABI. Delete twiddling with MASK_SOFT_FLOAT
and mips16_hard_float when TARGET_MIPS16.
From-SVN: r127325
Diffstat (limited to 'gcc/config/mips/mips.opt')
-rw-r--r-- | gcc/config/mips/mips.opt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/mips/mips.opt b/gcc/config/mips/mips.opt index afb3301..4a752ec 100644 --- a/gcc/config/mips/mips.opt +++ b/gcc/config/mips/mips.opt @@ -145,8 +145,8 @@ Target Report RejectNegative Mask(64BIT) Use 64-bit general registers mhard-float -Target Report RejectNegative InverseMask(SOFT_FLOAT, HARD_FLOAT) -Allow the use of hardware floating-point instructions +Target Report RejectNegative InverseMask(SOFT_FLOAT_ABI, HARD_FLOAT_ABI) +Allow the use of hardware floating-point ABI and instructions mips Target RejectNegative Joined @@ -217,7 +217,7 @@ Target Report RejectNegative Mask(SMARTMIPS) Use SmartMIPS instructions msoft-float -Target Report RejectNegative Mask(SOFT_FLOAT) +Target Report RejectNegative Mask(SOFT_FLOAT_ABI) Prevent the use of all hardware floating-point instructions msplit-addresses |