From: Jerry Quinn Date: Sun, 28 Feb 1999 01:01:34 +0000 (+0000) Subject: pa.c (override_options): Change default to 7100LC X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=439cfa45b9664238d2b790ace53e514e19d9c56c;p=gcc.git pa.c (override_options): Change default to 7100LC * pa.c (override_options): Change default to 7100LC Co-Authored-By: Mike Stump From-SVN: r25493 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f5a8d22d4a7..ac8959eb43c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,6 +1,8 @@ Sat Feb 27 23:21:47 1999 Jerry Quinn Mike Stump + * 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. diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index 82a69c40f2c..cb178ca1d79 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -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;