OSDN Git Service

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