From a81545590994ae0598be441d7b4e884a6220954d Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Thu, 3 Jan 2002 00:53:36 +0000 Subject: [PATCH] except.c: Fix comment typos. * except.c: Fix comment typos. * loop.c: Likewise. * varasm.c: Likewise. * doc/tm.texi: Fix a typo. From-SVN: r48488 --- gcc/ChangeLog | 7 +++++++ gcc/doc/tm.texi | 4 ++-- gcc/except.c | 4 ++-- gcc/loop.c | 4 ++-- gcc/varasm.c | 4 ++-- 5 files changed, 15 insertions(+), 8 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 645b2fe4472..3c1c763fbe3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2002-01-02 Kazu Hirata + + * except.c: Fix comment typos. + * loop.c: Likewise. + * varasm.c: Likewise. + * doc/tm.texi: Fix a typo. + 2002-01-02 Jakub Jelinek * c-typeck.c (output_init_element): Allow initializing static storage diff --git a/gcc/doc/tm.texi b/gcc/doc/tm.texi index 1ad7dcb6ffb..41a13551eaa 100644 --- a/gcc/doc/tm.texi +++ b/gcc/doc/tm.texi @@ -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. diff --git a/gcc/except.c b/gcc/except.c index f575078e1fa..6da82f77534 100644 --- a/gcc/except.c +++ b/gcc/except.c @@ -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 . 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)) diff --git a/gcc/loop.c b/gcc/loop.c index 0b79dc338a4..6ebd7d5574f 100644 --- a/gcc/loop.c +++ b/gcc/loop.c @@ -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) diff --git a/gcc/varasm.c b/gcc/varasm.c index b88615107e6..c7534109f81 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -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; -- 2.30.2