diff options
author | Richard Stallman <rms@gnu.org> | 1993-11-06 03:33:54 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-11-06 03:33:54 +0000 |
commit | 1d6ce73628555d37e3a9642fbf3722db3990ff4a (patch) | |
tree | 3f7e8b012565cec7a92e6274aca631b90eb77782 | |
parent | 328070bb4fb73f9718e52b08183eb8bf42a92c70 (diff) | |
download | gcc-1d6ce73628555d37e3a9642fbf3722db3990ff4a.zip gcc-1d6ce73628555d37e3a9642fbf3722db3990ff4a.tar.gz gcc-1d6ce73628555d37e3a9642fbf3722db3990ff4a.tar.bz2 |
(mips_abicalls): Change type to enum mips_abicalls_type.
(override_options): Use MIPS_ABICALLS_{NO,YES} instead of ABICALLS_{NO,YES}.
From-SVN: r6020
-rw-r--r-- | gcc/config/mips/mips.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index 59c08d4..1cc3f01 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -191,7 +191,7 @@ char *mips_cpu_string; /* for -mcpu=<xxx> */ char *mips_isa_string; /* for -mips{1,2,3} */ /* 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 whether the operator is an add-type operator, or a divide/modulus, @@ -2904,9 +2904,9 @@ override_options () HALF_PIC_INIT (); if (TARGET_ABICALLS) - mips_abicalls = ABICALLS_YES; + mips_abicalls = MIPS_ABICALLS_YES; else - mips_abicalls = ABICALLS_NO; + mips_abicalls = MIPS_ABICALLS_NO; /* -mrnames says to use the MIPS software convention for register names instead of the hardware names (ie, a0 instead of $4). |