OSDN Git Service

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