summaryrefslogtreecommitdiff
path: root/gcc/tree-nrv.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2004-06-26 05:03:55 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2004-06-26 05:03:55 +0000
commit61ada8ae18a600c8ace28058fe592ce9842f6237 (patch)
tree33b4de272330067b4be95383df8cefd291cd4392 /gcc/tree-nrv.c
parente1152c0bc885278944dfbfa1c877e045702abc3f (diff)
downloadgcc-61ada8ae18a600c8ace28058fe592ce9842f6237.tar.gz
c-typeck.c, [...]: Fix comment typos.
* c-typeck.c, cfgexpand.c, ddg.c, ddg.h, df.c, fold-const.c, gcov.c, gimplify.c, modulo-sched.c, passes.c, tree-cfg.c, tree-mudflap.c, tree-nrv.c, tree-outof-ssa.c, tree-ssa-dom.c, tree-ssa-dse.c, tree-ssa-operands.c, tree-ssa-pre.c, tree-tailcall.c: Fix comment typos. Follow spelling conventions. From-SVN: r83703
Diffstat (limited to 'gcc/tree-nrv.c')
-rw-r--r--gcc/tree-nrv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-nrv.c b/gcc/tree-nrv.c
index 4732e9c98d3..761bb03c94a 100644
--- a/gcc/tree-nrv.c
+++ b/gcc/tree-nrv.c
@@ -85,7 +85,7 @@ finalize_nrv_r (tree *tp, int *walk_subtrees, void *data)
else if (TREE_CODE (*tp) == RETURN_EXPR)
TREE_OPERAND (*tp, 0) = dp->result;
- /* Othewise replace all occurrences of VAR with RESULT. */
+ /* Otherwise replace all occurrences of VAR with RESULT. */
else if (*tp == dp->var)
*tp = dp->result;