]> gcc.gnu.org Git - gcc.git/blobdiff - gcc/fortran/ChangeLog
re PR fortran/40246 (ICE on invalid SOURCE= using NULLIFY)
[gcc.git] / gcc / fortran / ChangeLog
index db5f3731722016aeab09821a319598a4b5a77ddb..048d44e191a91c237c47a075cff8922503f0067f 100644 (file)
@@ -1,3 +1,189 @@
+2009-05-26  Tobias Burnus  <burnus@net-b.de>
+
+       PR fortran/40246
+       * match.c (gfc_match_nullify): NULLify freed pointer.
+
+2009-05-26  Ian Lance Taylor  <iant@google.com>
+
+       * Make-lang.in (gfortranspec.o): Use $(COMPILER).
+       (gfortran$(exeext), f951$(exeext), fortran/cpp.o): Likewise.
+
+2009-05-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       * gfortran.h (GFC_MPC_RND_MODE): New.
+       * simplify.c (call_mpc_func): New helper function.
+       (gfc_simplify_cos, gfc_simplify_exp, gfc_simplify_log,
+       gfc_simplify_sin, gfc_simplify_sqrt): Add MPC support.
+
+2009-05-25  Janus Weil  <janus@gcc.gnu.org>
+
+       PR fortran/40176
+       * primary.c (gfc_match_varspec): Handle procedure pointer components
+       with array return value.
+       * resolve.c (resolve_expr_ppc): Ditto.
+       (resolve_symbol): Make sure the interface of a procedure pointer has
+       been resolved.
+       * trans-array.c (gfc_walk_function_expr): Handle procedure pointer
+       components with array return value.
+       * trans-expr.c (gfc_conv_component_ref,gfc_conv_procedure_call,
+       gfc_trans_arrayfunc_assign): Ditto.
+       (gfc_trans_pointer_assignment): Handle procedure pointer assignments,
+       where the rhs is a dummy argument.
+       * trans-types.c (gfc_get_ppc_type,gfc_get_derived_type): Handle
+       procedure pointer components with array return value.
+
+2009-05-24  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
+           Dominique Dhumieres
+
+       PR fortran/35732
+       PR fortran/39872
+       * trans-array.c (gfc_conv_ss_startstride): Add one to index.
+
+2009-05-22  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
+
+       PR fortran/40195
+       * module.c (read_md5_from_module_file): Close file before returning.
+
+2009-05-18  Janus Weil  <janus@gcc.gnu.org>
+
+       PR fortran/40164
+       * primary.c (gfc_match_rvalue): Handle procedure pointer components in
+       arrays.
+       * resolve.c (resolve_ppc_call,resolve_expr_ppc): Resolve component and
+       array references.
+       (resolve_fl_derived): Procedure pointer components are not required to
+       have constant array bounds in their return value.
+
+2009-05-18  Janus Weil  <janus@gcc.gnu.org>
+
+       * intrinsic.c (add_sym): Fix my last commit (r147655),
+       which broke bootstrap.
+
+2009-05-18  Richard Guenther  <rguenther@suse.de>
+
+       PR fortran/40168
+       * trans-expr.c (gfc_trans_zero_assign): For local array
+       destinations use an assignment from an empty constructor.
+
+2009-05-18  Janus Weil  <janus@gcc.gnu.org>
+
+       PR fortran/36947
+       PR fortran/40039
+       * expr.c (gfc_check_pointer_assign): Check intents when comparing
+       interfaces.
+       * gfortran.h (typedef struct gfc_intrinsic_arg): Add 'intent' member.
+       (gfc_compare_interfaces): Additional argument.
+       * interface.c (operator_correspondence): Add check for equality of
+       intents, and new argument 'intent_check'.
+       (gfc_compare_interfaces): New argument 'intent_check', which is passed
+       on to operator_correspondence.
+       (check_interface1): Don't check intents when comparing interfaces.
+       (compare_parameter): Do check intents when comparing interfaces.
+       * intrinsic.c (add_sym): Add intents for arguments of intrinsic
+       procedures.
+       (add_sym_1,add_sym_1s,add_sym_1m,add_sym_2,add_sym_2s,add_sym_3,
+       add_sym_3ml,add_sym_3red,add_sym_3s,add_sym_4): Use INTENT_IN by
+       default.
+       (add_sym_1_intent,add_sym_1s_intent,add_sym_2s_intent,add_sym_3s_intent)
+       : New functions to add intrinsic symbols, specifying custom intents.
+       (add_sym_4s,add_sym_5s): Add new arguments to specify intents.
+       (add_functions,add_subroutines): Add intents for various intrinsics.
+       * resolve.c (check_generic_tbp_ambiguity): Don't check intents when
+       comparing interfaces.
+       * symbol.c (gfc_copy_formal_args_intr): Copy intent.
+
+2009-05-17  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
+
+       * iso-fortran-env.def: Define INT8, INT16, INT32, INT64, REAL32,
+       REAL64 and REAL128.
+       * gfortran.h (gfc_get_int_kind_from_width_isofortranenv,
+       gfc_get_real_kind_from_width_isofortranenv): New prototypes.
+       * iso-c-binding.def: Update definitions for the INT*_T,
+       INT_LEAST*_T and INT_FAST*_T named parameters.
+       * trans-types.c (get_typenode_from_name, get_int_kind_from_name,
+       gfc_get_real_kind_from_width_isofortranenv): New functions.
+
+2009-05-17  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
+
+       PR fortran/36260
+       * intrinsic.c (add_functions, add_subroutines): Fix argument
+       names and wrap long lines.
+       * intrinsic.texi: Fix documentation and argument names of
+       LOG_GAMMA, DATAN2, DBESJN, DTIME, ETIME, FSTAT, STAT, LSTAT,
+       GET_COMMAND, IDATE, LTIME, MOVE_ALLOC, NINT, OR, PRODUCT,
+       SUM, RAND, RANDOM_SEED, REAL, SELECTED_INT_KIND,
+       SELECTED_REAL_KIND and XOR.
+
+2009-05-16  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
+
+       PR fortran/33197
+       * intrinsic.c (add_functions): Use ERFC_SCALED simplification.
+       * intrinsic.h (gfc_simplify_erfc_scaled): New prototype.
+       * simplify.c (fullprec_erfc_scaled, asympt_erfc_scaled,
+       gfc_simplify_erfc_scaled): New functions.
+
+2009-05-16  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
+
+       PR fortran/31243
+       * resolve.c (resolve_substring): Don't allow too large substring
+       indexes.
+       (gfc_resolve_substring_charlen): Fix typo.
+       (gfc_resolve_character_operator): Fix typo.
+       (resolve_charlen): Catch unreasonably large string lengths.
+       * simplify.c (gfc_simplify_len): Don't error out on LEN
+       range checks.
+
+2009-05-16  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
+
+       PR fortran/36031
+       * decl.c (set_enum_kind): Use global short-enums flag.
+       * gfortran.h (gfc_option_t): Remove short_enums flag.
+       * lang.opt (-fshort-enums): Refer to C documentation.
+       * options.c (gfc_init_options, gfc_handle_option): Use global
+       short-enums flag.
+
+2009-05-15  Tobias Burnus  <burnus@net-b.de>
+
+       PR fortran/39352
+       * f95-lang.c: Add gfc_maybe_initialize_eh.
+       * gfortran.h: Add gfc_maybe_initialize_eh prototype.
+       * Make-lang.in: Add new .h dendencies for f95-lang.c
+       * openmp.c (resolve_omp_do): Call gfc_maybe_initialize_eh.
+       * misc.c (gfc_free): Avoid #define trickery for free.
+
+2009-05-14  Steven G. Kargl  <kargl@gcc.gnu.org>
+
+       * dump-parse-tree.c (show_code_node): Add ERRMSG to the dumping
+       of allocate and deallocate statements.
+
+2009-05-14  Ian Lance Taylor  <iant@google.com>
+
+       * decl.c (match_attr_spec): Change d to unsigned int.
+       * dump-parse-tree.c (show_namespace): Change op to int.  Add cast.
+       * interface.c (gfc_check_interfaces): Change i to int.  Add casts.
+       * module.c (read_module): Change i to int.  Add cast.
+       (write_module): Change i to int.
+       * symbol.c (gfc_get_namespace): Change in to int.
+       (gfc_free_namespace): Change i to int.
+       * trans-io.c (gfc_build_io_library_fndecls): Change ptype to
+       unsigned int.  Add cast.
+       * trans-types.c (gfc_init_kinds): Change mode to unsigned int.
+       Add casts.
+
+2009-05-14  Daniel Kraft  <d@domob.eu>
+
+       PR fortran/40045
+       * dump-parse-tree.c (show_typebound): Fix missing adaption to new
+       type-bound procedure storage structure.
+
+2009-05-14  Janus Weil  <janus@gcc.gnu.org>
+
+       PR fortran/39996
+       * decl.c (gfc_match_function_decl): Use gfc_add_type.
+       * symbol.c (gfc_add_type): Better checking for duplicate types in
+       function declarations. And: Always give an error for duplicte types,
+       not just a warning with -std=gnu.
+
 2009-05-14  Jakub Jelinek  <jakub@redhat.com>
 
        PR fortran/39865
        * gfortran.h (gfc_code): Rename struct member label to label1.
        * dump-parse-tree.c (show_code_node): Update symbol.
        * trans-stmt.c (gfc_trans_label_assign, gfc_trans_goto,
-       gfc_trans_arithmetic_if)": Ditto.
+       gfc_trans_arithmetic_if): Ditto.
        * resolve.c (gfc_resolve_blocks, resolve_code): Ditto.
        * match.c (match_arithmetic_if, gfc_match_if, gfc_reference_st_label,
        gfc_match_assign, gfc_match_goto): Ditto.
 2009-04-24  Daniel Kraft  <d@domob.eu>
 
        * gfortran.h (gfc_get_typebound_proc): Removed as macro, now a function.
