OSDN Git Service

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