From: Jeff Law Date: Sun, 17 Dec 1995 19:38:24 +0000 (-0700) Subject: * pa.c (override_options): Make 7100 scheduling the default. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c0bd9b243917331de29afdab528eedd8f607a8eb;p=gcc.git * pa.c (override_options): Make 7100 scheduling the default. From-SVN: r10792 --- diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index bc10baa63d4..baee1c57045 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -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";