aboutsummaryrefslogtreecommitdiff
path: root/gas/config/tc-mips.c
diff options
context:
space:
mode:
authorThiemo Seufer <ths@networkno.de>2002-05-30 23:38:19 +0000
committerThiemo Seufer <ths@networkno.de>2002-05-30 23:38:19 +0000
commit9ee72ff12290e81938a289105be633c17f773d83 (patch)
treeda42f89fcf803c154b926f40683491e2b4cb50b2 /gas/config/tc-mips.c
parent438c16b8759036fe9e9ecd48d71f4a3b4bc31a5a (diff)
downloadgdb-9ee72ff12290e81938a289105be633c17f773d83.zip
gdb-9ee72ff12290e81938a289105be633c17f773d83.tar.gz
gdb-9ee72ff12290e81938a289105be633c17f773d83.tar.bz2
* config/tc-mips.c (OPTION_NO_M7000_HILO_FIX): Rename to
OPTION_MNO_7000_HILO_FIX. Add alternate "mno-fix7000" command line switch conforming to gcc conventions. * doc/c-mips.texi: Document -mno-fix7000 instead of no-mfix-7000.
Diffstat (limited to 'gas/config/tc-mips.c')
-rw-r--r--gas/config/tc-mips.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c
index 47199f7..02ec3f1 100644
--- a/gas/config/tc-mips.c
+++ b/gas/config/tc-mips.c
@@ -9953,8 +9953,9 @@ struct option md_longopts[] =
{"no-mips16", no_argument, NULL, OPTION_NO_MIPS16},
#define OPTION_M7000_HILO_FIX (OPTION_MD_BASE + 15)
{"mfix7000", no_argument, NULL, OPTION_M7000_HILO_FIX},
-#define OPTION_NO_M7000_HILO_FIX (OPTION_MD_BASE + 16)
- {"no-fix-7000", no_argument, NULL, OPTION_NO_M7000_HILO_FIX},
+#define OPTION_MNO_7000_HILO_FIX (OPTION_MD_BASE + 16)
+ {"no-fix-7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
+ {"mno-fix7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
#define OPTION_FP32 (OPTION_MD_BASE + 17)
{"mfp32", no_argument, NULL, OPTION_FP32},
#define OPTION_GP32 (OPTION_MD_BASE + 18)
@@ -10362,7 +10363,7 @@ md_parse_option (c, arg)
mips_7000_hilo_fix = true;
break;
- case OPTION_NO_M7000_HILO_FIX:
+ case OPTION_MNO_7000_HILO_FIX:
mips_7000_hilo_fix = false;
break;