OSDN Git Service

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