OSDN Git Service

2006-05-24 Carlos O'Donell <carlos@codesourcery.com>
[pf3gnuchains/gcc-fork.git] / libgfortran / ChangeLog
1 2006-05-24  Carlos O'Donell  <carlos@codesourcery.com>
2
3         * Makefile.am: Add install-html target. Add install-html to .PHONY
4         * Makefile.in: Regenerate.
5         * aclocal.m4: Regenerate.
6         
7 2006-05-20  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
8
9         PR libgfortran/24459
10         * io/list_read.c (nml_parse_qualifier): Leave loop spec end value
11         at default value unless -std=f95 or if an array section
12         is specified in namelist input.  Warn if -pedantic.
13         * io/io.h (st_parameter_dt): Add expanded_read flag.
14
15 2006-05-19  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
16
17         PR libgfortran/22423
18         * io/transfer.c (read_block): Return NULL instead of nothing.
19         
20 2006-05-16  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
21
22         PR libgfortran/27575
23         * io/transfer.c (read_block):  Add check for end file condition.
24         (read_block_direct): Add check for end file condition.
25
26 2006-05-05  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
27
28         PR libfortran/26985
29         * m4/matmul.m4: Correct the condition for the memset call,
30         and remove the unneeded call to size0.
31         * generated/matmul_r4.c: Regenerate.
32         * generated/matmul_r8.c: Regenerate.
33         * generated/matmul_r10.c: Regenerate.
34         * generated/matmul_r16.c: Regenerate.
35         * generated/matmul_c4.c: Regenerate.
36         * generated/matmul_c8.c: Regenerate.
37         * generated/matmul_c10.c: Regenerate.
38         * generated/matmul_c16.c: Regenerate.
39         * generated/matmul_i4.c: Regenerate.
40         * generated/matmul_i8.c: Regenerate.
41         * generated/matmul_i16.c: Regenerate.
42
43 2006-04-29  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
44
45         PR libgfortran/27360
46         * io/list_read.c (read_logical):  Free line_buffer and free saved.
47
48 2006-04-28  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
49
50         PR libgfortran/27304
51         * io/transfer.c (formatted_transfer_scalar):  Generate error if data
52         descriptors are exhausted.
53         * io/format.c (next_format0): Fix comment.
54
55 2006-04-22  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
56
57         PR libgfortran/20257
58         * io/io.h: Add prototypes for get_internal_unit and free_internal_unit.
59         * io/unit.c (get_internal_unit): Initialize unit number, not zero.
60         (free_internal_unit): New function to consolidate freeing memory.
61         (get_unit): Initialize internal_unit_desc to NULL when unit is
62         external.
63         * io/unix.c (mem_close): Check for not NULL before freeing memory.
64         * io/transfer.c (read_block): Reset bytes_left and skip error if unit
65         is preconnected and default record length is reached.
66         (read_block_direct): Ditto.
67         (write_block): Ditto.
68         (write_buf): Ditto.
69         (data_transfer_init): Only flush if not internal unit.
70         (finalize_transfer): Ditto and delete code to free memory used by
71         internal units.
72         (st_read_done): Use new function - free_internal_unit.
73         (st_write_done): Use new function - free_internal unit.
74
75 2006-04-22  Jakub Jelinek  <jakub@redhat.com>
76
77         PR fortran/26769
78         * Makefile.am (i_transpose_c): Add generated/transpose_r16.c.
79         (i_reshape_c): Add generated/reshape_r16.c.
80         * Makefile.in: Regenerated.
81         * generated/transpose_r16.c: Generated new file.
82         * generated/redhape_r16.c: Generated new file.
83
84 2006-04-14  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
85
86         PR libgfortran/27138
87         * io/list_read.c (eat_line): New function.
88         (parse_repeat): Use new function and free_saved.
89         (read_logical): Same.
90         (read_integer): Use new function.
91         (parse_real): Use nml_bad_return and new function.
92         (read_complex): Use new function and free_saved.
93         (read_real): Same.
94
95 2006-04-12  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
96
97         PR libgfortran/26766
98         * io/io.h: Add bit to identify associated unit as internal.
99         * io/unit.c (get_external_unit): Renamed the find_unit_1 function to
100         reflect the external unit functionality vs internal unit.
101         (get_internal_unit): New function to allocate and initialize an internal
102         unit structure.
103         (get_unit): Use get_internal_unit and get_external_unit.
104         (is_internal_unit): Revised to use new bit added in io.h.
105         * io/transfer.c (data_transfer_init): Fix line width.
106         (st_read_done): Free memory allocated for internal unit.
107         (st_write_done): Add test to only flush and truncate when not an
108         internal unit.  Free memory allocated for internal unit.
109
110 2006-04-11  Jakub Jelinek  <jakub@redhat.com>
111
112         * io/io.h (st_parameter_dt): Revert 2005-12-10 change to
113         u.pad, fix comment.
114         (check_st_parameter_dt): New compile time assert.
115
116 2006-04-10  Jakub Jelinek  <jakub@redhat.com>
117
118         PR libgfortran/24685
119         * io/write.c (MIN_FIELD_WIDTH, STR, STR1): Define.
120         (output_float): Increase buffer sizes for IEEE quad and IBM extended
121         long double.
122         (write_real): Output REAL(16) as 1PG43.34E4 rather than 1PG40.31E4.
123
124 2006-04-07  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
125
126         PR libgfortran/26890
127         * io/io.h: Revert change to pad size made on 2006-03-30.
128         Add comment explaining dependency with fortran/trans-io.c.
129         
130 2006-04-03  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
131
132         * io/write.c (output_float): Update condition to not error when
133         decimal precision in format specifier is zero.
134
135 2006-04-01  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
136
137         * config/fpu-387.h: Use previously added SSE code in all
138         cases, as it really is the right thing to do.
139
140 2006-03-30  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
141
142         PR libgfortran/26890
143         * io/io.h: Add size_used to st_parameter_dt, adjust pad size.
144         *io/transfer.c (data_transfer_init): Initialize size_used to zero.
145         (read_sf): Use size_used.
146         (read_block): Likewise.
147         (read_block_direct): Likewise.
148         (write_block): Likewise.
149         (write_buf): Likewise and eliminate erroneous FAILURE return.
150         (finalize_transfer): Assign value of size_used to *dtp->size.
151
152 2006-03-30  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
153
154         PR libfortran/26712
155         * config/fpu-387.h: Add special case for handling of SSE
156         control bit on i386-darwin.
157
158 2006-03-30  Thomas Koenig  <Thomas.Koenig@online.de>
159
160         PR fortran/25031
161         * runtime/memory.c (allocate_array):  If stat is present and
162         the variable is already allocated, free the variable, do
163         the allocation and set stat.
164         (allocate_array_64):  Likewise.  Whitespace fix.
165
166 2006-03-26  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
167
168         PR libgfortran/26880
169         * io/file_pos.c (st_rewind): Clear read_bad flag.
170
171 2006-03-25  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
172
173         PR libgfortran/26661
174         * io/io.h: Add read_sf so it can be used by read_x.
175         * io/transfer.c (read_sf): Pass no_error flag to read_sf.  Use it to
176         break out rather than error on EOF or EOR conditions.
177         (read_block): Update call to read_sf.
178         (read_block_direct): Ditto.
179         * io/read.c (read_x): Use the modified read_sf instead of read_block.
180
181 2006-03-25  Thomas Koenig  <Thomas.Koenig@online.de>
182
183         PR libfortran/26735
184         * io/transfer.c (data_transfer_init):  Set u_flags.convert
185         on an unopened unit if specified by environment variable
186         (via get_unformatted_convert) or by compile-time option.
187
188 2006-03-25  Thomas Koenig  <Thomas.Koenig@online.de>
189
190         PR fortran/26769
191         * Makefile.am:  Add transpose_r10.c and reshape_r10.c.
192         * aclocal.m4:  Regenerate using aclocal 1.9.3.
193         * Makefile.in:  Regenerate using automake 1.9.3.
194         * m4/iparm.m4 (rtype_ccode):  If rtype_letter is `i',
195         evaluate to rtype_kind, otherwise to rtype_code.
196         * generated/transpose_r10.c:  Add.
197         * generated/reshape_r10.c:  Add.
198
199 2006-03-22  Thomas Koenig  <Thomas.Koenig@online.de>
200
201         PR fortran/19303
202         * libgfortran.h (compile_options_t):  Add record_marker.
203         * runtime/compile_options.c (set_record_marker):
204         New function.
205         * io/open.c:  If we have four-byte record markers, use
206         GFC_INTEGER_4_HUGE as default record length.
207         * io/file_pos.c (unformatted_backspace):  Handle
208         different size record markers.
209         * io/transfer.c (us_read):  Likewise.
210         (us_write):  Likewise.
211         (next_record_r):  Likewise.
212         (write_us_marker):  Likewise.
213         (next_record_w):  Likewise.
214
215 2006-03-20  Thomas Koenig  <Thomas.Koenig@online.de>
216
217         PR fortran/20935
218         * m4/iforeach.m4:  Add SCALAR_FOREACH_FUNCTION macro.
219         * m4/ifunction.m4:  Add SCALAR_ARRAY_FUNCTION macro.
220         * m4/minloc0.m4:  Use SCALAR_FOREACH_FUNCTION.
221         * m4/minloc1.m4:  Use SCALAR_ARRAY_FUNCTION.
222         * m4/maxloc0.m4:  Use SCALAR_FOREACH_FUNCTION.
223         * m4/maxloc1.m4:  Use SCALAR_ARRAY_FUNCTION.
224         * m4/minval.m4:  Likewise.
225         * m4/maxval.m4:  Likewise.
226         * m4/product.m4:  Likewise.
227         * m4/sum.m4:  Likewise.
228         * minloc0_16_i16.c : Regenerated.
229         * minloc0_16_i4.c : Regenerated.
230         * minloc0_16_i8.c : Regenerated.
231         * minloc0_16_r10.c : Regenerated.
232         * minloc0_16_r16.c : Regenerated.
233         * minloc0_16_r4.c : Regenerated.
234         * minloc0_16_r8.c : Regenerated.
235         * minloc0_4_i16.c : Regenerated.
236         * minloc0_4_i4.c : Regenerated.
237         * minloc0_4_i8.c : Regenerated.
238         * minloc0_4_r10.c : Regenerated.
239         * minloc0_4_r16.c : Regenerated.
240         * minloc0_4_r4.c : Regenerated.
241         * minloc0_4_r8.c : Regenerated.
242         * minloc0_8_i16.c : Regenerated.
243         * minloc0_8_i4.c : Regenerated.
244         * minloc0_8_i8.c : Regenerated.
245         * minloc0_8_r10.c : Regenerated.
246         * minloc0_8_r16.c : Regenerated.
247         * minloc0_8_r4.c : Regenerated.
248         * minloc0_8_r8.c : Regenerated.
249         * minloc1_16_i16.c : Regenerated.
250         * minloc1_16_i4.c : Regenerated.
251         * minloc1_16_i8.c : Regenerated.
252         * minloc1_16_r10.c : Regenerated.
253         * minloc1_16_r16.c : Regenerated.
254         * minloc1_16_r4.c : Regenerated.
255         * minloc1_16_r8.c : Regenerated.
256         * minloc1_4_i16.c : Regenerated.
257         * minloc1_4_i4.c : Regenerated.
258         * minloc1_4_i8.c : Regenerated.
259         * minloc1_4_r10.c : Regenerated.
260         * minloc1_4_r16.c : Regenerated.
261         * minloc1_4_r4.c : Regenerated.
262         * minloc1_4_r8.c : Regenerated.
263         * minloc1_8_i16.c : Regenerated.
264         * minloc1_8_i4.c : Regenerated.
265         * minloc1_8_i8.c : Regenerated.
266         * minloc1_8_r10.c : Regenerated.
267         * minloc1_8_r16.c : Regenerated.
268         * minloc1_8_r4.c : Regenerated.
269         * minloc1_8_r8.c : Regenerated.
270         * maxloc0_16_i16.c : Regenerated.
271         * maxloc0_16_i4.c : Regenerated.
272         * maxloc0_16_i8.c : Regenerated.
273         * maxloc0_16_r10.c : Regenerated.
274         * maxloc0_16_r16.c : Regenerated.
275         * maxloc0_16_r4.c : Regenerated.
276         * maxloc0_16_r8.c : Regenerated.
277         * maxloc0_4_i16.c : Regenerated.
278         * maxloc0_4_i4.c : Regenerated.
279         * maxloc0_4_i8.c : Regenerated.
280         * maxloc0_4_r10.c : Regenerated.
281         * maxloc0_4_r16.c : Regenerated.
282         * maxloc0_4_r4.c : Regenerated.
283         * maxloc0_4_r8.c : Regenerated.
284         * maxloc0_8_i16.c : Regenerated.
285         * maxloc0_8_i4.c : Regenerated.
286         * maxloc0_8_i8.c : Regenerated.
287         * maxloc0_8_r10.c : Regenerated.
288         * maxloc0_8_r16.c : Regenerated.
289         * maxloc0_8_r4.c : Regenerated.
290         * maxloc0_8_r8.c : Regenerated.
291         * maxloc1_16_i16.c : Regenerated.
292         * maxloc1_16_i4.c : Regenerated.
293         * maxloc1_16_i8.c : Regenerated.
294         * maxloc1_16_r10.c : Regenerated.
295         * maxloc1_16_r16.c : Regenerated.
296         * maxloc1_16_r4.c : Regenerated.
297         * maxloc1_16_r8.c : Regenerated.
298         * maxloc1_4_i16.c : Regenerated.
299         * maxloc1_4_i4.c : Regenerated.
300         * maxloc1_4_i8.c : Regenerated.
301         * maxloc1_4_r10.c : Regenerated.
302         * maxloc1_4_r16.c : Regenerated.
303         * maxloc1_4_r4.c : Regenerated.
304         * maxloc1_4_r8.c : Regenerated.
305         * maxloc1_8_i16.c : Regenerated.
306         * maxloc1_8_i4.c : Regenerated.
307         * maxloc1_8_i8.c : Regenerated.
308         * maxloc1_8_r10.c : Regenerated.
309         * maxloc1_8_r16.c : Regenerated.
310         * maxloc1_8_r4.c : Regenerated.
311         * maxloc1_8_r8.c : Regenerated.
312         * maxval_i16.c : Regenerated.
313         * maxval_i4.c : Regenerated.
314         * maxval_i8.c : Regenerated.
315         * maxval_r10.c : Regenerated.
316         * maxval_r16.c : Regenerated.
317         * maxval_r4.c : Regenerated.
318         * maxval_r8.c : Regenerated.
319         * minval_i16.c : Regenerated.
320         * minval_i4.c : Regenerated.
321         * minval_i8.c : Regenerated.
322         * minval_r10.c : Regenerated.
323         * minval_r16.c : Regenerated.
324         * minval_r4.c : Regenerated.
325         * minval_r8.c : Regenerated.
326         * sum_c10.c : Regenerated.
327         * sum_c16.c : Regenerated.
328         * sum_c4.c : Regenerated.
329         * sum_c8.c : Regenerated.
330         * sum_i16.c : Regenerated.
331         * sum_i4.c : Regenerated.
332         * sum_i8.c : Regenerated.
333         * sum_r10.c : Regenerated.
334         * sum_r16.c : Regenerated.
335         * sum_r4.c : Regenerated.
336         * sum_r8.c : Regenerated.
337         * product_c10.c : Regenerated.
338         * product_c16.c : Regenerated.
339         * product_c4.c : Regenerated.
340         * product_c8.c : Regenerated.
341         * product_i16.c : Regenerated.
342         * product_i4.c : Regenerated.
343         * product_i8.c : Regenerated.
344         * product_r10.c : Regenerated.
345         * product_r16.c : Regenerated.
346         * product_r4.c : Regenerated.
347         * product_r8.c : Regenerated.
348
349 2006-03-17  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
350
351         PR libgfortran/26509
352         * libgfortran.h: Add ERROR_DIRECT_EOR.
353         * runtime/error.c (translate_error): Add translation for new error.
354         * io/transfer.c (write_buf): Add check for EOR when mode is 
355         direct access.
356
357 2006-03-13  Paul Thomas  <pault@gcc.gnu.org>
358
359         PR fortran/25378
360         * libgfortran/m4/minloc1.m4: Set the initial position to zero and
361         modify the condition for updating it, to implement the F2003
362         requirement for all(mask).eq.false.
363         * libgfortran/m4/maxloc1.m4: The same.
364         * libgfortran/m4/iforeach.m4: The same.
365         * libgfortran/m4/minloc0.m4: The same.
366         * libgfortran/m4/maxloc0.m4: The same.
367         * libgfortran/generated/maxloc0_16_i16.c: Regenerated, together
368         with 41 others.
369         * libgfortran/generated/minloc0_16_i16.c: Regenerated, together
370         with 41 others.
371
372 2006-03-09  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
373
374         PR libgfortran/26499
375         * io/file_pos (st_rewind): Flush always.
376         * io/unix.c (fd_truncate): Return SUCCESS rather than FAILURE for
377         special files like /dev/null.
378         * io/transfer.c (st_write_done): Remove broken logic that
379         prevented calling fd_truncate.
380
381 2006-03-05  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
382
383         PR libgfortran/26554
384         * io/list_read.c (read_logical): Return the value if not in namelist
385         mode.
386
387 2006-03-03  Thomas Koenig  <Thomas.Koenig@online.de>
388
389         PR fortran/25031
390         * runtime/memory.c:  Adjust copyright years.
391         (allocate_array):  New function.
392         (allocate64_array):  New function.
393         * libgfortran.h (error_codes):  Add ERROR_ALLOCATION.
394
395 2006-02-28  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
396
397         PR libgfortran/26136
398         * io/io.h: Add flag for reading from line_buffer.
399         * io/list_read.c (l_push_char): New function to save namelist
400         input when reading logicals.
401         (free_line): New function to free line_buffer memory.
402         (next_char): Added feature to read from line_buffer.
403         (read_logical): Use new functions to test for '=' after reading a
404         logical value, checking for possible variable name.
405         (namelist_read): Use free_line when all done.
406
407 2006-02-27  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
408
409         PR libgfortran/26464
410         * io/file_pos.c (st_backspace): Flush and truncate file
411         when in AFTER_ENDFILE condition.
412         * io/transfer.c (st_read_done): Remove flush, no longer needed.
413
414 2006-02-24  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
415
416         PR libgfortran/26423
417         * io/unix.c (fd_seek): Revert change from 25949.
418         (fd_read): Same.
419         (fd_write): Same.
420
421 2006-02-19  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
422
423         * io/open.c (edit_modes): Correct abusive copy-pasting.
424
425 2006-02-16  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
426
427         PR libfortran/24903
428         * m4/dotprodc.m4: Use __builtin_conj instead of assigning real
429         and imaginary parts separately.
430         * generated/dotprod_c4.c: Regenerated.
431         * generated/dotprod_c8.c: Regenerated.
432         * generated/dotprod_c10.c: Regenerated.
433         * generated/dotprod_c16.c: Regenerated.
434
435 2006-02-12  Janne Blomqvist  <jb@gcc.gnu.org>
436
437         PR libgfortran/25949
438         * io/io.h: Add set function pointer to struct stream.  
439         * io/unix.c (fd_seek): Only update offset, don't seek.
440         (fd_sset): New function.
441         (fd_read): Call lseek directly if necessary.
442         (fd_write): Likewise.
443         (fd_open): Set pointer to fd_sset.
444         (mem_set): New function.
445         (open_internal): Set pointer to mem_set.
446         * io/transfer.c (write_block_direct): Rename to write_buf, add
447         error return, non-pointer length argument.
448         (unformatted_write): Update to use write_buf.
449         (us_write): Simplify by using swrite instead of salloc_w.
450         (write_us_marker): New function.
451         (new_record_w): Use sset instead of memset, use write_us_marker,
452         simplify by using swrite instead of salloc_w.
453
454 2006-02-08  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
455
456         PR libfortran/25425
457         * libgfortran.h: Add pedantic field to compile_options struct.
458         * io/write.c (calculate_G_format): Depending on the standard,
459         choose E or F format for list-directed output of 0.0.
460         * runtime/error.c (notify_std): Make warning and error dependent
461         on pedanticity.
462         * runtime/compile_options.c (set_std): Use new pedantic argument.
463
464 2006-02-07  Dale Ranta  <dir@lanl.gov>
465
466         PR fortran/25577
467         * intrinsics/mvbits.c: Shift '(TYPE)1' type when building 'lenmask'.
468
469 2006-02-07  Rainer Emrich <r.emrich@de.tecosim.com>
470
471         * intrinsics/c99_functions.c: Work around incompatible
472         declarations of cabs{,f,l} on pre-C99 IRIX systems.
473
474 2005-02-06  Thomas Koenig  <Thomas.Koenig@online.de>
475
476         PR libfortran/23815
477         * runtime/environ.c (init_unformatted):  Add GFORTRAN_CONVERT_UNIT
478         environment variable.
479         (top level):  Add defines, type and static variables for
480         GFORTRAN_CONVERT_UNIT handling.
481         (search_unit):  New function.
482         (match_word): New function.
483         (match_integer): New function.
484         (next_token): New function.
485         (push_token): New function.
486         (mark_single): New function.
487         (mark_range): New funciton.
488         (do_parse): New function.
489         (init_unformatted): New function.
490         (get_unformatted_convert): New function.
491         * runtime/compile_options.c:  Add set_convert().
492         * libgfortran.h:  Add convert to compile_options_t.
493         * io/open.c (st_open): Call get_unformatted_convert to get
494         unit default; if CONVERT_NONE is returned, check for
495         the presence of a CONVERT specifier and use it.
496         As default, use compile_options.convert.
497         * io/io.h (top level): Add CONVERT_NONE to unit_convert, to signal
498         "nothing has been set".
499         (top level): Add prototype for get_unformatted_convert.
500
501 2006-02-06  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
502
503         PR libfortran/24685
504         * io/write.c (write_real): Widen the default format for real(10)
505         variables output.
506
507 2006-01-24  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
508
509         PR libgfortran/25835
510         * io/transfer.c (st_read_done): Flush buffers when read is done.
511
512 2006-01-17  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
513
514         PR libgfortran/25697
515         * io/transfer.c (us_read): Detect end of file condition from previous
516         operations and bail out (no need to pre-position).
517
518 2006-01-17  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
519
520         PR libgfortran/25631
521         * io/transfer.c (formatted_transfer_scalar): Adjust pending_spaces and
522         skips so that TL works correctly when no bytes_used yet.  
523
524 2006-01-16  Roger Sayle  <roger@eyesopen.com>
525
526         * configure.ac (CFLAGS): Update to include -std=gnu99 so that
527         the configure tests will be run with the same environment as
528         used to compile the libgfortran source code.
529         * configure: Regenerate.
530
531 2006-01-12  Roger Sayle  <roger@eyesopen.com>
532
533         * intrinsics/c99_functions.c: Add function prototypes to avoid
534         warnings from -Wstrict-prototypes -Wmissing-prototypes.  On Tru64
535         work around a brain-dead libm by redirecting calls to cabs{,f,l}
536         to a local __gfc_cabs{,f,l}.
537
538 2006-01-07  Janne Blomqvist  <jb@gcc.gnu.org>
539
540         * configure.ac: Remove check for sys/mman.h.
541         * configure: Regenerated.
542         * Makefile.in: Regenerated.
543         * config.h.in: Regenerated.
544         * aclocal.m4: Regenerated.
545         
546 2006-01-05  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
547
548         PR libgfortran/25598
549         * io/file_pos.c (unformatted_backspace): Assure the new file position
550         to seek is not less than zero.
551         (st_backspace): Set unit bytes_left to zero.
552         * io/transfer.c (next_record_r): Fix line lengths, no functional change.
553
554 2006-01-02  Paolo Bonzini  <bonzini@gnu.org>
555
556         PR target/25259
557         * configure.ac: Use GCC_HEADER_STDINT.
558         * libgfortran.h: Include gstdint.h.
559         * aclocal.m4: Regenerate.
560         * configure: Regenerate.
561
562 2006-01-01  Steven G. Kargl  <kargls@comcast.net>
563
564         * ChangeLog: Split into years ...
565         * ChangeLog-2002: here.
566         * ChangeLog-2003: here.
567         * ChangeLog-2004: here.
568         * ChangeLog-2005: here.