aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-nrv.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/tree-nrv.c')
-rw-r--r--gcc/tree-nrv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-nrv.c b/gcc/tree-nrv.c
index 2c34496..1768b39 100644
--- a/gcc/tree-nrv.c
+++ b/gcc/tree-nrv.c
@@ -54,7 +54,7 @@ struct nrv_data
this function's RETURN_EXPR statements. */
tree var;
- /* This is the function's RESULT_DECL. We will replace all occurences
+ /* This is the function's RESULT_DECL. We will replace all occurrences
of VAR with RESULT_DECL when we apply this optimization. */
tree result;
};
@@ -84,7 +84,7 @@ finalize_nrv_r (tree *tp, int *walk_subtrees, void *data)
to RESULT. */
else if (TREE_CODE (*tp) == RETURN_EXPR)
TREE_OPERAND (*tp, 0) = dp->result;
- /* Replace all occurences of VAR with RESULT. */
+ /* Replace all occurrences of VAR with RESULT. */
else if (*tp == dp->var)
*tp = dp->result;