OSDN Git Service

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