]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
alloc-pool.c: Fix comment typos.
authorKazu Hirata <kazu@cs.umass.edu>
Sat, 31 Jan 2004 17:47:43 +0000 (17:47 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Sat, 31 Jan 2004 17:47:43 +0000 (17:47 +0000)
* alloc-pool.c: Fix comment typos.
* builtin-types.def: Likewise.
* builtins.def: Likewise.
* c-pretty-print.c: Likewise.
* df.h: Likewise.
* reload1.c: Likewise.

From-SVN: r77043

gcc/ChangeLog
gcc/alloc-pool.c
gcc/builtin-types.def
gcc/builtins.def
gcc/c-pretty-print.c
gcc/df.h
gcc/reload1.c

index 4207bb0b62d45a34601e017b127108d00c51e223..de72c4e9a1be9c68bcc503f2765d4c218a87e3c0 100644 (file)
@@ -1,3 +1,12 @@
+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.
+
 2004-01-31  Kazu Hirata  <kazu@cs.umass.edu>
 
        * doc/invoke.texi: Follow spelling conventions.
index a1e74e3da1c01b17cb287de2b1f91d6ba58e2d3b..11ba826760c1e62d956c07fb6ee55b47ea64bcd3 100644 (file)
@@ -75,7 +75,7 @@ static ALLOC_POOL_ID_TYPE last_id;
 
 #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 f33bacd4330f1132699ea23c77a6f286deef221e..df74661738fdce9ada9ef33dd46478ed651bb500 100644 (file)
@@ -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 @@ along with GCC; see the file COPYING.  If not, write to the Free
 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 fc6ddcaedfaa6762282c1e0625a02820d7060d03..27cb2b6459a2d8e615d4b33975bff076383aef5a 100644 (file)
@@ -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 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 /* 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 bcbfd793ad38ee729ec1b0a8bfa6658b3d0b66e5..acb70cd327d180f4fa6f2b3e38c60d0a9231bd0f 100644 (file)
@@ -540,7 +540,7 @@ pp_c_declaration_specifiers (c_pretty_printer *pp, tree t)
       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 9838aa834adf352b1af92f20a4ae55a3ca749e68..79af3aad15274352e00023e2501f92af8262d65f 100644 (file)
--- a/gcc/df.h
+++ b/gcc/df.h
@@ -55,7 +55,7 @@ enum df_ref_flags
     /* 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 32341d1c231ae746e4d03b82359c831e8f32fb33..1ea21ee389094817d027c237a604039006c546ca 100644 (file)
@@ -2307,7 +2307,7 @@ eliminate_regs (rtx x, enum machine_mode mem_mode, rtx insn)
        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.