gimple.c (gimple_body): Comments added.

2010-07-04  Jeremie Salvucci  <jeremie.salvucci@free.fr>

	* gimple.c (gimple_body): Comments added.

From-SVN: r161804
This commit is contained in:
Jeremie Salvucci 2010-07-04 19:59:18 +02:00 committed by Jeremie Salvucci
parent 7f5ad6d757
commit abbd64b92a
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2010-07-04 Jeremie Salvucci <jeremie.salvucci@free.fr>
* gimple.c (gimple_body): Comments added.
2010-07-04 Richard Guenther <rguenther@suse.de>
PR middle-end/44809

View File

@ -1731,7 +1731,10 @@ gimple_set_body (tree fndecl, gimple_seq seq)
}
/* Return the body of GIMPLE statements for function FN. */
/* Return the body of GIMPLE statements for function FN. After the
CFG pass, the function body doesn't exist anymore because it has
been split up into basic blocks. In this case, it returns
NULL. */
gimple_seq
gimple_body (tree fndecl)