OSDN Git Service

2010-08-23 Tobias Burnus <burnus@net-b.de>
[pf3gnuchains/gcc-fork.git] / libgfortran / ChangeLog
index 2c38ba3..c79027a 100644 (file)
@@ -1,3 +1,322 @@
+2010-08-23  Tobias Burnus  <burnus@net-b.de>
+
+       PR fortran/45323
+       * io/write.c (nml_write_obj, namelist_write): Cast argument
+       of toupper to int.
+
+2010-08-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
+
+       * configure: Regenerate.
+
+2010-08-19  Tobias Burnus  <burnus@net-b.de>
+
+       PR fortran/36158
+       PR fortran/33197
+       * m4/bessel.m4: Implement bessel_jn and bessel_yn.
+       * gfortran.map: Add the generated bessel_jn_r{4,8,10,16}
+       and bessel_yn_r{4,8,10,16}.
+       * Makefile.am: Add bessel.m4.
+       * Makefile.in: Regenerated.
+       * generated/bessel_r4.c: Generated.
+       * generated/bessel_r16.c: Generated.
+       * generated/bessel_r8.c: Generated.
+       * generated/bessel_r10.c: Generated.
+
+2010-08-19  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
+
+       PR libfortran/45108
+       * io/list_read.c (namelist_read): If namelist reading fails, use
+       generate_error and then continue the read loop.
+
+2010-08-17  Jakub Jelinek  <jakub@redhat.com>
+
+       PR fortran/45308
+       * intrinsics/date_and_time.c (date_and_time): Pass __{zone,time,date}_len
+       instead of {ZONE,TIME,DATE}_LEN as second argument to fstrcpy.  Drop
+       asserts.  Adjust comment to the F2003 wording from the F95 wording.
+
+2010-08-14  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
+
+       PR libfortran/44931
+       * io/inquire.c (inquire_via_unit): Add special case for __MINGW32__ to
+       return special file names CONIN$, CONOUT$, and CONERR$.
+
+2010-08-07  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
+
+       PR libfortran/45143
+       * io/format.c: Remove fnode storage structure definitions, moving these
+       to format.h. (parse_format_list): Add check for data descriptors,
+       taking care of nested formats. Adjust calling parameters to pass a
+       check flag. (parse_format): Likewise.
+       * io/format.h: Add structures moved from format.c.
+       
+2010-08-02  Janne Blomqvist  <jb@gcc.gnu.org>
+
+       * io/unit.c (update_position): Don't update the position flag for
+       non-seekable files, check for stell() error.
+
+2010-08-01  Janne Blomqvist  <jb@gcc.gnu.org>
+
+       * io/unix.c (file_exists): Use access(2) instead of stat(2) to
+       test file existence.
+       (fallback_access): Move up in file, implement F_OK.
+
+2010-07-31  David Edelsohn  <edelsohn@gnu.org>
+
+       * io/inquire.c: Include io.h before string.h.
+
+2010-07-28  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
+
+       PR libfortran/44931
+       * io/inquire.c (inquire_via_unit): Use ttyname to return actual device
+       file name for stdin, stdout, and stderr.  If ttyname does not succeed
+       fall back to default names for these units. Include string.h to allow
+       using strlen function.
+       * unix.c: Remove typedef of unix_stream structure, move to unix.h.
+       * unix.h: Add typedef of unix_stream structure so that it is
+       accessible to inquire.c.
+
+2010-07-19  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
+
+       PR libfortran/44953
+       * io/unix.c (mem_alloc_w4): Return gfc_char4_t instead of char type
+       pointer. (mem_write4): Remove cast to gfc_char4_t.
+       * io/transfer.c (write_block): Use a gfc_char4_t pointer.
+       (memset4): New helper function. (next_record_w): Use new helper
+       function rather than sset for internal units.  Don't attempt to pad
+       with spaces if it is not needed.
+       * io/unix.h: Update prototype for mem_alloc_w4.
+       * io/write.c (memset4): Use gfc_char4_t pointer and chracter type.
+       Don't use multiply by 4 to compute offset. (memcpy4): Likewise.
+       (write_default_char4): Use a gfc_char4_t pointer and update memset4
+       and memcpy calls. (write_a): Likewise. (write_l): Likewise.
+       (write_boz): Likewise. (write_decimal): Likewise. (write_x): Likewise.
+       (write_char): Add support for character(kind=4) internal units that
+       was previously missed. (write_integer): Use a gfc_char4_t pointer and
+       update memset4 and memcpy calls. (write_character): Likewise.
+       (write_separator): Add support for character(kind=4) internal units
+       that was previously missed.
+       * write_float.def (output_float): Use a gfc_char4_t pointer and
+       update memset4 and memcpy calls. (write_infnan): Likewise.
+       (output_float_FMT_G_): Likewise.
+
+2010-07-16  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
+
+       PR libfortran/37077
+       * io/read.c (read_default_char4): Add support for reading into a
+       kind-4 character variable from a character(kind=4) internal unit.
+       * io/io.h (read_block_form4): Add prototype.
+       * io/unit.c (get_internal_unit): Add call to fbuf_init.
+       (free_internal_unit): Add call to fbuf_destroy. (get_unit): Fix
+       whitespace.
+       * io/transfer.c (read_sf_internal): Use fbuf_alloc to allocate a string
+       to recieve the wide characters translated to single byte chracters.
+       (read_block_form): Fix whitespace. (read_block_form4): New function to
+       read from a character(kind=4) internal unit into a character(kind=4)
+       variable. (read_block_direct): Fix whitespace. (write_block): Fix
+       whitespace. (formatted_transfer_scalar_read): Likewise.
+       (formatted_transfer_scalar_write): Likewise.
+       * io/write.c (write_character): Add support for list directed write of
+       a kind=1 character string to a character(kind=4) internal unit.
+
+2010-07-14  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
+
+       PR libfortran/44934
+       * io/file_pos.c (st_endfile): Correctly set unit flags for form.
+       * io/transfer.c (data_transfer_init): Fix indentation of whitespace.
+
+2010-07-12  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
+
+       PR libfortran/37077
+       * io/read.c: Fix comment.
+       * io/io.h (is_char4_unit): New macro.
+       * io/unit.c (get_internal_unit): Call new function open_internal4.
+       * io/unix.c (mem_alloc_r4): New function. (mem_alloc_w4): New function.
+       (mem_read4): New function, temporary stub. (mem_write4): New function.
+       (open_internal4): New function to set stream pointers to use the new
+       mem functions.
+       * io/transfer.c (write_block): Use new mem_alloc_w4 to access internal
+       units of kind=4.
+       * io/unix.h: Add prototypes for open_internal4, mem_alloc_w4, and
+       mem_alloc_r4.
+       * io/write.c (memset4): New helper function. (memcpy4): New helper
+       function. (write_default_char4): Use new helper functions.
+       (write_a): Likewise. (write_l): Likewise. (write_boz): Likewise.
+       (write_decimal): Likewise. (write_x): Likewise.
+       (write_integer): Likewise.
+       * io/write_float.def (output_float): Add code blocks to handle internal
+       unit kind=4 output utilizing gfc_char4_t pointers. (write_infnan): Use
+       new helper functions. (OUTPUT_FLOAT_FMT_G): Update this macro likewise.
+
+2010-07-12  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
+
+       * config/fpu-387.h [__sun__ && __svr4__] Include <signal.h>,
+       <ucontext.h>.
+       (sigill_caught): New.
+       (sigill_hdlr): New function
+       (has_sse) [__sun__ && __svr4__]: Check if SSE instruction causes
+       SIGILL.
+
+2010-07-11  Kai Tietz  <kai.tietz@onevision.com>
+
+       PR libfortran/44698
+       * io/unix.c (flush_buf): Add _commit for WIN32.
+
+2010-06-28  Tobias Burnus  <burnus@net-b.de>
+
+       PR fortran/43298
+       * list_read.c (parse_real): Do not pass (..) on for NAN(..).
+       * read.c (convert_real): Fix comment about NAN/INF.
+
+2010-07-02  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
+
+       * configure.ac (gfortran_use_symver): Only check for Sun-style symbol
+       versioning on Solaris 2.
+       * configure: Regenerate.
+
+2010-07-02  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
+
+       * configure.ac: Check for Sun symbol versioning.
+       * configure: Regenerate.
+
+       * Makefile.am [LIBGFOR_USE_SYMVER]: Protect version_arg with
+       LIBGFOR_USE_SYMVER_GNU.
+       Add version_dep.
+       [LIBGFOR_USE_SYMVER_SUN]: Handle Sun symbol versioning.
+       [!LIBGFOR_USE_SYMVER]: Add version_dep.
+       (libgfortran_la_DEPENDENCIES): Set to $(version_dep).
+       * Makefile.in: Regenerate.
+
+2010-06-29  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
+
+       PR libfortran/43298
+       * io/read.c: Add code to parse and read Inf, Infinity, NaN, and Nan with
+       optional parenthesis.
+
+2010-06-28  Tobias Burnus  <burnus@net-b.de>
+
+       PR fortran/43298
+       * list_read.c (parse_real, read_real): Support NAN(alphanum).
+
+2010-06-25  Tobias Burnus  <burnus@net-b.de>
+
+       * intrinsics/selected_real_kind.f90
+       (_gfortran_selected_real_kind2008): Add function.
+       (_gfortran_selected_real_kind): Stub which calls
+       _gfortran_selected_real_kind2008.
+       * gfortran.map (GFORTRAN_1.4): Add
+       _gfortran_selected_real_kind2008.
+       * mk-srk-inc.sh: Save also RADIX.
+
+2010-06-25  Tobias Burnus  <burnus@net-b.de>
+
+       * runtime/compile_options.c (init_compile_options): Update
+       compile_options.allow_std for GFC_STD_F2008_OBS.
+       * io/transfer.c (formatted_transfer_scalar_read,
+       formatted_transfer_scalar_write): Fix allow_std check.
+       * io/list_read.c (nml_parse_qualifier): Ditto.
+
+2010-06-18  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
+
+       PR libfortran/44477
+       * io/file_pos.c (st_endfile): Add check for ENDFILE when file is
+       already positioned after the EOF marker. Use find_or_create_unit
+       instead of find_unit. If unit is not connected, connect it and create 
+       the file with default settings.
+       * io/transfer.c (data_transfer_init):  Add check for attempted READ or
+       WRITE when file is already positioned after the EOF marker.
+
+2010-06-10  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
+
+       * intrinsics/selected_char_kind.c (selected_char_kind): Fix
+       return value for ISO_10646.
+
+2010-06-09  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
+
+       * mk-kinds-h.sh: Define GFC_REAL_*_LITERAL_SUFFIX and
+       GFC_REAL_*_LITERAL macros for each kind.
+       * intrinsics/cpu_time.c (cpu_time_4, cpu_time_8, cpu_time_10,
+       cpu_time_16): Use them.
+       * intrinsics/random.c (rnumber_4, rnumber_8, rnumber_10,
+       rnumber_16): Likewise.
+
+2010-06-09  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
+
+       * intrinsics/system_clock.c (system_clock_4, system_clock_8):
+       Undefine TCK.
+
+2010-06-04  Thomas Koenig  <tkoenig@gcc.gnu.org>
+
+       PR libfortran/34670
+       * intrinsics/date_and_time.c:  Replace assert with runtime_error
+       when VALUE is too small.
+
+2010-05-20 Jerry DeLisle <jvdelisle@gcc.gnu.org>
+
+       PR fortran/43851
+       * runtime/stop.c (stop_string): Make sure nothing is emitted for
+       blank stop.
+
+2010-05-19 Jerry DeLisle <jvdelisle@gcc.gnu.org>
+
+       PR fortran/43851
+       * runtime/stop.c (error_stop_numeric): New function and updated comment.
+       Add declaration for stop_numeric and remove declaration for stop_string.
+       (stop_string): Use for blank STOP.
+       (stop_numeric): Remove use of special -1 stop code.
+       * runtime/pause.c (do_pause): Use stop_string for blank stop.
+       (pause_numeric): Remove use of special -1 pause code.
+       * gfortran.map: Add new symbol to run-time library.
+       * libgfortran.h: Move declaration for stop_string to here to make
+       function visible for do_pause. Remove declaration for stop_numeric.
+
+2010-05-08  Janne Blomqvist  <jb@gcc.gnu.org>
+
+       * io/unix.h (mem_alloc_r): Fix typo to reduce visibility.
+
+2010-05-07  Janne Blomqvist  <jb@gcc.gnu.org>
+
+       * libgfortran.h (free_mem): Remove prototype.
+       * runtime/memory.c (free_mem): Remove function.
+       * intrinsics/date_and_time.c (secnds): Replace free_mem() with
+       free().
+       * io/fbuf.c (fbuf_destroy): Likewise.
+       * io/format.c (free_format_hash_table): Likewise.
+       (save_parsed_format): Likewise.
+       (free_format_data): Likewise.
+       * io/list_read.c (free_saved): Likewise.
+       (free_line): Likewise.
+       (nml_touch_nodes): Likewise.
+       (nml_read_obj): Likewise
+       * io/lock.c (free_ionml): Likewise.
+       * io/open.c (new_unit): Likewise.
+       (already_open): Likewise.
+       * io/unit.c (destroy_unit_mutex): Likewise.
+       (free_internal_unit): Likewise.
+       (close_unit_1): Likewise.
+       * io/unix.c (raw_close): Likewise.
+       (buf_close): Likewise.
+       (mem_close): Likewise.
+       (tempfile): Likewise.
+       * io/write.c (nml_write_obj): Likewise.
+       * io/write_float.def (output_float_FMT_G_##): Likewise.
+       * runtime/error.c (show_locus): Likewise.
+
+2010-05-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
+
+       PR other/43620
+       * configure.ac (AM_INIT_AUTOMAKE): Add no-dist.
+       * configure: Regenerate.
+       * Makefile.in: Regenerate.
+
+2010-04-30  Kai Tietz  <kai.tietz@onevision.com>
+
+       PR/43844
+       * io/unix.c (raw_truncate): Explicit cast from integer-scalar
+       to pointer.
+       (tempfile): Use for mingw GetTempPath and avoid double slash
+       for path.
+
 2010-04-24  Kai Tietz  <kai.tietz@onevision.com>
 
        PR/43844