Minor comment and whitespace changes
authorRichard Kenner <kenner@gcc.gnu.org>
Thu, 24 Jun 2004 22:47:42 +0000 (18:47 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Thu, 24 Jun 2004 22:47:42 +0000 (18:47 -0400)
From-SVN: r83617

gcc/tree-nrv.c

index 1768b3909b9092e621dbe12ecd88fe24ff8c0e97..4732e9c98d3fa16a7fc17c6bcb729f332eaf76a4 100644 (file)
@@ -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;