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
This commit is contained in:
Jerry Quinn 1999-02-28 01:01:34 +00:00 committed by Jeff Law
parent 4b3528d1ce
commit 439cfa45b9
2 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,8 @@
Sat Feb 27 23:21:47 1999 Jerry Quinn <jquinn@nortelnetworks.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
float regs before right half of float regs.

View File

@ -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;