Commit 49032565 by Steven G. Kargl

primary.c (gfc_match_structure_constructor): Fix whitespace.

2015-11-17  Steven G. Kargl  <kargl@gcc.gnu.org>

	* primary.c (gfc_match_structure_constructor): Fix whitespace.

From-SVN: r230495
parent 6632fdeb
2015-11-17 Steven G. Kargl <kargl@gcc.gnu.org>
* primary.c (gfc_match_structure_constructor): Fix whitespace.
2015-11-17 Dominique d'Humieres <dominiq@lps.ens.fr> 2015-11-17 Dominique d'Humieres <dominiq@lps.ens.fr>
PR fortran/65751 PR fortran/65751
......
...@@ -2709,21 +2709,21 @@ gfc_match_structure_constructor (gfc_symbol *sym, gfc_expr **result) ...@@ -2709,21 +2709,21 @@ gfc_match_structure_constructor (gfc_symbol *sym, gfc_expr **result)
e->value.function.esym = sym; e->value.function.esym = sym;
e->symtree->n.sym->attr.generic = 1; e->symtree->n.sym->attr.generic = 1;
m = gfc_match_actual_arglist (0, &e->value.function.actual); m = gfc_match_actual_arglist (0, &e->value.function.actual);
if (m != MATCH_YES) if (m != MATCH_YES)
{ {
gfc_free_expr (e); gfc_free_expr (e);
return m; return m;
} }
if (!gfc_convert_to_structure_constructor (e, sym, NULL, NULL, false)) if (!gfc_convert_to_structure_constructor (e, sym, NULL, NULL, false))
{ {
gfc_free_expr (e); gfc_free_expr (e);
return MATCH_ERROR; return MATCH_ERROR;
} }
*result = e; *result = e;
return MATCH_YES; return MATCH_YES;
} }
......
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