diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-05-30 07:12:58 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-05-30 07:12:58 +0000 |
commit | 1ea7e6ad84d890cc6d002e9e698055de85a28cfd (patch) | |
tree | 353029a3fd14257b6028935077f92705d8a886d5 /gcc/gimplify.c | |
parent | b453c95fd3fa689a6d70e8878848e5d6531e9ac5 (diff) | |
download | gcc-1ea7e6ad84d890cc6d002e9e698055de85a28cfd.zip gcc-1ea7e6ad84d890cc6d002e9e698055de85a28cfd.tar.gz gcc-1ea7e6ad84d890cc6d002e9e698055de85a28cfd.tar.bz2 |
c-common.c, [...]: Fix comment typos.
* c-common.c, calls.c, cfgcleanup.c, cgraph.c, cgraphunit.c,
ddg.c, ddg.h, df.c, df.h, except.c, expr.c, flags.h,
fold-const.c, gcc.c, gimplify.c, haifa-sched.c,
modulo-sched.c, tree-inline.c, tree-into-ssa.c, tree-nested.c,
tree-nrv.c, tree-ssa-ccp.c, tree-ssa-dom.c, tree-ssa-live.c,
tree-ssa-loop.c, tree-ssa-pre.c, tree-tailcall.c, tree.h: Fix
comment typos. Follow spelling conventions.
From-SVN: r82439
Diffstat (limited to 'gcc/gimplify.c')
-rw-r--r-- | gcc/gimplify.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/gimplify.c b/gcc/gimplify.c index e40052c..173ae28 100644 --- a/gcc/gimplify.c +++ b/gcc/gimplify.c @@ -282,7 +282,7 @@ create_artificial_label (void) return lab; } -/* Create a new temporary name with PREFIX. Returns an indentifier. */ +/* Create a new temporary name with PREFIX. Returns an identifier. */ static GTY(()) unsigned int tmp_var_id_num; @@ -797,7 +797,7 @@ voidify_wrapper_expr (tree wrapper) } /* Prepare calls to builtins to SAVE and RESTORE the stack as well as - temporary through that they comunicate. */ + a temporary through which they communicate. */ static void build_stack_save_restore (tree *save, tree *restore) @@ -1310,7 +1310,7 @@ gimplify_init_constructor (tree *expr_p, tree *pre_p, /* ??? This bit ought not be needed. For any element not present in the initializer, we should simply set them to zero. Except we'd need to *find* the elements that are not present, and that - requires trickery to avoid quadratic compile-time behaviour in + requires trickery to avoid quadratic compile-time behavior in large cases or excessive memory use in small cases. */ else { @@ -2600,7 +2600,7 @@ gimplify_compound_expr (tree *expr_p, tree *pre_p, bool want_value) } /* Gimplifies a statement list. These may be created either by an - enlightend front-end, or by shortcut_cond_expr. */ + enlightened front-end, or by shortcut_cond_expr. */ static enum gimplify_status gimplify_statement_list (tree *expr_p) |