OSDN Git Service

2010-03-09 Jerry DeLisle <jvdelisle@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / libgfortran / ChangeLog
index 3f52e5f..1f6b514 100644 (file)
@@ -1,3 +1,54 @@
+2010-03-09  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
+
+       PR libfortran/43265
+       * io/read.c: Include fbuf.h and unix.h to enable lower level I/O for
+       read_x. (read_x): Replace the use of read_sf with equivalent lower level
+       I/O, eliminating unneeded code and handling EOF and EOR conditions.
+       * io/io.h: Revise prototype for read_sf.
+       * io/transfer.c (read_sf): Delete no_error parameter and all uses of it.
+       (read_block_form): Likewise.
+       (next_record_r): Delete wrong code call to hit_eof.
+
+2010-03-08  Kai TIetz  <kai.tietz@onevision.com>
+
+       PR/42950
+       * libgfortran.h (_POSIX): Define if __MINGW32__ is defined.
+       (gfc_printf): Define to gnu_printf for __MINGW32__ case,
+       otherwise to __printf__.
+       (gfc_strtof,gfc_strtod,gfc_strtold): Define for mingw case
+       to POSIX compatible converter functions.
+       (runtime_error): Use instead gfc_printf as formatter
+       attribute name.
+       (runtime_error_at): Likewise.
+       (runtime_warning_at): Likewise.
+       (st_printf): Likewise.
+       * intrinsics/date_and_time.c (localtime_r): Undefine
+       possible defined macro.
+       (gmtime_r): Likewise.
+       * io/read.c (convert_real): Use gfc_strtof, gfc_strtod,
+       and gfc_strtold.
+
+2010-02-24  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
+
+       PR libfortran/43155
+       * io/transfer.c (require_type): Subtract one from item_count for output
+       of error message.  Add comment before formatted_transfer function
+       explaining why the item_count is off by one.
+
+2010-02-24  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
+
+       * io/write_float.def (WRITE_FLOAT): Use __builtin_signbit.
+
+2010-02-22  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
+
+       * io/list_read.c (list_formatted_read_scalar): Remove duplicate code.
+
+2010-02-09  Tobias Burnus  <burnus@net-b.de>
+
+       PR fortran/42996
+       * intrinsics/args.c (get_command_argument_i4): Always return
+       commandline-argument length for length parameter.
+
 2010-02-06  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
 
        PR libfortran/42742