diff options
author | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-05-19 10:28:30 +0000 |
---|---|---|
committer | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-05-19 10:28:30 +0000 |
commit | e6d2bdbb86e229756ba1032ad2baf93769f1fe74 (patch) | |
tree | 791f8b848e6bc3b9481757bcc51b22372389fd5d | |
parent | 8c3428a69401ce17fed2bd97381e18bc1fac82ca (diff) | |
download | gcc-e6d2bdbb86e229756ba1032ad2baf93769f1fe74.tar.gz |
* config/rs6000/eabispe.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Use the new
rs6000_explicit_options structure.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@99974 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/rs6000/eabispe.h | 10 |
2 files changed, 10 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4dd3f15cef1..ac2ac51a264 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-05-19 Nick Clifton <nickc@redhat.com> + + * config/rs6000/eabispe.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Use the + new rs6000_explicit_options structure. + 2005-05-19 Richard Henderson <rth@redhat.com> PR target/21390 diff --git a/gcc/config/rs6000/eabispe.h b/gcc/config/rs6000/eabispe.h index 3abad991b74..54d8ce4f2c7 100644 --- a/gcc/config/rs6000/eabispe.h +++ b/gcc/config/rs6000/eabispe.h @@ -30,16 +30,16 @@ #define SUBSUBTARGET_OVERRIDE_OPTIONS \ if (rs6000_select[1].string == NULL) \ rs6000_cpu = PROCESSOR_PPC8540; \ - if (rs6000_abi_string == NULL) \ + if (!rs6000_explicit_options.abi) \ rs6000_spe_abi = 1; \ - if (rs6000_float_gprs_string == NULL) \ + if (!rs6000_explicit_options.float_gprs) \ rs6000_float_gprs = 1; \ /* See note below. */ \ - /*if (rs6000_long_double_size_string == NULL)*/ \ + /*if (!rs6000_explicit_options.long_double)*/ \ /* rs6000_long_double_type_size = 128;*/ \ - if (rs6000_spe_string == NULL) \ + if (!rs6000_explicit_options.spe) \ rs6000_spe = 1; \ - if (rs6000_isel_string == NULL) \ + if (!rs6000_explicit_options.isel) \ rs6000_isel = 1; \ if (target_flags & MASK_64BIT) \ error ("-m64 not supported in this configuration") |