OSDN Git Service

2003-04-21 Aldy Hernandez <aldyh@redhat.com>
authoraldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 21 Apr 2003 21:47:58 +0000 (21:47 +0000)
committeraldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 21 Apr 2003 21:47:58 +0000 (21:47 +0000)
        * config/rs6000/rs6000.c (rs6000_override_options): No SPE means
        64-bit long doubles.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@65911 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/config/rs6000/rs6000.c

index bd2f9e6..9f9c42a 100644 (file)
@@ -731,6 +731,11 @@ rs6000_override_options (default_cpu)
         MASK_STRING above when optimizing for size.  */
       if ((target_flags & MASK_STRING) != 0)
        target_flags = target_flags & ~MASK_STRING;
+
+      /* No SPE means 64-bit long doubles, even if an E500.  */
+      if (rs6000_spe_string != 0
+          && !strcmp (rs6000_spe_string, "no"))
+       rs6000_long_double_type_size = 64;
     }
   else if (rs6000_select[1].string != NULL)
     {
@@ -745,6 +750,8 @@ rs6000_override_options (default_cpu)
        rs6000_float_gprs = 0;
       if (rs6000_isel_string == 0)
        rs6000_isel = 0;
+      if (rs6000_long_double_size_string == 0)
+       rs6000_long_double_type_size = 64;
     }
 
   /* Handle -m(no-)longcall option.  This is a bit of a cheap hack,