-       (struct gfc_symtree): Moved `typebound' member inside union.
-       (struct gfc_namespace): Add `tb_sym_root' as new symtree to sort out
+       (struct gfc_symtree): Moved "typebound" member inside union.
+       (struct gfc_namespace): Add "tb_sym_root" as new symtree to sort out
        type-bound procedures there.
        (gfc_get_tbp_symtree): New procedure.
        * symbol.c (tentative_tbp_list): New global.
-       (gfc_get_namespace): NULL new `tb_sym_root' member.
-       (gfc_new_symtree): Removed initialization of `typebound' member.
+       (gfc_get_namespace): NULL new "tb_sym_root" member.
+       (gfc_new_symtree): Removed initialization of "typebound" member.
        (gfc_undo_symbols): Process list of tentative tbp's.
        (gfc_commit_symbols): Ditto.
        (free_tb_tree): New method.
        * primary.c (gfc_match_varspec): Ditto.  Don't reference tbp-symbol
        as it isn't a symbol any longer.
        * module.c (mio_typebound_symtree): Adapt to changes.
-       (mio_typebound_proc): Ditto, create symtrees using `gfc_get_tbp_symtree'
-       rather than `gfc_get_sym_tree'.
+       (mio_typebound_proc): Ditto, create symtrees using "gfc_get_tbp_symtree"
+       rather than "gfc_get_sym_tree".
        (mio_f2k_derived): Ditto.
        * decl.c (match_procedure_in_type): Ditto.
        (gfc_match_generic): Ditto.  Don't reference tbp-symbol.
 2009-04-11  Daniel Kraft  <d@domob.eu>
 
        PR fortran/37746
