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
This commit is contained in:
parent
6632fdebbd
commit
490325650d
@ -1,3 +1,7 @@
|
||||
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>
|
||||
|
||||
PR fortran/65751
|
||||
|
@ -2709,21 +2709,21 @@ gfc_match_structure_constructor (gfc_symbol *sym, gfc_expr **result)
|
||||
e->value.function.esym = sym;
|
||||
e->symtree->n.sym->attr.generic = 1;
|
||||
|
||||
m = gfc_match_actual_arglist (0, &e->value.function.actual);
|
||||
if (m != MATCH_YES)
|
||||
{
|
||||
gfc_free_expr (e);
|
||||
return m;
|
||||
}
|
||||
m = gfc_match_actual_arglist (0, &e->value.function.actual);
|
||||
if (m != MATCH_YES)
|
||||
{
|
||||
gfc_free_expr (e);
|
||||
return m;
|
||||
}
|
||||
|
||||
if (!gfc_convert_to_structure_constructor (e, sym, NULL, NULL, false))
|
||||
{
|
||||
gfc_free_expr (e);
|
||||
return MATCH_ERROR;
|
||||
}
|
||||
if (!gfc_convert_to_structure_constructor (e, sym, NULL, NULL, false))
|
||||
{
|
||||
gfc_free_expr (e);
|
||||
return MATCH_ERROR;
|
||||
}
|
||||
|
||||
*result = e;
|
||||
return MATCH_YES;
|
||||
*result = e;
|
||||
return MATCH_YES;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user