This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


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

Re: 386 sse doc bug


mike stump <mrs@windriver.com> writes:

>   { "mix-sse-i387",		 MASK_MIX_SSE_I387,			      \
>     N_("Use both SSE and i387 instruction sets for floating point arithmetics") },\
>   { "nomix-sse-i387",		-MASK_MIX_SSE_I387,			      \
>     N_("Use both SSE and i387 instruction sets for floating point arithmetics") },\
>
> Hopefully, what is wrong is obvious to you...  :-)

I fixed this together with a typo and will commit the patch as obvious
after bootstrapping/regtesting on i686-linux,

Andreas

2001-09-07  Andreas Jaeger  <aj@suse.de>

	* config/i386/i386.h (TARGET_SWITCHES): Fix descriptions.

============================================================
Index: gcc/config/i386/i386.h
--- gcc/config/i386/i386.h	2001/08/25 13:49:51	1.199
+++ gcc/config/i386/i386.h	2001/09/07 06:03:22
@@ -346,7 +346,7 @@
   { "mix-sse-i387",		 MASK_MIX_SSE_I387,			      \
     N_("Use both SSE and i387 instruction sets for floating point arithmetics") },\
   { "nomix-sse-i387",		-MASK_MIX_SSE_I387,			      \
-    N_("Use both SSE and i387 instruction sets for floating point arithmetics") },\
+    N_("Do not use both SSE and i387 instruction sets for floating point arithmetics") },\
   { "128bit-long-double",	 MASK_128BIT_LONG_DOUBLE,		      \
     N_("sizeof(long double) is 16.") },					      \
   { "96bit-long-double",	-MASK_128BIT_LONG_DOUBLE,		      \
@@ -358,7 +358,7 @@
   { "red-zone",			-MASK_NO_RED_ZONE,			      \
     N_("Use red-zone in the x86-64 code") },				      \
   { "no-red-zone",		MASK_NO_RED_ZONE,			      \
-    N_("do not use red-zone in the x86-64 code") },			      \
+    N_("Do not use red-zone in the x86-64 code") },			      \
   SUBTARGET_SWITCHES							      \
   { "", TARGET_DEFAULT, 0 }}
 

-- 
 Andreas Jaeger
  SuSE Labs aj@suse.de
   private aj@arthur.inka.de
    http://www.suse.de/~aj


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