1 2010-04-01 Janne Blomqvist <jb@gcc.gnu.org>
4 * io/intrinsics.c (ftell): Reset fbuf, correct offset.
7 2010-03-29 Jerry DeLisle <jvdelisle@gcc.gnu.org>
10 * io/transfer.c (next_record_r): Only call hit_eof for specific
11 conditions when an EOF is encountered.
13 2010-03-29 Tobias Burnus <burnus@net-b.de>
16 * io/unix.c (buf_write): Set physical_offset after lseek.
18 2010-03-25 Jerry DeLisle <jvdelisle@gcc.gnu.org>
21 * io/read.c (read_x): Return if seen EOR condition.
23 2010-03-21 Jerry DeLisle <jvdelisle@gcc.gnu.org>
26 * io/io.h: Fix type of size in st_parameter_inquire structure.
28 2010-03-20 Jerry DeLisle <jvdelisle@gcc.gnu.org>
31 * io/unix.h: Add prototype for new function to return file size.
32 * io/unix.c (file_size): New function.
33 * io/inquire.c (inquire_via_unit): Use new function.
34 (inquire_via_filename): Use new function.
36 2010-03-17 Jerry DeLisle <jvdelisle@gcc.gnu.org>
38 * io/transfer.c (read_sf_internal): Remove stray function declaration
39 used during debugging.
41 2010-03-17 Jerry DeLisle <jvdelisle@gcc.gnu.org>
44 * io/io.h: Delete prototype for read_sf, making it static.
45 * io/read.c (read_x): Modify to call hit_eof if PAD="no".
46 * io/transfer.c (read_sf_internal): New static function extracted from
47 read_sf for use on internal units only. Handle empty string case.
48 (read_sf): New factoring of this function, make it static. Add special
49 conditions for EOF based on ADVANCE="no", PAD="no", and whether any
50 bytes have been previously read from the record.
51 (read_block_form): Modify to call read_sf or read_sf_internal.
52 (next_record_r): Add a done flag similar to next_record_w. Call hit_eof
53 if internal array unit next record returns finished, meaning an EOF was
54 found and not done, ie not the last record expected. For external
55 units call hit_eof if item_count is 1 or there are no pending spaces.
56 (next_record): Update call to next_record_r.
58 2010-03-12 Kai Tietz <kai.tietz@onevision.com>
61 * io/format.c (parse_format_list): Add to ERROR, WARNING,
62 SILENT enumerators NOTIFICATION_ prefix.
63 * runtime/error.c (notification_std): Likewise.
64 * libgfortran.h (notification): Likewise.
65 (GFC_LARGEST_BUF): Check for HAVE_GFC_INTEGER_16.
67 2010-03-11 Tobias Burnus <burnus@net-b.de>
70 * io/list_read.c (nml_parse_qualifier): Disable expanded_read
73 2010-03-10 Jerry DeLisle <jvdelisle@gcc.gnu.org>
76 * io/transfer.c (next_record_r): Add hit_eof based on item_count
79 2010-03-09 Jerry DeLisle <jvdelisle@gcc.gnu.org>
82 * io/read.c: Include fbuf.h and unix.h to enable lower level I/O for
83 read_x. (read_x): Replace the use of read_sf with equivalent lower level
84 I/O, eliminating unneeded code and handling EOF and EOR conditions.
85 * io/io.h: Revise prototype for read_sf.
86 * io/transfer.c (read_sf): Delete no_error parameter and all uses of it.
87 (read_block_form): Likewise.
88 (next_record_r): Delete wrong code call to hit_eof.
90 2010-03-08 Kai TIetz <kai.tietz@onevision.com>
93 * libgfortran.h (_POSIX): Define if __MINGW32__ is defined.
94 (gfc_printf): Define to gnu_printf for __MINGW32__ case,
95 otherwise to __printf__.
96 (gfc_strtof,gfc_strtod,gfc_strtold): Define for mingw case
97 to POSIX compatible converter functions.
98 (runtime_error): Use instead gfc_printf as formatter
100 (runtime_error_at): Likewise.
101 (runtime_warning_at): Likewise.
102 (st_printf): Likewise.
103 * intrinsics/date_and_time.c (localtime_r): Undefine
104 possible defined macro.
105 (gmtime_r): Likewise.
106 * io/read.c (convert_real): Use gfc_strtof, gfc_strtod,
109 2010-02-24 Jerry DeLisle <jvdelisle@gcc.gnu.org>
112 * io/transfer.c (require_type): Subtract one from item_count for output
113 of error message. Add comment before formatted_transfer function
114 explaining why the item_count is off by one.
116 2010-02-24 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
118 * io/write_float.def (WRITE_FLOAT): Use __builtin_signbit.
120 2010-02-22 Jerry DeLisle <jvdelisle@gcc.gnu.org>
122 * io/list_read.c (list_formatted_read_scalar): Remove duplicate code.
124 2010-02-09 Tobias Burnus <burnus@net-b.de>
127 * intrinsics/args.c (get_command_argument_i4): Always return
128 commandline-argument length for length parameter.
130 2010-02-06 Jerry DeLisle <jvdelisle@gcc.gnu.org>
133 * io/format.c (reset_fnode_counters): Use the correct pointer to the
134 head of the fnode list. (parse_format): Remove previous hack that set
135 limit on size of format string for caching.
137 2010-02-06 Jerry DeLisle <jvdelisle@gcc.gnu.org>
140 * io/transfer.c (read_sf): Handle EOR and EOF conditions for
141 ADVANCE="no" with PAD="yes" or PAD="no".
143 2010-02-03 Jerry DeLisle <jvdelisle@gcc.gnu.org>
146 * io/list_read.c (nml_get_obj_data): Add new qualifier flag, clean up
147 code, and adjust logic to set namelist info pointer correctly for array
148 qualifiers of derived type components.
150 2010-01-15 Jerry DeLisle <jvdelisle@gcc.gnu.org>
153 * io/format.c (parse_format): Set limit on size of format strings that
156 2010-01-05 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
158 * configure: Regenerate.
160 2010-01-03 Janne Blomqvist <jb@gcc.gnu.org>
163 * io/unix.c: Defines for MINGW stat and fstat.
164 (gfstat_t): New typedef.
165 (id_from_fd): Use gfstat_t instead of struct stat.
166 (fd_to_stream): Likewise.
167 (compare_file_filename): Likewise.
168 (find_file): Likewise.
169 (file_exists): Likewise.
170 (inquire_sequential): Likewise.
171 (inquire_direct): Likewise.
172 (inquire_formatted): Likewise.
175 Copyright (C) 2010 Free Software Foundation, Inc.
177 Copying and distribution of this file, with or without modification,
178 are permitted in any medium without royalty provided the copyright
179 notice and this notice are preserved.