re PR fortran/52325 (unclear error: Unclassifiable statement)

2012-03-02  Tobias Burnus  <burnus@net-b.de>

        PR fortran/52325
        * primary.c (gfc_match_varspec): Add missing ;.

From-SVN: r184790
This commit is contained in:
Tobias Burnus 2012-03-02 15:58:58 +01:00 committed by Tobias Burnus
parent c4ddde1bbb
commit 9f50723550
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2012-03-02 Tobias Burnus <burnus@net-b.de>
PR fortran/52325
* primary.c (gfc_match_varspec): Add missing ;.
2012-03-02 Tobias Burnus <burnus@net-b.de>
PR fortran/52325

View File

@ -1919,7 +1919,7 @@ gfc_match_varspec (gfc_expr *primary, int equiv_flag, bool sub_flag,
&& gfc_match_char ('%') == MATCH_YES)
{
gfc_error ("Unexpected '%%' for nonderived-type variable '%s' at %C",
sym->name)
sym->name);
return MATCH_ERROR;
}