]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
linuxspe.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Use rs6000_explicit_options.
authorAldy Hernandez <aldyh@redhat.com>
Wed, 8 Jun 2005 20:14:19 +0000 (20:14 +0000)
committerAldy Hernandez <aldyh@gcc.gnu.org>
Wed, 8 Jun 2005 20:14:19 +0000 (20:14 +0000)
* config/rs6000/linuxspe.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Use
rs6000_explicit_options.

From-SVN: r100775

gcc/ChangeLog
gcc/config/rs6000/linuxspe.h

index 2d5c57c183cdb3aeb3a7ad0c87a6edde97ba5e0e..d900474a6918b5b385ef6a597d5069deb349f945 100644 (file)
@@ -1,3 +1,8 @@
+2005-06-08  Aldy Hernandez  <aldyh@redhat.com>
+
+       * config/rs6000/linuxspe.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Use
+       rs6000_explicit_options.
+
 2005-06-08  Richard Henderson  <rth@redhat.com>
 
        * config/ia64/ia64.h (FUNCTION_PROFILER): Move implementation ...
index f4e02ebf624eff418bd858768ce508bf73fdb3d9..be48fe29acc8ec9238c98fd9ab858c666cbe43c9 100644 (file)
 #define SUBSUBTARGET_OVERRIDE_OPTIONS \
   if (rs6000_select[1].string == NULL) \
     rs6000_cpu = PROCESSOR_PPC8540; \
-  if (rs6000_abi_string == NULL || strstr (rs6000_abi_string, "spe") == 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")