diff options
author | Steven G. Kargl <kargls@comcast.net> | 2004-06-12 17:34:47 +0000 |
---|---|---|
committer | Paul Brook <pbrook@gcc.gnu.org> | 2004-06-12 17:34:47 +0000 |
commit | 2bd749490845f2edc7de74dca4b29fd7d7698dff (patch) | |
tree | a1452828cb51b5aff27e540fe28a2545fc15adb8 /libgfortran/Makefile.am | |
parent | b08eae928826bd8474cd30a33949af242dfc400c (diff) | |
download | gcc-2bd749490845f2edc7de74dca4b29fd7d7698dff.zip gcc-2bd749490845f2edc7de74dca4b29fd7d7698dff.tar.gz gcc-2bd749490845f2edc7de74dca4b29fd7d7698dff.tar.bz2 |
check.c (gfc_check_second_sub, [...]): New functions.
* check.c (gfc_check_second_sub, gfc_check_irand, gfc_check_rand
gfc_check_srand, gfc_check_etime, gfc_check_etime_sub): New functions.
* gfortran.h (gfc_generic_isym_id): New symbols GFC_ISYM_ETIME,
GFC_ISYM_IRAND, GFC_ISYM_RAND, GFC_ISYM_SECOND.
* trans-intrinsic.c: Use symbols.
* intrinsic.c (add_sym_2s): New function.
* intrinsic.c: Add etime, dtime, irand, rand, second, srand.
* intrinsic.h: Function prototypes.
* iresolve.c (gfc_resolve_etime_sub, gfc_resolve_second_sub
gfc_resolve_srand): New functions.
libgfortran
* Makefile.am: Add rand.c and etime.c
* Makefile.in: Regenerated.
* aclocal.in: Regenerated.
* cpu_time.c (second_sub, second): New functions.
* rand.c (irand, rand, srand): New file.
* etime.c (etime_sub, etime): New file.
From-SVN: r83034
Diffstat (limited to 'libgfortran/Makefile.am')
-rw-r--r-- | libgfortran/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libgfortran/Makefile.am b/libgfortran/Makefile.am index 63bf6b5..a395cdd 100644 --- a/libgfortran/Makefile.am +++ b/libgfortran/Makefile.am @@ -42,11 +42,13 @@ intrinsics/cshift0.c \ intrinsics/date_and_time.c \ intrinsics/eoshift0.c \ intrinsics/eoshift2.c \ +intrinsics/etime.c \ intrinsics/ishftc.c \ intrinsics/pack_generic.c \ intrinsics/size.c \ intrinsics/spread_generic.c \ intrinsics/string_intrinsics.c \ +intrinsics/rand.c \ intrinsics/random.c \ intrinsics/reshape_generic.c \ intrinsics/reshape_packed.c \ |