* config/tc-mips.c (OPTION_NO_M7000_HILO_FIX): Rename to
authorThiemo Seufer <ths@networkno.de>
Thu, 30 May 2002 23:38:19 +0000 (23:38 +0000)
committerThiemo Seufer <ths@networkno.de>
Thu, 30 May 2002 23:38:19 +0000 (23:38 +0000)
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.

gas/ChangeLog
gas/config/tc-mips.c
gas/doc/c-mips.texi

index 80a0db7303f2515d9e05c80d2a21d104cccf977f..da7c4b862c4f8ed0dc9f91e278340921690035f9 100644 (file)
@@ -1,3 +1,10 @@
+2002-05-31  Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
+
+       * 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.
+
 2002-05-31  Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
 
        * config/tc-mips.c (macro_build_jalr): New Function.
index 47199f753b550b58b442e0a925c335e4c676d424..02ec3f1248fe48647a1455ab4ae056d95a38485a 100644 (file)
@@ -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;
 
index a3b1e5fa5bc51af862220ddaf392f5ae3df747b4..c81d0ab495a706a36dd957da3f75f2a8671317f7 100644 (file)
@@ -106,7 +106,7 @@ This tells the assembler to accept MIPS-3D instructions.
 @samp{-no-mips3d} turns off this option.
 
 @item -mfix7000
-@itemx -no-mfix7000
+@itemx -mno-fix7000
 Cause nops to be inserted if the read of the destination register
 of an mfhi or mflo instruction occurs in the following two instructions.