-       * gfortran.h (struct gfc_charlen): New field `passed_length' to store
+       * gfortran.h (struct gfc_charlen): New field "passed_length" to store
        the actual passed string length for dummy arguments.
        * trans-decl.c (gfc_create_string_length): Formatting fixes and added
        assertion, moved a local variable into the innermost block it is needed.
 
 2009-04-06  Janus Weil  <janus@gcc.gnu.org>
 
-       PR fortran/39414
-       * decl.c (match_procedure_decl): Fix double declaration problems with
-       PROCEDURE statements.
-       * symbol.c (gfc_add_type): Ditto.
+       PR fortran/39414
+       * decl.c (match_procedure_decl): Fix double declaration problems with
+       PROCEDURE statements.
+       * symbol.c (gfc_add_type): Ditto.
 
 2009-04-06  Paul Thomas  <pault@gcc.gnu.org>
 
-        PR fortran/36091
-        * trans-array.c (gfc_conv_array_ref): If the symbol has the
+       PR fortran/36091
+       * trans-array.c (gfc_conv_array_ref): If the symbol has the
        temporary attribute use the array_spec for the bounds.
        * gfortran.h : Add the temporary field to the structure
        'symbol_attribute'.
 2009-03-29  Daniel Kraft  <d@domob.eu>
 
        PR fortran/37423
-       * gfortran.h (struct gfc_typebound_proc): Added new flag `deferred' and
+       * gfortran.h (struct gfc_typebound_proc): Added new flag "deferred" and
        added a comment explaining DEFERRED binding handling.
        * decl.c (match_binding_attributes): Really match DEFERRED attribute.
        (match_procedure_in_type): Really match PROCEDURE(interface) syntax
        (resolve_typebound_procedure): Allow abstract interfaces as targets
        for DEFERRED bindings.
        (ensure_not_abstract_walker), (ensure_not_abstract): New methods.
-       (resolve_fl_derived): Use new `ensure_not_abstract' method for
+       (resolve_fl_derived): Use new "ensure_not_abstract" method for
        non-ABSTRACT types extending ABSTRACT ones to ensure each DEFERRED
        binding is overridden.
        (check_typebound_baseobject): New method.
        * gfc-internals.texi (Type-bound procedures): Document a little bit
        about internal handling of DEFERRED bindings.
 
-2009-03-29  Tobias SchlΓΌter  <tobi@gcc.gnu.org>
+2009-03-29  Tobias Schlueter  <tobi@gcc.gnu.org>
 
        PR fortran/38507
        * gfortran.h (gfc_st_label): Fix comment.
This page took 0.036821 seconds and 5 git commands to generate.