* trans-array.c (gfc_conv_array_parameter): Initialize tmp.

From-SVN: r125313
This commit is contained in:
Steve Ellcey 2007-06-04 16:00:00 +00:00 committed by Steve Ellcey
parent 15eb3a2e59
commit bd075cf298
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2007-06-04 Steve Ellcey <sje@cup.hp.com>
* trans-array.c (gfc_conv_array_parameter): Initialize tmp.
2007-05-31 Richard Guenther <rguenther@suse.de>
* trans-expr.c (gfc_conv_expr_op): Use zero constant

View File

@ -4819,7 +4819,7 @@ gfc_conv_array_parameter (gfc_se * se, gfc_expr * expr, gfc_ss * ss, int g77)
{
tree ptr;
tree desc;
tree tmp;
tree tmp = NULL_TREE;
tree stmt;
tree parent = DECL_CONTEXT (current_function_decl);
bool full_array_var, this_array_result;