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: Bug: egcs-20000207: option misspelled


 > From: Christoph Breitkopf <chr.breitkopf@magrathea.de>
 > 
 > Hi,
 > in egcs snapshot 20000207, the new i386 option -minline-all-stringops
 > is not recognized by the compiler.  This is just a typing error,
 > -minline-all-strinops works.
 > 
 > $ strings cc1 | grep inline-all
 > no-inline-all-stringops
 > inline-all-strinops
 >                 ^ missing letter
 > 
 > - Chris


I think this fixes it.

Okay?


diff -rup orig/egcs-CVS20000207/gcc/config/i386/i386.h egcs-CVS20000207/gcc/config/i386/i386.h
--- orig/egcs-CVS20000207/gcc/config/i386/i386.h	Fri Feb  4 21:08:55 2000
+++ egcs-CVS20000207/gcc/config/i386/i386.h	Tue Feb  8 06:20:43 2000
@@ -247,7 +247,7 @@ extern const int x86_promote_QImode, x86
     "Align destination of the string operations" },			      \
   { "no-align-stringops",	 MASK_NO_ALIGN_STROPS,			      \
     "Do not align destination of the string operations" },		      \
-  { "inline-all-strinops",	 MASK_INLINE_ALL_STROPS,		      \
+  { "inline-all-stringops",	 MASK_INLINE_ALL_STROPS,		      \
     "Inline all known string operations" },				      \
   { "no-inline-all-stringops",	-MASK_INLINE_ALL_STROPS,		      \
     "Do not inline all known string operations" },			      \


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