aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2004-01-31 17:47:43 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2004-01-31 17:47:43 +0000
commita457ee07af69ac1dd67bcce24698558f5de0682d (patch)
tree6f89aecc97071cb813ada55cf1379a6d0f107d8e /gcc
parentaf3fb3d6dc3907a45f05d913e9b2fafe42bcc053 (diff)
downloadgcc-a457ee07af69ac1dd67bcce24698558f5de0682d.zip
gcc-a457ee07af69ac1dd67bcce24698558f5de0682d.tar.gz
gcc-a457ee07af69ac1dd67bcce24698558f5de0682d.tar.bz2
alloc-pool.c: Fix comment typos.
* 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
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog9
-rw-r--r--gcc/alloc-pool.c2
-rw-r--r--gcc/builtin-types.def4
-rw-r--r--gcc/builtins.def5
-rw-r--r--gcc/c-pretty-print.c2
-rw-r--r--gcc/df.h2
-rw-r--r--gcc/reload1.c2
7 files changed, 18 insertions, 8 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 4207bb0..de72c4e 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,14 @@
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.
* doc/tm.texi: Likewise.
diff --git a/gcc/alloc-pool.c b/gcc/alloc-pool.c
index a1e74e3..11ba826 100644
--- a/gcc/alloc-pool.c
+++ b/gcc/alloc-pool.c
@@ -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;
diff --git a/gcc/builtin-types.def b/gcc/builtin-types.def
index f33bacd..df74661 100644
--- a/gcc/builtin-types.def
+++ b/gcc/builtin-types.def
@@ -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:
diff --git a/gcc/builtins.def b/gcc/builtins.def
index fc6ddca..27cb2b6 100644
--- a/gcc/builtins.def
+++ b/gcc/builtins.def
@@ -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 ? \
diff --git a/gcc/c-pretty-print.c b/gcc/c-pretty-print.c
index bcbfd79..acb70cd 100644
--- a/gcc/c-pretty-print.c
+++ b/gcc/c-pretty-print.c
@@ -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
diff --git a/gcc/df.h b/gcc/df.h
index 9838aa8..79af3aa 100644
--- 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,
diff --git a/gcc/reload1.c b/gcc/reload1.c
index 32341d1..1ea21ee 100644
--- a/gcc/reload1.c
+++ b/gcc/reload1.c
@@ -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.