Commit 439cfa45 by Jerry Quinn Committed by Jeff Law

pa.c (override_options): Change default to 7100LC

        * pa.c (override_options): Change default to 7100LC

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

From-SVN: r25493
parent 4b3528d1
Sat Feb 27 23:21:47 1999 Jerry Quinn <jquinn@nortelnetworks.com> Sat Feb 27 23:21:47 1999 Jerry Quinn <jquinn@nortelnetworks.com>
Mike Stump <mrs@wrs.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 * pa.h (REG_ALLOC_ORDER): Change order to allocate left half of
float regs before right half of float regs. float regs before right half of float regs.
......
...@@ -96,11 +96,8 @@ static int max_unscaled_index_insn_codes_uid; ...@@ -96,11 +96,8 @@ static int max_unscaled_index_insn_codes_uid;
void void
override_options () override_options ()
{ {
/* Default to 7100 scheduling. If the 7100LC scheduling ever /* Default to 7100LC scheduling. */
gets reasonably tuned, it should be the default since that if (! strcmp (pa_cpu_string, "7100"))
what most PAs sold now are. */
if (pa_cpu_string == NULL
|| ! strcmp (pa_cpu_string, "7100"))
{ {
pa_cpu_string = "7100"; pa_cpu_string = "7100";
pa_cpu = PROCESSOR_7100; pa_cpu = PROCESSOR_7100;
...@@ -110,7 +107,8 @@ override_options () ...@@ -110,7 +107,8 @@ override_options ()
pa_cpu_string = "700"; pa_cpu_string = "700";
pa_cpu = PROCESSOR_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_string = "7100LC";
pa_cpu = PROCESSOR_7100LC; pa_cpu = PROCESSOR_7100LC;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment