From: Steven G. Kargl Date: Wed, 15 Sep 2004 14:17:26 +0000 (+0000) Subject: check.c (gfc_check_getcwd_sub): New function. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0110c1ec157a465fe323a5dcb906d8ea352fa356;p=gcc.git check.c (gfc_check_getcwd_sub): New function. 2004-09-15 Steven G. Kargl * check.c (gfc_check_getcwd_sub): New function. * gfortran.h (GFC_ISYM_GETCWD): New symbol. * intrinsic.c (add_functions): Add function definition; Use symbol. * intrinsic.c (add_subroutines): Add subroutine definitions. * intrinsic.h: Add prototypes. * iresolve.c (gfc_resolve_getcwd, gfc_resolve_getcwd_sub): New functions. * trans-intrinsic.c (gfc_conv_intrinsic_function): Use symbol. libgfortran/ * intrincics/getcwd.c: New file. * Makefile.am: Add getcwd.c. * Makefile.in: Regenerated. From-SVN: r87555 --- diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 4f0c3a0e3f7..a60c04f7fea 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,15 @@ +2004-09-15 Steven G. Kargl + + * check.c (gfc_check_getcwd_sub): New function. + * gfortran.h (GFC_ISYM_GETCWD): New symbol. + * intrinsic.c (add_functions): Add function definition; + Use symbol. + * intrinsic.c (add_subroutines): Add subroutine definitions. + * intrinsic.h: Add prototypes. + * iresolve.c (gfc_resolve_getcwd, gfc_resolve_getcwd_sub): + New functions. + * trans-intrinsic.c (gfc_conv_intrinsic_function): Use symbol. + 2004-09-15 Tobias Schlueter PR fortran/16485 diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index 75566268679..3d7cf8c896c 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,9 @@ +2004-09-15 Steven G. Kargl + + * intrincics/getcwd.c: New file. + * Makefile.am: Add getcwd.c. + * Makefile.in: Regenerated. + 2004-09-15 Steven G. Kargl Paul Brook