From: law Date: Sun, 17 Dec 1995 19:38:24 +0000 (+0000) Subject: * pa.c (override_options): Make 7100 scheduling the default. X-Git-Url: http://git.sourceforge.jp/view?a=commitdiff_plain;h=a87e1e151e33726927193bb45d57976d9697b7a1;p=pf3gnuchains%2Fgcc-fork.git * pa.c (override_options): Make 7100 scheduling the default. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@10792 138bc75d-0d04-0410-961f-82ee72b054a4 --- 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";