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
This commit is contained in:
Kazu Hirata 2004-01-31 17:47:43 +00:00 committed by Kazu Hirata
parent af3fb3d6dc
commit a457ee07af
7 changed files with 18 additions and 8 deletions

View 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.

View 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;

View 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:

View 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 ? \

View 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

View File

@ -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,

View 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.