OSDN Git Service

* intrinsic.texi (STAT): Reverted a format in example code to
[pf3gnuchains/gcc-fork.git] / gcc / fortran / ChangeLog
index a8758cd..be6867c 100644 (file)
@@ -1,3 +1,141 @@
+2006-10-13  Brooks Moses  <bmoses@stanford.edu>
+
+       * intrinsic.texi (STAT): Reverted a format in example code to
+       octal; noted this in accompanying string.
+
+2006-10-13 Paul Thomas <pault@gcc.gnu.org>
+
+       PR fortran/29373
+       * decl.c (get_proc_name, gfc_match_function_decl): Add
+       attr.implicit_type to conditions that throw error for
+       existing explicit interface and that allow new type-
+       spec to be applied.
+
+       PR fortran/29407
+       * resolve.c (resolve_fl_namelist): Do not check for
+       namelist/procedure conflict, if the symbol corresponds
+       to a good local variable declaration.
+
+       PR fortran/27701
+       * decl.c (get_proc_name): Replace the detection of a declared
+       procedure by the presence of a formal argument list by the
+       attributes of the symbol and the presence of an explicit
+       interface.
+
+       PR fortran/29232
+       * resolve.c (resolve_fl_variable): See if the host association
+       of a derived type is blocked by the presence of another type I
+       object in the current namespace.
+
+       PR fortran/29364
+       * resolve.c (resolve_fl_derived): Check for the presence of
+       the derived type for a derived type component.
+
+       PR fortran/24398
+       * module.c (gfc_use_module): Check that the first words in a
+       module file are 'GFORTRAN module'.
+
+       PR fortran/29422
+       * resolve.c (resolve_transfer): Test functions for suitability
+       for IO, as well as variables.
+
+       PR fortran/29428
+       * trans-expr.c (gfc_trans_scalar_assign): Remove nullify of
+       rhs expression.
+
+2006-10-13  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
+
+       PR fortran/29391
+       * trans-intrinsic.c (gfc_conv_intrinsic_bound): Generate correct
+       code for LBOUND and UBOUND intrinsics.
+
+2006-10-13  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
+
+       PR fortran/21435
+       * io.c (compare_to_allowed_values): New function.
+       (gfc_match_open): Add checks for constant values of specifiers.
+       (gfc_match_close): Add checks for constant values of the STATUS
+       specifier.
+
+2006-10-12  Brooks Moses  <bmoses@stanford.edu>
+
+       * intrinsic.texi (STAT): Fixed a format typo in sample code.
+
+2006-10-12  Brooks Moses  <bmoses@stanford.edu>
+
+       * intrinsic.texi (STAT): Shortened lines in sample code.
+
+2006-10-11  Tobias Schlueter  <tobias.schlueter@physik.uni-muenchen.de>
+
+       * gfortran.h (gfc_show_actual_arglist, gfc_show_array_ref,
+       gfc_show_array_spec, gfc_show_attr, gfc_show_code,
+       gfc_show_components, gfc_show_constructor, gfc_show_equiv,
+       gfc_show_expr, gfc_show_namelist, gfc_show_ref, gfc_show_symbol,
+       gfc_show_typespec): Add prototypes.
+       * dump-parse-tree.c (gfc_show_actual_arglist, gfc_show_array_ref,
+       gfc_show_array_spec, gfc_show_attr, gfc_show_code,
+       gfc_show_components, gfc_show_constructor, gfc_show_equiv,
+       gfc_show_expr, gfc_show_namelist, gfc_show_ref, gfc_show_symbol,
+       gfc_show_typespec): Remove 'static' from declaration.
+
+2006-10-10  Brooks Moses  <bmoses@stanford.edu>
+
+       * invoke.texi, gfortran.texi: Corrected erronous dashes.
+
+2006-10-10  Brooks Moses  <bmoses@stanford.edu>
+
+       * Make-lang.in: Added "fortran.pdf", "gfortran.pdf" target
+       support.
+
+2006-10-10  Daniel Franke  <franke.daniel@gmail.com>
+
+       * intrinsic.texi: added documentation for FSTAT, GETARG,GET_COMMAND,
+       GET_COMMAND_ARGUMENT, GETENV, GET_ENVIRONMENT_VARIABLE, IAND, IARGC,
+       LSTAT and STAT, removed the reference to PR19292 from ACCESS, CHMOD,
+       GMTIME, LSHIFT, LTIME, RSHIFT.
+
+2006-10-10  Brooks Moses  <bmoses@stanford.edu>
+
+       * gfortran.texi (Standards): Update to current status.
+
+2006-10-09  Brooks Moses  <bmoses@stanford.edu>
+
+       * Make-lang.in: Added intrinsic.texi to GFORTRAN_TEXI
+       dependences.
+
+2006-10-09  Brooks Moses  <bmoses@stanford.edu>
+
+       * intrinsic.texi (MOVE_ALLOC): changed "Options" to "Standards".
+
+2006-10-09  Steven G. Kargl  <kargl@gcc.gnu.org>
+
+       * gfortran.h: Define GFC_MPFR_TOO_OLD via mpfr version info.
+       * arith.c (arctangent, gfc_check_real_range): Use it.   
+       * simplify.c (gfc_simplify_atan2, gfc_simplify_exponent,
+       gfc_simplify_log, gfc_simplify_nearest): Use it.
+
+       PR fortran/15441
+       PR fortran/29312
+       * iresolve.c (gfc_resolve_rrspacing): Give rrspacing library
+       routine hidden precision argument.
+       (gfc_resolve_spacing): Give spacing library routine hidden
+       precision, emin - 1, and tiny(x) arguments.
+       * simplify.c (gfc_simplify_nearest): Remove explicit subnormalization.
+       (gfc_simplify_rrspacing): Implement formula from Fortran 95 standard.
+       (gfc_simplify_spacing): Implement formula from Fortran 2003 standard.
+       * trans-intrinsic.c (gfc_intrinsic_map_t) Declare rrspacing and
+       spacing via LIBF_FUNCTION
+       (prepare_arg_info, call_builtin_clz, gfc_conv_intrinsic_spacing,
+       gfc_conv_intrinsic_rrspacing): Remove functions.
+       (gfc_conv_intrinsic_function): Remove calls to
+       gfc_conv_intrinsic_spacing and gfc_conv_intrinsic_rrspacing.
+       * f95-lang.c (gfc_init_builtin_functions): Remove __builtin_clz,
+       __builtin_clzl and __builtin_clzll
+
+2006-10-09  Richard Henderson  <rth@redhat.com>
+
+       Revert emutls patch.
+
 2006-10-09  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
 
        * intrinsic.c (add_sym_0s, add_sym_1s, add_sym_2s, add_sym_3s,