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/tree-nested.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/tree-nested.c')
-rw-r--r-- | gcc/tree-nested.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/tree-nested.c b/gcc/tree-nested.c index 14d2c3c..24d3e74 100644 --- a/gcc/tree-nested.c +++ b/gcc/tree-nested.c @@ -474,7 +474,7 @@ get_nl_goto_field (struct nesting_info *info) /* For __builtin_nonlocal_goto, we need N words. The first is the frame pointer, the rest is for the target's stack pointer save - area. The number of words is controled by STACK_SAVEAREA_MODE; + area. The number of words is controlled by STACK_SAVEAREA_MODE; not the best interface, but it'll do for now. */ if (Pmode == ptr_mode) type = ptr_type_node; @@ -987,7 +987,7 @@ convert_nl_goto_reference (tree *tp, int *walk_subtrees, void *data) /* The original user label may also be use for a normal goto, therefore we must create a new label that will actually receive the abnormal control transfer. This new label will be marked LABEL_NONLOCAL; this - mark will trigger proper behaviour in the cfg, as well as cause the + mark will trigger proper behavior in the cfg, as well as cause the (hairy target-specific) non-local goto receiver code to be generated when we expand rtl. */ new_label = create_artificial_label (); @@ -1316,7 +1316,7 @@ finalize_nesting_tree_1 (struct nesting_info *root) sf->has_nonlocal_label = 1; } - /* Make sure all new local variables get insertted into the + /* Make sure all new local variables get inserted into the proper BIND_EXPR. */ if (root->new_local_var_chain) declare_tmp_vars (root->new_local_var_chain, |