OSDN Git Service

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