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]
Other format: [Raw text]

PATCH: Correct coments on -mno-sse4


I checked in the following patch to correct coments on -mno-sse4.


H.J.
-----
2007-05-31  H.J. Lu  <hongjiu.lu@intel.com>

        * config/i386/i386.c: Correct coments on -mno-sse4.


Index: config/i386/i386.c
===================================================================
--- config/i386/i386.c	(revision 125236)
+++ config/i386/i386.c	(working copy)
@@ -1571,7 +1571,7 @@
 #define OPTION_MASK_ISA_SSE4_2_UNSET OPTION_MASK_ISA_SSE4A
 
 /* SSE4 includes both SSE4.1 and SSE4.2. -msse4 should be the same
-   as -msse4.1 -msse4.2.  -mno-sse4 should the same as -msse4.1. */
+   as -msse4.1 -msse4.2.  -mno-sse4 should the same as -mno-sse4.1. */
 #define OPTION_MASK_ISA_SSE4 \
   (OPTION_MASK_ISA_SSE4_1 | OPTION_MASK_ISA_SSE4_2)
 #define OPTION_MASK_ISA_SSE4_UNSET OPTION_MASK_ISA_SSE4_1_UNSET


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