pa.c (override_options): Change default to 7100LC
authorJerry Quinn <jquinn@nortelnetworks.com>
Sun, 28 Feb 1999 01:01:34 +0000 (01:01 +0000)
committerJeff Law <law@gcc.gnu.org>
Sun, 28 Feb 1999 01:01:34 +0000 (18:01 -0700)
        * pa.c (override_options): Change default to 7100LC

Co-Authored-By: Mike Stump <mrs@wrs.com>
From-SVN: r25493

gcc/ChangeLog
gcc/config/pa/pa.c

index f5a8d22d4a76fb7fa0cc163e35f88816c35a1db5..ac8959eb43c77912047767257a5ca74cc24b7ad0 100644 (file)
@@ -1,6 +1,8 @@
 Sat Feb 27 23:21:47 1999  Jerry Quinn <jquinn@nortelnetworks.com>
                          Mike Stump <mrs@wrs.com>
 
+       * pa.c (override_options): Change default to 7100LC
+
        * pa.h (REG_ALLOC_ORDER): Change order to allocate left half of
        float regs before right half of float regs.
 
index 82a69c40f2c595d3f832ef765ced244c81bfc828..cb178ca1d79d2b66a4cbdc1fde4e70b7eed097a4 100644 (file)
@@ -96,11 +96,8 @@ static int max_unscaled_index_insn_codes_uid;
 void
 override_options ()
 {
-  /* Default to 7100 scheduling.  If the 7100LC scheduling ever
-     gets reasonably tuned, it should be the default since that
-     what most PAs sold now are.  */
-  if (pa_cpu_string == NULL
-      || ! strcmp (pa_cpu_string, "7100"))
+  /* Default to 7100LC scheduling.  */
+  if (! strcmp (pa_cpu_string, "7100"))
     {
       pa_cpu_string = "7100";
       pa_cpu = PROCESSOR_7100;
@@ -110,7 +107,8 @@ override_options ()
       pa_cpu_string = "700";
       pa_cpu = PROCESSOR_700;
     }
-  else if (! strcmp (pa_cpu_string, "7100LC"))
+  else if (pa_cpu_string == NULL
+         || ! strcmp (pa_cpu_string, "7100LC"))
     {
       pa_cpu_string = "7100LC";
       pa_cpu = PROCESSOR_7100LC;