trans-array.c (gfc_free_ss_chain): Made non-static.

2010-10-06  Mikael Morin  <mikael@gcc.gnu.org>

	* trans-array.c (gfc_free_ss_chain): Made non-static.
	* trans-array.h (gfc_free_ss_chain): New prototype.
	* trans-stmt.c (gfc_trans_where_2): Free ss chains.

From-SVN: r165052
This commit is contained in:
Mikael Morin 2010-10-06 16:30:08 +00:00
parent cebd5ce46d
commit fcba55090e
4 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2010-10-06 Mikael Morin <mikael@gcc.gnu.org>
* trans-array.c (gfc_free_ss_chain): Made non-static.
* trans-array.h (gfc_free_ss_chain): New prototype.
* trans-stmt.c (gfc_trans_where_2): Free ss chains.
2010-10-06 Mikael Morin <mikael@gcc.gnu.org>
* trans-intrinsic.c (gfc_conv_intrinsic_funcall): Also free symbol's

View File

@ -448,7 +448,7 @@ static void gfc_free_ss (gfc_ss *);
/* Free a gfc_ss chain. */
static void
void
gfc_free_ss_chain (gfc_ss * ss)
{
gfc_ss *next;

View File

@ -81,6 +81,8 @@ void gfc_cleanup_loop (gfc_loopinfo *);
void gfc_add_ss_to_loop (gfc_loopinfo *, gfc_ss *);
/* Mark a SS chain as used in this loop. */
void gfc_mark_ss_chain_used (gfc_ss *, unsigned);
/* Free a gfc_ss chain. */
void gfc_free_ss_chain (gfc_ss *);
/* Calculates the lower bound and stride of array sections. */
void gfc_conv_ss_startstride (gfc_loopinfo *);

View File

@ -3927,6 +3927,9 @@ gfc_trans_where_2 (gfc_code * code, tree mask, bool invert,
inner_size = compute_inner_temp_size (cblock->expr1, cblock->expr1,
&inner_size_body, &lss, &rss);
gfc_free_ss_chain (lss);
gfc_free_ss_chain (rss);
/* Calculate the total size of temporary needed. */
size = compute_overall_iter_number (nested_forall_info, inner_size,
&inner_size_body, block);