except.c: Fix comment typos.
authorKazu Hirata <kazu@hxi.com>
Thu, 3 Jan 2002 00:53:36 +0000 (00:53 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Thu, 3 Jan 2002 00:53:36 +0000 (00:53 +0000)
* except.c: Fix comment typos.
* loop.c: Likewise.
* varasm.c: Likewise.
* doc/tm.texi: Fix a typo.

From-SVN: r48488

gcc/ChangeLog
gcc/doc/tm.texi
gcc/except.c
gcc/loop.c
gcc/varasm.c

index 645b2fe4472898ac62773577166e8f9b6fd5712b..3c1c763fbe313dcfc575209cc16b0a352c37949e 100644 (file)
@@ -1,3 +1,10 @@
+2002-01-02  Kazu Hirata  <kazu@hxi.com>
+
+       * except.c: Fix comment typos.
+       * loop.c: Likewise.
+       * varasm.c: Likewise.
+       * doc/tm.texi: Fix a typo.
+
 2002-01-02  Jakub Jelinek  <jakub@redhat.com>
 
        * c-typeck.c (output_init_element): Allow initializing static storage
index 1ad7dcb6ffb62f49c736accbee2d301da01dcf2d..41a13551eaa9baa6273b18bb3c9faf8c74256359 100644 (file)
@@ -1,4 +1,4 @@
-@c Copyright (C) 1988,1989,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001
+@c Copyright (C) 1988,1989,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002
 @c Free Software Foundation, Inc.
 @c This is part of the GCC manual.
 @c For copying conditions, see the file gcc.texi.
@@ -2364,7 +2364,7 @@ These macros should not be used in the case where a particular class of
 registers can only be copied to memory and not to another class of
 registers.  In that case, secondary reload registers are not needed and
 would not be helpful.  Instead, a stack location must be used to perform
-the copy and the @code{mov@var{m}} pattern should use memory as a
+the copy and the @code{mov@var{m}} pattern should use memory as an
 intermediate storage.  This case often occurs between floating-point and
 general registers.
 
index f575078e1fa7f4878d06d4777393f3c51c19520f..6da82f77534012ebd895bff88dc75b082f38dfb7 100644 (file)
@@ -1,6 +1,6 @@
 /* Implements exception handling.
    Copyright (C) 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
-   1999, 2000, 2001 Free Software Foundation, Inc.
+   1999, 2000, 2001, 2002 Free Software Foundation, Inc.
    Contributed by Mike Stump <mrs@cygnus.com>.
 
 This file is part of GCC.
@@ -2650,7 +2650,7 @@ reachable_next_level (region, type_thrown, info)
 
            if (type_thrown)
              {
-               /* If we have a at least one type match, end the search.  */
+               /* If we have at least one type match, end the search.  */
                tree tp_node = c->u.catch.type_list;
 
                for (; tp_node; tp_node = TREE_CHAIN (tp_node))
index 0b79dc338a44e5760848dccfe1a4dfcf8443a271..6ebd7d5574fa40512a21f12f0e97d16401ba5f89 100644 (file)
@@ -1,6 +1,6 @@
 /* Perform various loop optimizations, including strength reduction.
    Copyright (C) 1987, 1988, 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
-   1998, 1999, 2000, 2001 Free Software Foundation, Inc.
+   1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
 
 This file is part of GCC.
 
@@ -3832,7 +3832,7 @@ emit_prefetch_instructions (loop)
                 ineffective.  Later we may be able to reverse such BIVs.  */
              || (PREFETCH_NO_REVERSE_ORDER 
                  && (stride = INTVAL (iv->mult_val) * basestride) < 0)
-             /* Prefetching of accesses with such a extreme stride is probably
+             /* Prefetching of accesses with such an extreme stride is probably
                 not worthwhile, either.  */
              || (PREFETCH_NO_EXTREME_STRIDE
                  && stride > PREFETCH_EXTREME_STRIDE)
index b88615107e613207fe57febfacdc0883464260ec..c7534109f81cbf0b9dd96968902f7c328f783890 100644 (file)
@@ -1,6 +1,6 @@
 /* Output variables, constants and external declarations, for GNU compiler.
    Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997,
-   1998, 1999, 2000, 2001 Free Software Foundation, Inc.
+   1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
 
 This file is part of GCC.
 
@@ -133,7 +133,7 @@ tree last_assemble_variable_decl;
    So giving constant the alias set for the type will allow such
    initializations to appear to conflict with the load of the constant.  We
    avoid this by giving all constants an alias set for just constants.
-   Since there will be no stores to that a alias set, nothing will ever
+   Since there will be no stores to that alias set, nothing will ever
    conflict with them.  */
 
 static HOST_WIDE_INT const_alias_set;