mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-27 21:24:32 +08:00
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:
parent
4b3528d1ce
commit
439cfa45b9
@ -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.
|
||||
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user