This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[tree-ssa] Comment typo's


I've just commited this to fix some comment 

	* tree-inline.c (expand_calls_inline): Fix comments.

Index: tree-inline.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/tree-inline.c,v
retrieving revision 1.26.2.37
diff -c -3 -p -r1.26.2.37 tree-inline.c
*** tree-inline.c	27 Jul 2003 18:40:12 -0000	1.26.2.37
--- tree-inline.c	1 Aug 2003 17:45:37 -0000
*************** expand_calls_inline (tree *tp, inline_da
*** 1279,1290 ****
          }
        else if (code == CATCH_EXPR)
          {
! 	  /* Dive into the SWITCH_EXPR.  */
  	  expand_calls_inline (&CATCH_BODY (*stmt_p), id);
          }
        else if (code == EH_FILTER_EXPR)
          {
! 	  /* Dive into the SWITCH_EXPR.  */
  	  expand_calls_inline (&EH_FILTER_FAILURE (*stmt_p), id);
          }
        else if (code == TRY_CATCH_EXPR || code == TRY_FINALLY_EXPR)
--- 1279,1290 ----
          }
        else if (code == CATCH_EXPR)
          {
! 	  /* Dive into the CATCH_EXPR.  */
  	  expand_calls_inline (&CATCH_BODY (*stmt_p), id);
          }
        else if (code == EH_FILTER_EXPR)
          {
! 	  /* Dive into the EH_FILTER_EXPR.  */
  	  expand_calls_inline (&EH_FILTER_FAILURE (*stmt_p), id);
          }
        else if (code == TRY_CATCH_EXPR || code == TRY_FINALLY_EXPR)
*************** expand_calls_inline (tree *tp, inline_da
*** 1306,1312 ****
          }
        else if (code == COMPOUND_EXPR)
          {
! 	  /* Dive into the BIND_EXPR, this should only happen at
  	     the end of a function tree, so the recursion isn't nearly
  	     as bad as you might think.  */
  	  expand_calls_inline (&TREE_OPERAND (*stmt_p, 0), id);
--- 1306,1312 ----
          }
        else if (code == COMPOUND_EXPR)
          {
! 	  /* Dive into the COMPOUND_EXPR; this should only happen at
  	     the end of a function tree, so the recursion isn't nearly
  	     as bad as you might think.  */
  	  expand_calls_inline (&TREE_OPERAND (*stmt_p, 0), id);

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]