Don't enable CIX on ev6/21264, but add an ev67/21264a switch that does

enable CIX.  Taken roughly from egcs-current.
This commit is contained in:
thorpej 2000-04-03 16:47:05 +00:00
parent fdbfdd90f2
commit 36e829de63

View File

@ -161,6 +161,13 @@ override_options ()
}
else if (! strcmp (alpha_cpu_string, "ev6")
|| ! strcmp (alpha_cpu_string, "21264"))
{
alpha_cpu = PROCESSOR_EV6;
target_flags |= MASK_BWX | MASK_MAX;
target_flags &= ~ MASK_CIX;
}
else if (! strcmp (alpha_cpu_string, "ev67")
|| ! strcmp (alpha_cpu_string, "21264a"))
{
alpha_cpu = PROCESSOR_EV6;
target_flags |= MASK_BWX | MASK_CIX | MASK_MAX;