OSDN Git Service

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