This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Fix MIPS gas no-mfix7000 commandline option


Hi All,

this changes the complementary switch of '-mfix7000' from '-no-fix-7000'
to '-no-mfix7000', as it is mentioned in the documentation.


Thiemo


2002-05-30  Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>

	/gas/ChangeLog
	* config/tc-mips.c (mips_gprel_offset): New variable.
	(s_gpvalue): Use it.


--- source-orig/gas/config/tc-mips.c	Thu May 30 16:44:40 2002
+++ source/gas/config/tc-mips.c	Tue May 28 20:24:23 2002
@@ -9846,7 +9987,7 @@ struct option md_longopts[] =
 #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},
+  {"no-mfix7000", no_argument, NULL, OPTION_NO_M7000_HILO_FIX},
 #define OPTION_FP32 (OPTION_MD_BASE + 17)
   {"mfp32", no_argument, NULL, OPTION_FP32},
 #define OPTION_GP32 (OPTION_MD_BASE + 18)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]