Commit 45f596d9 by Steven G. Kargl

array.c (gfc_match_array_constructor): Remove set, but unused variable.

2016-10-20  Steven G. Kargl  <kargl@gcc.gnu.org>

	* array.c (gfc_match_array_constructor): Remove set, but unused
	variable.

From-SVN: r241388
parent a7cfe836
2016-10-20 Steven G. Kargl <kargl@gcc.gnu.org>
* array.c (gfc_match_array_constructor): Remove set, but unused
variable.
2016-10-20 Andre Vehreschild <vehre@gcc.gnu.org> 2016-10-20 Andre Vehreschild <vehre@gcc.gnu.org>
* class.c (gfc_build_class_symbol): Set the kind of _len to * class.c (gfc_build_class_symbol): Set the kind of _len to
......
...@@ -1090,7 +1090,7 @@ match ...@@ -1090,7 +1090,7 @@ match
gfc_match_array_constructor (gfc_expr **result) gfc_match_array_constructor (gfc_expr **result)
{ {
gfc_constructor *c; gfc_constructor *c;
gfc_constructor_base head, new_cons; gfc_constructor_base head;
gfc_undo_change_set changed_syms; gfc_undo_change_set changed_syms;
gfc_expr *expr; gfc_expr *expr;
gfc_typespec ts; gfc_typespec ts;
...@@ -1115,7 +1115,7 @@ gfc_match_array_constructor (gfc_expr **result) ...@@ -1115,7 +1115,7 @@ gfc_match_array_constructor (gfc_expr **result)
end_delim = " /)"; end_delim = " /)";
where = gfc_current_locus; where = gfc_current_locus;
head = new_cons = NULL; head = NULL;
seen_ts = false; seen_ts = false;
/* Try to match an optional "type-spec ::" */ /* Try to match an optional "type-spec ::" */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment