diff options
Diffstat (limited to 'gcc/fortran')
| -rw-r--r-- | gcc/fortran/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/fortran/match.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 7e8cb39..1aacb20 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,8 @@ +2005-11-04 Steven G. Kargl <kargls@comcast.net> + + PR fortran/24636 + * match.c (gfc_match_stopcode): Set stop_code = -1. + 2005-11-04 Francois-Xavier Coudert <coudert@clipper.ens.fr> PR fortran/18452 diff --git a/gcc/fortran/match.c b/gcc/fortran/match.c index eac5697..8725a5f0 100644 --- a/gcc/fortran/match.c +++ b/gcc/fortran/match.c @@ -1405,7 +1405,7 @@ gfc_match_stopcode (gfc_statement st) gfc_expr *e; match m; - stop_code = 0; + stop_code = -1; e = NULL; if (gfc_match_eos () != MATCH_YES) |
