diff options
author | Andreas Krebbel <krebbel1@de.ibm.com> | 2007-03-19 08:46:57 +0000 |
---|---|---|
committer | Andreas Krebbel <krebbel@gcc.gnu.org> | 2007-03-19 08:46:57 +0000 |
commit | 3443392a8a5ec38a0e1c58689c166e025226b802 (patch) | |
tree | 424ef0516d90005fc4c736c199941d07d7d83da5 /gcc/config.gcc | |
parent | c413e1b5beea151b19a980d40906c5a874c1bc32 (diff) | |
download | gcc-3443392a8a5ec38a0e1c58689c166e025226b802.zip gcc-3443392a8a5ec38a0e1c58689c166e025226b802.tar.gz gcc-3443392a8a5ec38a0e1c58689c166e025226b802.tar.bz2 |
s390.opt ("mhard-float", [...]): Bit value inverted and documentation adjusted.
2007-03-19 Andreas Krebbel <krebbel1@de.ibm.com>
* config/s390/s390.opt ("mhard-float", "msoft-float"): Bit value
inverted and documentation adjusted.
("mhard-dfp", "msoft-dfp"): New options.
* config/s390/s390.c (s390_handle_arch_option): New architecture
switch: z9-ec.
(override_options): Sanity checks for the new options added.
* config.gcc: New architecture switch: z9-ec.
* config/s390/s390.h (processor_flags): PF_DFP added.
(TARGET_CPU_DFP, TARGET_DFP): Macro definitions added.
(TARGET_DEFAULT): Due to the s390.opt changes hard float is enabled
when the bit is NOT set so remove it from the defaults.
From-SVN: r123055
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index c8fecaa..e1c0fed 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -3023,7 +3023,7 @@ case "${target}" in for which in arch tune; do eval "val=\$with_$which" case ${val} in - "" | g5 | g6 | z900 | z990 | z9-109) + "" | g5 | g6 | z900 | z990 | z9-109 | z9-ec) # OK ;; *) |