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]

Re: FYI: 1500+ typos, with suggested fixes


I've applied these fixes for three miscellaneous directories with a single 
typo each to fix (gcc/c-family, libmudflap, lto-plugin).

Index: libmudflap/mf-impl.h
===================================================================
--- libmudflap/mf-impl.h	(revision 187979)
+++ libmudflap/mf-impl.h	(working copy)
@@ -46,7 +46,7 @@
 
 /* Private definitions related to mf-runtime.h  */
 
-#define __MF_TYPE_MAX_CEM  __MF_TYPE_STACK  /* largest type# for the cemetary */
+#define __MF_TYPE_MAX_CEM  __MF_TYPE_STACK  /* largest type# for the cemetery */
 #define __MF_TYPE_MAX __MF_TYPE_GUESS
 
 
Index: libmudflap/ChangeLog
===================================================================
--- libmudflap/ChangeLog	(revision 187979)
+++ libmudflap/ChangeLog	(working copy)
@@ -1,3 +1,7 @@
+2012-05-29  Joseph Myers  <joseph@codesourcery.com>
+
+	* mf-impl.h: Fix typo.
+
 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
 
 	* configure: Regenerated.
Index: lto-plugin/ChangeLog
===================================================================
--- lto-plugin/ChangeLog	(revision 187979)
+++ lto-plugin/ChangeLog	(working copy)
@@ -1,3 +1,7 @@
+2012-05-29  Joseph Myers  <joseph@codesourcery.com>
+
+	* lto-plugin.c: Fix typo.
+
 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
 
 	* configure: Regenerated.
Index: lto-plugin/lto-plugin.c
===================================================================
--- lto-plugin/lto-plugin.c	(revision 187979)
+++ lto-plugin/lto-plugin.c	(working copy)
@@ -754,7 +754,7 @@
   conflicts->syms = xmalloc (sizeof (struct ld_plugin_symbol) * outlen);
   conflicts->aux = xmalloc (sizeof (struct sym_aux) * outlen);
 
-  /* Move all duplicate symbols into the auxillary conflicts table. */
+  /* Move all duplicate symbols into the auxiliary conflicts table. */
   out = 0;
   for (i = 0; i < t->nsyms; i++) 
     {
Index: gcc/c-family/ChangeLog
===================================================================
--- gcc/c-family/ChangeLog	(revision 187979)
+++ gcc/c-family/ChangeLog	(working copy)
@@ -1,3 +1,7 @@
+2012-05-29  Joseph Myers  <joseph@codesourcery.com>
+
+	* c-common.c: Fix typo.
+
 2012-05-29  Michael Matz  <matz@suse.de>
 
 	* c-common.h (c_expand_decl): Remove prototype.
Index: gcc/c-family/c-common.c
===================================================================
--- gcc/c-family/c-common.c	(revision 187979)
+++ gcc/c-family/c-common.c	(working copy)
@@ -3960,7 +3960,7 @@
 
   /* Replace the integer argument with a suitable product by the object size.
      Do this multiplication as signed, then convert to the appropriate type
-     for the pointer operation and disregard an overflow that occured only
+     for the pointer operation and disregard an overflow that occurred only
      because of the sign-extension change in the latter conversion.  */
   {
     tree t = build_binary_op (loc,

-- 
Joseph S. Myers
joseph@codesourcery.com


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