aboutsummaryrefslogtreecommitdiff
path: root/libgfortran/io
diff options
context:
space:
mode:
authorFrancois-Xavier Coudert <coudert@clipper.ens.fr>2005-11-13 10:33:19 +0100
committerFrançois-Xavier Coudert <fxcoudert@gcc.gnu.org>2005-11-13 09:33:19 +0000
commit5d723e5434e83d9de5271f6d1c24a694826450a8 (patch)
treee0ec7b23d7872520a826e03806116b99255edffd /libgfortran/io
parenta8bd670c5a5021e73a7727d585ac2bd806046295 (diff)
downloadgcc-5d723e5434e83d9de5271f6d1c24a694826450a8.zip
gcc-5d723e5434e83d9de5271f6d1c24a694826450a8.tar.gz
gcc-5d723e5434e83d9de5271f6d1c24a694826450a8.tar.bz2
fget.c: New file.
* intrinsics/fget.c: New file. * intrinsics/ftell.c: New file. * io/unix.c (stream_offset): New function. * io/io.h: Add prototype for stream_offset. * Makefile.am: Add intrinsics/fget.c and intrinsics/ftell.c. * Makefile.in: Regenerate. * intrinsic.c (add_functions): Add COMPLEX, FTELL, FGETC, FGET, FPUTC, FPUT, AND, XOR and OR intrinsic functions. (add_subroutines): Add FGETC, FGET, FPUTC, FPUT and FTELL intrinsic subroutines. * gfortran.h: Add GFC_ISYM_AND, GFC_ISYM_COMPLEX, GFC_ISYM_FGET, GFC_ISYM_FGETC, GFC_ISYM_FPUT, GFC_ISYM_FPUTC, GFC_ISYM_FTELL, GFC_ISYM_OR, GFC_ISYM_XOR. * iresolve.c (gfc_resolve_and, gfc_resolve_complex, gfc_resolve_or, gfc_resolve_fgetc, gfc_resolve_fget, gfc_resolve_fputc, gfc_resolve_fput, gfc_resolve_ftell, gfc_resolve_xor, gfc_resolve_fgetc_sub, gfc_resolve_fget_sub, gfc_resolve_fputc_sub, gfc_resolve_fput_sub, gfc_resolve_ftell_sub): New functions. * check.c (gfc_check_complex, gfc_check_fgetputc_sub, gfc_check_fgetputc, gfc_check_fgetput_sub, gfc_check_fgetput, gfc_check_ftell, gfc_check_ftell_sub, gfc_check_and): New functions. * simplify.c (gfc_simplify_and, gfc_simplify_complex, gfc_simplify_or, gfc_simplify_xor): New functions. * trans-intrinsic.c (gfc_conv_intrinsic_function): Add cases for GFC_ISYM_AND, GFC_ISYM_COMPLEX, GFC_ISYM_FGET, GFC_ISYM_FGETC, GFC_ISYM_FPUT, GFC_ISYM_FPUTC, GFC_ISYM_FTELL, GFC_ISYM_OR and GFC_ISYM_XOR. * intrinsic.h: Add prototypes for all functions added to iresolve.c, simplify.c and check.c. * gfortran.dg/complex_intrinsic_1.f90: New test. * gfortran.dg/complex_intrinsic_2.f90: New test. * gfortran.dg/fgetc_1.f90: New test. * gfortran.dg/fgetc_2.f90: New test. * gfortran.dg/fgetc_3.f90: New test. * gfortran.dg/ftell_1.f90: New test. * gfortran.dg/ftell_2.f90: New test. * gfortran.dg/gnu_logical_1.F: New test. * gfortran.dg/gnu_logical_2.f90: New test. From-SVN: r106859
Diffstat (limited to 'libgfortran/io')
-rw-r--r--libgfortran/io/io.h3
-rw-r--r--libgfortran/io/unix.c6
2 files changed, 9 insertions, 0 deletions
diff --git a/libgfortran/io/io.h b/libgfortran/io/io.h
index fa3335d..e262677 100644
--- a/libgfortran/io/io.h
+++ b/libgfortran/io/io.h
@@ -520,6 +520,9 @@ internal_proto(stream_isatty);
extern char * stream_ttyname (stream *);
internal_proto(stream_ttyname);
+extern gfc_offset stream_offset (stream *s);
+internal_proto(stream_offset);
+
extern int unit_to_fd (int);
internal_proto(unit_to_fd);
diff --git a/libgfortran/io/unix.c b/libgfortran/io/unix.c
index 0fe8c4b..2f08aad 100644
--- a/libgfortran/io/unix.c
+++ b/libgfortran/io/unix.c
@@ -1640,6 +1640,12 @@ stream_ttyname (stream *s)
#endif
}
+gfc_offset
+stream_offset (stream *s)
+{
+ return (((unix_stream *) s)->logical_offset);
+}
+
/* How files are stored: This is an operating-system specific issue,
and therefore belongs here. There are three cases to consider.