mirror of git://gcc.gnu.org/git/gcc.git
re PR fortran/24636 (gfortran: STOP without stop-code too noisy, regression w.r.t. g77)
PR fortran/24636 * match.c (gfc_match_stopcode): Set stop_code = -1. * runtime/stop.c (stop_numeric): Use stop_code = -1. From-SVN: r106509
This commit is contained in:
parent
930352c0b7
commit
33de49ea9f
|
@ -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>
|
2005-11-04 Francois-Xavier Coudert <coudert@clipper.ens.fr>
|
||||||
|
|
||||||
PR fortran/18452
|
PR fortran/18452
|
||||||
|
|
|
@ -1405,7 +1405,7 @@ gfc_match_stopcode (gfc_statement st)
|
||||||
gfc_expr *e;
|
gfc_expr *e;
|
||||||
match m;
|
match m;
|
||||||
|
|
||||||
stop_code = 0;
|
stop_code = -1;
|
||||||
e = NULL;
|
e = NULL;
|
||||||
|
|
||||||
if (gfc_match_eos () != MATCH_YES)
|
if (gfc_match_eos () != MATCH_YES)
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
|
2005-11-04 Steven G. Kargl <kargls@comcast.net>
|
||||||
|
|
||||||
|
PR fortran/24636
|
||||||
|
* runtime/stop.c (stop_numeric): Use stop_code = -1.
|
||||||
|
|
||||||
2005-11-04 Francois-Xavier Coudert <coudert@clipper.ens.fr>
|
2005-11-04 Francois-Xavier Coudert <coudert@clipper.ens.fr>
|
||||||
|
|
||||||
PR libfortran/22298
|
PR libfortran/22298
|
||||||
|
|
|
@ -40,7 +40,7 @@ stop_numeric (GFC_INTEGER_4 code)
|
||||||
show_locus ();
|
show_locus ();
|
||||||
|
|
||||||
if (code == -1)
|
if (code == -1)
|
||||||
st_printf ("STOP\n");
|
code = 0;
|
||||||
else
|
else
|
||||||
st_printf ("STOP %d\n", (int)code);
|
st_printf ("STOP %d\n", (int)code);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue