From: Richard Kenner Date: Thu, 24 Jun 2004 22:47:42 +0000 (-0400) Subject: Minor comment and whitespace changes X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=500b9b49b224e0dd1589043b7d6992edfecb5816;p=gcc.git Minor comment and whitespace changes From-SVN: r83617 --- diff --git a/gcc/tree-nrv.c b/gcc/tree-nrv.c index 1768b3909b9..4732e9c98d3 100644 --- a/gcc/tree-nrv.c +++ b/gcc/tree-nrv.c @@ -80,11 +80,12 @@ finalize_nrv_r (tree *tp, int *walk_subtrees, void *data) /* No need to walk into types. */ if (TYPE_P (*tp)) *walk_subtrees = 0; - /* If this is a RETURN_EXPR, then set the expression being returned - to RESULT. */ + + /* If this is a RETURN_EXPR, set the expression being returned to RESULT. */ else if (TREE_CODE (*tp) == RETURN_EXPR) TREE_OPERAND (*tp, 0) = dp->result; - /* Replace all occurrences of VAR with RESULT. */ + + /* Othewise replace all occurrences of VAR with RESULT. */ else if (*tp == dp->var) *tp = dp->result;