OSDN Git Service

Fix typo
[pf3gnuchains/gcc-fork.git] / libgfortran / ChangeLog
1 2010-05-08  Janne Blomqvist  <jb@gcc.gnu.org>
2
3         * io/unix.h (mem_alloc_r): Fix typo to reduce visibility.
4
5 2010-05-07  Janne Blomqvist  <jb@gcc.gnu.org>
6
7         * libgfortran.h (free_mem): Remove prototype.
8         * runtime/memory.c (free_mem): Remove function.
9         * intrinsics/date_and_time.c (secnds): Replace free_mem() with
10         free().
11         * io/fbuf.c (fbuf_destroy): Likewise.
12         * io/format.c (free_format_hash_table): Likewise.
13         (save_parsed_format): Likewise.
14         (free_format_data): Likewise.
15         * io/list_read.c (free_saved): Likewise.
16         (free_line): Likewise.
17         (nml_touch_nodes): Likewise.
18         (nml_read_obj): Likewise
19         * io/lock.c (free_ionml): Likewise.
20         * io/open.c (new_unit): Likewise.
21         (already_open): Likewise.
22         * io/unit.c (destroy_unit_mutex): Likewise.
23         (free_internal_unit): Likewise.
24         (close_unit_1): Likewise.
25         * io/unix.c (raw_close): Likewise.
26         (buf_close): Likewise.
27         (mem_close): Likewise.
28         (tempfile): Likewise.
29         * io/write.c (nml_write_obj): Likewise.
30         * io/write_float.def (output_float_FMT_G_##): Likewise.
31         * runtime/error.c (show_locus): Likewise.
32
33 2010-05-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34
35         PR other/43620
36         * configure.ac (AM_INIT_AUTOMAKE): Add no-dist.
37         * configure: Regenerate.
38         * Makefile.in: Regenerate.
39
40 2010-04-30  Kai Tietz  <kai.tietz@onevision.com>
41
42         PR/43844
43         * io/unix.c (raw_truncate): Explicit cast from integer-scalar
44         to pointer.
45         (tempfile): Use for mingw GetTempPath and avoid double slash
46         for path.
47
48 2010-04-24  Kai Tietz  <kai.tietz@onevision.com>
49
50         PR/43844
51         * io/unix.c (tempfile): Correct logic for mktemp case.
52
53 2010-04-06  Tobias Burnus  <burnus@net-b.de>
54
55         PR fortran/39997
56         * runtime/stop.c (error_stop_string): New function.
57         * gfortran.map (_gfortran_error_stop_string): Add.
58
59 2010-04-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
60
61         * Makefile.in: Regenerate.
62         * aclocal.m4: Regenerate.
63
64 2010-04-01  Janne Blomqvist  <jb@gcc.gnu.org>
65
66         PR libfortran/43605
67         * io/intrinsics.c (gf_ftell): New function, seek to correct offset.
68         (ftell): Call gf_ftell.
69         (FTELL_SUB): Likewise.
70
71 2010-04-01  Paul Thomas  <pault@gcc.gnu.org>
72
73         * io/transfer.c : Update copyright.
74         * io/unix.c : ditto
75         * io/read.c : ditto
76         * io/io.h : ditto
77         * io/unix.h : ditto
78         * io/inquire.c : ditto
79         * io/format.c : ditto
80         * io/list_read.c : ditto
81         * runtime/error.c : ditto
82         * libgfortran.h : ditto
83         * intrinsics/date_and_time.c: ditto
84         * intrinsics/args.c : ditto
85
86 2010-04-01  Janne Blomqvist  <jb@gcc.gnu.org>
87
88         PR libfortran/43605
89         * io/intrinsics.c (ftell): Reset fbuf, correct offset.
90         (FTELL_SUB): Likewise.
91
92 2010-03-29  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
93
94         PR libfortran/43265
95         * io/transfer.c (next_record_r): Only call hit_eof for specific
96         conditions when an EOF is encountered.
97
98 2010-03-29  Tobias Burnus  <burnus@net-b.de>
99
100         PR fortran/43551
101         * io/unix.c (buf_write): Set physical_offset after lseek.
102
103 2010-03-25  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
104
105         PR libfortran/43517
106         * io/read.c (read_x): Return if seen EOR condition.
107
108 2010-03-21  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
109
110         PR fortran/43409
111         * io/io.h: Fix type of size in st_parameter_inquire structure.
112
113 2010-03-20  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
114
115         PR fortran/43409
116         * io/unix.h: Add prototype for new function to return file size.
117         * io/unix.c (file_size): New function.
118         * io/inquire.c (inquire_via_unit): Use new function.
119         (inquire_via_filename): Use new function.
120
121 2010-03-17  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
122
123         * io/transfer.c (read_sf_internal): Remove stray function declaration
124         used during debugging.
125
126 2010-03-17  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
127
128         PR libfortran/43265
129         * io/io.h: Delete prototype for read_sf, making it static.
130         * io/read.c (read_x): Modify to call hit_eof if PAD="no".
131         * io/transfer.c (read_sf_internal): New static function extracted from
132         read_sf for use on internal units only. Handle empty string case.
133         (read_sf): New factoring of this function, make it static.  Add special
134         conditions for EOF based on ADVANCE="no", PAD="no", and whether any
135         bytes have been previously read from the record.
136         (read_block_form): Modify to call read_sf or read_sf_internal.
137         (next_record_r): Add a done flag similar to next_record_w. Call hit_eof
138         if internal array unit next record returns finished, meaning an EOF was
139         found and not done, ie not the last record expected.  For external
140         units call hit_eof if item_count is 1 or there are no pending spaces.
141         (next_record): Update call to next_record_r.
142
143 2010-03-12  Kai Tietz  <kai.tietz@onevision.com>
144
145         PR/42950
146         * io/format.c (parse_format_list): Add to ERROR, WARNING,
147         SILENT enumerators NOTIFICATION_ prefix.
148         * runtime/error.c (notification_std): Likewise.
149         * libgfortran.h (notification): Likewise.
150         (GFC_LARGEST_BUF): Check for HAVE_GFC_INTEGER_16.
151
152 2010-03-11  Tobias Burnus  <burnus@net-b.de>
153
154         PR fortran/43228
155         * io/list_read.c (nml_parse_qualifier): Disable expanded_read
156         for array sections.
157
158 2010-03-10  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
159
160         PR libfortran/43320
161         * io/transfer.c (next_record_r): Add hit_eof based on item_count
162         condition.
163
164 2010-03-09  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
165
166         PR libfortran/43265
167         * io/read.c: Include fbuf.h and unix.h to enable lower level I/O for
168         read_x. (read_x): Replace the use of read_sf with equivalent lower level
169         I/O, eliminating unneeded code and handling EOF and EOR conditions.
170         * io/io.h: Revise prototype for read_sf.
171         * io/transfer.c (read_sf): Delete no_error parameter and all uses of it.
172         (read_block_form): Likewise.
173         (next_record_r): Delete wrong code call to hit_eof.
174
175 2010-03-08  Kai TIetz  <kai.tietz@onevision.com>
176
177         PR/42950
178         * libgfortran.h (_POSIX): Define if __MINGW32__ is defined.
179         (gfc_printf): Define to gnu_printf for __MINGW32__ case,
180         otherwise to __printf__.
181         (gfc_strtof,gfc_strtod,gfc_strtold): Define for mingw case
182         to POSIX compatible converter functions.
183         (runtime_error): Use instead gfc_printf as formatter
184         attribute name.
185         (runtime_error_at): Likewise.
186         (runtime_warning_at): Likewise.
187         (st_printf): Likewise.
188         * intrinsics/date_and_time.c (localtime_r): Undefine
189         possible defined macro.
190         (gmtime_r): Likewise.
191         * io/read.c (convert_real): Use gfc_strtof, gfc_strtod,
192         and gfc_strtold.
193
194 2010-02-24  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
195
196         PR libfortran/43155
197         * io/transfer.c (require_type): Subtract one from item_count for output
198         of error message.  Add comment before formatted_transfer function
199         explaining why the item_count is off by one.
200
201 2010-02-24  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
202
203         * io/write_float.def (WRITE_FLOAT): Use __builtin_signbit.
204
205 2010-02-22  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
206
207         * io/list_read.c (list_formatted_read_scalar): Remove duplicate code.
208
209 2010-02-09  Tobias Burnus  <burnus@net-b.de>
210
211         PR fortran/42996
212         * intrinsics/args.c (get_command_argument_i4): Always return
213         commandline-argument length for length parameter.
214
215 2010-02-06  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
216
217         PR libfortran/42742
218         * io/format.c (reset_fnode_counters): Use the correct pointer to the
219         head of the fnode list. (parse_format): Remove previous hack that set
220         limit on size of format string for caching.
221
222 2010-02-06  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
223
224         PR libfortran
225         * io/transfer.c (read_sf): Handle EOR and EOF conditions for
226         ADVANCE="no" with PAD="yes" or PAD="no".
227
228 2010-02-03  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
229
230         PR libfortran/42901
231         * io/list_read.c (nml_get_obj_data): Add new qualifier flag, clean up
232         code, and adjust logic to set namelist info pointer correctly for array
233         qualifiers of derived type components.
234
235 2010-01-15  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
236
237         PR libfortran/42742
238         * io/format.c (parse_format): Set limit on size of format strings that
239         will be cached.
240
241 2010-01-05  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
242
243         * configure: Regenerate.
244
245 2010-01-03  Janne Blomqvist  <jb@gcc.gnu.org>
246
247         PR libfortran/42420
248         * io/unix.c: Defines for MINGW stat and fstat.
249         (gfstat_t): New typedef.
250         (id_from_fd): Use gfstat_t instead of struct stat.
251         (fd_to_stream): Likewise.
252         (compare_file_filename): Likewise.
253         (find_file): Likewise.
254         (file_exists): Likewise.
255         (inquire_sequential): Likewise.
256         (inquire_direct): Likewise.
257         (inquire_formatted): Likewise.
258
259 \f
260 Copyright (C) 2010 Free Software Foundation, Inc.
261
262 Copying and distribution of this file, with or without modification,
263 are permitted in any medium without royalty provided the copyright
264 notice and this notice are preserved.