(mips_abicalls): Change type to enum mips_abicalls_type.

(override_options): Use MIPS_ABICALLS_{NO,YES} instead of ABICALLS_{NO,YES}.

From-SVN: r6020
This commit is contained in:
Richard Stallman 1993-11-06 03:33:54 +00:00
parent 328070bb4f
commit 1d6ce73628

View File

@ -191,7 +191,7 @@ char *mips_cpu_string; /* for -mcpu=<xxx> */
char *mips_isa_string; /* for -mips{1,2,3} */ char *mips_isa_string; /* for -mips{1,2,3} */
/* Generating calls to position independent functions? */ /* Generating calls to position independent functions? */
enum attr_abicalls mips_abicalls; enum mips_abicalls_type mips_abicalls;
/* Array to RTX class classification. At present, we care about /* Array to RTX class classification. At present, we care about
whether the operator is an add-type operator, or a divide/modulus, whether the operator is an add-type operator, or a divide/modulus,
@ -2904,9 +2904,9 @@ override_options ()
HALF_PIC_INIT (); HALF_PIC_INIT ();
if (TARGET_ABICALLS) if (TARGET_ABICALLS)
mips_abicalls = ABICALLS_YES; mips_abicalls = MIPS_ABICALLS_YES;
else else
mips_abicalls = ABICALLS_NO; mips_abicalls = MIPS_ABICALLS_NO;
/* -mrnames says to use the MIPS software convention for register /* -mrnames says to use the MIPS software convention for register
names instead of the hardware names (ie, a0 instead of $4). names instead of the hardware names (ie, a0 instead of $4).