Commit a3e3233a by Francois-Xavier Coudert Committed by François-Xavier Coudert

re PR fortran/30933 (intrinsic: EXIT)

	PR fortran/30933
	* intrinsic.c (add_functions): Fix name of argument to CHDIR.

From-SVN: r127257
parent fe569d8f
2007-08-06 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> 2007-08-06 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
PR fortran/30933 PR fortran/30933
* intrinsic.c (add_functions): Fix name of argument to CHDIR.
2007-08-06 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
PR fortran/30933
* iresolve.c (gfc_resolve_exit): Convert argument to default * iresolve.c (gfc_resolve_exit): Convert argument to default
integer kind. integer kind.
......
...@@ -1176,9 +1176,9 @@ add_functions (void) ...@@ -1176,9 +1176,9 @@ add_functions (void)
make_generic ("char", GFC_ISYM_CHAR, GFC_STD_F77); make_generic ("char", GFC_ISYM_CHAR, GFC_STD_F77);
add_sym_1 ("chdir", GFC_ISYM_CHDIR, NO_CLASS, ACTUAL_NO, BT_INTEGER, di, GFC_STD_GNU, add_sym_1 ("chdir", GFC_ISYM_CHDIR, NO_CLASS, ACTUAL_NO, BT_INTEGER, di,
gfc_check_chdir, NULL, gfc_resolve_chdir, GFC_STD_GNU, gfc_check_chdir, NULL, gfc_resolve_chdir,
a, BT_CHARACTER, dc, REQUIRED); nm, BT_CHARACTER, dc, REQUIRED);
make_generic ("chdir", GFC_ISYM_CHDIR, GFC_STD_GNU); make_generic ("chdir", GFC_ISYM_CHDIR, GFC_STD_GNU);
......
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