aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1993-11-06 03:33:54 +0000
committerRichard Stallman <rms@gnu.org>1993-11-06 03:33:54 +0000
commit1d6ce73628555d37e3a9642fbf3722db3990ff4a (patch)
tree3f7e8b012565cec7a92e6274aca631b90eb77782 /gcc
parent328070bb4fb73f9718e52b08183eb8bf42a92c70 (diff)
downloadgcc-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
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/mips/mips.c6
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).