OSDN Git Service

* pa.c (override_options): Make 7100 scheduling the default.
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 17 Dec 1995 19:38:24 +0000 (19:38 +0000)
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 17 Dec 1995 19:38:24 +0000 (19:38 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@10792 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/config/pa/pa.c

index bc10baa..baee1c5 100644 (file)
@@ -75,19 +75,20 @@ int n_deferred_plabels = 0;
 void
 override_options ()
 {
-  /* Default to 700 scheduling which is reasonable for older 800 processors
-     correct for the 700s, and not too bad for the 7100s and 7100LCs.  */
+  /* 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, "700"))
-    {
-      pa_cpu_string = "700";
-      pa_cpu = PROCESSOR_700;
-    }
-  else if (! strcmp (pa_cpu_string, "7100"))
+      || ! strcmp (pa_cpu_string, "7100"))
     {
       pa_cpu_string = "7100";
       pa_cpu = PROCESSOR_7100;
     }
+  else if (! strcmp (pa_cpu_string, "700"))
+    {
+      pa_cpu_string = "700";
+      pa_cpu = PROCESSOR_700;
+    }
   else if (! strcmp (pa_cpu_string, "7100LC"))
     {
       pa_cpu_string = "7100LC";