OSDN Git Service

gcc/
[pf3gnuchains/gcc-fork.git] / gcc / fortran / ChangeLog
index 795eeb5..ebce913 100644 (file)
@@ -1,3 +1,61 @@
+2010-04-09  Iain Sandoe  <iains@gcc.gnu.org>
+
+       PR bootstrap/43684
+       * gfortranspec.c (lang_specific_driver): Do not expose vars 
+       only used by HAVE_LD_STATIC_DYNAMIC targets unless compiling
+       for such.
+
+2010-04-09  Tobias Burnus  <burnus@net-b.de>
+
+       PR fortran/18918
+       * decl.c (variable_decl, match_attr_spec): Fix setting the array
+       spec.
+       * array.c (match_subscript,gfc_match_array_ref): Add coarray support.
+       * data.c (gfc_assign_data_value): Ditto.
+       * expr.c (gfc_check_pointer_assign): Add check for coarray constraint.
+       (gfc_traverse_expr): Traverse also through codimension expressions.
+       (gfc_is_coindexed, gfc_has_ultimate_allocatable,
+       gfc_has_ultimate_pointer): New functions.
+       * gfortran.h (gfc_array_ref_dimen_type): Add DIMEN_STAR for coarrays.
+       (gfc_array_ref): Add codimen.
+       (gfc_array_ref): Add in_allocate.
+       (gfc_is_coindexed, gfc_has_ultimate_allocatable,
+       gfc_has_ultimate_pointer): Add prototypes.
+       * interface.c (compare_parameter, compare_actual_formal,
+       check_intents): Add coarray constraints.
+       * match.c (gfc_match_iterator): Add coarray constraint.
+       * match.h (gfc_match_array_ref): Update interface.
+       * primary.c (gfc_match_varspec): Handle codimensions.
+       * resolve.c (coarray_alloc, inquiry_argument): New static variables.
+       (check_class_members): Return gfc_try instead for error recovery.
+       (resolve_typebound_function,resolve_typebound_subroutine,
+       check_members): Handle return value of check_class_members.
+       (resolve_structure_cons, resolve_actual_arglist, resolve_function,
+       check_dimension, compare_spec_to_ref, resolve_array_ref,
+       resolve_ref, resolve_variable, gfc_resolve_expr, conformable_arrays,
+       resolve_allocate_expr, resolve_ordinary_assign): Add coarray
+       support.
+       * trans-array.c (gfc_conv_array_ref, gfc_walk_variable_expr):
+       Skip over coarray refs.
+       (gfc_array_allocate) Add support for references containing coindexes.
+       * trans-expr.c (gfc_add_interface_mapping): Copy coarray attribute.
+       (gfc_map_intrinsic_function): Ignore codimensions.
+
+2010-04-08  Bud Davis  <bdavis9659@sbcglobal.net>
+
+       PR fortran/28039
+       * io.c (check_format_string):  Added check for additional non 
+       blank characters after the format string was successfully 
+       parsed.
+       * io.c (check_format): Changed the error messages for positive
+       int required and period required to drop through the error logic
+       and report with gfc_error instead of gfc_error_now.  Corrected
+       format postion for hollerith strings.
+
+2010-04-08  Tobias Burnus  <burnus@net-b.de>
+
+       * module.c (use_iso_fortran_env_module): Fix standard check.
+
 2010-04-07  Jakub Jelinek  <jakub@redhat.com>
 
        * parse.c (parse_derived, parse_enum): Avoid set but not used
@@ -7,7 +65,7 @@
 
        PR fortran/40539
        * gfortran.texi: Add section about representation of
-        LOGICAL variables.
+       LOGICAL variables.
 
 2010-04-07  Simon Baldwin  <simonb@google.com>