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] gcc: Fix comment typos.


Hi,

Committed as obvious.

Kazu Hirata

2004-01-31  Kazu Hirata  <kazu@cs.umass.edu>

	* alloc-pool.c: Fix comment typos.
	* builtin-types.def: Likewise.
	* builtins.def: Likewise.
	* c-pretty-print.c: Likewise.
	* df.h: Likewise.
	* reload1.c: Likewise.

Index: alloc-pool.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/alloc-pool.c,v
retrieving revision 1.12
diff -u -r1.12 alloc-pool.c
--- alloc-pool.c	31 Jan 2004 02:06:41 -0000	1.12
+++ alloc-pool.c	31 Jan 2004 17:42:23 -0000
@@ -75,7 +75,7 @@
 
 #ifdef GATHER_STATISTICS
 
-/* Store infromation about each particular alloc_pool.  */
+/* Store information about each particular alloc_pool.  */
 struct alloc_pool_descriptor
 {
   const char *name;
Index: builtin-types.def
===================================================================
RCS file: /cvs/gcc/gcc/gcc/builtin-types.def,v
retrieving revision 1.21
diff -u -r1.21 builtin-types.def
--- builtin-types.def	9 Sep 2003 03:29:10 -0000	1.21
+++ builtin-types.def	31 Jan 2004 17:42:23 -0000
@@ -1,4 +1,4 @@
-/* Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
+/* Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
 
 This file is part of GCC.
 
@@ -17,7 +17,7 @@
 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 02111-1307, USA.  */
 
-/* This header provides a declaritive way of describing the types that
+/* This header provides a declarative way of describing the types that
    are used when declaring builtin functions.
 
    Before including this header, you must define the following macros:
Index: builtins.def
===================================================================
RCS file: /cvs/gcc/gcc/gcc/builtins.def,v
retrieving revision 1.73
diff -u -r1.73 builtins.def
--- builtins.def	9 Sep 2003 03:29:10 -0000	1.73
+++ builtins.def	31 Jan 2004 17:42:23 -0000
@@ -1,6 +1,7 @@
 /* This file contains the definitions and documentation for the
    builtins used in the GNU compiler.
-   Copyright (C) 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
+   Copyright (C) 2000, 2001, 2002, 2003, 2004
+   Free Software Foundation, Inc.
 
 This file is part of GCC.
 
@@ -115,7 +116,7 @@
 /* Define an attribute list for math functions that are normally
    "pure" but if flag_unsafe_math_optimizations is set they are
    instead "const".  This distinction accounts for the fact that some
-   math functions check the rounding mode which is akin to examing
+   math functions check the rounding mode which is akin to examining
    global memory.  In "unsafe" mode we can be less careful.  */
 #undef ATTR_MATHFN_FPROUNDING
 #define ATTR_MATHFN_FPROUNDING (flag_unsafe_math_optimizations ? \
Index: c-pretty-print.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/c-pretty-print.c,v
retrieving revision 1.36
diff -u -r1.36 c-pretty-print.c
--- c-pretty-print.c	21 Jan 2004 20:39:51 -0000	1.36
+++ c-pretty-print.c	31 Jan 2004 17:42:24 -0000
@@ -540,7 +540,7 @@
       direct-declarator [ static type-qualifier-list(opt) assignment-expression(opt)]
       direct-declarator [ type-qualifier-list static assignment-expression ]
       direct-declarator [ type-qualifier-list * ]
-      direct-declaratpr ( parameter-type-list )
+      direct-declarator ( parameter-type-list )
       direct-declarator ( identifier-list(opt) )  */
 
 void
Index: df.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/df.h,v
retrieving revision 1.20
diff -u -r1.20 df.h
--- df.h	1 Jul 2003 12:17:52 -0000	1.20
+++ df.h	31 Jan 2004 17:42:24 -0000
@@ -55,7 +55,7 @@
     /* This flag is set on register references inside a subreg on
        machines which have CANNOT_CHANGE_MODE_CLASS.
        Note, that this flag can also be set on df_refs representing
-       the REG itself (i.e., one might not see the subreg anyore).
+       the REG itself (i.e., one might not see the subreg anymore).
        Also note, that this flag is set also for hardreg refs, i.e.,
        you must check yourself if it's a pseudo.  */
     DF_REF_MODE_CHANGE = 2,
Index: reload1.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/reload1.c,v
retrieving revision 1.422
diff -u -r1.422 reload1.c
--- reload1.c	31 Jan 2004 08:02:48 -0000	1.422
+++ reload1.c	31 Jan 2004 17:42:28 -0000
@@ -2307,7 +2307,7 @@
        and require special code to handle code a reloaded PLUS operand.
 
        Also consider backends where the flags register is clobbered by a
-       MINUS, but we can emit a PLUS that does not clobber flags (ia32,
+       MINUS, but we can emit a PLUS that does not clobber flags (IA-32,
        lea instruction comes to mind).  If we try to reload a MINUS, we
        may kill the flags register that was holding a useful value.
 


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