2007-07-27 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / gcc / fortran / ChangeLog
blobb0089ef1d78dd096721ba0e8fdd6c2d5ee3e96f3
1 2007-07-27  Paul Thomas  <pault@gcc.gnu.org>
3         PR fortran/32903
4         * trans-decl.c (gfc_trans_deferred_vars): Set intent(out)
5         derived types as referenced, if they have the the default
6         initializer set.
8 2007-07-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10         * gfortran.h (generate_isocbinding_symbol): Constify.
11         * symbol.c (gen_special_c_interop_ptr, gen_cptr_param,
12         generate_isocbinding_symbol): Likewise.
14 2007-07-24  Paul Thomas  <pault@gcc.gnu.org>
16         PR fortran/31205
17         PR fortran/32842
18         * trans-expr.c (gfc_conv_function_call): Remove the default
19         initialization of intent(out) derived types.
20         * symbol.c (gfc_lval_expr_from_sym): New function.
21         * matchexp.c (gfc_get_parentheses): Return argument, if it is
22         character and posseses a ref.
23         * gfortran.h : Add prototype for gfc_lval_expr_from_sym.
24         * resolve.c (has_default_initializer): Move higher up in file.
25         (resolve_code): On detecting an interface assignment, check
26         if the rhs and the lhs are the same symbol.  If this is so,
27         enclose the rhs in parenetheses to generate a temporary and
28         prevent any possible aliasing.
29         (apply_default_init): Remove code making the lval and call
30         gfc_lval_expr_from_sym instead.
31         (resolve_operator): Give a parentheses expression a type-
32         spec if it has no type.
33         * trans-decl.c (gfc_trans_deferred_vars): Apply the a default
34         initializer, if any, to an intent(out) derived type, using
35         gfc_lval_expr_from_sym and gfc_trans_assignment.  Check if
36         the dummy is present.
38 2007-07-24  Daniel Franke  <franke.daniel@gmail.com>
40         PR fortran/32867
41         * expr.c (check_init_expr): Simplify matched functions.
43 2007-07-24  Daniel Franke  <franke.daniel@gmail.com>
45         PR fortran/32778
46         * intrinsic.c (add_sym): Do not exclude any symbols, even if not part
47         of the selected standard.
48         (make generic): Likewise.
49         (make alias): Likewise, set standard the alias belongs to.
50         (add_subroutines): Call make_noreturn unconditionally.
51         (check_intrinsic_standard): Change return value to try.
52         (gfc_intrinsic_func_interface): Check return value of above function.
53         (gfc_intrinsic_sub_interface): Likewise.
55 2007-07-24  Thomas Koenig  <tkoenig@gcc.gnu.org>
57         PR fortran/30814
58         * trans-decl.c (generate_function_code):  Add argument
59         for flag_bounds_check to the array for set_options.
60         * invoke.texi (-fbounds-check): Document new libarary run-time
61         behaviour.
63 2007-07-23  Daniel Franke  <franke.daniel@gmail.com>
65         PR fortran/25104
66         PR fortran/31639
67         * expr.c (check_transformational): Reject valid transformational
68         intrinsics to avoid ICE.
69         (check_inquiry): Report error for assumed character lengths for
70         all supported standards.
71         (check_init_expr): Whitespace fix.
73 2007-07-23  Christopher D. Rickett  <crickett@lanl.gov>
75         PR fortran/32797
76         PR fortran/32800
77         * decl.c (verify_bind_c_sym): Use the result symbol for functions
78         with a result clause.  Warn if implicitly typed.  Verify the type
79         and rank of the SHAPE argument, if given.
80         * resolve.c (gfc_iso_c_sub_interface): Use gfc_procedure_use to
81         check the actual args against the formal, sorting them if
82         necessary.
83         * symbol.c (gen_shape_param): Initialize type of SHAPE param to
84         BT_VOID.
86 2007-07-23  Christopher D. Rickett  <crickett@lanl.gov>
88         PR fortran/32732
89         * trans-decl.c (generate_local_decl): Convert the TREE_TYPE for by
90         value character dummy args of BIND(C) procedures.
91         * trans-expr.c (gfc_conv_variable): Do not build address
92         expression for BT_CHARACTER dummy args.
94 2007-07-23  Christopher D. Rickett  <crickett@lanl.gov>
95             Tobias Burnus  <burnus@net-b.de>
97         PR fortran/32600
98         * trans-expr.c (gfc_conv_function_call): Handle c_funloc.
99         * trans-types.c: Add pfunc_type_node.
100         (gfc_init_types,gfc_typenode_for_spec): Use it.
101         * resolve.c (gfc_iso_c_func_interface): Fix whitespace and
102         improve error message.
104 2007-07-22  Daniel Franke  <franke.daniel@gmail.com>
106         PR fortran/32710
107         * parse.c (gfc_fixup_sibling_symbols): No replacement of symbols if
108         the current is a namelist.
110 2007-07-22  Daniel Franke  <franke.daniel@gmail.com>
112         PR fortran/29962
113         PR fortran/31253
114         PR fortran/31265
115         PR fortran/31639
116         * gfortran.h (gfc_intrinsic_sym): Changed members elemental, pure,
117         generic, specific, actual_ok, noreturn into bits of a bitfield, 
118         added bits for inquiry, transformational, conversion.
119         * check.c (non_init_transformational): Removed, removed all callers.
120         * intrinsic.c (enum class): New.
121         (add_sym*): Replaced argument elemetal by enum class. Changed all
122         callers.
123         (add_functions): Assign appropriate classes to intrinsic functions.
124         (add_subroutines): Assign appropriate classes to intrinsic subroutines.
125         (add_conv): Set conversion attribute.
126         (gfc_init_expr_extensions): Removed, removed all callers.
127         (gfc_intrinsic_func_interface): Reimplemented check for non-standard
128         initializatione expressions.
129         * expr.c (check_specification_function): New.
130         (gfc_is_constant_expr): Added check for specification functions.
131         (check_init_expr_arguments): New.
132         (check_inquiry): Changed return value to MATCH, added checks for
133         inquiry functions defined by F2003.
134         (check_transformational): New.
135         (check_null): New.
136         (check_elemental): New.
137         (check_conversion): New.
138         (check_init_expr): Call new check functions, add more specific error
139         messages.
141 2007-07-21  Christopher D. Rickett  <crickett@lanl.gov>
143         PR fortran/32627
144         * resolve.c (set_name_and_label): Set kind number for character
145         version of c_f_pointer.
146         (gfc_iso_c_sub_interface): Set the kind of the SHAPE formal arg to
147         that of the actual SHAPE arg.
148         * symbol.c (gen_shape_param): Initialize kind for SHAPE arg.
150 2007-07-21  Christopher D. Rickett  <crickett@lanl.gov>
152         PR fortran/32801
153         * symbol.c (generate_isocbinding_symbol): Remove unnecessary
154         conditional.
156         PR fortran/32804
157         * resolve.c (gfc_iso_c_func_interface): Reject assumed-shape and
158         deferred-shape arrays as args to C_LOC.  Fix bug in testing
159         character args to C_LOC.
161 2007-07-21  Lee Millward  <lee.millward@gmail.com>
163         PR fortran/32823
164         * trans-intrinsic.c (gfc_conv_intrinsic_int): Evaluate all
165         arguments passed, not just the first one. Adjust code to 
166         refer to "args[0]" instead of "arg" as a result.
167         
168 2007-07-19  Christopher D. Rickett  <crickett@lanl.gov>
170         PR fortran/32600
171         * trans-expr.c (gfc_conv_function_call): Inline C_LOC.
173 2007-07-18  Christopher D. Rickett  <crickett@lanl.gov>
175         PR fortran/32801
176         * symbol.c (generate_isocbinding_symbol): Fix bug where
177         ISOCBINDING_FUNPTR was generated for C_LOC instead of the needed
178         ISOCBINDING_PTR.
180 2007-07-17  Janus Weil  <jaydub66@gmail.com> 
182         PR fortran/32535
183         * resolve.c (resolve_fl_namelist): Check for namelist private 
184         components in contained subprograms.
186 2007-07-17  Paul Thomas  <pault@gcc.gnu.org>
188         PR fortran/31320
189         PR fortran/32665
190         * trans-expr.c (gfc_trans_subcomponent_assign): Ensure that
191         renormalization unity base is done independently of existing
192         lbound value.
193         (gfc_trans_scalar_assign): If rhs is not a variable, put
194         lse->pre after rse->pre to ensure that de-allocation of lhs
195         occurs after evaluation of rhs.
197 2007-07-16  Lee Millward  <lee.millward@gmail.com>
199         PR fortran/32222
200         PR fortran/32238
201         PR fortran/32242        
202         * trans-intrinsic.c (gfc_conv_intrinsic_function_args): Adjust
203         to operate on a stack allocated array for the intrinsic arguments
204         instead of creating a TREE_LIST. Add two new parameters for the
205         array and the number of elements. Update all callers to allocate
206         an array of the correct length to pass in. Update comment.
207         (gfc_intrinsic_argument_list_length): New function.
208         (gfc_conv_intrinsic_conversion): Call it.
209         (gfc_conv_intrinsic_mnimax): Likewise.
210         (gfc_conv_intrinsic_merge): Likewise.
211         (gfc_conv_intrinsic_lib_function): Call it. Use new CALL_EXPR
212         constructors.
213         (gfc_conv_intrinsic_cmplx): Likewise.
214         (gfc_conv_intrinsic_ctime): Likewise.
215         (gfc_covn_intrinsic_fdate): Likewise.
216         (gfc_conv_intrinsic_ttynam): Likewise.
217         (gfc_conv_intrinsic_ishftc): Likewise.
218         (gfc_conv_intrinsic_index): Likewise.
219         (gfc_conv_intrinsic_scan): Likewise.
220         (gfc_conv_intrinsic_verify): Likewise.
221         (gfc_conv_intrinsic_trim): Likewise.
222         (gfc_conv_intrinsic_aint): Use new CALL_EXPR constructors.
223         (gfc_conv_intrinsic_exponent): Likewise.
224         (gfc_conv_intrinsic_bound): Likewise.
225         (gfc_conv_intrinsic_abs): Likewise.
226         (gfc_conv_intrinsic_mod): Likewise.
227         (gfc_conv_intrinsic_sign): Likewise.
228         (gfc_conv_intrinsic_len): Likewise.
229         (gfc_conv_intrinsic_adjust): Likewise.
230         (gfc_conv_intrinsic_si_kind): Likewise. 
231         
232 2007-07-16  Janne Blomqvist  <jb@gcc.gnu.org>
234         PR fortran/32748
235         * trans-decl.c (gfc_build_builtin_function_decls): Remove
236         DECL_IS_MALLOC attribute from internal_realloc, thus reverting
237         part of my 2007-07-03 patch.
239 2007-07-15  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
240             Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
242         PR fortran/32611
243         * gfortran.h (gfc_option_t): Add flag_sign_zero field.
244         * lang.opt (-fsign-zero): New option.
245         * trans.h: Rename gfor_fndecl_set_std into gfor_fndecl_set_options.
246         * trans-decl.c (gfc_build_builtin_function_decls): Build the function
247         declaration to pass an array containing the options to be used by the
248         runtime library. (gfc_generate_function_code): Build an array that
249         contains option values to be passed to the runtime library and the call
250         to the function. 
251         * options.c (gfc_init_options): Initialize the flag_sign_zero field.
252         (gfc_handle_option): Handle the -fsign-zero option.
254 2007-07-15  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
256         PR fortran/32036
257         * trans-array.c (gfc_conv_array_ref): Only evaluate index once.
259 2007-07-15  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
261         PR fortran/32357
262         * iresolve.c (gfc_resolve_mvbits): Convert FROMPOS, LEN and TOPOS
263         to C int.
265 2007-07-14  Thomas Koenig  <tkoenig@gcc.gnu.org>
267         PR libfortran/32731
268         * iresolve.c(gfc_resolve_pack):  A scalar mask has
269         to be kind=4, an array mask with kind<4 is converted
270         to gfc_default_logical_kind automatically.
271         (gfc_resolve_unpack):  Convert mask to gfc_default_lotical_kind
272         if it has a kind<4.
274 2007-07-14  Paul Thomas  <pault@gcc.gnu.org>
276         PR fortran/32724
277         * parse.c (parse_spec): Emit error on unexpected statement
278         function.
280 2007-07-13  Daniel Franke  <franke.daniel@gmail.com>
282         * invoke.texi: Unified upper- and lower-case in menus.
283         (-w, -W): Removed, documented by gcc.
284         * intrinsic.texi: Unified Class-section entries, added
285         subroutine/function warning where appropiate.
287 2007-07-12  Daniel Franke  <franke.daniel@gmail.com>
289         PR fortran/31639
290         * decl.c (gfc_match_suffix): Removed surplus general error that hides
291         a more specific message.
292         * resolve.c (resolve_fl_variable): Reject illegal initializiers only
293         if not already done.
294         (resolve_fl_procedure): Added check for initializers of functions.
296 2007-07-12  Daniel Franke  <franke.daniel@gmail.com>
298         PR fortran/32704
299         * invoke.texi (-static-libgfortran): Document new option.
301 2007-07-12  Paul Thomas  <pault@gcc.gnu.org>
303         PR fortran/32634
304         PR fortran/32727
305         * module.c (write_generic): Restore patch of 2007-07-10 and use
306         symbol name if there are no use names. 
308 2007-07-12  Christopher D. Rickett  <crickett@lanl.gov>
310         PR fortran/32599
311         * decl.c (verify_c_interop_param): Require character string dummy
312         args to BIND(C) procedures to have length 1.
313         * resolve.c (resolve_fl_procedure): Modify parameter checking for
314         BIND(C) procedures.
316         PR fortran/32601
317         * resolve.c (gfc_iso_c_func_interface): Verify that a valid
318         expression is given as an argument to C_LOC and C_ASSOCIATED.
319         * trans-io.c (transfer_expr): Add argument for code block.  Add
320         standards check to determine if an error message should be
321         reported for printing C_PTR or C_FUNPTR.
322         (transfer_array_component): Update arguments to transfer_expr.
323         (gfc_trans_transfer): Ditto.
325         * symbol.c (gen_cptr_param): Fix whitespace.
327 2007-07-12  Jakub Jelinek  <jakub@redhat.com>
329         PR fortran/32550
330         * trans.h (GFC_POINTER_TYPE_P): Define.
331         * trans-types.c (gfc_sym_type): Set it for types on attr->sym.pointer.
332         * trans-openmp.c (gfc_omp_privatize_by_reference): Return false
333         if GFC_POINTER_TYPE_P is set on the type.
335 2007-07-12  Richard Guenther  <rguenther@suse.de>
337         * trans-intrinsic.c (gfc_conv_intrinsic_repeat): Convert
338         arguments to gfc_charlen_type_node.
339         * trans-io.c (gfc_convert_array_to_string): Convert type
340         size to gfc_array_index_type.
342 2007-07-12  Daniel Franke  <franke.daniel@gmail.com>
344         PR fortran/32634
345         PR fortran/32727
346         * module.c: Reverted Paul's patch from 2007-07-10.
348 2007-07-11  Richard Guenther  <rguenther@suse.de>
350         * trans-array.c (gfc_conv_array_parameter): Use correct
351         types for comparison.
352         * trans-intrinsic.c (gfc_conv_intrinsic_repeat): Use
353         correct types for POINTER_PLUS_EXPR.
354         * trans-stmt.c (gfc_trans_forall_loop): Use correct type
355         for integer one constant.
357 2007-07-10  Paul Thomas  <pault@gcc.gnu.org>
359         PR fortran/32157
360         * resolve.c (is_external_proc): New function.  Adds test that
361         the symbol is not an intrinsic procedure.
362         * (resolve_function, resolve_call): Replace logical statements
363         with call to is_external_proc.
365         PR fortran/32689
366         * simplify.c (gfc_simplify_transfer): If mold has rank, the
367         result is an array.
369         PR fortran/32634
370         * module.c (write_generic): Write the local name of the
371         interface. 
373 2007-07-09  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
375         PR fortran/29459
376         * trans-array.c (gfc_trans_array_constructor): Mark offset field
377         with TREE_NO_WARNING.
378         * trans-decl.c (gfc_build_qualified_array): Mark lbound, ubound,
379         stride and size variables with TREE_NO_WARNING.
381 2007-07-09  Steven G. Kargl  <kargl@gcc.gnu.org>
383         * trans-decl.c (set_tree_decl_type_code): Remove function.
384         (generate_local_decl): Remove reference to set_tree_decl_type_code.
386 2007-07-09  Daniel Franke  <franke.daniel@gmail.com>
388         PR fortran/31129
389         * trans-decl.c (generate_local_decl) Emit a warning if an unused
390         parameter is found.
392 2007-07-08  Daniel Franke  <franke.daniel@gmail.com>
394         PR fortran/29876
395         * module.c (gfc_match_use): Do not set an non-existant 
396         intrinsic operator if a user-defined operator is found.
398 2007-07-08  Daniel Franke  <franke.daniel@gmail.com>
400         PR fortran/24784
401         PR fortran/28004
402         * trans-decl.c (generate_local_decl): Adjusted warning on unused 
403         dummy arguments, tell middle-end not to emit additional warnings.
405 2007-07-08  Daniel Franke  <franke.daniel@gmail.com>
406             Tobias Schlüter <tobias.schlueter@physik.uni-muenchen.de>
408         PR fortran/17711
409         * gfortran.h (gfc_intrinsic_op): Added INTRINSIC_EQ_OS,
410         INTRINSIC_NE_OS, INTRINSIC_GT_OS, INTRINSIC_GE_OS, 
411         INTRINSIC_LT_OS and INTRINSIC_LE_OS.
412         * arith.c (eval_intrinsic, eval_type_intrinsic0): Likewise.
413         * arith.h (gfc_eq, gfc_ne, gfc_gt, gfc_ge, gfc_lt, gfc_le):
414         Added gfc_intrinsic_op as third argument type.
415         * dump-parse-tree.c (gfc_show_expr): Account for new enum values.
416         * expr.c (simplify_intrinsic_op, check_intrinsic_op): Likewise.
417         * interface.c (check_operator_interface): Likewise.
418         (gfc_check_interfaces): Added cross-checks for FORTRAN 77 and 
419         Fortran 90 style operators using new enum values.
420         (gfc_extend_expr): Likewise.
421         (gfc_add_interface): Likewise.
422         * match.c (intrinsic_operators): Distinguish FORTRAN 77 style
423         operators from Fortran 90 style operators using new enum values.
424         * matchexp.c (match_level_4): Account for new enum values.
425         * module.c (mio_expr): Likewise.
426         * resolve.c (resolve_operator): Deal with new enum values, fix
427         inconsistent error messages.
428         * trans-expr.c (gfc_conv_expr_op): Account for new enum values.
430 2007-07-08  Tobias Burnus  <burnus@net-b.de>
432         PR fortran/32669
433         * interface.c (get_expr_storage_size): Properly obtain lower bound.
434         (compare_actual_formal): Add space before parenthesis.
436 2007-07-08  Daniel Franke  <franke.daniel@gmail.com>
438         PR fortran/25094
439         * resolve.c (resolve_fl_procedure): Added check for PRIVATE types 
440         in PUBLIC interfaces.
442 2007-07-07  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
444         PR fortran/32644
445         * decl.c (match_attr_spec): Don't return MATCH_ERROR if comma found and
446         gfc_match_bind_c does not return MATCH_YES.
448 2007-07-07  Kazu Hirata  <kazu@codesourcery.com>
450         * decl.c, gfortran.h, interface.c, module.c, resolve.c,
451         trans-array.c, trans-decl.c: Fix comment typos.  Follow
452         spelling conventions.
453         * intrinsic.texi: Fix typos.  Follow spelling conventions.
455 2007-05-06  Daniel Franke  <franke.daniel@gmail.com>
457         PR fortran/32633
458         * symbol.c (save_status): New.
459         * gfortran.h (save_status): Added external declaration.
460         (check_conflict): Check for conflicting explicite SAVE statements
461         only.
462         (gen_special_c_interop_ptr): Use SAVE_EXPLICIT constant.
463         * module.c (ab_attribute, attr_bits): Removed enumerator value 
464         AB_SAVE for save attribute.
465         (mio_symbol_attribute): Import/export the full SAVE status, 
466         removed usage of AB_SAVE.
467         * dump-parse-tree.c (gfc_show_attr): Dump full SAVE status.
468         * decl.c (add_init_expr_to_sym): Set SAVE_IMPLICIT only if not
469         already explicit.
471 2007-07-05  Daniel Franke  <franke.daniel@gmail.com>
472             Tobias Burnus  <burnus@net-b.de>
474         PR fortran/32359
475         * gfortran.h (symbol_attribute): Change save attribute into an enum.
476         * decl.c (add_init_expr_to_sym): Set it to SAVE_IMPLICIT.
477         * symbol.c (gfc_add_save): Check for SAVE_EXPLICIT.
478         * resolve.c (resolve_fl_variable): Check for SAVE_EXPLICIT.
479         (resolve_symbol): Allow OMP threadprivate with
480         initialization SAVEd and save_all variable.
481         * trans-decl.c (gfc_finish_var_decl): Remove obsolete sym->value check.
483 2007-07-05  Paul Thomas  <pault@gcc.gnu.org>
485         PR fortran/32526
486         * match.c (gfc_match_call): Check, in all cases, that a symbol
487         is neither generic nor a subroutine before trying to add it as
488         a subroutine.
490         PR fortran/32613
491         * match.c (gfc_match_do): Reset the implied_index attribute.
493 2007-07-04  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
495         PR fortran/31198
496         * trans-intrinsic.c (trans-intrinsic.c): Handle optional
497         arguments correctly for MIN and MAX intrinsics.
499 2007-07-03  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
501         PR fortran/32545
502         * io.c (check_format): Always call gfc_error for errors.
503         (check_format_string): Change type of this function to try and
504         return the result of check_format.
505         (check_io_constraints): Return MATCH_ERROR if check_format_string
506         returns FAILURE.
508 2007-07-03  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
510         PR fortran/32612
511         * decl.c (get_proc_name): Include attr->mod_proc in check for error.
513 2007-07-03  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
515         PR fortran/32432
516         * gfortran.h: Change type of gfc_assign_data_value from void to try.
517         * data.c (gfc_assign_data_value): Return FAILURE if error found.
518         * resolve.c (check_data_variable): If gfc_assign_data_value returns
519         failure, break out of loop and return failure.
521 2007-07-03  Christopher D. Rickett  <crickett@lanl.gov>
523         PR fortran/32579
524         * symbol.c (gen_cptr_param): Generate C_PTR and C_FUNPTR if necessary.
525         (build_formal_args): Pass intrinsic module symbol id to
526         gen_cptr_param.
528 2007-07-03  Tobias Burnus  <burnus@net-b.de>
530         PR fortran/25062
531         * resolve.c (resolve_common_blocks): New check function.
532         (resolve_types): Use it.
534 2007-07-03  Tobias Burnus  <burnus@net-b.de>
536         PR fortran/30940
537         * interface.c (get_sym_storage_size): New function.
538         (get_sym_storage_size): New function.
539         (compare_actual_formal): Enhance sequence association
540         support and improve checking.
542 2007-07-03  Janne Blomqvist  <jb@gcc.gnu.org>
544         * trans-decl.c (gfc_build_builtin_function_decls): Mark
545         internal_realloc as a malloc function.
547 2007-07-03  Tobias Burnus  <burnus@net-b.de>
549         PR fortran/20888
550         * resolve.c (resolve_operator): Check for NULL as operand.
552 2007-07-02  Tobias Burnus  <burnus@net-b.de>
554         * gfortran.texi (Fortran 2003): Add ISO Bind C.
555         * intrinsic.texi (C_ASSOCIATED,C_F_POINTER,C_F_PROCPOINTER,
556         C_FUNLOC,C_LOC): Document new ISO Bind C intrinsics.
558 2007-07-01  Christopher D. Rickett  <crickett@lanl.gov>
560         * interface.c (gfc_compare_derived_types): Special case for comparing
561         derived types across namespaces.
562         (gfc_compare_types): Deal with BT_VOID.
563         (compare_parameter): Use BT_VOID to accept ISO C Binding pointers.
564         * trans-expr.c (gfc_conv_function_call): Remove setting parm_kind
565         to SCALAR
566         (gfc_conv_initializer): Deal with ISO C Binding NULL_PTR and 
567         NULL_FUNPTR.
568         (gfc_conv_expr): Convert expressions for ISO C Binding derived types.
569         * symbol.c (gfc_set_default_type): BIND(C) variables should not be
570         Implicitly declared.
571         (check_conflict): Add BIND(C) and check for conflicts.
572         (gfc_add_explicit_interface): Whitespace.       
573         (gfc_add_is_bind_c): New function.  
574         (gfc_copy_attr): Use it.
575         (gfc_new_symbol): Initialize ISO C Binding objects.
576         (get_iso_c_binding_dt):  New function.
577         (verify_bind_c_derived_type): Ditto.
578         (gen_special_c_interop_ptr): Ditto.
579         (add_formal_arg): Ditto.
580         (gen_cptr_param): Ditto.
581         (gen_fptr_param): Ditto.
582         (gen_shape_param): Ditto.
583         (add_proc_interface): Ditto.
584         (build_formal_args): Ditto.
585         (generate_isocbinding_symbol):  Ditto.
586         (get_iso_c_sym):  Ditto.
587         * decl.c (num_idents_on_line, has_name_equals): New variables.
588         (verify_c_interop_param): New function.
589         (build_sym): Finish binding labels and deal with COMMON blocks.
590         (add_init_expr_to_sym): Check if the initialized expression is
591         an iso_c_binding named constants
592         (variable_decl): Set ISO C Binding type_spec components.
593         (gfc_match_kind_spec): Check match for C interoperable kind.
594         (match_char_spec): Fix comment. Chnage gfc_match_small_int
595         to gfc_match_small_int_expr.  Check for C interoperable kind.
596         (match_type_spec): Clear the current binding label.
597         (match_attr_spec): Add DECL_IS_BIND_C.  If BIND(C) is found, use it
598         to set attributes.
599         (set_binding_label): New function.
600         (set_com_block_bind_c): Ditto.
601         (verify_c_interop): Ditto.
602         (verify_com_block_vars_c_interop): Ditto.
603         (verify_bind_c_sym): Ditto.
604         (set_verify_bind_c_sym): Ditto.
605         (set_verify_bind_c_com_block): Ditto.
606         (get_bind_c_idents): Ditto.
607         (gfc_match_bind_c_stmt): Ditto.
608         (gfc_match_data_decl): Use num_idents_on_line.
609         (match_result): Deal with right paren in BIND(C).
610         (gfc_match_suffix): New function.
611         (gfc_match_function_decl): Use it.  Code is re-arranged to deal with
612         ISO C Binding result clauses.
613         (gfc_match_subroutine):  Deal with BIND(C).
614         (gfc_match_bind_c): New function.
615         (gfc_get_type_attr_spec): New function.  Code is re-arranged in and
616         taken from gfc_match_derived_decl.
617         (gfc_match_derived_decl): Add check for BIND(C).
618         * trans-common.c: Forward declare gfc_get_common.
619         (gfc_sym_mangled_common_id): Change arg from 'const char *name' to
620         'gfc_common_head *com'.  Check for ISO C Binding of the common block.
621         (build_common_decl): 'com->name' to 'com in SET_DECL_ASSEMBLER_NAME.
622         * gfortran.h: Add GFC_MAX_BINDING_LABEL_LEN
623         (bt): Add BT_VOID
624         (sym_flavor): Add FL_VOID.
625         (iso_fortran_env_symbol, iso_c_binding_symbol, intmod_id): New enum
626         (CInteropKind_t): New struct.
627         (c_interop_kinds_table): Use it.  Declare an array of structs.
628         (symbol_attribute): Add is_bind_c, is_c_interop, and is_iso_c
629         bitfields.
630         (gfc_typespec): Add is_c_interop; is_iso_c, and f90_type members.
631         (gfc_symbol): Add from_intmod, intmod_sym_id, binding_label, and
632         common_block members.
633         (gfc_common_head): Add binding_label and is_bind_c members.
634         (gfc_gsymbol): Add sym_name, mod_name, and binding_label members.
635         Add prototypes for get_c_kind, gfc_validate_c_kind, 
636         gfc_check_any_c_kind, gfc_add_is_bind_c, gfc_add_value,
637         verify_c_interop, verify_c_interop_param, verify_bind_c_sym,
638         verify_bind_c_derived_type, verify_com_block_vars_c_interop,
639         generate_isocbinding_symbol, get_iso_c_sym, gfc_iso_c_sub_interface
640         * iso-c-binding.def: New file. This file contains the definitions
641         of the types provided by the Fortran 2003 ISO_C_BINDING intrinsic
642         module.
643         * trans-const.c (gfc_conv_constant_to_tree): Deal with C_NULL_PTR
644          or C_NULL_FUNPTR expressions.
645         * expr.c (gfc_copy_expr): Add BT_VOID case.  For BT_CHARACTER, the
646         ISO C Binding requires a minimum string length of 1 for '\0'.  
647         * module.c (intmod_sym): New struct.
648         (pointer_info): Add binding_label member.
649         (write_atom): Set len to 0 for NULL pointers. Check for NULL p and *p.
650         (ab_attribute): Add AB_IS_BIND_C, AB_IS_C_INTEROP and AB_IS_ISO_C.
651         (attr_bits): Add "IS_BIND_C", "IS_C_INTEROP", and "IS_ISO_C".
652         (mio_symbol_attribute): Deal with ISO C Binding attributes.
653         (bt_types): Add "VOID".
654         (mio_typespec): Deal with ISO C Binding components.
655         (mio_namespace_ref): Add intmod variable. 
656         (mio_symbol): Check for symbols from an intrinsic module.
657         (load_commons): Check for BIND(C) common block.
658         (read_module): Read binding_label and use it.
659         (write_common): Add label.  Write BIND(C) info.
660         (write_blank_common): Blank commons are not BIND(C).  Explicitly
661         set is_bind_c=0.
662         (write_symbol): Deal with binding_label.
663         (sort_iso_c_rename_list): New function.
664         (import_iso_c_binding_module): Ditto.
665         (create_int_parameter): Add to args.
666         (use_iso_fortran_env_module): Adjust to deal with iso_c_binding
667         intrinsic module.
668         * trans-types.c (c_interop_kinds_table): new array of structs. 
669         (gfc_validate_c_kind): New function.
670         (gfc_check_any_c_kind): Ditto.
671         (get_real_kind_from_node): Ditto.
672         (get_int_kind_from_node): Ditto.
673         (get_int_kind_from_width): Ditto.
674         (get_int_kind_from_minimal_width): Ditto.
675         (init_c_interop_kinds): Ditto.
676         (gfc_init_kinds): call init_c_interop_kinds.
677         (gfc_typenode_for_spec): Adjust for BT_VOID and ISO C Binding pointers.
678         Adjust handling of BT_DERIVED.
679         (gfc_sym_type): Whitespace.
680         (gfc_get_derived_type):  Account for iso_c_binding derived types
681         * resolve.c (is_scalar_expr_ptr): New function.
682         (gfc_iso_c_func_interface): Ditto.
683         (resolve_function): Use gfc_iso_c_func_interface. 
684         (set_name_and_label): New function.
685         (gfc_iso_c_sub_interface): Ditto.
686         (resolve_specific_s0): Use gfc_iso_c_sub_interface.
687         (resolve_bind_c_comms): New function.
688         (resolve_bind_c_derived_types): Ditto.
689         (gfc_verify_binding_labels): Ditto.
690         (resolve_fl_procedure): Check for ISO C interoperability.
691         (resolve_symbol): Check C interoperability.
692         (resolve_types): Walk the namespace.  Check COMMON blocks.
693         * trans-decl.c (gfc_sym_mangled_identifier):  Prevent the mangling
694         of identifiers that have an assigned binding label.
695         (gfc_sym_mangled_function_id): Use the binding label rather than
696         the mangled name.
697         (gfc_finish_var_decl): Put variables that are BIND(C) into a common
698         segment of the object file, because this is what C would do.
699         (gfc_create_module_variable): Conver to proper types
700         (set_tree_decl_type_code): New function.
701         (generate_local_decl): Check dummy variables and derived types for
702         ISO C Binding attributes.
703         * match.c (gfc_match_small_int_expr): New function.
704         (gfc_match_name_C): Ditto.
705         (match_common_name): Deal with ISO C Binding in COMMON blocks
706         * trans-io.c (transfer_expr):  Deal with C_NULL_PTR or C_NULL_FUNPTR
707         expressions
708         * match.h: Add prototypes for gfc_match_small_int_expr,
709         gfc_match_name_C, match_common_name, set_com_block_bind_c,
710         set_binding_label, set_verify_bind_c_sym,
711         set_verify_bind_c_com_block, get_bind_c_idents,
712         gfc_match_bind_c_stmt, gfc_match_suffix, gfc_match_bind_c,
713         gfc_get_type_attr_spec
714         * parse.c (decode_statement): Use gfc_match_bind_c_stmt
715         (parse_derived): Init *derived_sym = NULL, and gfc_current_block
716         later for valiadation.
717         * primary.c (got_delim): Set ISO C Binding components of ts.
718         (match_logical_constant): Ditto.
719         (match_complex_constant): Ditto.
720         (match_complex_constant): Ditto.
721         (gfc_match_rvalue): Check for existence of at least one arg for
722         C_LOC, C_FUNLOC, and C_ASSOCIATED.
723         * misc.c (gfc_clear_ts): Clear ISO C Bindoing components in ts.
724         (get_c_kind): New function.
726 2007-07-01  Janne Blomqvist  <jb@gcc.gnu.org>
728         PR fortran/32239
729         * trans-expr.c (gfc_conv_power_op): Use builtin_powi for
730         real**int4 powers.
731         * f95-lang.c (gfc_init_builtin_functions): Add builtin_powi to the
732         builtins table.
734 2007-07-01  Janne Blomqvist  <jb@gcc.gnu.org>
736         * trans.h: Remove decls for 64-bit allocation functions.
737         * trans-array.c (gfc_grow_array): Always pick the standard realloc
738         function decl.
739         (gfc_array_allocate): Likewise.
740         * trans-decl.c: Remove trees for 64-bit allocation functions.
741         (gfc_build_builtin_function_decls): Don't build fndecls for 64-bit
742         allocations functions, use index_int_type for normal allocation
743         functions.
745 2007-06-30  Daniel Franke  <franke.daniel@gmail.com>
747         PR fortran/20373
748         * intrinsic.c (add_functions): Additional function types.
749         (gfc_convert_type_warn): Remove intrinsic-flag from
750         conversion functions.
751         * resolve.c (resolve_symbol): Added type checks to 
752         explicitly defined intrinsics.
754 2007-06-30  Tobias Burnus  <burnus@net-b.de>
756         PR fortran/32555
757         * io.c (check_format): Allow zero to precede the
758         P edit descriptor.
760 2007-06-30  Paul Thomas  <pault@gcc.gnu.org>
762         PR fortran/32472
763         * simplify.c (gfc_simplify_repeat): Add handling of character
764         literal for first argument.
766 2007-06-29  Daniel Franke  <franke.daniel@gmail.com>
768         * resolve.c (resolve_operator): Added check whether a user
769         defined operator is available.
771 2007-06-29  Daniel Franke <franke.daniel@gmail.com>
773         * openmp.c (resolve_omp_clauses): Adjust error message to
774         better reflect the actual requirement.
776 2007-06-29  Tobias Burnus  <burnus@net-b.de>
778         PR fortran/32483
779         * io.c (format_lex): Fix FMT_ZERO.
780         (check_format,check_format_string,gfc_match_format,
781         check_io_constraints) Additional checking for READ.
783 2007-06-28 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
785         PR other/31400
786         * lang.opt (static-libgfortran): New option.
787         * gfortranspec.c (ADD_ARG_LIBGFORTRAN): New macro.
788         (Option): Add OPTION_static and OPTION_static_libgfortran.
789         (lookup_option): Handle the new -static-libgfortran option.
790         (lang_specific_driver): Check whether -static is passed.
791         Handle the new -static-libgfortran option.
792         * options.c (gfc_handle_option): If -static-libgfortran is
793         passed and isn't supported on this configuration, error out.
795 2007-06-27  Daniel Franke  <franke.daniel@gmail.com>
797         PR fortran/32467
798         * openmp.c (resolve_omp_clauses): Emit error on allocatable
799         components in COPYIN, COPYPRIVATE, FIRSTPRIVATE and LASTPRIVATE
800         clauses.
802 2007-06-25  Paul Thomas  <pault@gcc.gnu.org>
804         PR fortran/32464
805         * resolve.c (check_host_association): Return if the old symbol
806         is use associated.  Introduce retval to reduce the number of
807         evaluations of the first-order return value.
809         PR fortran/31494
810         * match.c (gfc_match_call): If a host associated symbol is not
811         a subroutine, build a new symtree/symbol in the current name
812         space.
814 2007-06-24  Tobias Burnus  <burnus@net-de>
816         PR fortran/32460
817         * interface.c (gfc_compare_derived_types): Add access check.
818         * symbol.c (gfc_find_component): Ditto.
819         (gfc_set_component_attr,gfc_get_component_attr) Copy access state.
820         * dump-parse-tree.c (gfc_show_components): Dump access state.
821         * gfortran.h (struct gfc_component): Add gfc_access.
822         * module.c (mio_component): Add access state.
823         * (gfc_match_structure_constructor): Check for private access state.
825 2007-06-24  Paul Thomas  <pault@gcc.gnu.org>
827         PR fortran/32298
828         PR fortran/31726
829         * trans-intrinsic.c (gfc_conv_intrinsic_minmaxloc): Calculate
830         the offset between the loop counter and the position as
831         defined. Add the offset within the loop so that the mask acts
832         correctly.  Do not advance the location on the basis that it
833         is zero.
835 2007-06-22  Daniel Franke  <franke.daniel@gmail.com>
837         PR fortran/31473
838         * symbol.c (gfc_copy_attr): Emit errors for duplicate 
839         EXTERNAL/INTRINSIC statements.
841 2007-06-22  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
843         PR fortran/32360
844         * expr.c (gfc_check_assign): If the rvalue expression type is NULL_EXPR,
845         check to see if the lvalue has attribute pointer and data.  
847 2007-06-21  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
849         PR fortran/31162
850         * resolve.c (gfc_resolve_iterator_expr): Add check for REAL using
851         gfc_notify_standard. (gfc_resolve_iterator): Remove check.
852         (resolve_branch): Change "Obsolete" to "Deleted feature".
853         * io.c (resolve_tag): Ditto.
854         * match.c (gfc_match_pause, gfc_match_assign, gfc_match_goto): Ditto.
856 2007-06-20  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
858         PR fortran/32361
859         * match.c (gfc_match_common): If the symbol value expression type is
860         NULL_EXPR, don't error if previously initialized.
862 2007-06-20  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
864         PR fortran/25061
865         * decl.c (get_proc_name) Check symbol for generic interface
866         and issue an error.
868 2007-06-20  Andrew Pinski  <andrew_pinski@playstation.sony.com>
869         Richard Guenther  <rguenther@suse.de>
871         PR fortran/32140
872         * trans.c (gfc_build_addr_expr): Use the correct types.
874 2007-06-19  Paul Thomas  <pault@gcc.gnu.org>
876         PR fortran/20863
877         PR fortran/20882
878         * resolve.c (resolve_code): Use gfc_impure_variable as a
879         condition for rejecting derived types with pointers, in pure
880         procedures.
881         (gfc_impure_variable): Add test for dummy arguments of pure
882         procedures; any for functions and INTENT_IN for subroutines.
884         PR fortran/32236
885         * data.c (gfc_assign_data_value): Change the ICE on an array
886         reference initializer not being an array into an error and
887         clear init to prevent a repetition of the error.
889 2007-06-17  Janne Blomqvist  <jb@gcc.gnu.org>
891         * gfortran.texi: Add documentation for GFORTRAN_UNBUFFERED_n
892         environment variables. Fix documentation for
893         GFORTRAN_UNBUFFERED_ALL environment variable.
895 2007-06-15  Andrew Pinski  <andrew_pinski@playstation.sony.com>
897         * trans-intrinsic.c (gfc_conv_intrinsic_repeat): Use
898         POINTER_PLUS_EXPR instead of PLUS_EXPR for pointer addition.
899         * trans-expr.c (gfc_trans_string_copy): Create
900         POINTER_PLUS_EXPR instead of a PLUS_EXPR
901         for pointer types.
903 2007-06-14  Paul Thomas  <pault@gcc.gnu.org>
905         PR fortran/32302
906         * trans-common.c (build_common_decl): If resizing of common
907         decl is needed, update the TREE_TYPE.
909 2007-06-13  Tobias Burnus  <burnus@net-b.de>
911         PR fortran/32323
912         * interface.c (has_vector_section): New.
913         (compare_actual_formal): Check for array sections with vector subscript.
915 2007-06-12  Dirk Mueller  <dmueller@suse.de>
917         * trans-stmt.c (gfc_trans_call): fix gcc_assert to
918         a comparison, not an assignment.
920 2007-06-12  Paul Thomas  <pault@gcc.gnu.org>
922         * trans-common.c (create_common): Initialize 'field_init'.
924 2007-06-12  Paul Thomas  <pault@gcc.gnu.org>
926         PR fortran/29786
927         PR fortran/30875
928         * trans-common.c (get_init_field): New function.
929         (create_common): Call get_init_field for overlapping
930         initializers in equivalence blocks.
931         * resolve.c (resolve_equivalence_derived, resolve_equivalence):
932         Remove constraints on initializers in equivalence blocks.
933         * target-memory.c (expr_to_char, gfc_merge_initializers):
934         New functions.
935         (encode_derived): Add the bit offset to the byte offset to get
936         the total offset to the field.
937         * target-memory.h : Add prototype for gfc_merge_initializers.
939 2007-06-11  Rafael Avila de Espindola  <espindola@google.com>
941         * trans-types.c (gfc_signed_type): Remove.
942         * trans-types.h (gfc_signed_type): Remove.
943         * f95-lang.c (LANG_HOOKS_SIGNED_TYPE): Remove.
945 2007-06-08 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
947         * trans-intrinsic.c: Revert Lee's 2007-06-04 patch.
949 2007-06-07  Steven G. Kargl  <kargl@gcc.gnu.org>
950             Jerry DeLisle  <jvdelisle@gcc.gnu.org>
952         PR fortran/32223
953         * match.c (gfc_match_special_char): New function.  Match special char.
954         Add handling '\0'.
955         * match.h: Add prototype.
956         * io.c (next_char): Use it.
957         * primary.c (next_string_char): Ditto.
959 2007-06-06  Steven G. Kargl  <kargl@gcc.gnu.org>
961         * decl.c: Miscellaneous whitespace fixes.
962         * expr.c: Likewise.
963         * gfortran.h: Likewise.
964         * interface.c : Likewise.
965         * io.c: Likewise.
966         * match.c: Likewise.
967         * match.h: Likewise.
968         * module.c: Likewise.
969         * parse.c: Likewise.
970         * resolve.c: Likewise.
971         * symbol.c: Likewise.
972         * trans-array.c: Likewise.
973         * trans-common.c: Likewise.
974         * trans-decl.c: Likewise.
975         * trans-intrinsic.c: Likewise.
976         * trans-io.c: Likewise.
977         * trans-stmt.c: Likewise.
978         * trans-types.c: Likewise.
980 2007-06-05  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
982         PR fortran/18923
983         * parse.c (decode_statement): Don't call gfc_undo_symbols on MATCH_ERROR
984         for ST_FUNCTION since it is called in reject_statement.
985         (parse_contained): If error, loop back after reject_statement and try
986         again.  Free the namespace if an error occured.
988 2007-06-04 Lee Millward <lee.millward@codesourcery.com>
990         * trans-intrinsic.c (gfc_conv_intrinsic_function_args): Adjust
991         to operate on a stack allocated array for the intrinsic arguments
992         instead of creating a TREE_LIST. Add two new parameters for the
993         array and the number of elements. Update all callers to allocate
994         an array of the correct length to pass in. Update comment.
995         (gfc_intrinsic_argument_list_length): New function.
996         (gfc_conv_intrinsic_mnimax): Call it.
997         (gfc_conv_intrinsic_merge): Likewise.
998         (gfc_conv_intrinsic_lib_function): Call it. Use new CALL_EXPR
999         constructors.
1000         (gfc_conv_intrinsic_cmplx): Likewise.
1001         (gfc_conv_intrinsic_ctime): Likewise.
1002         (gfc_covn_intrinsic_fdate): Likewise.
1003         (gfc_conv_intrinsic_ttynam): Likewise.
1004         (gfc_conv_intrinsic_ishftc): Likewise.
1005         (gfc_conv_intrinsic_index): Likewise.
1006         (gfc_conv_intrinsic_scan): Likewise.
1007         (gfc_conv_intrinsic_verify): Likewise.
1008         (gfc_conv_intrinsic_trim): Likewise.
1009         (gfc_conv_intrinsic_aint): Use new CALL_EXPR constructors.
1010         (gfc_conv_intrinsic_exponent): Likewise.
1011         (gfc_conv_intrinsic_bound): Likewise.
1012         (gfc_conv_intrinsic_abs): Likewise.
1013         (gfc_conv_intrinsic_mod): Likewise.
1014         (gfc_conv_intrinsic_sign): Likewise.
1015         (gfc_conv_intrinsic_len): Likewise.
1016         (gfc_conv_intrinsic_adjust): Likewise.
1017         (gfc_conv_intrinsic_si_kind): Likewise.
1019 2007-06-04  Steve Ellcey  <sje@cup.hp.com>
1021         * trans-array.c (gfc_conv_array_parameter): Initialize tmp.
1023 2007-05-31  Richard Guenther  <rguenther@suse.de>
1025         * trans-expr.c (gfc_conv_expr_op): Use zero constant
1026         that matches the lse type.
1027         (gfc_trans_string_copy): Use sizetype zero constant.
1028         * intrinsic.c (add_functions): The sizeof intrinsic has
1029         index type result.
1030         * trans-types.c (gfc_get_dtype): Convert size to index
1031         type before shifting.
1032         * trans-array.c (gfc_trans_array_constructor_value): Use
1033         index type for offset computation.
1034         * trans-intrinsic.c (gfc_conv_associated): Use correct type
1035         for zero constant.
1037 2007-05-31  Paul Thomas  <pault@gcc.gnu.org>
1039         PR fortran/32156
1040         * trans-array.c (gfc_trans_array_constructor): Treat the case
1041         where the ss expression charlen is missing.
1043 22007-05-31  Paul Thomas  <pault@gcc.gnu.org>
1045         PR fortran/32103
1046         * module.c (mio_symtree_ref): If an equivalence group member
1047         is not used, give it a hidden symbol and set the pointer_info.
1048         (load_equiv): Only free the equivalence if none of the members
1049         are used.
1051 2007-05-29  Daniel Franke  <franke.daniel@gmail.com>
1053         * gfortran.h: Renamed 'enum gfc_generic_isym_id' to 'enum gfc_isym_id',
1054         added missing GFC_ISYM_* enumerators, ordered alphabetically.
1055         (struct gfc_intrinsic_sym): Renamed 'generic_id' to 'id'.
1056         (gfc_find_subroutine): New prototype.
1057         * intrinsic.c (add_sym, add_sym_*): Added argument 'id' and changed all callers.
1058         (find_subroutine): Renamed to 'gfc_find_subroutine', removed static.  
1059         * dependency.c: Changed usage of isym->generic_id to isym->id.  
1060         * openmp.c: Likewise.  
1061         * resolve.c: Likewise.  
1062         * trans-array.c: Likewise.  
1063         * trans-expr.c: Likewise.  
1064         * trans-intrinsic.c: Likewise.  
1065         * trans-openmp.c: Likewise.
1067 2007-05-28  Tobias Schlüter  <tobi@gcc.gnu.org>
1069         * gfortran.h (gfc_generic_isym_id): Add GFC_ISYM_SIZEOF.
1070         * intrinsic.c (add_functions): Add stuff for SIZEOF intrinsic.
1071         * intrinsic.h (gfc_check_sizeof): Add prototype of ...
1072         * check.c (gfc_check_sizeof): .. new function.
1073         * trans-intrinsic.c (gfc_conv_intrinsic_sizeof): New function.
1074         (gfc_conv_intrinsic_strcmp): Whitespace fix.
1075         (gfc_conv_intrinsic_array_transfer): Remove double initialization,
1076         use fold_build. where appropriate.
1077         (gfc_conv_intrinsic_function): Add case for SIZEOF.
1078         * intrinsic.texi: Add documentation for SIZEOF.
1080 2007-05-28  Brooks Moses  <brooks.moses@codesourcery.com>
1082         * trans-array.c (gfc_conv_expr_descriptor): Edit comment.
1084 2007-05-28  Brooks Moses  <brooks.moses@codesourcery.com>
1086         PR fortran/31972
1087         * target-memory.c (gfc_target_expr_size): Add handling
1088         for size of BT_HOLLERITH variables.
1089         * check.c (gfc_check_transfer): Reject BT_HOLLERITH
1090         variables in MOLD argument of TRANSFER.
1092 2007-05-28  Brooks Moses  <brooks.moses@codesourcery.com>
1094         * gfortran.h (gfc_expr): Remove from_H, add "representation"
1095         struct.
1096         * primary.c (match_hollerith_constant): Store the representation
1097         of the Hollerith in representation, not in value.character.
1098         * arith.c: Add dependency on target-memory.h.
1099         (eval_intrinsic): Remove check for from_H.
1100         (hollerith2representation): New function.
1101         (gfc_hollerith2int): Determine value of the new constant.
1102         (gfc_hollerith2real): Likewise.
1103         (gfc_hollerith2complex): Likewise.
1104         (gfc_hollerith2logical): Likewise.
1105         (gfc_hollerith2character): Point both representation.string and
1106         value.character.string at the value string.
1107         * data.c (create_character_initializer): For BT_HOLLERITH
1108         rvalues, get the value from the representation rather than
1109         value.character.
1110         * expr.c (free_expr0): Update handling of BT_HOLLERITH values
1111         and values with representation.string.
1112         (gfc_copy_expr): Likewise.
1113         * intrinsic.c (do_simplify): Remove special treatement of
1114         variables resulting from Hollerith constants.
1115         * dump-parse-trees.c (gfc_show_expr): Update handling of
1116         Holleriths.
1117         * trans-const.c (gfc_conv_constant_to_tree): Replace from_H
1118         check with check for representation.string; get Hollerith
1119         representation from representation.string, not value.character.
1120         * trans-expr.c (is_zero_initializer_p): Replace from_H check
1121         with check for representation.string.
1122         * trans-stmt.c (gfc_trans_integer_select): Use
1123         gfc_conv_mpz_to_tree for case values, so as to avoid picking up
1124         the memory representation if the case is given by a transfer
1125         expression.
1126         * target-memory.c (gfc_target_encode_expr): Use the known memory
1127         representation rather than the value, if it exists.
1128         (gfc_target_interpret_expr): Store the memory representation of
1129         the interpreted expression as well as its value.
1130         (interpret_integer): Move to gfc_interpret_integer, make
1131         non-static.
1132         (interpret_float): Move to gfc_interpret_float, make non-static.
1133         (interpret_complex): Move to gfc_interpret_complex, make
1134         non-static.
1135         (interpret_logical): Move to gfc_interpret_logical, make
1136         non-static.
1137         (interpret_character): Move to gfc_interpret_character, make
1138         non-static.
1139         (interpret_derived): Move to gfc_interpret_derived, make
1140         non-static.
1141         * target-memory.h: Add prototypes for newly-exported
1142         gfc_interpret_* functions.
1144 2007-05-27  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
1146         PR fortran/31812
1147         * parse.c (next_statement): Warn for truncated lines if source is free
1148         form.
1150 2007-05-27 Paul Thomas  <pault@gcc.gnu.org>
1151            Tobias Burnus  <burnus@net-b.de>
1153         PR fortran/32088
1154         * symbol.c (gfc_check_function_type): Copy dimensions of
1155           result variable.
1156         * resolve.c (resolve_contained_fntype): Improve symbol output in
1157           the error message.
1159 2007-05-26  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
1161         PR fortran/31813
1162         * io.c (check_format): Add warning for H specifier in format.
1163         
1164 2007-05-26  Tobias Burnus  <burnus@net-b.de>
1166         * gfortran.texi: Document the GFORTRAN_ERROR_DUMPCORE and
1167         GFORTRAN_ERROR_BACKTRACE environment variables.
1169 2007-05-26  Paul Thomas  <pault@gcc.gnu.org>
1171         PR fortran/31219
1172         * trans.h : Add no_function_call bitfield to gfc_se structure.
1173         Add stmtblock_t argument to prototype of get_array_ctor_strlen.
1174         * trans-array.c (get_array_ctor_all_strlen): New function.
1175         (get_array_ctor_strlen): Add new stmtblock_t argument and call
1176         new function for character elements that are not constants,
1177         arrays or variables.
1178         (gfc_conv_array_parameter): Call get_array_ctor_strlen to get
1179         good string length.
1180         * trans-intrinsic (gfc_conv_intrinsic_len): Add new argument
1181         to call of get_array_ctor_strlen.
1183 2007-05-25  Kazu Hirata  <kazu@codesourcery.com>
1185         * intrinsic.texi: Fix typos.
1187 2007-05-25  Paul Thomas  <pault@gcc.gnu.org>
1189         PR fortran/32047
1190         * trans-expr.c (gfc_apply_interface_mapping_to_expr): Change
1191         order in logic under EXPR_FUNCTION to handle functions with
1192         no arguments.
1194 2007-05-23  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
1196         PR fortran/31716
1197         * array.c (spec_dimen_size): Test for correct BT_INTEGER type. 
1199 2007-05-23  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1201         PR fortran/32046
1202         * trans-expr.c (gfc_trans_zero_assign): Convert the result of
1203         TYPE_SIZE_UNIT into a signed type.
1204         (gfc_trans_array_copy):  Likewise.
1205         (gfc_trans_array_constructor_copy): Likewise.
1206         * trans-array.c (gfc_trans_create_temp_array): Likewise.
1207         (gfc_grow_array): Likewise.
1208         (gfc_array_init_size): Likewise.
1209         (gfc_duplicate_allocatable): Likewise.
1210         * trans-stmt.c (allocate_temp_for_forall_nest_1): Likewise.
1212 2007-05-22  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
1214         PR fortran/18923
1215         * resolve.c (resolve_function): Don't call resolve_global_procedure if
1216         there is no name. Delete duplicated statement in ELSE clause.
1218 2007-05-22 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
1220         PR fortran/31627
1221         * trans-array.c (gfc_trans_array_bound_check): Take extra argument to
1222         indicate whether we should check the upper bound in that dimension.
1223         (gfc_conv_array_index_offset): Check only the lower bound of the
1224         last dimension for assumed-size arrays.
1225         (gfc_conv_array_ref): Likewise.
1226         (gfc_conv_ss_startstride): Likewise.
1228 2007-05-21  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
1229             Daniel Franke  <franke.daniel@gmail.com>
1231         PR fortran/32002
1232         * resolve.c (resolve_actual_arglist): Resolve actual argument after
1233         being identified as variable.
1235 2007-05-21  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1237         PR fortran/32027
1238         * trans-stmt.c (gfc_trans_do): Fix the value of loop variable
1239         when the loop ends.
1241 2007-05-21  H.J. Lu  <hongjiu.lu@intel.com>
1243         * trans-stmt.c (gfc_trans_do): Fix a typo in comment.
1245 2007-05-21  Paul Thomas  <pault@gcc.gnu.org>
1247         PR fortran/31867
1248         PR fortran/31994
1249         * trans-array.c (gfc_conv_expr_descriptor): Obtain the stored
1250         offset for non-descriptor, source arrays and correct for stride
1251         not equal to one before writing to field of output descriptor.
1253 2007-05-20  Daniel Franke  <franke.daniel@gmail.com>
1255         PR fortran/32001
1256         * check.c (check_rest): Improved argument conformance check and 
1257         fixed error message generation.
1259 2007-05-19  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1261         PR fortran/30820
1262         * Make-lang.in: Remove use of -Wno-error for expr.o, resolve.o,
1263         simplify.o and trans-common.o.
1265 2007-05-19  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1267         PR fortran/31974
1268         * trans-array.c (gfc_trans_auto_array_allocation): Avoid
1269         multiplication of mismatched types.
1271 2007-05-18  Daniel Franke  <franke.daniel@gmail.com>
1273         PR fortran/24633
1274         * symbol.c (gfc_add_flavor): Add the NAME to error message if
1275         available.
1277 2007-05-15  Daniel Franke  <franke.daniel@gmail.com>
1279         PR fortran/31919
1280         PR fortran/31929
1281         PR fortran/31930
1282         * intrinsic.c (check_specific): Check elemental intrinsics for
1283         rank and shape.
1284         (add_functions): Fixed dummy argument names of BESJN and BESYN.
1285         Fixed elemental status of MCLOCK and MCLOCK8.
1286         * check.c (check_rest): Added check for array conformance.
1287         (gfc_check_merge): Removed check for array conformance.
1288         (gfc_check_besn): Removed check for scalarity.
1289         * intrinsic.texi (CSHIFT, EOSHIFT): Fixed typos.
1290         (BESJN, BESYN): Clarified documentation.
1292 2007-05-17  Tobias Burnus  <burnus@net-b.de>
1294         * gfortran.texi (GFORTRAN_CONVERT_UNIT): Improve documentation.
1296 2007-05-16  Brooks Moses  <brooks.moses@codesourcery.com>
1298         PR fortran/18769
1299         PR fortran/30881
1300         PR fortran/31194
1301         PR fortran/31216
1302         PR fortran/31427
1303         * target-memory.c: New file.
1304         * target-memory.h: New file.
1305         * simplify.c: Add #include "target-memory.h".
1306         (gfc_simplify_transfer): Implement constant-
1307         folding for TRANSFER intrinsic.
1308         * Make-lang.in: Add dependencies on new target-memory.* files.
1310 2007-05-15  Paul Brook  <paul@codesourcery.com>
1312         * trans-types.c (gfc_type_for_size): Handle signed TImode.
1314 2007-05-14  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1316         PR fortran/30723
1317         * trans.h (gfor_fndecl_internal_malloc, gfor_fndecl_internal_malloc64,
1318         gfor_fndecl_internal_free): Remove prototypes.
1319         (gfor_fndecl_os_error, gfc_call_free, gfc_call_malloc): Add prototypes.
1320         * trans.c (gfc_call_malloc, gfc_call_free): New functions.
1321         * f95-lang.c (gfc_init_builtin_functions): Add __builtin_free
1322         and __builtin_malloc builtins.
1323         * trans-decl.c (gfor_fndecl_internal_malloc,
1324         gfor_fndecl_internal_malloc64, gfor_fndecl_internal_free): Remove.
1325         (gfor_fndecl_os_error): Add.
1326         (gfc_build_builtin_function_decls): Don't create internal_malloc,
1327         internal_malloc64 and internal_free library function declaration.
1328         Create os_error library call function declaration.
1329         * trans-array.c (gfc_trans_allocate_array_storage,
1330         gfc_trans_auto_array_allocation, gfc_trans_dummy_array_bias,
1331         gfc_conv_array_parameter, gfc_duplicate_allocatable): Use
1332         gfc_call_malloc and gfc_call_free instead of building calls to
1333         internal_malloc and internal_free.
1334         * trans-expr.c (gfc_conv_string_tmp): Likewise.
1335         * trans-stmt.c (gfc_do_allocate, gfc_trans_assign_need_temp,
1336         gfc_trans_pointer_assign_need_temp, gfc_trans_forall_1,
1337         gfc_trans_where_2: Likewise.
1338         * trans-intrinsic.c (gfc_conv_intrinsic_ctime,
1339         gfc_conv_intrinsic_fdate, gfc_conv_intrinsic_ttynam,
1340         gfc_conv_intrinsic_array_transfer, gfc_conv_intrinsic_trim): Likewise.
1342 2007-05-14  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1344         PR fortran/31725
1345         * trans-expr.c (gfc_conv_substring): Evaluate substring bounds
1346         only once.
1348 2007-05-14  Rafael Avila de Espindola  <espindola@google.com>
1350         * f95-lang.c (LANG_HOOKS_UNSIGNED_TYPE): Remove.
1351         * trans-intrinsic.c (gfc_conv_intrinsic_ishft): Use unsigned_type_for
1352         instead of gfc_unsigned_type.
1353         * trans-stmt.c (gfc_trans_do): Use unsigned_type_for instead of
1354         gfc_unsigned_type.
1355         * trans-types.c (gfc_unsigned_type): Remove.
1356         * trans-types.h (gfc_unsigned_type): Remove.
1358 2007-05-12  Paul Thomas  <pault@gcc.gnu.org>
1360         PR fortran/30746
1361         * resolve.c (check_host_association): New function that detects
1362         incorrect host association and corrects it.
1363         (gfc_resolve_expr): Call the new function for variables and
1364         functions.
1365         * match.h : Remove prototype for gfc_match_rvalue.
1366         * gfortran.h : Add prototype for gfc_match_rvalue.
1368 2007-05-11 Paul Thomas <pault@gcc.gnu.org>
1370         PR fortran/30876
1371         * trans-expr.c (gfc_conv_function_call): Reduce indirection for
1372         direct assignments of recursive array valued functions.
1373         * primary.c (gfc_match_rvalue): Correct error for recursive
1374         function calls such that directly recursive calls of scalar
1375         function without an explicit result are disallowed.
1377 2007-05-11 Paul Thomas <pault@gcc.gnu.org>
1379         PR fortran/30878
1380         * resolve.c (resolve_fl_namelist): It is not an error if the
1381         namelist element is the result variable of the enclosing
1382         function.  Search for the symbol in current and all parent
1383         namespaces for a potential conflict.
1384         * symbol.c (check_conflict): Remove the conflict between
1385         'in_namelist' and 'FL_PROCEDURE' because the symbol info
1386         is not available to exclude function result variables.
1387         * trans-io.c (nml_get_addr_expr): Use the fake result decl
1388         if the symbol is an implicit result variable.
1390 2007-05-11  Paul Thomas  <pault@gcc.gnu.org>
1392         PR fortran/31474
1393         * decl.c (get_proc_name): If an entry has already been declared
1394         as a module procedure, pick up the symbol and the symtree and
1395         use them for the entry.
1397 2007-05-08  Paul Thomas  <pault@gcc.gnu.org>
1399         PR fortran/31630
1400         * resolve.c (resolve_symbol): Remove the flagging mechanism from the
1401         formal namespace resolution and instead check that the formal
1402         namespace is not the current namespace.
1404 2007-05-08  Paul Thomas  <pault@gcc.gnu.org>
1406         PR fortran/31692
1407         * trans-array.c (gfc_conv_array_parameter): Convert full array
1408         references to the result of the procedure enclusing the call.
1410 2007-05-08  Paul Thomas  <pault@gcc.gnu.org>
1412         PR fortran/29397
1413         PR fortran/29400
1414         * decl.c (add_init_expr_to_sym): Expand a scalar initializer
1415         for a parameter array into an array expression with the right
1416         shape.
1417         * array.c (spec_dimen_size): Remove static attribute.
1418         * gfortran.h : Prototype for spec_dimen_size.
1420 2007-05-07  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1422         PR fortran/31399
1423         * trans-stmt.c (gfc_trans_do): Handle large loop counts.
1425 2007-05-07  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1427         PR fortran/31764
1428         * simplify.c (gfc_simplify_new_line): NEW_LINE can be simplified
1429         even for non constant arguments.
1431 2007-05-06  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
1432             Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1434         PR fortran/31201
1435         * gfortran.h: Add runtime error codes from libgfortran.h. Define
1436         MAX_UNIT_NUMBER.
1437         * trans.c (gfc_trans_runtime_check): Update the format of runtime error
1438         messages to match library runtime errors.  Use call to new library
1439         function runtime_error_at().
1440         * trans.h: Add prototype for new function gfc_trans_io_runtime_check.
1441         Add declaration for library functions runtime_error_at and
1442         generate_error.
1443         * trans_io.c (gfc_trans_io_runtime_check): New function.
1444         (set_parameter_value): Add error checking for UNIT numbers.
1445         (set_parameter_ref): Initialize the users variable to zero. 
1446         (gfc_trans_open): Move setting of unit number to after setting of common
1447         flags so that runtime error trapping can be detected.
1448         (gfc_trans_close): Likewise. (build_filepos): Likewise.
1449         (gfc_trans_inquire): Likewise. (build_dt): Likewise.
1450         * trans-decl.c: Add declarations for runtime_error_at and
1451         generate_error. (gfc_build_builtin_function_decls): Build function
1452         declarations for runtime_error_at and generate_error.
1454 2007-05-06  Paul Thomas  <pault@gcc.gnu.org>
1456         PR fortran/31540
1457         * resolve.c (resolve_fl_procedure): Resolve constant character
1458         lengths.
1460 2007-05-05  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
1462         PR fortran/31251
1463         * decl.c (match_char_spec): Add check for invalid character lengths.
1465 2007-05-04  Brooks Moses  <brooks.moses@codesourcery.com>
1467         * intrinsic.texi (CMPLX): Document result kind.
1468         (COMPLEX): Add documentation.
1470 2007-05-04  Daniel Franke  <franke.daniel@gmail.com>
1472         PR fortran/31760
1473         * intrinsic.c (add_functions): Replaced calls to gfc_check_g77_math1
1474         by gfc_check_fn_r to avoid checks for scalarity.
1475         * check.c (gfc_check_besn): Removed check for scalarity.
1476         (gfc_check_g77_math1): Removed.
1477         * intrinsic.h (gfc_check_g77_math1): Removed.
1479 2007-05-04  Daniel Franke  <franke.daniel@gmail.com>
1481         * check.c (gfc_check_fseek_sub): Fixed typo.
1483 2007-05-04  Daniel Franke  <franke.daniel@gmail.com>
1485         PR fortran/22359
1486         * intrinsic.c (add_subroutines): Added FSEEK.
1487         * intrinsic.h (gfc_resolve_fseek_sub, gfc_check_fseek_sub): New.
1488         * iresolve.c (gfc_resolve_fseek_sub): New.
1489         * check.c (gfc_check_fseek_sub): New.
1490         * intrinsic.texi (FSEEK): Updated.
1492 2007-05-04  Tobias Burnus  <burnus@net-b.de>
1494         PR fortran/31803
1495         * expr.c (gfc_check_pointer_assign): Check for NULL pointer.
1497 2007-05-04  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
1499         PR fortran/31251
1500         * simplify.c (gfc_simplify_len): Only simplify integer lengths.
1502 2007-05-04  Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
1504         PR fortran/31781
1505         * simplify.c (gfc_simplify_repeat): Don't put function call with
1506         side effect in a gcc_assert().
1508 2007-05-04  Tobias Burnus  <burnus@net-b.de>
1510         PR fortran/25071
1511         * interface.c (compare_actual_formal): Check character length.
1513 2007-05-01  Thomas Koenig  <tkoenig@gcc.gnu.org>
1515         PR fortran/31732
1516         * dependency.c (gfc_full_array_ref_p):  If the reference is
1517         to a single element, check that the array has a single
1518         element and that the correct element is referenced.
1520 2007-05-01  Daniel Franke  <franke.daniel@gmail.com>
1522         * intrinsic.c (add_functions): Fixed ELEMENTAL specifications.
1523         (add_subroutines): Replaced magic numbers in function calls by
1524         ELEMENTAL and NOT_ELEMENTAL respectively.
1525         * intrinsic.texi (MVBITS): Changed class to elemental subroutine.
1526         (RANDOM_NUMBER): Changed class to subroutine.
1527         (HUGE, TINY): Changed class to inquiry function.
1529 2007-04-30  Brooks Moses  <brooks.moses@codesourcery.com>
1531         * trans-const.c (gfc_conv_mpz_to_tree): Use mpz_get_double_int.
1532         (gfc_conv_tree_to_mpz): New function.
1533         (gfc_conv_mpfr_to_tree): Use real_from_mpfr.
1534         (gfc_conv_tree_to_mpfr): New function.
1535         * trans-const.h: (gfc_conv_tree_to_mpz): New prototype.
1536         (gfc_conv_tree_to_mpfr): New prototype.
1538 2007-04-30  Daniel Franke  <franke.daniel@gmail.com>
1540         * intrinsic.texi (IERRNO): Changed class to non-elemental function.
1541         (LOG10): Removed COMPLEX as accepted argument type.
1542         (NEW_LINE): Changed class from elemental to inquiry function.
1543         (SIGN): Removed requirement of scalar arguments.
1544         (SNGL): Changed class to elemental function.
1546 2007-04-29  Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
1548         PR fortran/31591
1549         * simplify.c (simplify_bound_dim): New function.
1550         (simplify_bound): Use the above. Perform simplification of LBOUND
1551         and UBOUND when DIM argument is not present.
1553 2007-04-29  Daniel Franke  <franke.daniel@gmail.com>
1555         * gfortran.texi: Cleaned up keyword index.
1556         * invoke.texi: Likewise.
1557         * intrinsic.texi: Likewise.
1558                         
1559 2007-04-29  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1561         PR fortran/31645
1562         * scanner.c (load_file): Discard the byte order mark if one is
1563         found on the first non-preprocessor line of a file.
1565 2007-04-29  Paul Thomas  <pault@gcc.gnu.org>
1567         PR fortran/31711
1568         * trans-array.c (gfc_conv_resolve_dependencies): Create a temp
1569         whenever a dependency is found.
1571 2007-04-28  Tobias Schlüter  <tobi@gcc.gnu.org>
1573         * options.c (gfc_handle_option): Ensure requested free form line
1574         length is not too small.
1576 2007-04-27  Brooks Moses  <brooks.moses@codesourcery.com>
1578         * intrinsic.texi (Transfer): Improve documentation.
1580 2007-04-27  Brooks Moses  <brooks.moses@codesourcery.com>
1582         * gfortran.texi (Option Index): Add @samp as needed.
1584 2007-04-27  Daniel Franke  <franke.daniel@gmail.com>
1586         * gfortran.texi: Added node and menu entry for an option index.
1587         * invoke.texi: Moved command line option related entries of the concept 
1588         index to the option index.
1590 2007-04-27  Daniel Franke  <franke.daniel@gmail.com>
1592         * intrinsic.texi (AND, FPUT, FPUTC, MODULO, OR, SET_EXPONENT,
1593         XOR): Fixed examples.
1595 2007-04-27  Daniel Franke  <franke.daniel@gmail.com>
1597         * intrinsic.texi (PRODUCT, RESHAPE, SPACING, SPREAD, SUM, 
1598         SYSTEM_CLOCK, TRANSFER, UNPACK): New.
1599         (DATE_AND_TIME, CPU_TIME, RRSPACING): Added cross references.
1601 2007-04-26  Daniel Franke  <franke.daniel@gmail.com>
1603         * intrinsic.texi (NULL, PACK, PRESENT, REPEAT, SCAN, SHAPE, 
1604         SIZE, TRANSPOSE, TRIM, VERIFY): New.
1605         (ADJUSTL, ADJUSTR, INDEX): Added cross references.
1606         (INT, INT2, INT8, LONG): Enabled section header.
1608 2007-04-25  Janne Blomqvist  <jb@gcc.gnu.org>
1610         * module.c (module_char): Replace fgetc() with
1611         getc(). 
1612         (write_char): Replace fputc() with putc().
1613         * scanner.c (load_line): Replace fgetc() with getc().
1614         (gfc_read_orig_filename): Likewise.
1616 2007-04-25  Tobias Burnus  <burnus@net-b.de>
1618         PR fortran/31668
1619         * error.c (error_print): Fix %% support.
1620         * intrinsic.c (sort_actual): Improve error message.
1621         * resolve.c (resolve_actual_arglist): Allow %VAL for
1622         interfaces defined in the module declaration part.
1624 2007-04-25  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1626         PR libfortran/31299
1627         * intrinsic.texi (GETLOG): Update documentation to reflect
1628         library changes.
1630 2007-04-24  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1632         PR fortran/31587
1633         * module.c (write_char): Add character to the MD5 buffer.
1634         (read_md5_from_module_file): New function.
1635         (gfc_dump_module): Compute MD5 for new module file. Call
1636         read_md5_from_module_file. Only overwrite old module file
1637         if the new MD5 is different.
1639 2007-04-23  Paul Thomas  <pault@gcc.gnu.org>
1641         PR fortran/31630
1642         * resolve.c (resolve_symbol): Allow resolution of formal
1643         namespaces nested within formal namespaces coming from modules.
1645         PR fortran/31620
1646         * trans-expr.c (gfc_trans_assignment): Make the call to
1647         gfc_trans_zero_assign conditional on the lhs array ref being
1648         the only reference.
1650 2007-04-23  Tobias Burnus  <burnus@net-b.de>
1652         * primary.c (match_integer_constant): Mention -fno-range-check
1653         in the error message.
1655 2007-04-21  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
1657         PR fortran/31495
1658         * scanner.c (load_line):  Remove check for comment after ampersand and
1659         adjust tracking of ampersand.
1661 2007-04-21  Andrew Pinski  <andrew_pinski@playstation.sony.com>
1663         * f95-lang.c (lang_tree_node): Use GENERIC_NEXT
1664         instead of checking GIMPLE_STMT_P in chain_next.
1666 2007-04-17  Tobias Schlüter  <tobi@gcc.gnu.org>
1668         * trans-types.h (gfc_packed): New enum.
1669         (gfc_get_nodesc_array_type): Change prototype to use new enum.
1670         * trans-types.c (gfc_get_nodesc_array): Use gfc_packed for
1671         argument packed.  Adapt all references to values accordingly.
1672         (gfc_sym_type): Use enum values in call to gfc_get_nodesc_array.
1673         (gfc_get_derived_type): Likewise.
1674         * trans-array.c (gfc_build_constant_array_constructor): Likewise.
1675         * trans-expr.c (gfc_get_interface_mapping_charlen): Changed packed
1676         argument to type gfc_packed.
1677         (gfc_add_interface_mapping): Use enum values in call to
1678         gfc_get_interface_mapping.
1679         * trans-decl.c (gfc_build_dummy_array_decl): Adapt to use enum
1680         values when determining packing.
1682         * trans-decl.c (gfc_finish_decl): Remove unused second argument
1683         'init'.  Simplify code accordingly.  Remove calls to
1684         gfc_fatal_error in favor of gcc_assert.
1685         (create_function_arglist): Remove second argument from calls to
1686         gfc_finish-decl.
1687         (gfc_trans_dummy_character): Likewise.
1689         * arith.h: Update copyright years.
1690         * dependency.h: Likewise.
1691         * gfortran.h: Likewise.
1692         * lang-specs.h: Likewise.
1693         * parse.h: Likewise.
1694         * symbol.c: Likewise.
1695         * trans.h: Likewise.
1696         * trans.c: Likewise.
1697         * trans-array.c: Likewise.
1698         * trans-common.c: Likewise.
1699         * trans-const.h: Likewise.
1700         * trans-const.c: Likewise.
1701         * trans-decl.c: Likewise.
1702         * trans-expr.c: Likewise.
1703         * trans-io.c: Likewise.
1704         * trans-openmp.c: Likewise.
1705         * trans-types.h: Likewise.
1706         * types.def: Likewise.
1708 2007-04-17  Tobias Schlüter  <tobi@gcc.gnu.org>
1710         PR fortran/31144
1711         * decl.c (gfc_sym_mangled_identifier): Use capital letters in name
1712         mangling.
1713         (gfc_sym_mangled_function_id): Likewise.
1715 2007-04-15  Paul Thomas  <pault@gcc.gnu.org>
1717         PR fortran/31204
1718         * primary.c (check_for_implicit_index): New function to check
1719         that a host associated variable is not an undeclared implied
1720         do loop index.
1721         (gfc_match_rvalue, match_variable): Use it and reset the
1722         implied_index attribute.
1723         * gfortran.h : Add the implied_index field to symbol_attribute.
1724         * match.c (gfc_match_iterator): Mark the iterator variable
1725         with the new attribute.
1726         * decl.c (build_sym): Reset the new attribute.
1728 2007-04-15  Kazu Hirata  <kazu@codesourcery.com>
1730         * gfc-internals.texi: Fix typos.
1731         * simplify.c: Fix a comment typo.
1733 2007-04-14  Bernhard Fischer  <aldot@gcc.gnu.org>
1735         * primary.c: Commentary typo fix; Add question about redundant (?)
1736         set.
1738 2007-04-14  Paul Thomas  <pault@gcc.gnu.org>
1740         PR fortran/29507
1741         PR fortran/31404
1742         * expr.c (scalarize_intrinsic_call): New function to
1743         scalarize elemental intrinsic functions in initialization
1744         expressions.
1745         (check_init_expr): Detect elemental intrinsic functions
1746         in initalization expressions and call previous.
1748 2007-04-13  Tobias Burnus  <burnus@net-b.de>
1750         PR fortran/31559
1751         * primary.c (match_variable): External functions
1752         are no variables.
1754 2007-04-13  Paul Thomas  <pault@gcc.gnu.org>
1756         PR fortran/31550
1757         * trans-types.c (copy_dt_decls_ifequal): Do not get pointer
1758         derived type components.
1760 2007-04-13  Tobias Schlüter  <tobi@gcc.gnu.org>
1762         PR fortran/18937
1763         * resolve.c: Include obstack.h and bitmap.h.  New variable
1764         labels_obstack.
1765         (code_stack): Add tail and reachable_labels fields.
1766         (reachable_labels): New function.
1767         (resolve_branch): Rework to use new fields in code_stack.
1768         (resolve_code): Call reachable_labels.
1769         (resolve_codes): Allocate and free labels_obstack.
1771 2007-04-12  Tobias Schlüter  <tobi@gcc.gnu.org>
1773         PR fortran/31250
1774         * decl.c (match_char_spec): Move check for negative CHARACTER
1775         length ...
1776         * resolve.c (resolve_charlen): ... here.
1777         (resolve_types): Resolve CHARACTER lengths earlier.
1779 2007-04-12  Daniel Franke  <franke.daniel@gmail.com>
1781         PR fortran/31234
1782         * intrinsic.texi (RANDOM_SEED, RANDOM_NUMBER): New.
1784 2007-04-12  Tobias Schlüter  <tobi@gcc.gnu.org>
1786         PR fortran/31266
1787         * primary.c (gfc_variable_attr): Don't copy string length if it
1788         doesn't make sense.
1789         * resolve.c (resolve_code): Clarify error message.
1791         PR fortran/31471
1792         * decl.c (gfc_match_end): Also check for construct name in END
1793         FORALL and END WERE statements.
1794         * match.c (match_case_eos): Use uppercase for statement name in
1795         error message.
1796         (match_elsewhere): Construct name may appear iff construct has a
1797         name.
1799         * trans-types.c: Update copyright years.  Reformat long comment
1800         explaining array descriptor format.  Remove obsolete mention of
1801         TYPE_SET.
1803         * arith.c (gfc_arith_uplus): Rename to ...
1804         (gfc_arith_identity): ... this.
1805         (gfc_parentheses): New function.
1806         (gfc_uplus): Adapt to renamed function.
1807         * arith.h (gfc_parentheses): Add prototype.
1808         * expr.c (gfc_copy_expr): Deal with INTRINSIC_PARENTHESES.
1809         (simplifiy_intrinsic_op): Treat INTRINSIC_UPLUS separately from
1810         INTRINSIC_PARENTHESES.
1812 2007-04-12  Tobias Burnus  <burnus@net-b.de>
1814         PR fortran/31472
1815         * decl.c (match_attr_spec): Allow PRIVATE/PUBLIC
1816         attribute in type definitions.
1817         (gfc_match_private): Allow PRIVATE statement only
1818         in specification part of modules.
1819         (gfc_match_public): Ditto for PUBLIC.
1820         (gfc_match_derived_decl): Allow PRIVATE/PUBLIC attribute only in
1821         specificification part of modules.
1823 2007-04-07  Paul Thomas  <pault@gcc.gnu.org>
1825         PR fortran/31257
1826         * intrinsic.c (add_functions): Add ref. to gfc_resolve_achar.
1827         * intrinsic.h : Add prototype for gfc_resolve_achar.
1828         * iresolve.c (gfc_resolve_achar): New function.
1830 2007-04-07  Paul Thomas  <pault@gcc.gnu.org>
1832         PR fortran/30880
1833         * resolve.c (resolve_fl_variable): Set flag to 2 for automatic
1834         arrays.  Make condition for automatic array error explicit.
1835         If a dummy, no error on an INTENT(OUT) derived type.
1837 2007-04-07  Paul Thomas  <pault@gcc.gnu.org>
1839         PR fortran/30872
1840         * expr.c (find_array_element): Correct arithmetic for rank > 1.
1842 2007-04-07  Paul Thomas  <pault@gcc.gnu.org>
1844         PR fortran/31222
1845         * check.c (numeric_check): If an expresson has not got a type,
1846         see if it is a symbol for which a default type applies.
1848 2007-04-07  Paul Thomas  <pault@gcc.gnu.org>
1850         PR fortran/31214
1851         * trans-decl.c (gfc_get_symbol_decl): Allow unreferenced use
1852         associated symbols.
1854 2007-04-07  Paul Thomas  <pault@gcc.gnu.org>
1856         PR fortran/31293
1857         * symbol.c (gfc_check_function_type): New function.
1858         * gfortran.h : Add prototype for previous.
1859         * parse.c (parse_progunit): Call it after parsing specification
1860         statements.
1862 2007-04-05  Paul Thomas  <pault@gcc.gnu.org>
1864         PR fortran/31483
1865         * trans-expr.c (gfc_conv_function_call): Give a dummy
1866         procedure the correct type if it has alternate returns.
1868 2007-04-05  Paul Thomas  <pault@gcc.gnu.org>
1870         PR fortran/31292
1871         * decl.c (gfc_match_modproc): Go up to the top of the namespace
1872         tree to find the module namespace for gfc_get_symbol.
1874 2007-04-03  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1876         PR fortran/31304
1877         * fortran/gfortran.h (gfc_charlen_int_kind): New prototype.
1878         * fortran/trans-types.c (gfc_charlen_int_kind): New variable.
1879         (gfc_init_types): Define gfc_charlen_int_kind. 
1880         * fortran/trans.h (gfor_fndecl_string_repeat): Remove prototype.
1881         * fortran/trans-decl.c (gfor_fndecl_string_repeat): Delete.
1882         (gfc_build_intrinsic_function_decls): Don't set
1883         gfor_fndecl_string_repeat.
1884         * fortran/trans-intrinsic.c (gfc_conv_intrinsic_repeat): Rewrite
1885         so that we don't have to call a library function.
1886         * fortran/simplify.c (gfc_simplify_repeat): Perform the necessary
1887         checks on the NCOPIES argument, and work with arbitrary size
1888         arguments.
1890 2007-03-31  Tobias Burnus  <burnus@net-b.de>
1892         * intrinsic.c (add_functions): Fix name of dummy argument
1893           for new_line and exit intrinsic.
1895 2007-03-31  Paul Thomas  <pault@gcc.gnu.org>
1897         PR fortran/31160
1898         * gfortran.texi: Add a section for the %VAL, %REF and %LOC
1899         extensions.
1901 2007-03-30  Rafael Avila de Espindola  <espindola@google.com>
1903         * trans-types.c (gfc_signed_or_unsigned_type): Remove.
1904         (gfc_unsigned_type): Use get_signed_or_unsigned_type instead of
1905         gfc_signed_or_unsigned_type.
1906         (gfc_signed_type): Ditto.
1907         * trans-types.h (gfc_signed_or_unsigned_type): Remove.
1908         * f95-lang.c (LANG_HOOKS_SIGNED_OR_UNSIGNED_TYPE): Remove.
1910 2007-03-30  Tobias Schlüter  <tobi@gcc.gnu.org>
1912         * symbol.c (gfc_find_gsymbol): Simplify, don't unconditionally
1913         descend into all branches.
1915 2007-03-29  Tobias Schlüter  <tobi@gcc.gnu.org>
1917         * intrinsic.c (conv_name): Let gfc_get_string handle the format.
1918         (find_conv): Compare pointers instead of calling strcmp.
1919         (find_sym): Likewise, but ensure that the compared pointer is in
1920         the global string table.
1922 2007-03-28  Tobias Schlüter  <tobi@gcc.gnu.org>
1924         * gfc-internals.texi: Fix output filename.  Merge type index into
1925         concept index.  Start documentation of gfc_code structure.
1927 2007-03-26  Brooks Moses  <brooks.moses@codesourcery.com>
1929         * gfc-internals.texi: New file,
1930         * Make-lang.in: Add rules to convert it to dvi, pdf, and info.
1932 2007-03-26  Brooks Moses  <brooks.moses@codesourcery.com>
1934         * error.c (show_locus): Remove always-false test.
1936 2007-03-26  Brooks Moses  <brooks.moses@codesourcery.com>
1938         * lang.opt: Minor edits to descriptions.
1940 2007-03-25  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1942         PR fortran/30877
1943         * fortran/interface.c (check_operator_interface): Implement
1944         the standard checks on user operators extending intrinsic operators.
1945         * fortran/resolve.c (resolve_operator): If the ranks of operators
1946         don't match, don't error out but try the user-defined ones first.
1948 2007-03-24  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1950         PR fortran/30655
1951         * expr.c (check_dimension): Fix logic of comparisons.
1953 2007-03-24  Paul Thomas  <pault@gcc.gnu.org>
1955         PR fortran/31215
1956         * trans-expr.c (gfc_apply_interface_mapping_to_expr): Return
1957         int result that is non-zero if the expression is the function
1958         result.  Only the characteristics of the result expression
1959         can be used in a procedure interface, so simplify LEN in situ
1960         using its character length.
1962         PR fortran/31209
1963         PR fortran/31200
1964         * trans-expr.c (gfc_conv_function_call): Do not use
1965         gfc_conv_expr_reference for actual pointer function with formal
1966         target because a temporary is created that does not transfer
1967         the reference correctly.  Do not indirect formal pointer
1968         functions since it is the function reference that is needed.
1970 2007-03-24  Brooks Moses  <brooks.moses@codesourcery.com>
1972         * gfortran.h: Edit comments on GFC_STD_*.
1974 2007-03-23  Brooks Moses  <brooks.moses@codesourcery.com>
1976         * invoke.texi: Misc. small typo fixes.
1977         (-Wcharacter-truncation): Add.
1978         (-Wnonstd-intrinsics): Correct spelling.
1979         (-std=): Edit.
1980         (-fintrinsic-modules-path): Add.
1982 2007-03-23  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1984         PR fortran/30834
1985         * arith.c (complex_pow): Rewrite to handle large power.
1986         (gfc_arith_power): Handle large power in the real and integer
1987         cases.
1989 2007-03-22  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
1991         PR fortran/31262
1992         * trans-const.c (gfc_conv_mpz_to_tree): Allow integer constants
1993         larger than twice the width of a HOST_WIDE_INT.
1995 2006-03-22  Paul Thomas  <pault@gcc.gnu.org>
1997         PR fortran/31193
1998         * trans-intrinsic.c (gfc_size_in_bytes): Remove function.
1999         (gfc_conv_intrinsic_array_transfer): Remove calls to previous.
2000         Explicitly extract TREE_TYPEs for source and mold.  Use these
2001         to calculate length of source and mold, except for characters,
2002         where the se string_length is used.  For mold, the TREE_TYPE is
2003         recalculated using gfc_get_character_type_len so that the
2004         result is correctly cast for character literals and substrings.
2005         Do not use gfc_typenode_for_spec for the final cast.
2007 2007-03-22  Tobias Schlüter  <tobi@gcc.gnu.org>
2009         PR fortran/20897
2010         * decl.c (gfc_match_derived_decl): Reliably reject
2011         'doubleprecision' and 'doublecomplex' as type names.
2013 2007-03-19  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
2015         PR fortran/31203
2016         * trans-expr.c (gfc_trans_init_string_length): Length should
2017         never be negative.
2018         (gfc_conv_function_call): Likewise.
2020 2007-03-18  Paul Thomas  <pault@gcc.gnu.org>
2022         PR fortran/30531
2023         PR fortran/31086
2024         * symbo.c : Add gfc_derived_types.
2025         (gfc_free_dt_list): Free derived type list gfc_derived_types.
2026         (gfc_free_namespace): Remove call to gfc_free_dt_list.
2027         (gfc_symbol_done_2): Call  gfc_free_dt_list.
2028         * gfortran.h : Declare gfc_derived_types to be external. Remove
2029         derived types field from gfc_namespace.
2030         * resolve.c (resolve_fl_derived): Refer to gfc_derived types
2031         rather than namespace derived_types.
2032         (resolve_fntype): Remove special treatment for module
2033         derived type functions.
2034         * trans-types.c (gfc_get_derived_type): Remove search for like
2035         derived types.  Finish by copying back end declaration to like
2036         derived types in the derived type list gfc_derived_types.
2038         2007-03-17  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
2040         PR fortran/31120
2041         * trans-expr.c (gfc_conv_powi): Make n argument unsigned hwi.
2042         (gfc_conv_cst_int_power): Handle integer exponent with care,
2043         since it might be too large for us.
2045 2007-03-17  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
2047         PR fortran/31184
2048         * invoke.texi: Fix typo.
2050 2007-03-16  Tobias Burnus  <burnus@net-b.de>
2052         * trans-decl.c (gfc_generate_function_code): Use all arguments of
2053           set_std.
2055 2007-03-15  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
2057         * gfortran.h (gfc_option_t): Add flag_backtrace field.
2058         * lang.opt: Add -fbacktrace option.
2059         * invoke.texi: Document the new option.
2060         * trans-decl.c (gfc_build_builtin_function_decls): Add new
2061         option to the call to set_std.
2062         * options.c (gfc_init_options, gfc_handle_option): Handle the
2063         new option.
2065 2007-03-15  Tobias Burnus  <burnus@gcc.gnu.org>
2066             Paul Thomas  <pault@gcc.gnu.org>
2068         PR fortran/30922
2069         * decl.c (gfc_match_import): If the parent of the current name-
2070         space is null, try looking for an imported symbol in the parent
2071         of the proc_name interface.
2072         * resolve.c (resolve_fl_variable): Do not check for blocking of
2073         host association by a same symbol, if the symbol is in an
2074         interface body.
2076 2007-03-15  Paul Thomas  <pault@gcc.gnu.org>
2078         PR fortran/30879
2079         * decl.c (match_data_constant): Before going on to try to match
2080         a name, try to match a structure component.
2083         PR fortran/30870
2084         * resolve.c (resolve_actual_arglist): Do not reject a generic
2085         actual argument if it has a same name specific interface.
2087         PR fortran/31163
2088         * trans-array.c (parse_interface): Do not nullify allocatable
2089         components if the symbol has the saved attribute.
2091 2007-03-14  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
2093         * trans-array.c (gfc_trans_auto_array_allocation): Replace
2094         fold(convert()) by fold_convert().
2095         (gfc_duplicate_allocatable): Likewise.
2096         * trans-intrinsic.c (gfc_conv_intrinsic_dot_product): Use
2097         build_int_cst instead of converting an integer_zero_node
2098         to the final type.
2100 2007-03-14  Jakub Jelinek  <jakub@redhat.com>
2102         * module.c (mio_typespec): Don't look at ts->cl if not BT_CHARACTER.
2104 2007-03-13  Brooks Moses  <brooks.moses@codesourcery.com>
2106         PR fortran/30933
2107         PR fortran/30948
2108         PR fortran/30953
2109         * intrinsics.texi (CHDIR): Fix argument names, note
2110         that STATUS must be a default integer.
2111         (CTIME): Fix argument names, note that RESULT must
2112         be a default integer.
2113         (EXIT): Note that STATUS must be a default integer.
2115 2007-03-13  Brooks Moses  <brooks.moses@codesourcery.com>
2117         PR fortran/28068
2118         * intrinsic.texi: General whitespace cleanup, remove
2119         comment about missing intrinsics.
2120         (menu): Add lines for new entries listed below.
2121         (ACOSH): Mention specific function DACOSH, correct
2122         description phrasing.
2123         (ASINH): Mention specific function DASINH, correct
2124         description phrasing.
2125         (ATANH): Mention specific function DATANH, correct
2126         description phrasing.
2127         (COS): Add index entry for CCOS.
2128         (CPU_TIME): Correct "REAL" to "REAL(*)".
2129         (EXP): Add index entry for CEXP.
2130         (INT): Correct argument name to "A".
2131         (INT2): New entry.
2132         (INT8): New entry.
2133         (LONG): New entry.
2134         (MAX): Add index entries for specific variants.
2135         (MCLOCK): New entry.
2136         (MCLOCK8): New entry.
2137         (SECNDS): Adjust to a more standard form.
2138         (SECOND): New entry.
2139         (TIME): Add cross-reference to MCLOCK.
2140         (TIME8): Add cross-reference to MCLOCK8.
2142 2007-03-11  Paul Thomas  <pault@gcc.gnu.org>
2144         PR fortran/30883
2145         * parse.c (parse_interface): Use the default types from the
2146         formal namespace if a function or its result do not have a type
2147         after parsing the specification statements.
2149 2007-03-08  Brooks Moses  <brooks.moses@codesourcery.com>
2151         * intrinsic.texi: (ICHAR) Improve internal I/O note.
2152         (ACHAR): Reference it.
2153         (CHAR): Reference it.
2154         (IACHAR): Reference it.
2156 2007-03-08  Brooks Moses  <brooks.moses@codesourcery.com>
2158         * intrinsic.texi: (LINK) Document function form.
2159         (RENAME): Likewise.
2160         (SYMLNK): Likewise.
2161         (SYSTEM): Likewise.
2162         (UNLINK): Likewise.
2164 2007-03-08  Brooks Moses  <brooks.moses@codesourcery.com>
2166         * intrinsic.texi: minor typo fixes, removed prologue.
2167         (FSEEK): moved to correct place in alphabetical order.
2169 2007-03-08  Daniel Franke  <franke.daniel@gmail.com>
2171         PR fortran/30947
2172         * check.c (gfc_check_alarm_sub): Added check for default integer 
2173         kind of status argument.
2174         * iresolve.c (gfc_resolve_alarm_sub): Removed conversion of 
2175         status argument.
2176         * intrinsic.texi (ALARM): Extended documentation.
2178 2007-03-08  Daniel Franke  <franke.daniel@gmail.com>
2180         * intrinsic.texi (GERROR, ISATTY, TTYNAM): New.
2181         (ABORT, FLUSH, FNUM, IRAND, MALLOC, SIGNAL, SRAND): Fixed typo.
2182         * intrinsic.c (add_subroutines): Adjusted dummy argument names 
2183         of GERROR and TTYNAM.
2185 2007-07-08  Tobias Burnus  <burnus@net-b.de>
2187         * module.c (gfc_match_use): Support renaming of operators
2188         in USE statements.
2189         * gfortran.texi (Fortran 2003 Status): Document support of
2190         renaming of operators.
2192 2007-07-08  Tobias Burnus  <burnus@net-b.de>
2194         PR fortran/30973
2195         * module.c (read_module): Always import module name as symbol.
2196         (gfc_match_use): Disallow module name in the only clause of
2197         a use statement.
2199 2007-03-08  Paul Thomas  <pault@gcc.gnu.org>
2201         PR fortran/31011
2202         * expr.c (find_array_section): Correct arithmetic for section
2203         size.
2205 2007-03-07  Brooks Moses  <brooks.moses@codesourcery.com>
2207         * iresolve.c (gfc_resolve_ishftc): Correct s_kind value.
2209 2007-03-06  Daniel Franke  <franke.daniel@gmail.com>
2211         PR documentation/30950
2212         * intrinsic.texi (AND, CPU_TIME): Fix dummy argument names.
2213         (FREE): Fix call syntax.
2215 2007-03-06  Brooks Moses  <brooks.moses@codesourcery.com>
2217         * intrinsic.texi: Limit column widths to a total of .85.
2219 2007-03-05  Brooks Moses  <brooks.moses@codesourcery.com>
2221         * gfortran.texi (GFortran and G77): Rewrite completely.
2223 2007-03-05  Brooks Moses  <brooks.moses@codesourcery.com>
2225         * match.c (gfc_match_name): Expanded comment.
2227 2007-03-05  Brooks Moses  <brooks.moses@codesourcery.com>
2229         * gfortran.texi (Old-style kind specifications): Document
2230         special handling of old-style kind specifiers for COMPLEX.
2231         * decl.c (gfc_match_old_kind_spec): Document kind/bytesize
2232         assumptions for COMPLEX in comment.
2234 2007-03-05  Brooks Moses  <brooks.moses@codesourcery.com>
2236         PR 31050
2237         * gfortranspec.c (lang_specific_driver): Update program
2238         name and copyright date.
2240 2007-03-03  Paul Thomas  <pault@gcc.gnu.org>
2242         PR fortran/30882
2243         * check.c (dim_rank_check): The shape of subsections of
2244         assumed-size arrays is known.
2246 2007-03-02  Paul Thomas  <pault@gcc.gnu.org>
2247             Tobias Burnus  <burnus@net-b.de>
2249         PR fortran/30873
2250         * decl.c (gfc_match_entry): Remove erroneous entry result check.
2252 2007-03-01  Brooks Moses  <brooks.moses@codesourcery.com>
2254         * Make-lang.in: Add install-pdf target as copied from
2255         automake v1.10 rules.
2257 2007-03-01  Tobias Burnus  <burnus@net-b.de>
2259         PR fortran/30865
2260         * trans-intrinsic.c (gfc_conv_intrinsic_size): Compare pointers.
2262 2007-02-28  Tobias Burnus  <burnus@net-b.de>
2263             Paul Thomas  <pault@gcc.gnu.org>
2265         PR fortran/30888
2266         PR fortran/30887
2267         * resolve.c (resolve_actual_arglist): Allow by-value
2268         arguments and non-default-kind for %VAL().
2269         * trans-expr.c (conv_arglist_function): Allow
2270         non-default-kind for %VAL().
2272 2007-02-28  Tobias Burnus  <burnus@net-b.de>
2274         PR fortran/30968
2275         * primary.c (next_string_char): Correct reading a character
2276         after the delimiter.
2277         (match_string_constant): Print warning message only once.
2279 2007-02-27  Richard Guenther  <rguenther@suse.de>
2281         * trans-array.c (structure_alloc_comps): Use correct type
2282         for null pointer constant.
2284 2007-02-26  Brooks Moses  <brooks.moses@codesourcery.com>
2286         * gfortran.texi: Standardize title page, remove version number
2287         from copyright page.
2289 2007-02-26  Thomas Koenig  <Thomas.Koenig@online.de>
2290             Paul Thomas  <pault@gcc.gnu.org>
2292         PR fortran/30865
2293         * trans-intrinsic.c (gfc_conv_intrinsic_size):
2294         If dim is an optional argument, check for its
2295         presence and call size0 or size1, respectively.
2297 2007-02-23  Paul Thomas <pault@gcc.gnu.org>
2299         PR fortran/30660
2300         * resolve.c (has_default_initializer): New function.
2301         (resolve_fl_variable): Call has_default_initializer to determine if
2302         the derived type has a default initializer to its ultimate
2303         components.
2306 2007-02-22  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
2308         * options.c (set_default_std_flags): New function to consolidate
2309         setting the flags.
2310         (gfc_init_options): Use new function.
2311         (gfc_handle_option): Use new function.
2313 2007-02-22  Brooks Moses  <brooks.moses@codesourcery.com>
2315         * gfortran.texi (Old-style kind specifications): Document
2316         special handling of old-style kind specifiers for COMPLEX.
2317         * decl.c (gfc_match_old_kind_spec): Documented kind/bytesize
2318         assumptions in comment.
2320 2007-02-21  Bernhard Fischer  <aldot@gcc.gnu.org>
2322         * parse.c (next_free): Gooble spaces after OpenMP sentinel.
2324 2007-02-20  Thomas Koenig  <Thomas.Koenig@online.de>
2326         PR fortran/30869
2327         * match.c (gfc_match_iterator): Remove conflict between
2328         loop variable and pointer.
2330 2007-02-20  Tobias Burnus  <burnus@net-b.de>
2332         PR fortran/30522
2333         * symbol.c (gfc_add_volatile): Allow to set VOLATILE
2334           attribute for host-associated variables.
2335         * gfortran.h (symbol_attribute): Save namespace
2336           where VOLATILE has been set.
2337         * trans-decl.c (gfc_finish_var_decl): Move variable
2338           declaration to the top.
2340 2007-02-20  Tobias Burnus  <burnus@net-b.de>
2342         PR fortran/30783
2343         * resolve.c (resolve_symbol): Add character dummy VALUE check.
2345 2007-02-19  Thomas Koenig  <Thomas.Koenig@online.de>
2347         PR libfortran/30533
2348         * fortran/iresolve.c (gfc_resolve_maxloc): Remove coercion of
2349         argument to default integer.
2350         (gfc_resolve_minloc): Likewise.
2352 2007-02-18  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
2354         PR fortran/30681
2355         * options.c (gfc_init_options): Relax warning level for obsolescent.
2356         * match.c (match_arithmetic_if): Change to obsolescent from deleted.
2357         (gfc_match_if): Same.
2359 2007-02-18  Roger Sayle  <roger@eyesopen.com>
2361         * trans-array.c (gfc_build_constant_array_constructor): When the
2362         shape of the constructor is known, use that to construct the
2363         gfc_array_spec.
2364         (gfc_trans_constant_array_constructor): Initialize the "info"
2365         information for all of the dimensions of the array constructor.
2366         (constant_array_constructor_loop_size): New function.
2367         (gfc_trans_array_constructor): Use it to determine whether a
2368         loop is suitable for "constant array constructor" optimization.
2370         * trans-intrinsic.c (gfc_conv_intrinsic_anyall): Use fold_build2
2371         instead of build2, to avoid conditions like "(a != b) != 0".
2373 2007-02-18  Roger Sayle  <roger@eyesopen.com>
2374             Paul Thomas <pault@gcc.gnu.org>
2376         PR fortran/30400
2377         * match.c (match_forall_iterator): Use gfc_match_expr instead
2378         of gfc_match_variable to match the iterator variable.  Return
2379         MATCH_NO if not a variable.  Remove the reset of the symbol's
2380         flavor in cleanup.
2382 2007-02-16  Tobias Burnus  <burnus@net-b.de>
2384         PR fortran/30793
2385         * trans-decl.c (gfc_generate_function_code): Do not initialize
2386         pointers to derived components.
2388 2007-02-15  Sandra Loosemore  <sandra@codesourcery.com>
2389             Brooks Moses  <brooks.moses@codesourcery.com>
2390             Lee Millward  <lee.millward@codesourcery.com>
2392         * trans-expr.c (gfc_conv_power_op): Use build_call_expr.
2393         (gfc_conv_string_tmp): Likewise.
2394         (gfc_conv_concat_op): Likewise.
2395         (gfc_build_compare_string): Likewise.
2396         (gfc_conv_function_call): Use build_call_list instead of build3.
2398         * trans-array.c (gfc_trans_allocate_array_storage): Use
2399         build_call_expr.
2400         (gfc_grow_array): Likewise.
2401         (gfc_trans_array_ctor_element): Likewise.
2402         (gfc_trans_array_constructor_value): Likewise.
2403         (gfc_array_allocate): Likewise.
2404         (gfc_array_deallocate): Likewise.
2405         (gfc_trans_auto_array_allocation): Likewise.
2406         (gfc_trans_dummy_array_bias): Likewise.
2407         (gfc_conv_array_parameter): Likewise.
2408         (gfc_trans_dealloc_allocated): Likewise.
2409         (gfc_duplicate_allocatable): Likewise.
2411         * trans-openmp.c (gfc_trans_omp_barrier): Use build_call_expr.
2412         (gfc_trans_omp_flush): Likewise.
2414         * trans-stmt.c (gfc_conv_elementel_dependencies): Use build_call_expr.
2415         (gfc_trans_pause): Likewise.
2416         (gfc_trans_stop): Likewise.
2417         (gfc_trans_character_select): Likewise.
2418         (gfc_do_allocate): Likewise.
2419         (gfc_trans_assign_need_temp): Likewise.
2420         (gfc_trans_pointer_assign_need_temp): Likewise.
2421         (gfc_trans_forall_1): Likewise.
2422         (gfc_trans_where_2): Likewise.
2423         (gfc_trans_allocate): Likewise.
2424         (gfc_trans_deallocate): Likewise.
2426         * trans.c (gfc_trans_runtime_check): Use build_call_expr.
2428         * trans-io.c (gfc_trans_open): Use build_call_expr.
2429         (gfc_trans_close): Likewise.
2430         (build_filepos): Likewise.
2431         (gfc_trans_inquire): Likewise.
2432         (NML_FIRST_ARG): Delete.
2433         (NML_ADD_ARG): Delete.
2434         (transfer_namelist_element): Use build_call_expr.
2435         (build_dt): Likewise.
2436         (gfc_trans_dt_end): Likewise.
2437         (transfer_expr): Likewise.
2438         (transfer_array-desc): Likewise.
2440         * trans-decl.c (gfc_generate_function_code): Use build_call_expr.
2441         (gfc_generate_constructors): Likewise.
2443         * trans-intrinsic.c (gfc_conv_intrinsic_ctime): Use build_call_expr.
2444         (gfc_conv_intrinsic_fdate): Likewise.
2445         (gfc_conv_intrinsic_ttynam): Likewise.
2446         (gfc_conv_intrinsic_array_transfer): Likewise.
2447         (gfc_conv_associated): Likewise.
2448         (gfc_conv_intrinsic_si_kind): Likewise.
2449         (gfc_conv_intrinsic_trim): Likewise.
2450         (gfc_conv_intrinsic_repeat: Likewise.
2451         (gfc_conv_intrinsic_iargc): Likewise.
2453 2007-02-14  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
2455         PR fortran/30779
2456         * scanner.c (gfc_next_char_literal): Add check for end of file after
2457         call to advance_line.
2459 2007-02-14  Steven G. Kargl  <kargl@gcc.gnu.org>
2461         PR fortran/30799
2462         * primary.c (match_logical_constant): Return MATCH_ERROR on invalid
2463         kind.
2465 2007-02-14  Steven G. Kargl  <kargl@gcc.gnu.org>
2467         * misc.c (gfc_typename): Fix potential buffer overflow.
2469 2007-02-13  Paul Thomas  <pault@gcc.gnu.org>
2471         PR fortran/30554
2472         * module.c (read_module): Set pointer_info to referenced if the
2473         symbol has no namespace.
2475 2007-02-12  Nick Clifton  <nickc@redhat.com>
2477         * lang.opt: Add Warning attribute to warning options.
2479 2007-02-11  Daniel Franke  <franke.daniel@gmail.com>
2481         * intrinsic.texi (HOSTNM): Fix typographical error in syntax.
2482         (SLEEP): Added section and documentation.
2484 2007-02-11  Tobias Schlüter  <tobi@gcc.gnu.org>
2486         PR fortran/30478
2487         * decl.c (add_init_expr_to_sym): Remove ENUM specific code.
2488         (variable_decl): Likewise.  Rewrap comment.
2489         (match_attr_spec): Remove ENUM specific code.
2490         (gfc_match_enum): Fix typo in error message.
2491         (enumerator_decl): New function.
2492         (gfc_match_enumerator_def): Use enumerator_decl instead of
2493         variable_decl.  Adapt code accordingly.
2495 2007-02-11  Paul Thomas  <pault@gcc.gnu.org>
2497         PR fortran/30554
2498         * module.c (find_symtree_for_symbol): New function to return
2499         a symtree that is not a "unique symtree" given a symbol.
2500         (read_module): Do not automatically set pointer_info to
2501         referenced because this inhibits the generation of a unique
2502         symtree.  Recycle the existing symtree if possible by calling
2503         find_symtree_for_symbol.
2505         PR fortran/30319
2506         * decl.c (add_init_expr_to_sym): Make new charlen for an array
2507         constructor initializer.
2509 2007-02-10  Richard Henderson  <rth@redhat.com>, Jakub Jelinek  <jakub@redhat.com>
2511         * f95-lang.c (gfc_init_builtin_functions): Add __emutls_get_address
2512         and __emutls_register_common.
2513         * openmp.c (gfc_match_omp_threadprivate): Don't error if !have_tls.
2514         * trans-common.c (build_common_decl): Don't check have_tls.
2515         * trans-decl.c (gfc_finish_var_decl): Likewise.
2516         * types.def (BT_WORD, BT_FN_PTR_PTR): New.
2517         (BT_FN_VOID_PTR_WORD_WORD_PTR): New.
2519 2007-02-09  Tobias Burnus  <burnus@net-b.de>
2521         PR fortran/30512
2522         * trans-intrinsic.c (gfc_conv_intrinsic_minmaxloc,
2523           gfc_conv_intrinsic_minmaxval): Use HUGE-1 for most negative integer.
2525 2007-02-09  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
2527         PR fortran/30720
2528         * trans-array.c (gfc_trans_create_temp_array): Remove use of the
2529         function argument. Always generate code for negative extent.
2530         Simplify said code.
2531         * trans-array.h (gfc_trans_create_temp_array): Change prototype.
2532         * trans-expr.c (gfc_conv_function_call): Remove use of last argument
2533         of gfc_trans_create_temp_array.
2534         * trans-intrinsic.c (gfc_conv_intrinsic_array_transfer): Likewise.
2535         * trans-stmt.c (gfc_conv_elemental_dependencies): Likewise.
2537 2007-02-08  Roger Sayle  <roger@eyesopen.com>
2539         * trans-stmt.c (gfc_trans_forall_1): Optimize the cases where the
2540         mask expression is a compile-time constant (".true." or ".false.").
2542 2007-02-04  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
2544         PR fortran/30611
2545         * trans-intrinsic.c (gfc_conv_intrinsic_repeat): Evaluate
2546         arguments only once. Generate check that NCOPIES argument is not
2547         negative.
2549 2007-02-04  Steven G. Kargl <kargl@gcc.gnu.org>
2551         PR fortran/30605
2552         * fortran/invoke.texi: Update documentation.
2553         * fortran/options.c (gfc_post_options): Deal with tabs with -std=f2003
2554         and -pedantic.
2556 2007-02-03  Kazu Hirata  <kazu@codesourcery.com>
2558         * trans-array.c: Fix a comment typo.
2560 2007-02-03  Paul Thomas  <pault@gcc.gnu.org>
2562         PR fortran/30514
2563         * array.c (match_array_element_spec): If the length of an array is
2564         negative, adjust the upper limit to make it zero length.
2566         PR fortran/30660
2567         * resolve.c (pure_function, resolve_function): Initialize name to
2568         null to clear up build warnings.
2569         (resolve_fl_variable): Look at components explicitly to check for
2570         default initializer, rather than using gfc_default_initializer.
2572 2007-02-02  Steven G. Kargl <kargl@gcc.gnu.org>
2574         PR fortran/30683
2575         * resolve.c (resolve_generic_f): Check for non-NULL sym.
2577 2007-02-02  Roger Sayle  <roger@eyesopen.com>
2579         * trans.c (gfc_build_array_ref): Use STRIP_TYPE_NOPS to eliminate
2580         NON_LVALUE_EXPR nodes and useless type conversions.
2582 2007-02-02  Paul Thomas  <pault@gcc.gnu.org>
2584         PR fortran/30284
2585         PR fortran/30626
2586         * trans-expr.c (gfc_conv_aliased_arg): Remove static attribute
2587         from function and make sure that substring lengths are
2588         translated.
2589         (is_aliased_array): Remove static attribute.
2590         * trans.c : Add prototypes for gfc_conv_aliased_arg and
2591         is_aliased_array.
2592         * trans-io.c (set_internal_unit): Add the post block to the
2593         arguments of the function.  Use is_aliased_array to check if
2594         temporary is needed; if so call gfc_conv_aliased_arg.
2595         (build_dt): Pass the post block to set_internal_unit and
2596         add to the block after all io activiy is done.
2598 2007-02-01  Roger Sayle  <roger@eyesopen.com>
2600         * trans-array.c (gfc_conv_expr_descriptor): We don't need to use
2601         a temporary array to pass a constant non-character array constructor.
2602         Generalize the descriptor generation code to handle scalarizer
2603         "info" without an array reference.
2605 2007-02-01  Roger Sayle  <roger@eyesopen.com>
2607         * dependency.c (gfc_check_dependency) <EXPR_ARRAY>: Implement
2608         dependency checking for array constructors.
2610 2007-02-01  Roger Sayle  <roger@eyesopen.com>
2612         * trans-stmt.c (compute_overall_iter_number): Document function
2613         arguments.  Generalize "unconditional forall nest with constant
2614         bounds" optimization to eliminate unconditional inner loops with
2615         constant bounds.
2617 2007-01-31  Tobias Burnus  <burnus@net-b.de>
2619         PR fortran/30520
2620         * interface.c (compare_actual_formal): Check conformance between
2621           actual and VOLATILE dummy arguments.
2622         * symbol.c (gfc_add_volatile): Allow setting of VOLATILE
2623           multiple times in different scopes.
2624         * decl.c (gfc_match_volatile): Search symbol in host association.
2626 2007-01-31  Kazu Hirata  <kazu@codesourcery.com>
2628         * simplify.c, trans-array.c: Fix comment typos.
2630 2007-01-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2632         * invoke.texi (Code Gen Options): Fix abbreviation typo.
2633         * intrinsic.texi (ACCESS, LSHIFT, RSHIFT): Fix typos.
2635 2007-01-30  Steve Ellcey  <sje@cup.hp.com>
2637         PR fortran/30432
2638         * trans-types.c (gfc_get_function_type): Do not add void_type_node
2639         to empty arg list.
2640         * trans-decl.c (create_function_arglist): Change assert.
2642 2007-01-29  Paul Thomas  <pault@gcc.gnu.org>
2644         PR fortran/30554
2645         * module.c (read_module): If a symbol is excluded by an ONLY
2646         clause, check to see if there is a symtree already loaded. If
2647         so, attach the symtree to the pointer_info.
2649 2007-01-28  Thomas Koenig  <Thomas.Koenig@online.de>
2651         PR libfortran/30389
2652         * gfortran.h: Remove gfc_simplify_init_1.
2653         * arith.h: Remove third argument from gfc_compare_string.
2654         * arith.c (gfc_compare_expression): Remove third argument
2655         from call to gfc_compare_string.
2656         (gfc_compare_string): Remove third argument xcoll_table.
2657         Remove use of xcoll_table.
2658         * misc.c (gfc_init_1): Remove call to gfc_simplify_init_1.
2659         * simplify.c (ascii_table): Remove.
2660         (xascii_table): Likewise.
2661         (gfc_simplify_achar): ICE if extract_int fails.  Remove use of
2662         ascii_table.  Warn if -Wsurprising and value < 0 or > 127.
2663         (gfc_simplify_char): ICE if extract_int fails. Error if
2664         value < 0 or value > 255.
2665         (gfc_simplify_iachar): Remove use of xascii_table.
2666         Char values outside of 0..255 are an ICE.
2667         (gfc_simplify_lge): Remove use of xascii_table.
2668         (gfc_simplify_lgt): Likewise.
2669         (gfc_simplify_lle): Likewise.
2670         (gfc_simplify_llt): Likewise.
2671         (invert_table): Remove.
2672         (gfc_simplify_init_1): Remove.
2674 2007-01-27  Roger Sayle  <roger@eyesopen.com>
2676         * trans-stmt.c (forall_info): Replace the next_nest and outer
2677         fields that previously implemented a doubly-linked list with a
2678         single prev_nest field (singly-linked list).
2679         (gfc_trans_nested_forall_loop): The nested_forall_info argument
2680         now denotes the innermost FORALL in the loop nest.
2681         (compute_overall_iter_number): Use prev_nest instead of next_nest.
2682         (gfc_trans_forall_1): Link/cons the new "info" to the head of the
2683         nested_forall_info linked list.  Free the current "info" when done.
2685 2007-01-27  Paul Thomas  <pault@gcc.gnu.org>
2687         PR fortran/30407
2688         * trans-expr.c (gfc_conv_operator_assign): New function.
2689         * trans.h : Add prototype for gfc_conv_operator_assign.
2690         * trans-stmt.c (gfc_trans_where_assign): Add a gfc_symbol for
2691         a potential operator assignment subroutine.  If it is non-NULL
2692         call gfc_conv_operator_assign instead of the first assignment.
2693         ( gfc_trans_where_2): In the case of an operator assignment,
2694         extract the argument expressions from the code for the
2695         subroutine call and pass the symbol to gfc_trans_where_assign.
2696         resolve.c (resolve_where, gfc_resolve_where_code_in_forall,
2697         gfc_resolve_forall_body): Resolve the subroutine call for
2698         operator assignments.
2700 2007-01-26  Steven Bosscher  <stevenb.gcc@gmail.com>
2701             Steven G. Kargl <kargl@gcc.gnu.org>
2703         PR fortran/30278
2704         * fortran/io.c (next_char): Deal with backslash escaped characters.
2705         Issue warnings in non -std=gnu cases.
2706         * fortran/primary.c (next_string_char): Issue warnings in non
2708 2007-01-26  Tobias Burnus  <burnus@net-b.de>
2710         * lang-specs.h: Add support for .f03 and .F03 extensions.
2711         * gfortran.texi: Document .f03 extension.
2712         * options.c (form_from_filename): Recognize .f03.
2714 2007-01-25  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2716         PR fortran/30437
2717         * lang.opt (Wall): Remove RejectNegative.
2718         * options.c (gfc_handle_option): Wall can be disabled.
2719         (set_Wall): Add a parameter for disabling Wall.
2720         
2721 2007-01-23  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
2723         PR fortran/30532
2724         * scanner.c (load_line): Remove check fot ctrl-z and don't gobble.
2725         
2726 2007-01-23  Paul Thomas  <pault@gcc.gnu.org>
2728         PR fortran/30481
2729         * match.c (gfc_match_namelist): Add check for assumed size character
2730         in namelist and provide error if found.
2732 2007-01-21  Brooks Moses  <brooks.moses@codesourcery.com>
2734         * intrinsic.texi (ACHAR): Added cross-references.
2735         (CHAR): Put cross-references in alphabetical order.
2736         (IACHAR): Added cross-references.
2737         (ICHAR): Added cross-references.
2739 2007-01-20  Brooks Moses  <brooks.moses@codesourcery.com>
2741         * intrinsic.texi: Edited all "Syntax" examples to a consistent form.
2742         (MAXVAL): Corrected description of result characteristics.
2743         (MINVAL): Same.
2744         (UMASK): Added documentation.
2746 2007-01-20  Steven G. Kargl  <kargl@gcc.gnu.org>
2748         * openmp.c, matchexp.c, module.c, scanner.c, resolve.c, st.c,
2749         parse.c, primary.c, options.c, misc.c, simplify.c: Next installment
2750         in the massive whitespace patch.
2752 2007-01-20  Roger Sayle  <roger@eyesopen.com>
2754         * module.c (mio_array_ref): The dimen_type fields of an array ref
2755         are an enumerated type and can't be read/written directly with a
2756         call to mio_integer.  Instead loop over and cast each element.
2758 2007-01-20  Roger Sayle  <roger@eyesopen.com>
2760         * dependency.c (gfc_full_array_ref_p): Check that ref->next is NULL,
2761         i.e. that the ARRAY_REF doesn't mention components.
2762         * trans-array.c (gfc_constant_array_constructor_p): Export external
2763         function renamed from constant_array_constructor_p.
2764         (gfc_build_constant_array_constructor): Export.
2765         (gfc_trans_array_constructor): Update call to the renamed function
2766         constant_array_constructor_p.
2767         * trans-array.h (gfc_constant_array_constructor_p): Prototype here.
2768         (gfc_build_constant_array_constructor): Likewise.
2769         * trans-expr.c (gfc_build_memcpy_call): New helper function split
2770         out from gfc_trans_array_copy.
2771         (gfc_trans_array_copy): Use gfc_build_memcpy_call.
2772         (gfc_trans_array_constructor_copy): New function to optimize
2773         assigning an entire array from a constant array constructor.
2774         (gfc_trans_assignment): Call gfc_trans_array_constructor_copy
2775         when appropriate.
2777 2007-01-20  Roger Sayle  <roger@eyesopen.com>
2779         * trans-intrinsic.c (gfc_conv_intrinsic_sign): New branchless
2780         implementation for the SIGN intrinsic with integral operands.
2781         (gfc_conv_intrinsic_minmax): Fix whitespace.
2783 2007-01-20  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
2785         * gfortran.h (gfc_options_t): Add flag_allow_leading_underscore.
2786         * lang.opt: Add -fallow-leading-underscore.
2787         * match.c (gfc_match_name): Allow leading underscore in symbol
2788         name if -fallow-leading-underscore is used.
2789         * symbol.c (gfc_get_default_type): Add special case for symbol
2790         names beginning with an underscore.
2791         * trans-decl.c (gfc_get_extern_function_decl,
2792         gfc_build_intrinsic_function_decls): Add _gfortran prefix to
2793         library symbols selected_int_kind, selected_real_kind and 
2794         all specifics.
2795         * options.c (gfc_init_options, gfc_handle_option): Handle the
2796         new -fallow-leading-underscore option.
2798 2007-01-20  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
2800         PR fortran/30446
2801         * options.c (gfc_handle_module_path_options): Path used in -J
2802         option is now added to the module search path.
2804 2007-01-20  Richard Guenther  <rguenther@suse.de>
2806         PR fortran/30223
2807         * f95-lang.c (gfc_init_builtin_functions): Provide cbrt and
2808         cexpi builtins if we have TARGET_C99_FUNCTIONS.  Provide
2809         sincos builtins if the target has sincos.
2811 2007-01-19  Brooks Moses  <brooks.moses@codesourcery.com>
2813         * intrinsic.texi (MATMUL): Corrected a typo.
2814         (MAX): Separated @var arguments.
2815         (MIN): Separated @var arguments.
2817 2007-01-19  Brooks Moses  <brooks.moses@codesourcery.com>
2819         * intrinsic.texi: general whitespace cleanup.
2820         (menu): Added TIME8, removed UNMASK.
2821         (AINT): Clarified argument requirement.
2822         (ANINT): Clarified argument requirement.
2823         (CEILING): Clarified argument requirement.
2824         (CHAR): Clarified argument requirement.
2825         (CMPLX): Clarified argument requirement.
2826         (DCMPLX): Clarified argument requirement.
2827         (FGET): Line rewrapping.
2828         (FLOOR): Clarified argument requirement.
2829         (GMTIME): Added documentation.
2830         (IAND): Added cross-reference.
2831         (IBCLR): Added cross-reference.
2832         (IBSET): Added cross-reference.
2833         (IEOR): Added cross-reference.
2834         (INT): Collapsed examples, clarified argument requirement.
2835         (IOR): Added cross-references.
2836         (LEN_TRIM): Corrected result kind.
2837         (LINK): Added cross-reference.
2838         (LLT): Removed "documentation pending".
2839         (LOGICAL): Added documentation.
2840         (LSHIFT): Added documentation.
2841         (LTIME): Added documentation.
2842         (MATMUL): Added documentation.
2843         (MAX): Added documentation.
2844         (MAXLOC): Added documentation.
2845         (MAXVAL): Added documentation.
2846         (MERGE): Added documentation.
2847         (MIN): Added documentation.
2848         (MINLOC): Added documentation.
2849         (MINVAL): Added documentation.
2850         (MVBITS): Moved to correct place, added documentation.
2851         (NOT): Added documentation.
2852         (PERROR): Added documentation.
2853         (RAN): Moved to correct place, added documentation.
2854         (REAL): Clarified argument requirement.
2855         (RENAME): Added documentation.
2856         (RSHIFT): Clarified argument requirement.
2857         (SIGN): Corrected table specification.
2858         (SYMLNK): Added documentation.
2859         (SYSTEM): Added documentation.
2860         (TIME): Added documentation.
2861         (TIME8): Added section and documentation.
2862         (UNMASK): Removed erroneous section.
2864 2007-01-18  H.J. Lu  <hongjiu.lu@intel.com>
2866         * trans-stmt.c (compute_overall_iter_number): Fix a typo.
2868 2007-01-18  Roger Sayle  <roger@eyesopen.com>
2870         * trans-expr.c (copyable_array_p): Consider user derived types without
2871         allocatable components to be copyable.
2873 2007-01-18  Roger Sayle  <roger@eyesopen.com>
2875         * trans-stmt.c (compute_overall_iter_number): Enhance to precompute
2876         the number of interations in unconditional FORALL nests with constant
2877         bounds.
2879 2007-01-18  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
2880             Tobias Burnus  <burnus@net-b.de>
2882         PR libfortran/29649
2883         * gfortran.h (gfc_option_t): Add flag_dump_core.
2884         * lang.opt: Add -fdump-core option.
2885         * invoke.texi: Document the new options.
2886         * trans-decl.c (gfc_build_builtin_function_decls): Add new
2887           options to the call to set_std.
2888         * options.c (gfc_init_options, gfc_handle_option): Set the
2889           new options.
2891 2007-01-17  Paul Thomas  <pault@gcc.gnu.org>
2893         PR fortran/30476
2894         * module.c (load_generic_interfaces): Make the marking of the
2895         symbol as ambiguous conditional on the module names being
2896         different.
2897         (write_generic): Ensure that the generic interface has a
2898         non-NULL module field.
2900 2007-01-16  Roger Sayle  <roger@eyesopen.com>
2902         PR fortran/30404
2903         * trans-stmt.c (forall_info): Remove pmask field.
2904         (gfc_trans_forall_loop): Remove NVAR argument, instead assume that
2905         NVAR covers all the interation variables in the current forall_info.
2906         Add an extra OUTER parameter, which specified the loop header in
2907         which to place mask index initializations.
2908         (gfc_trans_nested_forall_loop): Remove NEST_FLAG argument.
2909         Change the semantics of MASK_FLAG to only control the mask in the
2910         innermost loop.
2911         (compute_overall_iter_number): Optimize the trivial case of a
2912         top-level loop having a constant number of iterations.  Update
2913         call to gfc_trans_nested_forall_loop.  Calculate the number of
2914         times the inner loop will be executed, not to size of the 
2915         iteration space.
2916         (allocate_temp_for_forall_nest_1): Reuse SIZE as BYTESIZE when
2917         sizeof(type) == 1.  Tidy up.
2918         (gfc_trans_assign_need_temp): Remove NEST_FLAG argument from calls
2919         to gfc_trans_nested_forall_loop.
2920         (gfc_trans_pointer_assign_need_temp): Likewise.
2921         (gfc_trans_forall_1): Remove unused BYTESIZE, TMPVAR, SIZEVAR and
2922         LENVAR local variables.  Split mask allocation into a separate
2923         hunk/pass from mask population.  Use allocate_temp_for_forall_nest
2924         to allocate the FORALL mask with the correct size.  Update calls
2925         to gfc_trans_nested_forall_loop.
2926         (gfc_evaluate_where_mask): Update call to
2927         gfc_trans_nested_forall_loop.
2928         (gfc_trans_where_2): Likewise.
2930 2007-01-15  Paul Thomas  <pault@gcc.gnu.org>
2932         PR fortran/28172
2933         * trans-stmt.c (gfc_trans_call): If it does not have one, get
2934         a backend_decl for an alternate return.
2936         PR fortran/29389
2937         * resolve.c (pure_function): Statement functions are pure. Note
2938         that this will have to recurse to comply fully with F95.
2940         PR fortran/29712
2941         * resolve.c (resolve_function): Only a reference to the final
2942         dimension of an assumed size array is an error in an inquiry
2943         function.
2945         PR fortran/30283
2946         * resolve.c (resolve_function): Make sure that the function
2947         expression has a type.
2949 2007-01-14  Paul Thomas  <pault@gcc.gnu.org>
2951         PR fortran/30410
2952         * trans-decl.c (gfc_sym_mangled_function_id): Module, external
2953         symbols must not have the module name prepended.
2955 2007-01-11  Thomas Koenig  <Thomas.Koenig@online.de>
2957         PR libfortran/30415
2958         * iresolve.c (gfc_resolve_maxloc): If the rank
2959         of the return array is nonzero and we process an
2960         integer array smaller than default kind, coerce
2961         the array to default integer.
2962         * iresolve.c (gfc_resolve_minloc): Likewise.
2964 2007-01-11  Brooks Moses  <brooks.moses@codesourcery.com>
2966         * simplify.c: Update copyright to 2007.
2967         * scanner.c: Same.
2969 2007-01-11  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
2971         PR fortran/30430
2972         * scanner.c (gfc_release_include_path): Free gfc_option.module_dir
2973         only once!
2975 2007-01-09  Brooks Moses  <brooks.moses@codesourcery.com>
2977         * simplify.c (gfc_simplify_ibclr): Fix POS comparison.
2978         (gfc_simplify_ibset): Same.
2980 2007-01-09  Brooks Moses  <brooks.moses@codesourcery.com>
2982         PR 30381
2983         PR 30420
2984         * simplify.c (convert_mpz_to_unsigned): New function.
2985         (convert_mpz_to_signed): New function, largely based on
2986         twos_complement().
2987         (twos_complement): Removed.
2988         (gfc_simplify_ibclr): Add conversions to and from an
2989         unsigned representation before bit-twiddling.
2990         (gfc_simplify_ibset): Same.
2991         (gfc_simplify_ishftc): Add checks for overly large
2992         constant arguments, only check the third argument if
2993         it's present, carry over high bits into the result as
2994         appropriate, and perform the final conversion back to
2995         a signed representation using the correct sign bit.
2996         (gfc_simplify_not): Removed unnecessary masking.
2998 2007-01-09  Paul Thomas  <pault@gcc.gnu.org>
3000         PR fortran/30408
3001         * resolve.c (resolve_code): Use the code->expr character length
3002         directly to set length of llen.
3004 2007-01-09  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
3006         PR fortran/30408
3007         * lang.opt: Add Wcharacter_truncation option.
3008         * options.c (gfc_init_options): Initialize
3009         gfc_option.warn_character_truncation to zero.
3010         (gfc_handle_option): Add case for OPT_Wcharacter_truncation.
3012 2007-01-08  Steven G. Kargl  <kargl@gcc.gnu.org>
3014         * interface.c, intrinsic.c, gfortranspec.c, io.c, f95-lang.c,
3015         iresolve.c, match.c: Update Copyright years.  Whitespace.
3017 2007-01-08  Richard Guenther  <rguenther@suse.de>
3019         * trans-io.c (transfer_array_desc): Use build_int_cst instead
3020         of build_int_cstu.
3022 2007-01-08  Roger Sayle  <roger@eyesopen.com>
3024         * trans-array.c (constant_array_constructor_p): New function to
3025         determine whether an array constructor consists only of constant
3026         elements, and if so return it's size.
3027         (gfc_build_constant_array_constructor): Construct a statically
3028         initialized gfortran array for a given EXPR_ARRAY.
3029         (gfc_trans_constant_array_constructor): Efficiently scalarize
3030         a constant array constructor.
3031         (gfc_trans_array_constructor): Tidy up use of CONST_STRING.
3032         Special case scalarization of constant array constructors, all of
3033         whose elements are specified, using constant_array_constructor_p 
3034         and gfc_trans_constant_array_constructor.
3035         (gfc_conv_scalarized_array_ref): Check whetger info->offset is zero
3036         before adding it to index, to avoid creating a NON_LVALUE_EXPR.
3038 2007-01-08  Kazu Hirata  <kazu@codesourcery.com>
3040         gfortran.texi: Fix typos.
3042 2007-01-07  Steven G. Kargl  <kargl@gcc.gnu.org>
3044         * decl.c, dump-parse-tree.c, error.c, data.c, expr.c, dependency.c,
3045         convert.c: Update Copyright dates.  Fix whitespace.
3047 2007-01-07  Bernhard Fischer  <aldot@gcc.gnu.org>
3049         * data.c (gfc_assign_data_value): Fix whitespace.
3051 2007-01-07  Bernhard Fischer  <aldot@gcc.gnu.org>
3053         * trans-array.c (gfc_trans_create_temp_array, gfc_array_init_size):
3054         Commentary typo fix.
3056 2007-01-07  Bernhard Fischer  <aldot@gcc.gnu.org>
3058         PR fortran/27698
3059         * match.c (gfc_match_name): Print diagnostics for invalid
3060         character in names.
3062 2007-01-06  Steven G. Kargl  <kargl@gcc.gnu.org>
3064         * array.c: Fix whitespace in comment table.
3066 2007-01-06  Steven G. Kargl  <kargl@gcc.gnu.org>
3068         * array.c, bbt.c, check.c: Update copyright years.  Whitespace.
3070 2007-01-06  Steven G. Kargl  <kargl@gcc.gnu.org>
3072         * arith.c: Update copyright years.  Whitespace.
3074 2007-01-05  Roger Sayle  <roger@eyesopen.com>
3076         * trans-expr.c (gfc_trans_assignment_1): New subroutine to scalarize
3077         array assignments split out from gfc_trans_assignment.
3078         (gfc_trans_array_copy): New function to implement array to array
3079         copies via calls to __builtin_memcpy.
3080         (copyable_array_p): New helper function to identify an array of
3081         simple/POD types, that may be copied/assigned using memcpy.
3082         (gfc_trans_assignment): Use gfc_trans_array_copy to handle simple
3083         whole array assignments considered suitable by copyable_array_p.
3084         Invoke gfc_trans_assignment_1 to perform the fallback scalarization.
3086 2007-01-05  Roger Sayle  <roger@eyesopen.com>
3088         * trans-array.c (gfc_trans_array_constructor_value): Make the
3089         static const "data" array as TREE_READONLY.
3090         * trans-stmt.c (gfc_trans_character_select): Likewise.
3092 2007-01-05  Roger Sayle  <roger@eyesopen.com>
3094         * trans-array.c (gfc_conv_loop_setup): Test whether the loop
3095         stride is one, to avoid fold_build2 introducing a useless
3096         NON_LVALUE_EXPR node.
3098 2007-01-05  Tobias Burnus  <burnus@net-b.de>
3100         * symbol.c (check_conflict): Fix error message.
3102 2007-01-05  Paul Thomas  <pault@gcc.gnu.org>
3104         PR fortran/23232
3105         * decl.c (gfc_in_match_data, gfc_set_in_match_data): New
3106         functions to signal that a DATA statement is being matched.
3107         (gfc_match_data): Call gfc_set_in_match_data on entry and on
3108         exit.
3109         * gfortran.h : Add prototypes for above.
3110         * expr.c (check_init_expr): Avoid check on parameter or
3111         variable if gfc_in_match_data is true.
3112         (gfc_match_init_expr): Do not call error on non-reduction of
3113         expression if gfc_in_match_data is true.
3115         PR fortran/27996
3116         PR fortran/27998
3117         * decl.c (gfc_set_constant_character_len): Add boolean arg to
3118         flag array constructor resolution.  Warn if string is being
3119         truncated.  Standard dependent error if string is padded. Set
3120         new arg to false for all three calls to
3121         gfc_set_constant_character_len.
3122         * match.h : Add boolean arg to prototype for
3123         gfc_set_constant_character_len.
3124         * gfortran.h : Add warn_character_truncation to gfc_options.
3125         * options.c (set_Wall): Set warn_character_truncation if -Wall
3126         is set.
3127         * resolve.c (resolve_code): Warn if rhs string in character
3128         assignment has to be truncated.
3129         * array.c (gfc_resolve_character_array_constructor): Set new
3130         argument to true for call to gfc_set_constant_character_len.
3132 2007-01-05  Tobias Burnus  <burnus@net-b.de>
3134         PR fortran/29624
3135         * interface.c (compare_parameter_intent): New function.
3136           (check_intents): Support pointer intents.
3137         * symbol.c (check_conflict): Support pointer intents,
3138           better conflict_std message.
3139         * expr.c (gfc_check_assign,gfc_check_pointer_assign):
3140           Support pointer intents.
3141         * resolve.c (resolve_deallocate_expr,resolve_allocate_expr):
3142           Support pointer intents.
3144 2007-01-03  Brooks Moses  <brooks.moses@codesourcery.com>
3146         PR 30371
3147         * check.c (gfc_check_kill_sub): Add checks for non-scalar
3148         arguments.
3150 2007-01-04  Brooks Moses  <brooks.moses@codesourcery.com>
3152         * intrinsic.texi: Minor cleanup, reflowing overlong
3153         paragraphs, and correcting whitespace.
3155 2007-01-04  Brooks Moses  <brooks.moses@codesourcery.com>
3157         * intrinsic.texi (LBOUND): Add documentation.
3158         (LGE): Add documentation.
3159         (LGT): Add documentation.
3160         (LINK): Add documentation.
3161         (LLE): Add documentation.
3162         (LLT): Add documentation.
3163         (LNBLNK): Add documentation.
3164         (UBOUND): Add documentation.
3165         (UNLINK): Add documentation.
3167 2007-01-04  Brooks Moses  <brooks.moses@codesourcery.com>
3169         * intrinsic.texi (IAND): Clarify argument specifications.
3170         (IBCLR): Add documentation.
3171         (IBITS): Add documentation.
3172         (IBSET): Add documentation.
3173         (IEOR): Add documentation.
3174         (IERRNO): Add documentation.
3175         (INDEX): Add documentation.
3176         (IOR): Add documentation.
3177         (ISHFT): Add documentation.
3178         (ISHFTC): Add documentation.
3179         (KILL): Add documentation.
3180         (LEN_TRIM): Add documentation.
3182 2007-01-04  Brooks Moses  <brooks.moses@codesourcery.com>
3184         PR 30235
3185         * interface.c (compare_actual_formal): check for
3186         alternate returns when iterating over non-present
3187         arguments.
3189 2007-01-04  Brooks Moses  <brooks.moses@codesourcery.com>
3191         * invoke.texi: Update manpage copyright to include 2007.
3193 2007-01-04  Brooks Moses  <brooks.moses@codesourcery.com>
3195         * gfortran.texi: Update copyright to include 2007.
3196         * intrinsic.texi: Update copyright to include 2007.
3197         * invoke.texi: Update copyright to include 2007.
3199 2007-01-02  Tobias Burnus  <burnus@net-b.de>
3200             Jakub Jelinek  <jakub@redhat.com>
3202         PR fortran/30276
3203         * scanner.c (open_included_file): Revert patch.
3204           (gfc_open_included_file): Support absolute pathnames.
3205           (gfc_open_intrinsic_module): Support absolute pathnames.
3207 2007-01-03  Brooks Moses  <brooks.moses@codesourcery.com>
3209         * gfortran.texi (GNU Fortran and GCC): Rewrite
3211 2007-01-03  Brooks Moses  <brooks.moses@codesourcery.com>
3213         * gfortran.texi (Introduction): Lower "Part I:
3214         Introduction" to a chapter, renumber Parts II and III to
3215         Parts I and II.
3216         * intrinsic.texi (Introduction): Rename to "Introduction
3217         to Intrinsics" to avoid conflict with the new chapter.
3219 2007-01-03  Brooks Moses  <brooks.moses@codesourcery.com>
3221         * intrinsic.texi (Introduction): Rewrite first paragraph.
3223 2007-01-03  Brooks Moses  <brooks.moses@codesourcery.com>
3225         * invoke.texi (OpenMP): Added index entry.
3226         * gfortran.texi (title page): Removed erroneous '*'.
3228 2007-01-03  Brooks Moses  <brooks.moses@codesourcery.com>
3230         * gfortran.texi (GFORTRAN_DEFAULT_RECL): Added units
3231         to description.
3232         (Extensions): Miscellaneous minor rewriting and copyediting.
3233         (BOZ-literal constants): Renamed from Hexadecimal constants.
3234         (Hollerith constants support): Added explanation and 
3235         suggestions for standard-conforming modern equivalents.
3237 2007-01-03  Brooks Moses  <brooks.moses@codesourcery.com>
3239         * intrinsic.texi: Improvements to index entries; change
3240         @findex entries to @cindex entries.
3241         * invoke.texi: Standardize and improve index entries.
3242         * gfortran.texi: Fix @code in one index entry.
3244 2007-01-03  Brooks Moses  <brooks.moses@codesourcery.com>
3246         * invoke.texi: Change @code-type macros to appropriate
3247         variants (@command, @option, etc.)
3248         * gfortran.texi: Same.
3250 2007-01-03  Brooks Moses  <brooks.moses@codesourcery.com>
3252         * intrinsic.texi: Various minor cleanups.
3254 2007-01-02  Steven G. Kargl  <kargls@comcast.net>
3256         * trans-intrinsic.c (gfc_conv_intrinsic_ibits): Fix call to
3257         build_int_cst.
3259 2007-01-02  Tobias Burnus  <burnus@net-b.de>
3261         PR fortran/30276
3262         * scanner.c (open_included_file): Support full-path filenames.
3264 2007-01-02  Paul Thomas  <pault@gcc.gnu.org>
3266         PR fortran/20896
3267         * interface.c (check_sym_interfaces): Remove call to
3268         resolve_global_procedure.
3269         gfortran.h : Remove prototype for resolve_global_procedure.
3270         resolve.c (resolve_global_procedure): Add static attribute
3271         to function declaration.
3273 2007-01-01  Steven G. Kargl  <kargls@comcast.net>
3275         * ChangeLog: Copy to ...
3276         * ChangeLog-2006: here.