OSDN Git Service

--(top level)--------------------------------------------
[pf3gnuchains/gcc-fork.git] / gcc / fortran / ChangeLog
1 2006-10-10  Brooks Moses  <bmoses@stanford.edu>
2
3         * Make-lang.in: Added "fortran.pdf", "gfortran.pdf" target
4         support.
5
6 2006-10-10  Daniel Franke  <franke.daniel@gmail.com>
7
8         * intrinsic.texi: added documentation for FSTAT, GETARG,GET_COMMAND,
9         GET_COMMAND_ARGUMENT, GETENV, GET_ENVIRONMENT_VARIABLE, IAND, IARGC,
10         LSTAT and STAT, removed the reference to PR19292 from ACCESS, CHMOD,
11         GMTIME, LSHIFT, LTIME, RSHIFT.
12
13 2006-10-10  Brooks Moses  <bmoses@stanford.edu>
14
15         * gfortran.texi (Standards): Update to current status.
16
17 2006-10-09  Brooks Moses  <bmoses@stanford.edu>
18
19         * Make-lang.in: Added intrinsic.texi to GFORTRAN_TEXI
20         dependences.
21
22 2006-10-09  Brooks Moses  <bmoses@stanford.edu>
23
24         * intrinsic.texi (MOVE_ALLOC): changed "Options" to "Standards".
25
26 2006-10-09  Steven G. Kargl  <kargl@gcc.gnu.org>
27
28         * gfortran.h: Define GFC_MPFR_TOO_OLD via mpfr version info.
29         * arith.c (arctangent, gfc_check_real_range): Use it.   
30         * simplify.c (gfc_simplify_atan2, gfc_simplify_exponent,
31         gfc_simplify_log, gfc_simplify_nearest): Use it.
32
33         PR fortran/15441
34         PR fortran/29312
35         * iresolve.c (gfc_resolve_rrspacing): Give rrspacing library
36         routine hidden precision argument.
37         (gfc_resolve_spacing): Give spacing library routine hidden
38         precision, emin - 1, and tiny(x) arguments.
39         * simplify.c (gfc_simplify_nearest): Remove explicit subnormalization.
40         (gfc_simplify_rrspacing): Implement formula from Fortran 95 standard.
41         (gfc_simplify_spacing): Implement formula from Fortran 2003 standard.
42         * trans-intrinsic.c (gfc_intrinsic_map_t) Declare rrspacing and
43         spacing via LIBF_FUNCTION
44         (prepare_arg_info, call_builtin_clz, gfc_conv_intrinsic_spacing,
45         gfc_conv_intrinsic_rrspacing): Remove functions.
46         (gfc_conv_intrinsic_function): Remove calls to
47         gfc_conv_intrinsic_spacing and gfc_conv_intrinsic_rrspacing.
48         * f95-lang.c (gfc_init_builtin_functions): Remove __builtin_clz,
49         __builtin_clzl and __builtin_clzll
50
51 2006-10-09  Richard Henderson  <rth@redhat.com>
52
53         Revert emutls patch.
54
55 2006-10-09  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
56
57         * intrinsic.c (add_sym_0s, add_sym_1s, add_sym_2s, add_sym_3s,
58         add_sym_4s, add_sym_5s, add_functions): Use macro ACTUAL_NO,
59         ACTUAL_YES, NOT_ELEMENTAL and ELEMENTAL instead of constants
60         0 and 1 as second and third arguments to add_sym* functions.
61
62 2006-10-08  Erik Edelmann <edelmann@gcc.gnu.org>
63             Paul Thomas <pault@gcc.gnu.org>
64
65         PR fortran/20541
66         * interface.c (gfc_compare_derived_types): Add comparison of
67         the allocatable field.
68         * intrinsic.c (add_subroutines): Add MOVE_ALLOC.
69         * trans-expr.c (gfc_conv_aliased_arg, gfc_trans_subarray_assign,
70         gfc_trans_subcomponent_assign, gfc_conv_string_parameter,
71         gfc_trans_scalar_assign): Add extra arguments l_is_temp
72         and r_is_var to references to latter function.
73         (gfc_conv_function_call): Add enum for types of argument and
74         an associated variable parm_kind. Deallocate components of
75         INTENT(OUT) and non-variable arrays.
76         (gfc_trans_subcomponent_assign): Add block to assign arrays
77         to allocatable components.
78         (gfc_trans_scalar_assign): Add block to handle assignments of
79         derived types with allocatable components, using the above new
80         arguments to control allocation/deallocation of memory and the
81         copying of allocated arrays.
82         * trans-array.c (gfc_array_allocate): Remove old identification 
83         of pointer and replace with that of an allocatable array. Add
84         nullify of structures with allocatable components. 
85         (gfc_conv_array_initializer): Treat EXPR_NULL.
86         (gfc_conv_array_parameter): Deallocate allocatable components
87         of non-variable structures.
88         (gfc_trans_dealloc_allocated): Use second argument of library
89         deallocate to inhibit, without error, freeing NULL pointers.
90         (get_full_array_size): New function to return the size of a
91         full array.
92         (gfc_duplicate_allocatable): New function to allocate and copy
93         allocated data.
94         (structure_alloc_comps): New recursive function to deallocate,
95         nullify or copy allocatable components.
96         (gfc_nullify_alloc_comp, gfc_deallocate_alloc_comp,
97         gfc_copy_alloc_comp): New interface functions to call previous.
98         (gfc_trans_deferred_array): Add the code to nullify allocatable
99         components, when entering scope, and to deallocate them on
100         leaving. Do not call gfc_trans_static_array_pointer and return
101         for structures with allocatable components and default
102         initializers.
103         * symbol.c (gfc_set_component_attr): Set allocatable field.
104         (gfc_get_component_attr): Set the allocatable attribute.
105         * intrinsic.h : Prototype for gfc_check_move_alloc.
106         * decl.c (build_struct): Apply TR15581 constraints for
107         allocatable components.
108         (variable_decl): Default initializer is always NULL for
109         allocatable components.
110         (match_attr_spec): Allow, or not, allocatable components,
111         according to the standard in force.
112         * trans-array.h : Prototypes for gfc_nullify_alloc_comp,
113         gfc_deallocate_alloc_comp, gfc_copy_alloc_comp and
114         gfc_duplicate_allocatable.
115         * gfortran.texi : Add mention of TR15581 extensions.
116         * gfortran.h : Add attribute alloc_comp, add
117         gfc_components field allocatable and add the prototype
118         for gfc_expr_to_initialize.
119         * trans-stmt.c (generate_loop_for_temp_to_lhs,
120         generate_loop_for_rhs_to_temp, gfc_trans_where_assign,
121         gfc_trans_where_3): Add extra arguments to calls to
122         gfc_trans_scalar_assign and set appropriately.
123         (gfc_trans_allocate): Nullify allocatable components.
124         (gfc_trans_deallocate): Deallocate to ultimate allocatable
125         components but stop at ultimate pointer components.
126         * module.c (mio_symbol_attribute, mio_symbol_attribute,
127         mio_component): Add module support for allocatable
128         components.
129         * trans-types.c (gfc_get_derived_type): Treat allocatable
130         components.
131         * trans.h : Add two boolean arguments to
132         gfc_trans_scalar_assign.
133         * resolve.c (resolve_structure_cons): Check conformance of
134         constructor element and the component.
135         (resolve_allocate_expr): Add expression to nullify the
136         constructor expression for allocatable components.
137         (resolve_transfer): Inhibit I/O of derived types with
138         allocatable components.
139         (resolve_fl_derived): Skip check of bounds of allocatable
140         components.
141         * trans-decl.c (gfc_get_symbol_decl): Add derived types
142         with allocatable components to deferred variable.
143         (gfc_trans_deferred_vars): Make calls for derived types
144         with allocatable components to gfc_trans_deferred_array.
145         (gfc_generate_function_code): Nullify allocatable
146         component function result on entry.
147         * parse.c (parse_derived): Set symbol attr.allocatable if
148         allocatable components are present.
149         * check.c (gfc_check_allocated): Enforce attr.allocatable
150         for intrinsic arguments.
151         (gfc_check_move_alloc): Check arguments of move_alloc.
152         * primary.c (gfc_variable_attr): Set allocatable attribute.
153         * intrinsic.texi : Add index entry and section for
154         for move_alloc.
155
156 2006-10-08  Paul Thomas <pault@gcc.gnu.org>
157
158         PR fortran/29115
159         * resolve.c (resolve_structure_cons): It is an error if the
160         pointer component elements of a derived type constructor are
161         not pointer or target.
162
163
164         PR fortran/29211
165         * trans-stmt.c (generate_loop_for_temp_to_lhs,
166         generate_loop_for_rhs_to_temp): Provide a string length for
167         the temporary by copying that of the other side of the scalar
168         assignment.
169
170 2006-10-08  Tobias Burnus  <burnus@net-b.de>
171
172         PR fortran/28585
173         * intrinsic.c (add_functions): Add new_line Fortran 2003 intrinsic.
174         * intrinsic.h: Add gfc_simplify_new_line and gfc_check_new_line
175         prototypes.
176         * check.c (gfc_check_new_line): New function.
177         * simplify.c (gfc_simplify_new_line): New function.
178         * intrinsic.texi: Document new_line intrinsic.
179
180 2006-10-07  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
181
182         PR fortran/16580
183         PR fortran/29288
184         * gcc/fortran/intrinsic.c (add_sym): Define the actual_ok when a
185         gfc_intrinsic_sym structure is filled.
186         (gfc_intrinsic_actual_ok): New function.
187         (add_sym_0s, add_sym_1s, add_sym_2s, add_sym_3s, add_sym_4s,
188         add_sym_5s): Intrinsic subroutines are not allowed as actual
189         arguments, so we remove argument actual_ok.
190         (add_functions): Correct the values for actual_ok of all intrinsics.
191         Add comments for gfc_check_access_func and gfc_resolve_index_func.
192         (add_subroutines): Remove the actual_ok argument, which was never used.
193         * gcc/fortran/intrinsic.h (gfc_intrinsic_actual_ok): New prototype.
194         * gcc/fortran/gfortran.h (gfc_resolve_index_func): New prototype.
195         * gcc/fortran/resolve.c (resolve_actual_arglist): Check whether
196         an intrinsic used as an argument list is allowed there.
197         * gcc/fortran/iresolve.c (gfc_resolve_index_func): New function.
198         (gfc_resolve_len): Change intrinsic function name to agree with
199         libgfortran.
200         * gcc/fortran/trans-decl.c (gfc_get_extern_function_decl): Add
201         new case, because some specific intrinsics take 3 arguments.
202         * gcc/fortran/intrinsic.texi: DIMAG is a GNU extension.
203
204 2006-10-06  Jakub Jelinek  <jakub@redhat.com>
205
206         PR fortran/28415
207         * trans-decl.c (gfc_finish_var_decl): With -fno-automatic, don't
208         make artificial variables or pointer to variable automatic array
209         TREE_STATIC.
210
211         * scanner.c (skip_free_comments): Return bool instead of void.
212         (gfc_next_char_literal): Don't return ' ' if & is missing after
213         !$omp or !$.  Use skip_{free,fixed}_comments directly instead
214         of gfc_skip_comments.
215
216 2006-10-04  Brooks Moses  <bmoses@stanford.edu>
217
218         * gfortran.texi: (Current Status): update and rewrite to reflect
219         actual status more accurately.
220
221 2006-10-04  Brooks Moses  <bmoses@stanford.edu>
222
223         * gfortran.texi: Consistently refer to the compiler as "GNU
224         Fortran".
225         * intrinsic.texi: Ditto.
226         * invoke.texi: Ditto.
227
228 2006-10-04  Richard Henderson  <rth@redhat.com>
229             Jakub Jelinek  <jakub@redhat.com>
230
231         * f95-lang.c (gfc_init_builtin_functions): Add __emutls_get_address
232         and __emutls_register_common.
233         * openmp.c (gfc_match_omp_threadprivate): Don't error if !have_tls.
234         * trans-common.c (build_common_decl): Don't check have_tls.
235         * trans-decl.c (gfc_finish_var_decl): Likewise.
236         * types.def (BT_WORD, BT_FN_PTR_PTR): New.
237         (BT_FN_VOID_PTR_WORD_WORD_PTR): New.
238
239 2006-10-04  Paul Thomas <pault@gcc.gnu.org>
240
241         PR fortran/29343
242         * resolve.c (resolve_allocate_expr): Exclude derived types from
243         search for dependences between allocated variables and the
244         specification expressions for other allocations in the same
245         statement.
246
247 2006-10-04  Paul Thomas  <pault@gcc.gnu.org>
248
249         PR fortran/29098
250         * resolve.c (resolve_structure_cons): Do not return FAILURE if
251         component expression is NULL.
252
253 2006-10-03  Paul Thomas  <pault@gcc.gnu.org>
254
255         PR fortran/20779
256         PR fortran/20891
257         * resolve.c (find_sym_in_expr): New function that returns true
258         if a symbol is found in an expression.
259         (resolve_allocate_expr): Check whether the STAT variable is
260         itself allocated in the same statement.  Use the call above to
261         check whether any of the allocated arrays are used in array
262         specifications in the same statement.
263
264 2006-10-03  Steven G. Kargl  <kargl@gcc.gnu.org>
265
266         * arith.c (gfc_check_real_range):  Use correct exponent range for
267         subnormal numbers.
268
269 2006-10-03  Paul Thomas  <pault@gcc.gnu.org>
270
271         PR fortran/29284
272         PR fortran/29321
273         PR fortran/29322
274         * trans-expr.c (gfc_conv_function_call): Check the expression
275         and the formal symbol are present when testing the actual
276         argument.
277
278         PR fortran/25091
279         PR fortran/25092
280         * resolve.c (resolve_entries): It is an error if the entries
281         of an array-valued function do not have the same shape.
282
283 2006-10-03  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
284
285         PR middle-end/27478
286         * trans-decl.c (gfc_get_fake_result_decl): Mark var as
287         TREE_ADDRESSABLE.
288
289 2006-10-02  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
290
291         PR fortran/19262
292         * gfortran.h (gfc_option_t): Add max_continue_fixed and
293         max_continue_free.
294         * options.c (gfc_init_options): Initialize fixed form and free form
295         consecutive continuation line limits.
296         * scanner.c (gfc_scanner_init_1): Initialize continue_line
297         and continue_count. (gfc_next_char_literal): Count the number of
298         continuation lines in the current statement and warn if limit
299         is exceeded.
300
301 2006-10-02  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
302
303         PR fortran/19260
304         * scanner.c (gfc_next_char_literal): Add check for missing '&'
305         and warn if in_string, otherwise return ' '.
306
307 2006-10-02  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
308
309         PR fortran/29210
310         * primary.c (match_sym_complex_part): Named constants as real or
311         imaginary part of complex a named constant are only allowed in
312         Fortran 2003.
313
314 2006-10-01  Brooks Moses  <bmoses@stanford.edu>
315
316         * gfortran.texi: Corrected references to MALLOC intrinsic.
317         * invoke.texi: Minor cleanup and clarification to the Dialect
318         Options section.
319
320 2006-09-30  Brooks Moses  <bmoses@stanford.edu>
321
322         * invoke.texi:  Add mention of BOZ constants and integer
323         overflow to -fno-range-check.
324         * gfortran.texi:  Add mention of -fno-range-check to
325         section on BOZ contants.
326
327 2006-09-30  Bernhard Fischer  <aldot@gcc.gnu.org>
328
329         * resolve.c: Fix commentary typo.  Fix whitespace.
330
331 2006-09-28  Steven G. Kargl  <kargl@gcc.gnu.org>
332
333         fortran/29147
334         * arith.c (gfc_check_integer_range): Disable range checking via
335         -fno-range-check.
336
337 2006-09-28  Steven G. Kargl <kargl@gcc.gnu.org>
338
339         * arith.c: Change conditional test for inclusion of arctangent().
340         (gfc_check_real_range): Change conditional test for use of
341         mpfr_subnormalize.
342         * simplify.c (gfc_simplify_atan2): Fix conditional for use of
343         mpfr_atan2() instead of arctangent().
344         (gfc_simplify_exponent): Fix conditional for use of mpfr_get_exp().
345         (gfc_simplify_log): Fix conditional for use of mpfr_atan2() instead
346          of arctangent().
347         (gfc_simplify_nearest): Fix conditional for use of mpfr_nextafter(). 
348
349 2006-09-27  Steven G. Kargl  <kargl@gcc.gnu.org>
350
351         * arith.c: Conditionally include arctangent2().
352         (gfc_check_real_range): Use mpfr_subnormalize in preference to local
353         hack.
354         * trans-intrinsic.c (gfc_get_intrinsic_lib_fndecl): Append
355         l for long double functions.
356         * simplify.c: Wrap Copyright to new line.
357         (gfc_simplify_atan2): Use mpfr_atan2 in preference to arctangent2().
358         (gfc_simplify_log): Ditto.
359
360
361         PR fortran/28276
362         * simplify.c (gfc_simplify_exponent): Use mpfr_get_exp in
363         preference to broken local hack.
364
365         PR fortran/27021
366         * simplify.c (gfc_simplify_nearest): Use mpfr_nexttoward and
367         mpfr_subnormalize to handle numbers near zero in preference to broken
368          local hack.
369
370 2006-09-26  Jakub Jelinek  <jakub@redhat.com>
371
372         PR fortran/29097
373         * scanner.c (include_line): Handle conditional include.
374
375 2006-09-25  Tobias Schluter  <tobias.schlueter@physik.uni-muenchen.de>
376
377         PR fortran/21203
378         * error.c (show_loci): No need to risk an ICE to output a
379         slightly nicer error message.
380
381 2006-09-19 Paul Thomas <pault@gcc.gnu.org>
382            Steven Bosscher  <steven@gcc.gnu.org>
383
384         PR fortran/29101
385         * trans-stmt.c (gfc_trans_character_select): Store the label
386         from select_string and then clean up any temporaries from the
387         conversion of the select expression, before branching to the
388         selected case.
389
390 2006-09-18 Paul Thomas <pault@gcc.gnu.org>
391
392         PR fortran/28526
393         * primary.c (match_variable): If the compiler is in a module
394         specification block, an interface block or a contains section,
395         reset host_flag to force the changed symbols mechanism.
396
397         PR fortran/29101
398         * trans-stmt.c (gfc_trans_character_select): Add the post block
399         for the expression to the main block, after the call to
400         select_string and the last label.
401
402 2006-09-18  Paul Thomas  <pault@gcc.gnu.org>
403
404         PR fortran/29060
405         * iresolve.c (resolve_spread): Build shape for result if the
406         source shape is available and dim and ncopies are constants.
407
408 2006-09-18  Tobias Schl\81üter  <tobias.schlueter@physik.uni-muenchen.de>
409
410         PR fortran/28817
411         PR fortran/21918
412         * trans-decl.c (generate_local_decl): Change from 'warning' to
413         'gfc_warning' to have line numbers correctly reported.
414
415 2006-09-15  Paul Thomas  <pault@gcc.gnu.org>
416
417         PR fortran/29051
418         * decl.c (match_old_style_init): Set the 'where' field of the
419         gfc_data structure 'newdata'.
420
421         * match.c (match_case_eos): Add a comprehensible error message.
422
423 2006-09-13  Wolfgang Gellerich  <gellerich@de.ibm.com>
424
425         * trans-expr.c (gfc_add_interface_mapping): For characters, dereference
426         pointer if necessary and then perform the cast.
427
428 2006-09-11  Steven G. Kargl  <kargl@gcc.gnu.org>
429
430         * intrinsic.c: Update Copyright date.
431         * intrinsic.h: Ditto.
432
433 2006-09-11  Paul Thomas  <pault@gcc.gnu.org>
434
435         PR fortran/28890
436         * trans-expr.c (gfc_conv_function_call): Obtain the string length
437         of a dummy character(*) function from the symbol if it is not
438         already translated.  For a call to a character(*) function, use
439         the passed, hidden string length argument, which is available
440         from the backend_decl of the formal argument.
441         * resolve.c (resolve_function): It is an error if a function call
442         to a character(*) function is other than a dummy procedure or
443         an intrinsic.
444
445 2006-09-10  Paul Thomas  <pault@gcc.gnu.org>
446
447         PR fortran/28959
448         * trans-types.c (gfc_get_derived_type): Use the parent namespace of
449         the procedure if the type's own namespace does not have a parent.
450
451 2006-09-10  Paul Thomas  <pault@gcc.gnu.org>
452
453         PR fortran/28923
454         * expr.c (find_array_section): Only use the array lower and upper
455         bounds for the start and end of the sections, where the expr is
456         NULL.
457
458 2006-09-10  Paul Thomas <pault@gcc.gnu.org>
459
460         PR fortran/28914
461         * trans-array.c (gfc_trans_array_constructor_value): Create a temporary
462         loop variable to hold the current loop variable in case it is modified
463         by the array constructor.
464
465 2006-09-07  Steven G. Kargl  <kargls@comcast.net>
466
467         * gfortran.h (gfc_integer_info): Eliminate max_int.
468         * arith.c (gfc_arith_init_1): Remove initialization of max_int.
469         (gfc_arith_done_1): Remove clearing of max_int.
470         (gfc_check_integer_range): Fix range chekcing of overflow.
471         * simplify.c (gfc_simplify_not): Construct mask that was max_int.
472
473 2006-09-05  Paul Thomas <pault@gcc.gnu.org>
474
475         PR fortran/28908
476         * gfortran.h : Restore the gfc_dt_list structure and reference
477         to it in gfc_namespace.
478         * resolve.c (resolve_fl_derived): Restore the building of the
479         list of derived types for the current namespace. Modify the
480         restored code so that a check is made to see if the symbol is
481         already in the list.
482         (resolve_fntype): Make sure that the specification block
483         version of the derived type is used for a module function that
484         returns that type. 
485         * symbol.c (gfc_free_dt_list): Restore.
486         (gfc_free_namespace): Restore call to previous.
487         * trans-types.c (copy_dt_decls_ifequal): Restore.
488         (gfc_get_derived_type): Restore all the paraphenalia for
489         association of derived types, including calls to previous.
490         Modify the restored code such that all derived types are built
491         if their symbols are found in the parent namespace; not just
492         non-module types.  Add backend_decls to like derived types in
493         sibling namespaces, as well as that of the derived type.
494
495 2006-08-30  Kazu Hirata  <kazu@codesourcery.com>
496
497         * match.c: Fix a comment typo.
498
499 2006-08-30  Paul Thomas  <pault@gcc.gnu.org>
500
501         PR fortran/28885
502         * trans-expr.c (gfc_conv_aliased_arg): Ensure that the temp
503         declaration is retained for INTENT(OUT) arguments.
504
505         PR fortran/28873
506         PR fortran/20067
507         * resolve.c (resolve_generic_f): Make error message more
508         comprehensible.
509         (resolve_generic_s): Restructure search for specific procedures
510         to be similar to resolve_generic_f and change to similar error
511         message.  Ensure that symbol reference is refreshed, in case
512         the search produces a NULL.
513         (resolve_specific_s): Restructure search, as above and as
514         resolve_specific_f. Ensure that symbol reference is refreshed,
515         in case the search produces a NULL.
516
517         PR fortran/25077
518         PR fortran/25102
519         * interface.c (check_operator_interface): Throw error if the
520         interface assignment tries to change intrinsic type assigments
521         or has less than two arguments.  Also, it is an error if an
522         interface operator contains an alternate return.
523
524         PR fortran/24866
525         * parse.c (gfc_fixup_sibling_symbols): Do not modify the symbol
526         if it is a dummy in the contained namespace.
527
528 2006-08-29  Steven G. Kargl  <kargls@comcast.net>
529
530         PR fortran/28866
531         * match.c: Wrap copyright.
532         (gfc_match_assignment):  Return MATCH_NO for failed lvalue.  Remove
533         gotos.  Move error handling of FL_PARAMETER to ...
534         * gfc_match_if: Deal with MATCH_NO from above.
535         * primary.c: Wrap copyright.
536         (match_variable): ... here.  Improve error messages.
537
538 2006-08-29  Paul Thomas  <pault@gcc.gnu.org>
539
540         PR fortran/28788
541         * symbol.c (gfc_use_derived): Never eliminate the symbol,
542         following reassociation of use associated derived types.
543
544 2006-08-26  Steven G. Kargl  <kargls@comcast.net>
545
546         * arith.h: Update Copyright dates.  Fix whitespace.
547         * arith.c: Update Copyright dates.  Fix whitespace.  Fix comments.
548         (gfc_arith_done_1): Clean up pedantic_min_int and subnormal.
549
550 2006-08-26  Tobias Burnus  <burnus@net-b.de>
551
552         * gfortran.texi: Note variable initialization causes SAVE attribute.
553         * intrinsic.texi: Clarify support for KIND=16 and KIND=10.
554         Mention -std=f2003.  Cross reference INQUIRE from ACCESS intrinsic.
555         Add missing ) in ACOS.
556
557 2006-08-26  Daniel Franke  <franke.daniel@gmail.com>
558
559         * intrinsic.texi: Update Copyright date.  Added documentation
560         for ACOSH, AND, ASINH, ATANH, CHDIR, FGET, FGETC, FPUT, FPUTC,
561         GETCWD, OR and XOR intrinsics, removed inadvertently introduced
562         doc-stubs for EQV and NEQV, corrected some typographical errors.
563
564 2006-08-24  Daniel Franke  <franke.daniel@gmail.com>,
565             Brooks Moses  <bmoses@stanford.edu>
566
567         * intrinsic.texi: Added doc-stubs for undocumented intrinsics,
568         added a "See Also" section, renamed the "Options" section to
569         "Standard", improved the index, and made numerous minor
570         typo corrections and grammatical fixes.
571
572 2006-08-24  Paul Thomas  <pault@gcc.gnu.org>
573
574         PR fortran/28788
575         * symbol.c (shift_types): Shift the derived type references in
576         formal namespaces.
577         (gfc_use_derived): Return if the derived type symbol is already
578         in another namspace.  Add searches for the derived type in
579         sibling namespaces.
580
581         PR fortran/28771
582         * decl.c (add_init_expr_to_sym): Restore the original but
583         restricted to parameter arrays to fix a regression.
584
585 2006-08-23  Steven G. Kargl  <kargls@comcast.net>
586
587         * gfortran.texi:  Fix last commit where a "no" was deleted and
588         a grammatical error was introduced.
589
590 2006-08-23  Steven G. Kargl  <kargls@comcast.net>
591
592         * gfortran.texi:  Spell check.  Add a few contributors to
593         Chapter 9.  Expand the description of BOZ constant handling.
594
595 2006-08-20  Janne Blomqvist  <jb@gcc.gnu.org>
596
597         PR fortran/25828
598         * gfortran.texi: Mention STREAM I/O among supported F2003
599         features.
600
601 2006-08-20  Paul Thomas  <pault@gcc.gnu.org>
602
603         PR fortran/28601
604         PR fortran/28630
605         * gfortran.h : Eliminate gfc_dt_list structure and reference
606         to it in gfc_namespace.
607         * resolve.c (resolve_fl_derived): Remove the building of the
608         list of derived types for the current namespace.
609         * symbol.c (find_renamed_type): New function to find renamed
610         derived types by symbol name rather than symtree name.
611         (gfc_use_derived): Search parent namespace for identical
612         derived type and use it, even if local version is complete,
613         except in interface bodies. Ensure that renamed derived types
614         are found by call to find_renamed_type. Recurse for derived
615         type components.
616         (gfc_free_dt_list): Remove.
617         (gfc_free_namespace): Remove call to previous.
618         * trans-types.c (copy_dt_decls_ifequal): Remove.
619         (gfc_get_derived_type): Remove all the paraphenalia for
620         association of derived types, including calls to previous.
621         * match.c (gfc_match_allocate): Call gfc_use_derived to
622         associate any derived types that are being allocated.
623
624         PR fortran/20886
625         * resolve.c (resolve_actual_arglist): The passing of
626         a generic procedure name as an actual argument is an
627         error.
628
629         PR fortran/28735
630         * resolve.c (resolve_variable): Check for a symtree before
631         resolving references.
632
633         PR fortran/28762
634         * primary.c (match_variable): Return MATCH_NO if the symbol
635         is that of the program.
636
637         PR fortran/28425
638         * trans-expr.c (gfc_trans_subcomponent_assign): Translate
639         derived type component expressions other than another derived
640         type constructor.
641
642         PR fortran/28496
643         * expr.c (find_array_section): Correct errors in
644         the handling of a missing start value for the
645         index triplet in an array reference.
646
647         PR fortran/18111
648         * trans-decl.c (gfc_build_dummy_array_decl): Before resetting
649         reference to backend_decl, set it DECL_ARTIFICIAL.
650         (gfc_get_symbol_decl): Likewise for original dummy decl, when
651         a copy is made of an array.
652         (create_function_arglist): Likewise for the _entry paramter
653         in entry_masters.
654         (build_entry_thunks): Likewise for dummies in entry thunks.
655
656         PR fortran/28600
657         * trans-decl.c (gfc_get_symbol_decl): Ensure that the
658         DECL_CONTEXT of the length of a character dummy is the
659         same as that of the symbol declaration.
660
661         PR fortran/28771
662         * decl.c (add_init_expr_to_sym): Remove setting of charlen for
663         an initializer of an assumed charlen variable.
664
665         PR fortran/28660
666         * trans-decl.c (generate_expr_decls): New function.
667         (generate_dependency_declarations): New function.
668         (generate_local_decl): Call previous if not either a dummy or
669         a declaration in an entry master.
670
671 2006-08-19  Erik Edelmann  <eedelman@gcc.gnu.org>
672
673         PR fortran/25217
674         * resolve.c (resolve_fl_variable): Set a default initializer for
675         derived types with INTENT(OUT) even if 'flag' is true.
676         * trans-expr.c (gfc_conv_function_call): Insert code to
677         reinitialize INTENT(OUT) arguments of derived type with default
678         initializers.
679
680 2006-08-15  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
681
682         PR fortran/25828
683         * gfortran.h: Add new pointer for stream position to st_inquire.
684         Rename gfc_large_io_int_kind to gfc_intio_kind.
685         * trans-types.c (gfc_init_kinds): use gfc_intio_kind.
686         * io.c: Add new IO tag for file position going in and another for out.
687         (match_dt_element): Match new tag_spos.
688         (gfc_resolve_dt): Resolve new tag_spos.
689         (gfc_free_inquire): Free inquire->strm_pos.
690         (match_inquire_element): Match new tag_strm_out.
691         (gfc_resolve_inquire): Resolve new tag_strm_out.
692         * trans-io.c: Rename IOPARM_type_large_io_int to IOPARM_type_intio.
693         (gfc_build_st_parameter): Same.
694         (gfc_build_io_library_fndecls) Same. and add build pointer type pintio.
695         (gfc_trans_inquire): Translate strm_pos for inquire.
696         * ioparm.def: Reorder flags to accomodate addition of new inquire
697         flag for strm_pos_out and add it in.
698
699 2006-08-06  Paul Thomas  <pault@gcc.gnu.org>
700
701         PR fortran/28590
702         * parse.c (parse_derived): Remove the test for sequence type
703         components of a sequence type.
704         * resolve.c (resolve_fl_derived): Put the test here so that
705         pointer components are tested.
706
707 2006-08-05  Steven G. Kargl <kargls@comcast.nt>
708
709         PR fortran/28548
710         * resolve.c(resolve_elemental_actual): Add flags.h to use -pedantic
711         and exclude conversion functions in conditional.  Change gfc_error
712         to gfc_warning.
713         (warn_unused_label) Rename to ...
714         (warn_unused_fortran_label) avoid warn_unused_label in flags.h.
715
716 2006-07-30  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
717
718         * intrinsic.c (add_functions): Add ACCESS, CHMOD, RSHIFT, LSHIFT.
719         (add_subroutines): Add LTIME, GMTIME and CHMOD.
720         * intrinsic.h (gfc_check_access_func, gfc_check_chmod,
721         gfc_check_chmod_sub, gfc_check_ltime_gmtime, gfc_simplify_rshift,
722         gfc_simplify_lshift, gfc_resolve_access, gfc_resolve_chmod,
723         gfc_resolve_rshift, gfc_resolve_lshift, gfc_resolve_chmod_sub,
724         gfc_resolve_gmtime, gfc_resolve_ltime): Add prototypes.
725         * gfortran.h (gfc_generic_isym_id): Add GFC_ISYM_ACCESS,
726         GFC_ISYM_CHMOD, GFC_ISYM_LSHIFT, GFC_ISYM_RSHIFT.
727         * iresolve.c (gfc_resolve_access, gfc_resolve_chmod,
728         gfc_resolve_rshift, gfc_resolve_lshift, gfc_resolve_chmod_sub,
729         gfc_resolve_gmtime, gfc_resolve_ltime): New functions.
730         * check.c (gfc_check_access_func, gfc_check_chmod,
731         gfc_check_chmod_sub, gfc_check_ltime_gmtime): New functions.
732         * trans-intrinsic.c (gfc_conv_intrinsic_rlshift): New function.
733         (gfc_conv_intrinsic_function): Add cases for the new GFC_ISYM_*.
734
735 2006-07-28  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
736
737         * Make-lang.in: Use $(HEADER_H) instead of header.h in dependencies.
738
739 2006-07-26  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
740
741         * intrinsic.c (add_functions): Add INT2, SHORT, INT8, LONG,
742         LSTAT, MCLOCK and MCLOCK8 intrinsic functions.
743         (add_subroutines): Add LSTAT intrinsic subroutine.
744         * gfortran.h (gfc_generic_isym_id): Add GFC_ISYM_INT2,
745         GFC_ISYM_INT8, GFC_ISYM_LONG, GFC_ISYM_LSTAT, GFC_ISYM_MCLOCK
746         and GFC_ISYM_MCLOCK8.
747         * iresolve.c (gfc_resolve_int2, gfc_resolve_int8,
748         gfc_resolve_long, gfc_resolve_lstat, gfc_resolve_mclock,
749         gfc_resolve_mclock8, gfc_resolve_lstat_sub): New functions.
750         * check.c (gfc_check_intconv): New function.
751         * trans-intrinsic.c (gfc_conv_intrinsic_function): Add cases for
752         the added GFC_ISYM_*.
753         * simplify.c (gfc_simplify_intconv, gfc_simplify_int2,
754         gfc_simplify_int8, gfc_simplify_long): New functions.
755         * intrinsic.h (gfc_check_intconv, gfc_simplify_int2,
756         gfc_simplify_int8, gfc_simplify_long, gfc_resolve_int2,
757         gfc_resolve_int8, gfc_resolve_long, gfc_resolve_lstat,
758         gfc_resolve_mclock, gfc_resolve_mclock8, gfc_resolve_lstat_sub):
759         Add prototypes.
760
761 2006-07-24  Erik Edelmann  <eedelman@gcc.gnu.org>
762
763         PR fortran/28416
764         * trans-array.c (gfc_conv_array_parameter): Give special treatment for
765         ALLOCATABLEs if they are themselves dummy variables.
766
767 2006-07-23  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
768
769         PR fortran/25289
770         * gfortran.h: Declare gfc_large_io_int_kind.
771         * trans-types.c (gfc_init_kinds): Set gfc_large_io_int_kind
772         to size 8 or 4.
773         * trans-io.c (enum iofield_type): Add large_io_int type.
774         (gfc_build_st_parameter): Same.
775         (gfc_build_io_library_fndecls): Same.
776         * ioparm_def: Use large_io_int to define rec.
777
778 2006-07-22  Steven Bosscher  <steven@gcc.gnu.org> 
779
780         PR fortran/28439
781         * trans-stmt.c (gfc_trans_arithmetic_if): Evaluate the condition once.
782
783 2006-07-16  Jakub Jelinek  <jakub@redhat.com>
784
785         PR fortran/28390
786         * trans-openmp.c (gfc_trans_omp_do): Look for LASTPRIVATE in
787         code->exp.omp_clauses rather than in the 3rd function argument.
788
789 2006-07-16  Paul Thomas  <pault@gcc.gnu.org>
790
791         PR fortran/28384
792         * trans-common.c (translate_common): If common_segment is NULL
793         emit error that common block does not exist.
794
795         PR fortran/20844
796         * io.c (check_io_constraints): It is an error if an ADVANCE
797         specifier appears without an explicit format.
798
799         PR fortran/28201
800         * resolve.c (resolve_generic_s): For a use_associated function,
801         do not search for an alternative symbol in the parent name
802         space.
803
804         PR fortran/20893
805         * resolve.c (resolve_elemental_actual): New function t combine
806         all the checks of elemental procedure actual arguments. In
807         addition, check of array valued optional args(this PR) has
808         been added.
809         (resolve_function, resolve_call): Remove parts that treated
810         elemental procedure actual arguments and call the above.
811
812 2006-07-14  Steven G. Kargl  <kargls@comcast.net>
813
814         * trans-expr.c (gfc_trans_string_copy): Evaluate the string lengths
815
816 006-07-13  Paul Thomas  <pault@gcc.gnu.org>
817
818         PR fortran/28353
819         * trans-expr.c (gfc_conv_aliased_arg): Missing formal arg means
820         that intent is INOUT (fixes regression).
821
822         PR fortran/25097
823         * check.c (check_present): The only permitted reference is a
824         full array reference.
825
826         PR fortran/20903
827         * decl.c (variable_decl): Add error if a derived type is not
828         from the current namespace if the namespace is an interface
829         body.
830
831 2006-07-12  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
832
833         PR fortran/28163
834         * trans-expr.c (gfc_trans_string_copy): Generate inline code
835         to perform string copying instead of calling a library function.
836         * trans-decl.c (gfc_build_intrinsic_function_decls): Don't build
837         decl for copy_string.
838         * trans.h (gfor_fndecl_copy_string): Remove prototype.
839
840 2006-07-11  Feng Wang  <fengwang@nudt.edu.cn>
841
842         PR fortran/28213
843         * trans-io.c (transfer_expr): Deal with Hollerith constants used in
844         I/O list.
845
846 2006-07-07  Kazu Hirata  <kazu@codesourcery.com>
847
848         * intrinsic.texi: Fix typos.
849
850 2006-07-07  Paul Thomas  <pault@gcc.gnu.org>
851
852         PR fortran/28237
853         PR fortran/23420
854         * io.c (resolve_tag): Any integer that is not an assigned
855         variable is an error.
856
857 2006-07-06  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
858
859         PR fortran/28129
860         * trans-array.c (gfc_trans_array_bound_check): Add a locus
861         argument, and use it in the error messages.
862         (gfc_conv_array_index_offset): Donc perform bounds checking on
863         the last dimension of assumed-size arrays.
864
865 2006-07-06  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
866
867         PR fortran/27874
868         * trans-stmt.c (compute_inner_temp_size): Don't perform bounds
869         checking when calculating the bounds of scalarization.
870
871 2006-07-05  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
872
873         PR fortran/20892
874         * interface.c (gfc_match_interface): Don't allow dummy procedures
875         to have a generic interface.
876
877 2006-07-04  Paul Thomas  <pault@gcc.gnu.org>
878
879         PR fortran/28174
880         * trans-array.c (gfc_conv_expr_descriptor): When building temp,
881         ensure that the substring reference uses a new charlen.
882         * trans-expr.c (gfc_conv_aliased_arg): Add the formal intent to
883         the argument list, lift the treatment of missing string lengths
884         from the above and implement the use of the intent.
885         (gfc_conv_function_call): Add the extra argument to the call to
886         the above.
887
888         PR fortran/28167
889         * trans-array.c (get_array_ctor_var_strlen): Treat a constant
890         substring reference.
891         * array.c (gfc_resolve_character_array_constructor): Remove 
892         static attribute and add the gfc_ prefix, make use of element
893         charlens for the expression and pick up constant string lengths
894         for expressions that are not themselves constant.
895         * gfortran.h : resolve_character_array_constructor prototype
896         added.
897         * resolve.c (gfc_resolve_expr): Call resolve_character_array_
898         constructor again after expanding the constructor, to ensure
899         that the character length is passed to the expression.
900
901 2006-07-04  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
902             Daniel Franke  <franke.daniel@gmail.com>
903
904         * intrinsic.c (add_subroutines): Add ITIME and IDATE.
905         * intrinsic.h (gfc_check_itime_idate,gfc_resolve_idate,
906         fc_resolve_itime): New protos.
907         * iresolve.c (gfc_resolve_itime, gfc_resolve_idate): New functions.
908         * check.c (gfc_check_itime_idate): New function.
909         * intrinsic.texi: Document the new intrinsics.
910
911 2006-07-03  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
912
913         * intrinsics/date_and_time.c (itime0,idate0,itime_i4,itime_i8,
914         idate_i4,idate_i8): New functions.
915
916
917 2006-07-03  Asher Langton  <langton2@llnl.gov>
918
919         * decl.c (match_old_style_init): Add data attribute to symbol.
920
921 2006-07-03  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
922
923         * iresolve.c (gfc_resolve_cpu_time, gfc_resolve_random_number):
924         Remove ATTRIBUTE_UNUSED for used argument.
925
926 2006-07-03  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
927
928         * intrinsic.texi: Document new intrinsics.
929
930 2006-07-01  Tobias Schl\81üter  <tobias.schlueter@physik.uni-muenchen.de>
931
932         PR fortran/19259
933         * parse.c (next_free): Error out on line starting with semicolon.
934         (next_fixed): Fix formatting.  Error out on line starting with
935         semicolon.
936
937 2006-06-30  Kazu Hirata  <kazu@codesourcery.com>
938
939         * check.c: Fix a comment typo.
940
941 2006-06-25  Paul Thomas  <pault@gcc.gnu.org>
942
943         PR fortran/25056
944         * interface.c (compare_actual_formal): Signal an error if the formal
945         argument is a pure procedure and the actual is not pure.
946
947         PR fortran/27554
948         * resolve.c (resolve_actual_arglist): If the type of procedure
949         passed as an actual argument is not already declared, see if it is
950         an intrinsic.
951
952         PR fortran/25073
953         * resolve.c (resolve_select): Use bits 1 and 2 of a new int to
954         keep track of  the appearance of constant logical case expressions.
955         Signal an error is either value appears more than once.
956
957         PR fortran/20874
958         * resolve.c (resolve_fl_procedure): Signal an error if an elemental
959         function is not scalar valued.
960
961         PR fortran/20867
962         * match.c (recursive_stmt_fcn): Perform implicit typing of variables.
963
964         PR fortran/22038
965         * match.c (match_forall_iterator): Mark new variables as
966         FL_UNKNOWN if the match fails.
967
968         PR fortran/28119
969         * match.c (gfc_match_forall): Remove extraneous call to
970         gfc_match_eos.
971
972         PR fortran/25072
973         * resolve.c (resolve_code, resolve_function): Rework
974         forall_flag scheme so that it is set and has a value of
975         2, when the code->expr (ie. the forall mask) is resolved.
976         This is used to change "block" to "mask" in the non-PURE
977         error message.
978
979 2006-06-24  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
980
981         PR fortran/28081
982         * resolve.c (resolve_substring): Don't issue out-of-bounds
983         error messages when the range has zero size.
984
985 2006-06-24  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
986
987         PR fortran/23862
988         * lang-specs.h (f95-cpp-input): Pass -ffree-form to f951 unless
989         -ffixed-form is explicitly specified.
990
991 2006-06-24  Paul Thomas  <pault@gcc.gnu.org>
992
993         PR fortran/28118
994         * trans-array.c (gfc_conv_expr_descriptor): When building temp,
995         use the substring reference to calculate the length if the
996         expression does not have a charlen.
997
998 2006-06-24  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
999
1000         PR fortran/28094
1001         * trans-intrinsic.c (gfc_conv_intrinsic_mod): Support cases where
1002         there is no integer kind equal to the resulting real kind.
1003         * intrinsic.c (add_functions): MODULO is not allowed as an actual
1004         argument.
1005
1006 2006-06-23  Steven G. Kargl  <kargls@comcast.net>
1007
1008         PR fortran/27981
1009         * match.c (gfc_match_if):  Handle errors in assignment in simple if.
1010
1011 2006-06-22  Asher Langton  <langton2@llnl.gov>
1012
1013         PR fortran/24748
1014         * primary.c (gfc_match_rvalue): Don't call match_substring for
1015         implicit non-character types.
1016
1017 2006-06-22  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
1018
1019         PR libfortran/26769
1020         * iresolve.c (gfc_resolve_reshape): Call reshape_r4 and
1021         reshape_r8 instead of reshape_4 and reshape_8.
1022         (gfc_resolve_transpose): Likewise for transpose.
1023
1024 2006-06-21  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
1025
1026         * trans-expr.c (gfc_conv_missing_dummy, gfc_conv_unary_op,
1027         gfc_conv_cst_int_power, gfc_conv_string_tmp,
1028         gfc_conv_function_call): Replace calls to convert on constant
1029         integer nodes by build_int_cst.
1030         * trans-stmt.c (gfc_trans_do): Likewise.
1031         * trans-io.c (set_internal_unit, transfer_namelist_element):
1032         Likewise.
1033         * trans-decl.c (build_entry_thunks): Likewise.
1034
1035 2006-06-20  Steven G. Kargl  <kargls@comcast.net>
1036
1037         * simplify.c (gfc_simplify_rrspacing): Initialize and clear mpfr_t
1038         variable.
1039
1040 2006-06-20  Paul Thomas  <pault@gcc.gnu.org>
1041
1042         PR fortran/25049
1043         PR fortran/25050
1044         * check.c (non_init_transformational): New function.
1045         (find_substring_ref): New function to signal use of disallowed
1046         transformational intrinsic in an initialization expression.
1047         (gfc_check_all_any): Call previous if initialization expr.
1048         (gfc_check_count): The same.
1049         (gfc_check_cshift): The same.
1050         (gfc_check_dot_product): The same.
1051         (gfc_check_eoshift): The same.
1052         (gfc_check_minloc_maxloc): The same.
1053         (gfc_check_minval_maxval): The same.
1054         (gfc_check_gfc_check_product_sum): The same.
1055         (gfc_check_pack): The same.
1056         (gfc_check_spread): The same.
1057         (gfc_check_transpose): The same.
1058         (gfc_check_unpack): The same.
1059
1060         PR fortran/18769
1061         *intrinsic.c (add_functions): Add gfc_simplify_transfer.
1062         *intrinsic.h : Add prototype for gfc_simplify_transfer.
1063         *simplify.c (gfc_simplify_transfer) : New function to act as
1064         placeholder for eventual implementation.  Emit error for now.
1065
1066         PR fortran/16206
1067         * expr.c (find_array_element): Eliminate condition on length of
1068         offset. Add bounds checking. Rearrange exit. Return try and
1069         put gfc_constructor result as an argument.
1070         (find_array_section): New function.
1071         (find_substring_ref): New function.
1072         (simplify_const_ref): Add calls to previous.
1073         (simplify_parameter_variable): Return on NULL expr.
1074         (gfc_simplify_expr): Only call gfc_expand_constructor for full
1075         arrays.
1076
1077         PR fortran/20876
1078         * match.c (gfc_match_forall): Add missing locus to gfc_code.
1079
1080 2006-06-18  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
1081
1082         PR fortran/26801
1083         * trans-intrinsic.c (gfc_conv_associated): Use pre and post blocks
1084         of the scalarization expression.
1085
1086 2006-06-18  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
1087
1088         PR fortran/19310
1089         PR fortran/19904
1090         * arith.c (gfc_range_check): Return ARITH_OK if -fno-range-check. Add
1091         return of ARITH_NAN, ARITH_UNDERFLOW, and ARITH_OVERFLOW.
1092         (gfc_arith_divide): If -fno-range-check allow mpfr to divide by zero.
1093         * gfortran.h (gfc_option_t): Add new flag.
1094         * invoke.texi: Document new flag.
1095         * lang.opt: Add option -frange-check.
1096         * options.c (gfc_init_options): Initialize new flag.
1097         (gfc_handle_options): Set flag if invoked.
1098         * simplify.c (range_check): Add error messages for
1099         overflow, underflow, and other errors.
1100         * trans-const.c (gfc_conv_mpfr_to_tree): Build NaN and Inf from mpfr
1101         result.
1102
1103 2006-06-17  Karl Berry  <karl@gnu.org>
1104
1105         * gfortran.texi (@dircategory): Use "Software development"
1106         instead of "Programming", following the Free Software Directory.
1107
1108 2006-06-16  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
1109
1110         PR fortran/27965
1111         * trans-array.c (gfc_conv_ss_startstride): Correct the runtime
1112         conditions for bounds-checking. Check for nonzero stride.
1113         Don't check the last dimension of assumed-size arrays. Fix the
1114         dimension displayed in the error message.
1115
1116 2006-06-15  Thomas Koenig <Thomas.Koenig@online.de>
1117
1118         * trans-array.h (gfc_trans_create_temp_array):  Add bool
1119         argument.
1120         * trans-arrray.c (gfc_trans_create_temp_array): Add extra
1121         argument "function" to show if we are translating a function.
1122         If we are translating a function, perform checks whether
1123         the size along any argument is negative.  In that case,
1124         allocate size 0.
1125         (gfc_trans_allocate_storage):  Add function argument (as
1126         false) to gfc_trans_create_temp_array call.
1127         * trans-expr.c (gfc_conv_function_call):  Add function
1128         argument (as true) to gfc_trans_create_temp_array call.
1129         * trans-stmt.c (gfc_conv_elemental_dependencies): Add
1130         function argument (as false) to gfc_trans_create_temp_array
1131         call.
1132         * trans-intrinsic.c:  Likewise.
1133
1134 2006-06-10  Paul Thomas  <pault@gcc.gnu.org>
1135
1136         PR fortran/24558
1137         PR fortran/20877
1138         PR fortran/25047
1139         * decl.c (get_proc_name): Add new argument to flag that a
1140         module function entry is being treated. If true, correct
1141         error condition, add symtree to module namespace and add
1142         a module procedure.
1143         (gfc_match_function_decl, gfc_match_entry,
1144         gfc_match_subroutine): Use the new argument in calls to
1145         get_proc_name.
1146         * resolve.c (resolve_entries): ENTRY symbol reference to
1147         to master entry namespace if a module function.
1148         * trans-decl.c (gfc_create_module_variable): Return if
1149         the symbol is an entry.
1150         * trans-exp.c (gfc_conv_variable): Check that parent_decl
1151         is not NULL.
1152
1153 2006-06-09  Jakub Jelinek  <jakub@redhat.com>
1154
1155         PR fortran/27916
1156         * trans-openmp.c (gfc_omp_clause_default_ctor): New function.
1157         * trans.h (gfc_omp_clause_default_ctor): New prototype.
1158         * f95-lang.c (LANG_HOOKS_OMP_CLAUSE_DEFAULT_CTOR): Define.
1159
1160 2006-06-08  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
1161
1162         PR fortran/27958
1163         * trans-expr.c (gfc_conv_substring): If the substring start is
1164         greater than its end, the length of the substring is zero, and
1165         not negative.
1166         (gfc_trans_string_copy): Don't generate a call to
1167         _gfortran_copy_string when destination length is zero.
1168
1169 2006-06-08  Asher Langton  <langton2@llnl.gov>
1170         
1171         PR fortran/27786
1172         * trans-array.c (gfc_conv_array_ref): Eliminate bounds checking
1173         for assumed-size Cray pointees.
1174
1175 2006-06-08  Steven G. Kargl  <kargls@comcat.net>
1176
1177         * intrinsic.c (add_subroutine):  Make make_noreturn() conditional on
1178         the appropriate symbol name.
1179         
1180 2006-06-07  Paul Thomas  <pault@gcc.gnu.org>
1181
1182         PR fortran/23091
1183         * resolve.c (resolve_fl_variable): Error if an automatic
1184         object has the SAVE attribute.
1185
1186         PR fortran/24168
1187         * expr.c (simplify_intrinsic_op): Transfer the rank and
1188         the locus to the simplified expression.
1189
1190         PR fortran/25090
1191         PR fortran/25058
1192         * gfortran.h : Add int entry_id to gfc_symbol.
1193         * resolve.c : Add static variables current_entry_id and
1194         specification_expr.
1195         (resolve_variable): During code resolution, check if a
1196         reference to a dummy variable in an executable expression
1197         is preceded by its appearance as a parameter in an entry.
1198         Likewise check its specification expressions.
1199         (resolve_code): Update current_entry_id on EXEC_ENTRY.
1200         (resolve_charlen, resolve_fl_variable): Set and reset
1201         specifiaction_expr.
1202         (is_non_constant_shape_array): Do not return on detection
1203         of a variable but continue to resolve all the expressions.
1204         (resolve_codes): set current_entry_id to an out of range
1205         value.
1206
1207 2006-06-06  Mike Stump  <mrs@apple.com>
1208
1209         * Make-lang.in: Rename to htmldir to build_htmldir to avoid
1210         installing during build.
1211
1212 2006-06-06  Paul Thomas  <pault@gcc.gnu.org>
1213
1214         PR fortran/27897
1215         * match.c (gfc_match_common):  Fix code typo.  Remove
1216         sym->name, since sym is NULL, and replace with name.
1217
1218 2006-06-05  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
1219
1220         PR libfortran/27895
1221         * resolve.c (compute_last_value_for_triplet): New function.
1222         (check_dimension): Correctly handle zero-sized array sections.
1223         Add checking on last element of array sections.
1224
1225 2006-06-05  Steven G. Kargl  <kargls@comcast.net>
1226
1227         * data.c (gfc_assign_data_value):  Fix comment typo.  Remove
1228         a spurious return.
1229
1230 2006-06-05  Paul Thomas  <pault@gcc.gnu.org>
1231
1232         PR fortran/14067
1233         * data.c (create_character_intializer): Add warning message
1234         for truncated string.
1235
1236         PR fortran/16943
1237         * symbol.c : Include flags.h.
1238         (gfc_add_type): If a procedure and types are the same do not
1239         throw an error unless standard is less than gnu or pedantic.
1240
1241         PR fortran/20839
1242         * parse.c (parse_do_block): Error if named block do construct
1243         does not have a named enddo.
1244
1245         PR fortran/27655
1246         * check.c (gfc_check_associated): Pick up EXPR_NULL for pointer
1247         as well as target and put error return at end of function.
1248
1249 2006-06-03  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
1250
1251         * trans.c (gfc_msg_bounds, gfc_msg_fault, gfc_msg_wrong_return):
1252         Add strings for common runtime error messages.
1253         (gfc_trans_runtime_check): Add a locus argument, use a string
1254         and not a string tree for the message.
1255         * trans.h (gfc_trans_runtime_check): Change prototype accordingly.
1256         (gfc_msg_bounds, gfc_msg_fault, gfc_msg_wrong_return): Add proto.
1257         * trans-const.c (gfc_strconst_bounds, gfc_strconst_fault,
1258         gfc_strconst_wrong_return, gfc_strconst_current_filename): Remove.
1259         (gfc_init_constants): Likewise.
1260         * trans-const.h: Likewise.
1261         * trans-decl.c (gfc_build_builtin_function_decls): Call to
1262         _gfortran_runtime_error has only one argument, the message string.
1263         * trans-array.h (gfc_conv_array_ref): Add a symbol argument and a
1264         locus.
1265         * trans-array.c (gfc_trans_array_bound_check): Build precise
1266         error messages.
1267         (gfc_conv_array_ref): Use the new symbol argument and the locus
1268         to build more precise error messages.
1269         (gfc_conv_ss_startstride): More precise error messages.
1270         * trans-expr.c (gfc_conv_variable): Give symbol reference and
1271         locus to gfc_conv_array_ref.
1272         (gfc_conv_function_call): Use the new prototype for
1273         gfc_trans_runtime_check.
1274         * trans-stmt.c (gfc_trans_goto): Build more precise error message.
1275         * trans-io.c (set_string): Likewise.
1276         * trans-intrinsic.c (gfc_conv_intrinsic_bound): Use new prototype
1277         for gfc_trans_runtime_check.
1278
1279 2006-06-01  Thomas Koenig  <Thomas.Koenig@online.de>
1280
1281         PR fortran/27715
1282         * arith.c:  Cast the characters from the strings to unsigned
1283         char to avoid values less than 0 for extended ASCII.
1284
1285 2006-06-01  Per Bothner  <bothner@bothner.com>
1286
1287         * data.c (gfc_assign_data_value): Handle USE_MAPPED_LOCATION.
1288         * scanner.c (gfc_gobble_whitespace): Likewise.
1289
1290 2006-06-01  Paul Thomas  <pault@gcc.gnu.org>
1291
1292         PR fortran/25098
1293         PR fortran/25147
1294         * interface.c (compare_parameter): Return 1 if the actual arg
1295         is external and the formal is a procedure.
1296         (compare_actual_formal): If the actual argument is a variable
1297         and the formal a procedure, this an error.  If a gsymbol exists
1298         for a procedure of the same name, this is not yet resolved and
1299         the error is cleared.
1300
1301         * trans-intrinsic.c (gfc_conv_associated): Make provision for
1302         zero array length or zero string length contingent on presence
1303         of target, for consistency with standard.
1304
1305 2006-05-30  Asher Langton  <langton2@llnl.gov>
1306
1307         * symbol.c (check_conflict): Allow external, function, and
1308         subroutine attributes with Cray pointees.
1309         * trans-expr.c (gfc_conv_function_val): Translate Cray pointees
1310         that point to procedures.
1311         * gfortran.texi: Document new feature.
1312
1313 2006-05-29  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
1314
1315         PR fortran/27634
1316         * io.c (check_format): Add error for missing period in format
1317         specifier unless -std=legacy.
1318         * gfortran.texi: Add description of expanded namelist read and
1319         missing period in format extensions.
1320
1321 2006-05-29  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
1322
1323         PR fortran/19777
1324         * trans-array.c (gfc_conv_array_ref): Perform out-of-bounds
1325         checking for assumed-size arrrays for all but the last dimension.
1326
1327 2006-05-29  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
1328
1329         * invoke.texi: Change -fpackderived into -fpack-derived.
1330
1331 2006-05-29  Kazu Hirata  <kazu@codesourcery.com>
1332
1333         * options.c, primary.c, resolve.c, trans-common.c: Fix typos
1334         in error messages.
1335
1336 2006-05-28  Kazu Hirata  <kazu@codesourcery.com>
1337
1338         * check.c, expr.c, resolve.c, trans-common.c,
1339         trans-intrinsic.c, trans-stmt.c, trans-types.c: Fix comment typos.
1340
1341 2006-05-27  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
1342
1343         PR fortran/19777
1344         * trans-array.c (gfc_conv_array_ref): Don't perform out-of-bounds
1345         checking for assumed-size arrrays.
1346
1347 2006-05-27  Paul Thomas  <pault@gcc.gnu.org>
1348
1349         * trans-intrinsic.c (gfc_conv_associated): If pointer in first
1350         arguments has zero array length of zero string length, return
1351         false.
1352
1353 2006-05-26  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
1354
1355         PR fortran/27524
1356         * trans-array.c (gfc_trans_dummy_array_bias): Don't use stride as
1357         a temporary variable when -fbounds-check is enabled, since its
1358         value will be needed later.
1359
1360 2006-05-26  Thomas Koenig  <Thomas.Koenig@online.de>
1361
1362         PR fortran/23151
1363         * io.c (match_io):  print (1,*) is an error.
1364
1365 2006-05-26  Paul Thomas  <pault@gcc.gnu.org>
1366
1367         PR fortran/27709
1368         * resolve.c (find_array_spec): Add gfc_symbol, derived, and
1369         use to track repeated component references.
1370
1371         PR fortran/27155
1372         PR fortran/27449
1373         * trans-intrinsic.c (gfc_conv_intrinsic_array_transfer): Use
1374         se->string_length throughout and use memcpy to populate the
1375         expression returned to the scalarizer.
1376         (gfc_size_in_bytes): New function.
1377
1378 2006-05-21  Paul Thomas  <pault@gcc.gnu.org>
1379
1380         PR fortran/27613
1381         * primary.c (gfc_match_rvalue): Test if symbol represents a
1382         direct recursive function reference.  Error if array valued,
1383         go to function0 otherwise.
1384
1385 2006-05-21  Paul Thomas  <pault@gcc.gnu.org>
1386
1387         PR fortran/25746
1388         * interface.c (gfc_extend_assign): Use new EXEC_ASSIGN_CALL.
1389         * gfortran.h : Put EXEC_ASSIGN_CALL in enum.
1390         * trans-stmt.c (gfc_conv_elemental_dependencies): New function.
1391         (gfc_trans_call): Call it.  Add new boolian argument to flag
1392         need for dependency checking. Assert intent OUT and IN for arg1
1393         and arg2.
1394         (gfc_trans_forall_1): Use new code EXEC_ASSIGN_CALL.
1395         trans-stmt.h : Modify prototype of gfc_trans_call.
1396         trans.c (gfc_trans_code): Add call for EXEC_ASSIGN_CALL.
1397         st.c (gfc_free_statement): Free actual for EXEC_ASSIGN_CALL.
1398         * dependency.c (gfc_check_fncall_dependency): Don't check other
1399         against itself.
1400
1401         PR fortran/25090
1402         * resolve.c : Remove resolving_index_expr.
1403         (entry_parameter): Remove.
1404         (gfc_resolve_expr, resolve_charlen, resolve_fl_variable): Lift
1405         calls to entry_parameter and references to resolving_index_expr.
1406
1407         PR fortran/27584
1408         * check.c (gfc_check_associated): Replace NULL assert with an
1409         error message, since it is possible to generate bad code that
1410         has us fall through to here..
1411
1412         PR fortran/19015
1413         * iresolve.c (maxloc, minloc): If DIM is not present, pass the
1414         rank of ARRAY as the shape of the result.  Otherwise, pass the
1415         shape of ARRAY, less the dimension DIM.
1416         (maxval, minval): The same, when DIM is present, otherwise no
1417         change.
1418
1419 2006-05-19  H.J. Lu  <hongjiu.lu@intel.com>
1420
1421         PR fortran/27662
1422         * trans-array.c (gfc_conv_expr_descriptor): Don't zero the
1423         first stride to indicate a temporary.
1424         * trans-expr.c (gfc_conv_function_call): Likewise.
1425
1426 2006-05-18  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
1427             Feng Wang  <fengwang@nudt.edu.cn>
1428
1429         PR fortran/27552
1430         * dump-parse-tree.c (gfc_show_expr): Deal with Hollerith constants.
1431         * data.c (create_character_intializer): Set from_H flag if character is
1432         initialized by Hollerith constant.
1433
1434 2006-05-17  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
1435
1436         PR fortran/26551
1437         * resolve.c (resolve_call, resolve_function): Issue an error
1438         if a function or subroutine call is recursive but the function or
1439         subroutine wasn't declared as such.
1440
1441 2006-05-07  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
1442
1443         PR fortran/26551
1444         * gfortran.dg/recursive_check_1.f: New test.
1445
1446
1447 2006-05-17  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
1448
1449         PR fortran/27320
1450         * dump-parse-tree.c (gfc_show_code_node): Try harder to find the
1451         called procedure name.
1452
1453 2006-05-17  Jakub Jelinek  <jakub@redhat.com>
1454
1455         PR middle-end/27415
1456         * trans-openmp.c (gfc_trans_omp_parallel_do,
1457         gfc_trans_omp_parallel_sections, gfc_trans_omp_parallel_workshare): Set
1458         OMP_PARALLEL_COMBINED flag.
1459
1460 2006-05-16  H.J. Lu  <hongjiu.lu@intel.com>
1461
1462         PR driver/26885
1463         * Make-lang.in (GFORTRAN_D_OBJS): Replace gcc.o with
1464         $(GCC_OBJS).
1465
1466 2006-05-15  Paul Thomas  <pault@gcc.gnu.org>
1467
1468         PR fortran/25090
1469         * resolve.c: Static resolving_index_expr initialized.
1470         (entry_parameter): New function to emit errors for variables
1471         that are not entry parameters.
1472         (gfc_resolve_expr): Call entry_parameter, when resolving
1473         variables, if the namespace has entries and resolving_index_expr
1474         is set.
1475         (resolve_charlen): Set resolving_index_expr before the call to
1476         resolve_index_expr and reset it afterwards.
1477         (resolve_fl_variable): The same before and after the call to
1478         is_non_constant_shape_array, which ultimately makes a call to
1479         gfc_resolve_expr.
1480
1481         PR fortran/25082
1482         * resolve.c (resolve_code): Add error condition that the return
1483         expression must be scalar.
1484
1485         PR fortran/27411
1486         * matchexp.c (gfc_get_parentheses): New function.
1487         (match_primary): Remove inline code and call above.
1488         * gfortran.h: Provide prototype for gfc_get_parentheses.
1489         * resolve.c (resolve_array_ref): Call the above, when start is a
1490         derived type variable array reference.
1491
1492 2006-05-15  Jakub Jelinek  <jakub@redhat.com>
1493
1494         PR fortran/27446
1495         * trans-openmp.c (gfc_trans_omp_array_reduction): Ensure
1496         OMP_CLAUSE_REDUCTION_{INIT,MERGE} are set to BIND_EXPR.
1497
1498 2006-05-14  H.J. Lu  <hongjiu.lu@intel.com>
1499
1500         * Make-lang.in (fortran/options.o): Depend on $(TARGET_H).
1501
1502 2006-05-11  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
1503
1504         PR fortran/27553
1505         * parse.c (next_free): Return instead of calling decode_statement
1506         upon error.
1507
1508 2005-05-10  Thomas Koenig  <Thomas.Koenig@online.de>
1509
1510         PR fortran/27470
1511         * trans-array.c(gfc_array_allocate):  If ref->next exists
1512         that is if there is a statement like ALLOCATE(foo%bar(2)),
1513         F95 rules require that bar should be a pointer.
1514
1515 2006-05-10  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
1516
1517         PR fortran/20460
1518         * resolve.c (gfc_resolve_index): Make REAL array indices a
1519         GFC_STD_LEGACY feature.
1520
1521 2006-05-10  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
1522
1523         PR fortran/24549
1524         * parse.c (reject_statement): Clear gfc_new_block.
1525
1526 2006-05-09  Steven G. Kargl  <kargls@comcast.net>
1527
1528         * invoke.texi: Missed file in previous commit.  Update
1529          description of -fall-intrinsics
1530
1531 2006-05-07  Steven Boscher  <steven@gcc.gnu.org>
1532
1533         PR fortran/27378
1534         * parse.c (next_statement): Add check to avoid an ICE when
1535         gfc_current_locus.lb is not set.
1536
1537 2006-05-07  Tobias Schl\81üter  <tobias.schlueter@physik.uni-muenchen.de>
1538
1539         PR fortran/27457
1540         * match.c (match_case_eos): Error out on garbage following
1541         CASE(...).
1542
1543 2006-05-07  Paul Thomas  <pault@gcc.gnu.org>
1544
1545         PR fortran/24813
1546         * trans-array.c (get_array_ctor_strlen): Remove static attribute.
1547         * trans.h: Add prototype for get_array_ctor_strlen.
1548         * trans-intrinsic.c (gfc_conv_intrinsic_len): Switch on EXPR_ARRAY
1549         and call get_array_ctor_strlen.
1550
1551 2006-05-05  Steven G. Kargl  <kargls@comcast.net>
1552
1553         * invoke.texi: Update description of -fall-intrinsics
1554         * options.c (gfc_post_options): Disable -Wnonstd-intrinsics if
1555         -fall-intrinsics is used.
1556         (gfc_handle_option): Permit -Wno-nonstd-intrinsics.
1557
1558 2006-05-04  Tobias Schl\81üter  <tobias.schlueter@physik.uni-muenchen.de>
1559
1560         * simplify.c (ascii_table): Fix wrong entry.
1561
1562 2006-05-02  Steven G. Kargl  <kargls@comcast.net>
1563
1564         PR fortran/26896
1565         * lang.opt: Fix -Wtab description
1566
1567         PR fortran/20248  
1568         * lang.opt: New flag -fall-intrinsics.
1569         * invoke.texi:  Document option.
1570         * gfortran.h (options_t):  New member flag_all_intrinsics.
1571         * options.c (gfc_init_options, gfc_handle_option): Set new option.
1572         sort nearby misplaced options.
1573         * intrinsic.c (add_sym, make_generic, make_alias):  Use it.
1574
1575 2006-05-02 Paul Thomas <pault@gcc.gnu.org>
1576
1577         PR fortran/27269
1578         * module.c: Add static flag in_load_equiv.
1579         (mio_expr_ref): Return if no symtree and in_load_equiv.
1580         (load_equiv): If any of the equivalence members have no symtree, free
1581         the equivalence and the associated expressions.
1582
1583         PR fortran/27324
1584         * trans-common.c (gfc_trans_common): Invert the order of calls to
1585         finish equivalences and gfc_commit_symbols.
1586
1587 2006-04-29  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
1588
1589         PR fortran/25681
1590         * simplify.c (simplify_len): Character variables with constant
1591         length can be simplified.
1592
1593 2006-04-29  H.J. Lu  <hongjiu.lu@intel.com>
1594
1595         PR fortran/27351
1596         * trans-array.c (gfc_conv_array_transpose): Move gcc_assert
1597         before gfc_conv_expr_descriptor.
1598
1599 2006-04-23  Paul Thomas  <pault@gcc.gnu.org>
1600
1601         PR fortran/25099
1602         * resolve.c (resolve_call): Check conformity of elemental
1603         subroutine actual arguments.
1604
1605 2006-04-22  Jakub Jelinek  <jakub@redhat.com>
1606
1607         PR fortran/26769
1608         * iresolve.c (gfc_resolve_reshape): Use reshape_r16 for real(16).
1609         (gfc_resolve_transpose): Use transpose_r16 for real(16).
1610
1611 2006-04-21 Paul Thomas <pault@gcc.gnu.org>
1612
1613         PR fortran/27122
1614         * resolve.c (resolve_function): Remove general restriction on auto
1615         character length function interfaces.
1616         (gfc_resolve_uops): Check restrictions on defined operator
1617         procedures.
1618         (resolve_types): Call the check for defined operators.
1619
1620         PR fortran/27113
1621         * trans-array.c (gfc_trans_array_constructor_subarray): Remove
1622         redundant gfc_todo_error.
1623         (get_array_ctor_var_strlen): Remove typo in enum.
1624
1625 2006-04-18  Bernhard Fischer  <aldot@gcc.gnu.org>
1626
1627         * parse.c (next_free): Use consistent error string between
1628         free-form and fixed-form for illegal statement label of zero.
1629         (next_fixed): Use consistent warning string between free-form
1630         and fixed-form for statement labels for empty statements.
1631
1632 2006-04-18  Steve Ellcey  <sje@cup.hp.com>
1633
1634         * trans-io.c (gfc_build_io_library_fndecls): Align pad.
1635
1636 2006-04-16  Thomas Koenig  <Thomas.Koenig@online.de>
1637
1638         PR fortran/26017
1639         * trans-array.c(gfc_array_init_size):  Introduce or_expr
1640         which is true if the size along any dimension
1641         is negative.  Create a temporary variable with base
1642         name size.  If or_expr is true, set the temporary to 0,
1643         to the normal size otherwise.
1644
1645 2006-04-16  Paul Thomas  <pault@gcc.gnu.org>
1646
1647         PR fortran/26822
1648         * intrinsic.c (add_functions): Mark LOGICAL as elemental.
1649
1650         PR fortran/26787
1651         * expr.c (gfc_check_assign): Extend scope of error to include
1652         assignments to a procedure in the main program or, from a
1653         module or internal procedure that is not that represented by
1654         the lhs symbol. Use VARIABLE rather than l-value in message.
1655
1656         PR fortran/27096
1657         * trans-array.c (gfc_trans_deferred_array): If the backend_decl
1658         is not a descriptor, dereference and then test and use the type.
1659
1660         PR fortran/25597
1661         * trans-decl.c (gfc_trans_deferred_vars): Check if an array
1662         result, is also automatic character length.  If so, process
1663         the character length.
1664
1665         PR fortran/18003
1666         PR fortran/25669
1667         PR fortran/26834
1668         * trans_intrinsic.c (gfc_walk_intrinsic_bound): Set
1669         data.info.dimen for bound intrinsics.
1670         * trans_array.c (gfc_conv_ss_startstride): Pick out LBOUND and
1671         UBOUND intrinsics and supply their shape information to the ss
1672         and the loop.
1673
1674         PR fortran/27124
1675         * trans_expr.c (gfc_trans_function_call):  Add a new block, post,
1676         in to which all the argument post blocks are put.  Add this block
1677         to se->pre after a byref call or to se->post, otherwise.
1678
1679 2006-04-14  Roger Sayle  <roger@eyesopen.com>
1680
1681         * trans-io.c (set_string): Use fold_build2 and build_int_cst instead
1682         of build2 and convert to construct "x < 0" rather than "x <= -1".
1683
1684 2006-04-13  Richard Henderson  <rth@redhat.com>
1685
1686         * trans-openmp.c (gfc_trans_omp_sections): Adjust for changed
1687         number of operands to OMP_SECTIONS.
1688
1689 2006-04-08  Kazu Hirata  <kazu@codesourcery.com>
1690
1691         * gfortran.texi: Fix typos.  Follow spelling conventions.
1692         * resolve.c, trans-expr.c, trans-stmt.c: Fix comment typos.
1693         Follow spelling conventions.
1694
1695 2006-04-05  Roger Sayle  <roger@eyesopen.com>
1696
1697         * dependency.c (get_no_elements): Delete function.
1698         (get_deps): Delete function.
1699         (transform_sections): Delete function.
1700         (gfc_check_section_vs_section): Significant rewrite.
1701
1702 2006-04-04  H.J. Lu  <hongjiu.lu@intel.com>
1703
1704         PR fortran/25619
1705         * trans-array.c (gfc_conv_expr_descriptor): Only dereference
1706         character pointer when copying temporary.
1707
1708         PR fortran/23634
1709         * trans-array.c (gfc_conv_expr_descriptor): Properly copy
1710         temporary character with non constant size.
1711
1712 2006-04-03  Paul Thomas  <pault@gcc.gnu.org>
1713
1714         PR fortran/26891
1715         * trans.h: Prototype for gfc_conv_missing_dummy.
1716         * trans-expr (gfc_conv_missing_dummy): New function
1717         (gfc_conv_function_call): Call it and tidy up some of the code.
1718         * trans-intrinsic (gfc_conv_intrinsic_function_args): The same.
1719
1720         PR fortran/26976
1721         * array.c (gfc_array_dimen_size): If available, return shape[dimen].
1722         * resolve.c (resolve_function): If available, use the argument
1723         shape for the function expression.
1724         * iresolve.c (gfc_resolve_transfer): Set shape[0] = size.
1725
1726 2006-04-02  Erik Edelmann  <eedelman@gcc.gnu.org>
1727
1728         * trans-array.c (gfc_trans_dealloc_allocated): Take a
1729         tree representation of the array to be deallocated as argument
1730         instead of its gfc_symbol.
1731         (gfc_trans_deferred_array): Update call to
1732         gfc_trans_dealloc_allocated.
1733         * trans-array.h (gfc_trans_dealloc_allocated): Update
1734         prototype.
1735         * trans-expr.c (gfc_conv_function_call): Update call to
1736         gfc_trans_dealloc_allocated, get indirect reference to dummy
1737         arguments.
1738
1739 2006-04-01  Roger Sayle  <roger@eyesopen.com>
1740
1741         PR fortran/25270
1742         * trans-array.c (gfc_trans_allocate_array_storage): In array index
1743         calculations use gfc_index_zero_node and gfc_index_one_node instead
1744         of integer_zero_node and integer_one_node respectively.
1745         (gfc_conv_array_transpose): Likewise.
1746         (gfc_conv_ss_startstride): Likewise.
1747         (gfc_trans_dummy_array_bias): Likewise.
1748
1749 2006-04-01  Roger Sayle  <roger@eyesopen.com>
1750
1751         * dependency.c (gfc_is_inside_range): Delete.
1752         (gfc_check_element_vs_section): Significant rewrite.
1753
1754 2006-04-01  Roger Sayle  <roger@eyesopen.com>
1755
1756         * dependency.c (gfc_dep_compare_expr): Strip parentheses and unary
1757         plus operators when comparing expressions.  Handle comparisons of
1758         the form "X+C vs. X", "X vs. X+C", "X-C vs. X" and "X vs. X-C" where
1759         C is an integer constant.  Handle comparisons of the form "P+Q vs.
1760         R+S" and "P-Q vs. R-S".  Handle comparisons of integral extensions
1761         specially (increasing functions) so extend(A) > extend(B), when A>B.
1762         (gfc_check_element_vs_element): Move test later, so that we ignore
1763         the fact that "A < B" or "A > B" when A or B contains a forall index.
1764
1765 2006-03-31  Asher Langton  <langton2@llnl.gov>
1766
1767         PR fortran/25358
1768         * expr.c (gfc_check_assign): Allow cray pointee to be assumes-size.
1769         
1770 2006-03-30  Paul Thomas <paulthomas2@wanadoo.fr>
1771             Bud Davis  <bdavis9659@sbcglobal.net>
1772
1773         PR 21130
1774         * module.c (load_needed): Traverse entire tree before returning.
1775
1776 2006-03-30  Roger Sayle  <roger@eyesopen.com>
1777
1778         PR middle-end/22375
1779         * trans.c (gfc_trans_runtime_check): Promote the arguments of
1780         __builtin_expect to the correct types, and the result back to
1781         boolean_type_node.
1782
1783 2006-03-29  Carlos O'Donell  <carlos@codesourcery.com>
1784
1785         * Make-lang.in: Rename docdir to gcc_docdir.
1786
1787 2006-03-28  Steven G. Kargl  <kargls@comcast.net>
1788
1789         * intrinsic.texi: s/floor/float in previous commit.
1790
1791 2006-03-28 Paul Thomas <pault@gcc.gnu.org>
1792
1793         PR fortran/26779
1794         * resolve.c (resolve_fl_procedure): Do not check the access of
1795         derived types for internal procedures.
1796
1797 2006-03-27  Jakub Jelinek  <jakub@redhat.com>
1798
1799         * io.c (check_io_constraints): Don't look at
1800         dt->advance->value.charater.string, unless it is a CHARACTER
1801         constant.
1802
1803         * f95-lang.c (gfc_get_alias_set): New function.
1804         (LANG_HOOKS_GET_ALIAS_SET): Define.
1805
1806 2006-03-25  Steven G. Kargl  <kargls@comcast.net>
1807
1808         PR fortran/26816
1809         * intrinsic.c (add_functions): Allow FLOAT to accept all integer kinds.
1810         * intrinsic.texi: Document FLOAT.
1811
1812 2006-03-25  Thomas Koenig  <Thomas.Koenig@online.de>
1813
1814         PR fortran/26769
1815         * iresolve.c (gfc_resolve_reshape):  Remove doubling of
1816         kind for complex. For real(kind=10), call reshape_r10.
1817         (gfc_resolve_transpose):  For real(kind=10), call
1818         transpose_r10.
1819
1820 2006-03-25  Roger Sayle  <roger@eyesopen.com>
1821
1822         * dependency.c (gfc_check_dependency): Improve handling of pointers;
1823         Two variables of different types can't have a dependency, and two
1824         variables with the same symbol are equal, even if pointers.
1825
1826 2006-03-24  Roger Sayle  <roger@eyesopen.com>
1827
1828         * gfortran.h (gfc_symbol): Add a new "forall_index" bit field.
1829         * match.c (match_forall_iterator): Set forall_index field on
1830         the iteration variable's symbol.
1831         * dependency.c (contains_forall_index_p): New function to
1832         traverse a gfc_expr to check whether it contains a variable
1833         with forall_index set in it's symbol.
1834         (gfc_check_element_vs_element): Return GFC_DEP_EQUAL for scalar
1835         constant expressions that don't variables used as FORALL indices.
1836
1837 2006-03-22  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1838
1839         PR driver/22600
1840         * error.c (gfc_fatal_error): Return ICE_EXIT_CODE instead of 4.
1841
1842 2006-03-22  Thomas Koenig  <Thomas.Koenig@online.de>
1843
1844         PR fortran/19303
1845         * gfortran.h (gfc_option_t):  Add record_marker.
1846         * lang.opt:  Add -frecord-marker=4 and -frecord-marker=8.
1847         * trans-decl.c:  Add gfor_fndecl_set_record_marker.
1848         (gfc_build_builtin_function_decls): Set
1849         gfor_fndecl_set_record_marker.
1850         (gfc_generate_function_code):  If we are in the main program
1851         and -frecord-marker was provided, call set_record_marker.
1852         * options.c (gfc_handle_option):  Add handling for
1853         -frecord-marker=4 and -frecord-marker=8.
1854         * invoke.texi:  Document -frecord-marker.
1855
1856 2006-03-22  Paul Thomas  <pault@gcc.gnu.org>
1857
1858         PR fortran/17298
1859         * trans-intrinsic.c (gfc_conv_intrinsic_array_transfer): New
1860         function to implement array valued TRANSFER intrinsic.
1861         (gfc_conv_intrinsic_function): Call the new function if TRANSFER
1862         and non-null se->ss.
1863         (gfc_walk_intrinsic_function): Treat TRANSFER as one of the
1864         special cases by calling gfc_walk_intrinsic_libfunc directly.
1865
1866 2006-03-21  Toon Moene  <toon@moene.indiv.nluug.nl>
1867
1868         * options.c (gfc_init_options): Initialize
1869         flag_argument_noalias to 3.
1870
1871 2006-03-20  Thomas Koenig  <Thomas.Koenig@online.de>
1872
1873         PR fortran/20935
1874         * iresolve.c (gfc_resolve_maxloc):   If mask is scalar,
1875         prefix the function name with an "s".  If the mask is scalar
1876         or if its kind is smaller than gfc_default_logical_kind,
1877         coerce it to default kind.
1878         (gfc_resolve_maxval):  Likewise.
1879         (gfc_resolve_minloc):  Likewise.
1880         (gfc_resolve_minval):  Likewise.
1881         (gfc_resolve_product):  Likewise.
1882         (gfc_resolve_sum):  Likewise.
1883
1884 2006-03-19  Paul Thomas  <pault@gcc.gnu.org>
1885
1886         PR fortran/26741
1887         *expr.c (external_spec_function): Permit elemental functions.
1888
1889         PR fortran/26716
1890         *interface.c (compare_actual_formal): Detect call for procedure
1891         usage and require rank checking, in this case, for assumed shape
1892         and deferred shape arrays.
1893         (gfc_procedure_use): Revert to pre-PR25070 call to
1894         compare_actual_formal that does not require rank checking..
1895
1896 2006-03-16  Roger Sayle  <roger@eyesopen.com>
1897
1898         * gfortran.h (gfc_equiv_info): Add length field.
1899         * trans-common.c (copy_equiv_list_to_ns): Set the length field.
1900         * dependency.c (gfc_are_equivalenced_arrays): Use both the offset
1901         and length fields to determine whether the two equivalenced symbols
1902         overlap in memory.
1903
1904 2006-03-14  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
1905
1906         PR fortran/19101
1907         * gfortran.h: Add warn_ampersand.
1908         * invoke.texi: Add documentation for new option.
1909         * lang.opt: Add Wampersand.
1910         * options.c (gfc_init_options): Initialize warn_ampersand.
1911         (gfc_post_options): Set the warn if pedantic.
1912         (set_Wall): Set warn_ampersand.
1913         (gfc_handle_option: Add Wampersand for itself, -std=f95, and -std=f2003.
1914         * scanner.c (gfc_next_char_literal): Add test for missing '&' in
1915         continued character constant and give warning if missing.
1916
1917 2006-03-14  Steven G. Kargl  <kargls@comcast.net>
1918
1919         PR 18537
1920         * gfortran.h: Wrap Copyright line.
1921         (gfc_option_t): add warn_tabs member.
1922         * lang.opt: Update Coyright year.  Add the Wtabs.
1923         * invoke.texi: Document -Wtabs.
1924         * scanner.c (gfc_gobble_whitespace): Use warn_tabs.  Add linenum to
1925         suppress multiple warnings.
1926         (load_line): Use warn_tabs.  Add linenum, current_line, seen_comment
1927         to suppress multiple warnings.
1928         * options.c (gfc_init_options): Initialize warn_tabs.
1929         (set_Wall): set warn_tabs for -Wall.
1930         (gfc_post_options): Adjust flag_tabs depending on -pedantic.
1931         (gfc_handle_option):  Process command-line option -W[no-]tabs
1932
1933 2006-03-13  Paul Thomas  <pault@gcc.gnu.org>
1934
1935         PR fortran/25378
1936         * trans-intrinsic.c (gfc_conv_intrinsic_minmaxloc): Set the initial position to zero and
1937         modify the condition for updating it, to implement the F2003 requirement for all(mask)
1938         is false.
1939
1940 2006-03-13  Jakub Jelinek  <jakub@redhat.com>
1941
1942         * trans-openmp.c (gfc_trans_omp_variable): Handle references
1943         to parent result.
1944         * trans-expr.c (gfc_conv_variable): Remove useless setting
1945         of parent_flag, formatting.
1946
1947         * trans-decl.c (gfc_get_fake_result_decl): Re-add setting of
1948         GFC_DECL_RESULT flag.
1949
1950 2003-03-11  Roger Sayle  <roger@eyesopen.com>
1951
1952         * dependency.c (gfc_dep_compare_expr) <EXPR_OP>: Allow unary and
1953         binary operators to compare equal if their operands are equal.
1954         <EXPR_FUNCTION>: Allow "constant" intrinsic conversion functions
1955         to compare equal, if their operands are equal.
1956
1957 2006-03-11  Erik Edelmann  <eedelman@gcc.gnu.org>
1958
1959         * symbol.c (check_conflict): Allow allocatable function results,
1960         except for elemental functions.
1961         * trans-array.c (gfc_trans_allocate_temp_array): Rename to ...
1962         (gfc_trans_create_temp_array): ... this, and add new argument
1963         callee_alloc.
1964         (gfc_trans_array_constructor, gfc_conv_loop_setup): Update call
1965         to gfc_trans_allocate_temp_array.
1966         * trans-array.h (gfc_trans_allocate_temp_array): Update prototype.
1967         * trans-expr.c (gfc_conv_function_call): Use new arg of
1968         gfc_trans_create_temp_array avoid pre-allocation of temporary
1969         result variables of pointer AND allocatable functions.
1970         (gfc_trans_arrayfunc_assign): Return NULL for allocatable
1971         functions.
1972         * resolve.c (resolve_symbol): Copy value of 'allocatable' attribute
1973         from sym->result to sym.
1974
1975 2006-03-09  Erik Edelmann  <eedelman@gcc.gnu.org>
1976
1977         * trans-expr.c (gfc_add_interface_mapping): Copy 'allocatable'
1978         attribute from sym to new_sym.  Call build_fold_indirect_ref()
1979         for allocatable arguments.
1980
1981 2006-03-09 Paul Thomas <pault@gcc.gnu.org>
1982
1983         PR fortran/26257
1984         * trans-array.c (gfc_conv_expr_descriptor): Exclude calculation of
1985         the offset and data when se->data_not_needed is set.
1986         * trans.h: Include the data_not_need bit in gfc_se.
1987         * trans-intrinsic.c (gfc_conv_intrinsic_size): Set it for SIZE.
1988
1989 2006-03-06  Paul Thomas  <pault@gcc.gnu.org>
1990             Erik Edelmann  <eedelman@gcc.gnu.org>
1991
1992         * trans-array.c (gfc_trans_dealloc_allocated): New function.
1993         (gfc_trans_deferred_array): Use it, instead of inline code.
1994         * trans-array.h: Prototype for gfc_trans_dealloc_allocated().
1995         * trans-expr.c (gfc_conv_function_call): Deallocate allocated
1996         ALLOCATABLE, INTENT(OUT) arguments upon procedure entry.
1997
1998 2006-03-06  Paul Thomas  <pault@gcc.gnu.org>
1999
2000         PR fortran/26107
2001         * resolve.c (resolve_function): Add name after test for pureness.
2002
2003         PR fortran/19546
2004         * trans-expr.c (gfc_conv_variable): Detect reference to parent result,
2005         store current_function_decl, replace with parent, whilst calls are
2006         made to gfc_get_fake_result_decl, and restore afterwards. Signal this
2007         to gfc_get_fake_result_decl with a new argument, parent_flag.
2008         * trans-stmt.c (gfc_trans_return): gfc_get_fake_result_decl 2nd arg
2009         is set to zero.
2010         * trans.h: Add parent_flag to gfc_get_fake_result_decl prototype.
2011         * trans-decl.c (gfc_get_fake_result_decl): On parent_flag, being set,
2012         add decl to parent function. Replace refs to current_fake_result_decl
2013         with refs to this_result_decl.
2014         (gfc_generate_function_code): Null parent_fake_result_decl before the
2015         translation of code for contained procedures. Set parent_flag to zero
2016         in call to gfc_get_fake_result_decl.
2017         * trans-intrinsic.c (gfc_conv_intrinsic_len): The same.
2018
2019 2006-03-05  Steven G. Kargl  <kargls@comcast.net>
2020
2021         * simplify.c (gfc_simplify_verify):  Fix return when SET=''.
2022
2023 2006-03-05  Erik Edelmann  <eedelman@gcc.gnu.org>
2024
2025         PR fortran/16136
2026         * symbol.c (conf_std): New macro.
2027         (check_conflict): Use it to allow ALLOCATABLE dummy
2028         arguments for F2003.
2029         * trans-expr.c (gfc_conv_function_call): Pass the
2030         address of the array descriptor when dummy argument is
2031         ALLOCATABLE.
2032         * interface.c (compare_allocatable): New function.
2033         (compare_actual_formal): Use it.
2034         * resolve.c (resolve_deallocate_expr,
2035         resolve_allocate_expr): Check that INTENT(IN) variables
2036         aren't (de)allocated.
2037         * gfortran.texi (Fortran 2003 status): List ALLOCATABLE
2038         dummy arguments as supported.
2039
2040 2006-03-03  Roger Sayle  <roger@eyesopen.com>
2041
2042         * dependency.c (gfc_check_element_vs_element): Revert last change.
2043
2044 2006-03-03  Roger Sayle  <roger@eyesopen.com>
2045
2046         * dependency.c (gfc_check_element_vs_element): Consider two
2047         unordered scalar subscripts as (potentially) equal.
2048
2049 2006-03-03  Roger Sayle  <roger@eyesopen.com>
2050
2051         * dependency.c (gfc_check_dependency): Call gfc_dep_resolver to
2052         check whether two array references have a dependency.
2053         (gfc_check_element_vs_element): Assume lref and rref must be
2054         REF_ARRAYs.  If gfc_dep_compare_expr returns -2, assume these
2055         references could potentially overlap.
2056         (gfc_dep_resolver): Whitespace and comment tweaks.  Assume a
2057         dependency if the references have different depths.  Rewrite
2058         final term to clarrify we only have a dependency for overlaps.
2059
2060 2006-03-03  Thomas Koenig  <Thomas.Koenig@online.de>
2061
2062         PR fortran/25031
2063         * trans-array.h:  Adjust gfc_array_allocate prototype.
2064         * trans-array.c (gfc_array_allocate):  Change type of
2065         gfc_array_allocatate to bool.  Function returns true if
2066         it operates on an array.  Change second argument to gfc_expr.
2067         Find last reference in chain.
2068         If the function operates on an allocatable array, emit call to
2069         allocate_array() or allocate64_array().
2070         * trans-stmt.c (gfc_trans_allocate):  Code to follow to last
2071         reference has been moved to gfc_array_allocate.
2072         * trans.h:  Add declaration for gfor_fndecl_allocate_array and
2073         gfor_fndecl_allocate64_array.
2074         (gfc_build_builtin_function_decls):  Add gfor_fndecl_allocate_array
2075         and gfor_fndecl_allocate64_array.
2076
2077 2006-03-01  Roger Sayle  <roger@eyesopen.com>
2078
2079         * trans-stmt.c (generate_loop_for_temp_to_lhs): Add an additional
2080         INVERT argument to invert the sense of the WHEREMASK argument.
2081         Remove unneeded code to AND together a list of masks.
2082         (generate_loop_for_rhs_to_temp): Likewise.
2083         (gfc_trans_assign_need_temp): Likewise.
2084         (gfc_trans_forall_1): Likewise.
2085         (gfc_evaluate_where_mask): Likewise, add a new INVERT argument
2086         to specify the sense of the MASK argument.
2087         (gfc_trans_where_assign): Likewise.
2088         (gfc_trans_where_2): Likewise.  Restructure code that decides
2089         whether we need to allocate zero, one or two temporary masks.
2090         If this is a top-level WHERE (i.e. the incoming MASK is NULL),
2091         we only need to allocate at most one temporary mask, and can
2092         invert it's sense to provide the complementary pending execution
2093         mask.  Only calculate the size of the required temporary arrays
2094         if we need any.
2095         (gfc_trans_where): Update call to gfc_trans_where_2.
2096
2097 2006-03-01  Paul Thomas  <pault@gcc.gnu.org>
2098
2099         * iresolve.c (gfc_resolve_dot_product):  Remove any difference in
2100         treatment of logical types.
2101         * trans-intrinsic.c (gfc_conv_intrinsic_dot_product):  New function. 
2102
2103         PR fortran/26393
2104         * trans-decl.c (gfc_get_symbol_decl): Extend condition that symbols
2105         must be referenced to include unreferenced symbols in an interface
2106         body. 
2107
2108         PR fortran/20938
2109         * trans-array.c (gfc_conv_resolve_dependencies): Add call to
2110         gfc_are_equivalenced_arrays.
2111         * symbol.c (gfc_free_equiv_infos, gfc_free_equiv_lists): New
2112         functions. (gfc_free_namespace): Call them.
2113         * trans-common.c (copy_equiv_list_to_ns): New function.
2114         (add_equivalences): Call it.
2115         * gfortran.h: Add equiv_lists to gfc_namespace and define
2116         gfc_equiv_list and gfc_equiv_info.
2117         * dependency.c (gfc_are_equivalenced_arrays): New function.
2118         (gfc_check_dependency): Call it.
2119         * dependency.h: Prototype for gfc_are_equivalenced_arrays.
2120
2121 2006-03-01  Roger Sayle  <roger@eyesopen.com>
2122
2123         * dependency.c (gfc_is_same_range): Compare the stride, lower and
2124         upper bounds when testing array reference ranges for equality.
2125         (gfc_check_dependency): Fix indentation whitespace.
2126         (gfc_check_element_vs_element): Likewise.
2127         (gfc_dep_resolver): Likewise.
2128
2129 2006-02-28  Thomas Koenig  <Thomas.Koenig@online.de>
2130
2131         * trans-intrinsic.c (gfc_conv_intrinsic_minmaxloc):
2132         If the mask expression exists and has rank 0, enclose the
2133         generated loop in an "if (mask)".  Put the default
2134         initialization into the else branch.
2135
2136 2006-02-25  Thomas Koenig  <Thomas.Koenig@online.de>
2137
2138         PR fortran/23092
2139         * trans-intrinsic.c (gfc_conv_intrinsic_arith):  If the
2140         mask expression exists and has rank 0, enclose the generated
2141         loop in an "if (mask)".
2142         * (gfc_conv_intrinsic_minmaxloc):  Likewise.
2143
2144 2006-02-24  Paul Thomas  <pault@gcc.gnu.org>
2145
2146         PR fortran/26409
2147         * resolve.c (resolve_contained_functions, resolve_types,
2148         gfc_resolve): Revert patch of 2006-02-19.
2149
2150 2006-02-24  Paul Thomas  <pault@gcc.gnu.org>
2151
2152         PR fortran/24519
2153         * dependency.c (gfc_is_same_range): Correct typo.
2154         (gfc_check_section_vs_section): Call gfc_is_same_range.
2155
2156         PR fortran/25395
2157         * trans-common.c (add_equivalences): Add a new flag that is set when
2158         an equivalence is seen that prevents more from being reset until the
2159         start of a new traversal of the list, thus ensuring completion of
2160         all the equivalences.
2161
2162 2006-02-23  Erik Edelmann  <eedelman@gcc.gnu.org>
2163
2164         * module.c (read_module): Remove redundant code lines.
2165
2166 2006-02-20 Rafael \81Ávila de Esp\81índola <rafael.espindola@gmail.com>
2167         * Make-lang.in (FORTRAN): Remove
2168         (.PHONY): Remove F95 and f95. Add fortran
2169
2170 2006-02-20  Roger Sayle  <roger@eyesopen.com>
2171
2172         * trans-stmt.c (gfc_trans_where_2): Avoid updating unused current
2173         execution mask for empty WHERE/ELSEWHERE clauses.  Don't allocate
2174         temporary mask arrays if they won't be used.
2175
2176 2006-02-20  Roger Sayle  <roger@eyesopen.com>
2177
2178         * trans-stmt.c (gfc_trans_where_assign): Remove code to handle
2179         traversing a linked list of MASKs.  The MASK is now always a
2180         single element requiring no ANDing during the assignment.
2181
2182 2006-02-19  Thomas Koenig  <Thomas.Koenig@online.de>
2183
2184         * gfortran.texi:  Document environment variables which
2185         influence runtime behavior.
2186
2187 2006-02-19  H.J. Lu  <hongjiu.lu@intel.com>
2188
2189         * resolve.c (resolve_contained_functions): Call resolve_entries
2190         first.
2191         (resolve_types): Remove calls to resolve_entries and
2192         resolve_contained_functions.
2193         (gfc_resolve): Call resolve_contained_functions.
2194
2195 2006-02-19  Erik Edelmann  <eedelman@gcc.gnu.org>
2196
2197         PR fortran/26201
2198         * intrinsic.c (gfc_convert_type_warn): Call
2199         gfc_intrinsic_symbol() on the newly created symbol.
2200
2201 2006-02-19  Paul Thomas  <pault@gcc.gnu.org>
2202
2203         PR fortran/25054
2204         * resolve.c (is_non_constant_shape_array): New function.
2205         (resolve_fl_variable): Remove code for the new function and call it.
2206         (resolve_fl_namelist): New function.  Add test for namelist array
2207         with non-constant shape, using is_non_constant_shape_array.
2208         (resolve_symbol): Remove code for resolve_fl_namelist and call it.
2209
2210         PR fortran/25089
2211         * match.c (match_namelist): Increment the refs field of an accepted
2212         namelist object symbol.
2213         * resolve.c (resolve_fl_namelist): Test namelist objects for a conflict
2214         with contained or module procedures.
2215
2216 2006-02-18  Roger Sayle  <roger@eyesopen.com>
2217
2218         * trans-stmt.c (struct temporary_list): Delete.
2219         (gfc_trans_where_2): Major reorganization.  Remove no longer needed
2220         TEMP argument.  Allocate and deallocate the control mask and
2221         pending control mask locally.
2222         (gfc_trans_forall_1): Delete TEMP local variable, and update
2223         call to gfc_trans_where_2.  No need to deallocate arrays after.
2224         (gfc_evaluate_where_mask): Major reorganization.  Change return
2225         type to void.  Pass in parent execution mask, MASK, and two
2226         already allocated mask arrays CMASK and PMASK.  On return
2227         CMASK := MASK & COND, PMASK := MASK & !COND.  MASK, CMASK and
2228         CMASK may all be NULL, or refer to the same temporary arrays.
2229         (gfc_trans_where): Update call to gfc_trans_where_2.  We no
2230         longer need a TEMP variable or to deallocate temporary arrays
2231         allocated by gfc_trans_where_2.
2232
2233 2006-02-18   Danny Smith  <dannysmith@users.sourceforeg.net>
2234
2235         * gfortran.h (gfc_add_attribute): Change uint to unsigned int.
2236         * symbol.c (gfc_add_attribute): Likewise for definition.
2237         * resolve.c (resolve_global_procedure): Likewise for variable 'type'.
2238
2239 2006-02-17  Richard Sandiford  <richard@codesourcery.com>
2240
2241         * trans-common.c: Include rtl.h earlier.
2242         * trans-decl.c: Likewise.
2243
2244 2006-02-16  Jakub Jelinek  <jakub@redhat.com>
2245
2246         PR fortran/26224
2247         * parse.c (parse_omp_do, parse_omp_structured_block): Call
2248         gfc_commit_symbols and gfc_warning_check.
2249
2250         * openmp.c (resolve_omp_clauses): Add a dummy case label to workaround
2251         PR middle-end/26316.
2252
2253 2006-02-16  Paul Thomas  <pault@gcc.gnu.org>
2254
2255         PR fortran/24557
2256         * trans-expr.c (gfc_add_interface_mapping): Use the actual argument
2257         for character(*) arrays, rather than casting to the type and kind
2258         parameters of the formal argument.
2259
2260 2006-02-15  Toon Moene  <toon@moene.indiv.nluug.nl>
2261
2262         PR fortran/26054
2263         * options.c: Do not warn for Fortran 2003 features by default.
2264
2265 2006-02-15  Tobias Schl\81üter  <tobias.schlueter@physik.uni-muenchen.de>
2266
2267         * check.c: Update copyright years.
2268         
2269         * check.c (gfc_check_minloc_maxloc, check_reduction): Don't call
2270         dim_range_check on not-present optional dim argument.
2271
2272 2006-02-15  Jakub Jelinek  <jakub@redhat.com>
2273
2274         PR libgomp/25938
2275         PR libgomp/25984
2276         * Make-lang.in (install-finclude-dir): New goal.
2277         (fortran.install-common): Depend on install-finclude-dir.
2278         * lang-specs.h: If not -nostdinc, add -I finclude.
2279
2280 2006-02-14  Thomas Koenig  <Thomas.Koenig@online.de>
2281
2282         PR fortran/25045
2283         * check.c (dim_check):  Perform all checks if dim is optional.
2284         (gfc_check_minloc_maxloc):  Use dim_check and dim_rank_check
2285         to check dim argument.
2286         (check_reduction):  Likewise.
2287
2288 2006-02-14  Tobias Schl\81üter  <tobias.schlueter@physik.uni-muenchen.de>
2289
2290         PR fortran/26277
2291         * io.c (match_ltag): Mark label as referenced.
2292
2293 2006-02-14  Jakub Jelinek  <jakub@redhat.com>
2294             Richard Henderson  <rth@redhat.com>
2295             Diego Novillo  <dnovillo@redhat.com>
2296
2297         * invoke.texi: Document -fopenmp.
2298         * gfortran.texi (Extensions): Document OpenMP.
2299
2300         Backport from gomp-20050608-branch
2301         * trans-openmp.c: Call build_omp_clause instead of
2302         make_node when creating OMP_CLAUSE_* trees.
2303         (gfc_trans_omp_reduction_list): Remove argument 'code'.
2304         Adjust all callers.
2305
2306         * trans.h (build4_v): Define.
2307         * trans-openmp.c: Call build4_v to create OMP_PARALLEL nodes.
2308         Call build3_v to create OMP_SECTIONS nodes.
2309
2310         PR fortran/25162
2311         * openmp.c (gfc_match_omp_variable_list): Call gfc_set_sym_referenced
2312         on all symbols added to the variable list.
2313
2314         * openmp.c (gfc_match_omp_clauses): Fix check for non-INTRINSIC
2315         procedure symbol in REDUCTION.
2316
2317         * trans-openmp.c (gfc_trans_omp_array_reduction): Use gfc_add
2318         for MINUS_EXPR OMP_CLAUSE_REDUCTION_CODE.
2319
2320         * trans-openmp.c (gfc_trans_omp_do): Add PBLOCK argument.  If PBLOCK
2321         is non-NULL, evaluate INIT/COND/INCR and chunk size expressions in
2322         that statement block.
2323         (gfc_trans_omp_parallel_do): Pass non-NULL PBLOCK to gfc_trans_omp_do
2324         for non-ordered non-static combined loops.
2325         (gfc_trans_omp_directive): Pass NULL PBLOCK to gfc_trans_omp_do.
2326
2327         * openmp.c: Include target.h and toplev.h.
2328         (gfc_match_omp_threadprivate): Emit diagnostic if target does
2329         not support TLS.
2330         * Make-lang.in (fortran/openmp.o): Add dependencies on
2331         target.h and toplev.h.
2332
2333         * trans-decl.c (gfc_get_fake_result_decl): Set GFC_DECL_RESULT.
2334         * trans-openmp.c (gfc_omp_privatize_by_reference): Make
2335         DECL_ARTIFICIAL vars predetermined shared except GFC_DECL_RESULT.
2336         (gfc_omp_disregard_value_expr): Handle GFC_DECL_RESULT.
2337         (gfc_trans_omp_variable): New function.
2338         (gfc_trans_omp_variable_list, gfc_trans_omp_reduction_list): Use it.
2339         * trans.h (GFC_DECL_RESULT): Define.
2340
2341         * trans-openmp.c (gfc_omp_firstprivatize_type_sizes): New function.
2342         * f95-lang.c (LANG_HOOKS_OMP_FIRSTPRIVATIZE_TYPE_SIZES): Define.
2343         * trans.h (gfc_omp_firstprivatize_type_sizes): New prototype.
2344
2345         * trans-openmp.c (gfc_omp_privatize_by_reference): Return
2346         true if a pointer has GFC_DECL_SAVED_DESCRIPTOR set.
2347         (gfc_trans_omp_array_reduction, gfc_trans_omp_reduction_list): New
2348         functions.
2349         (gfc_trans_omp_clauses): Add WHERE argument.  Call
2350         gfc_trans_omp_reduction_list rather than gfc_trans_omp_variable_list
2351         for reductions.
2352         (gfc_trans_omp_do, gfc_trans_omp_parallel, gfc_trans_omp_parallel_do,
2353         gfc_trans_omp_parallel_sections, gfc_trans_omp_parallel_workshare,
2354         gfc_trans_omp_sections, gfc_trans_omp_single): Adjust
2355         gfc_trans_omp_clauses callers.
2356
2357         * openmp.c (omp_current_do_code): New var.
2358         (gfc_resolve_omp_do_blocks): New function.
2359         (gfc_resolve_omp_parallel_blocks): Call it.
2360         (gfc_resolve_do_iterator): Add CODE argument.  Don't propagate
2361         predetermination if argument is !$omp do or !$omp parallel do
2362         iteration variable.
2363         * resolve.c (resolve_code): Call gfc_resolve_omp_do_blocks
2364         for EXEC_OMP_DO.  Adjust gfc_resolve_do_iterator caller.
2365         * fortran.h (gfc_resolve_omp_do_blocks): New prototype.
2366         (gfc_resolve_do_iterator): Add CODE argument.
2367
2368         * trans.h (gfc_omp_predetermined_sharing,
2369         gfc_omp_disregard_value_expr, gfc_omp_private_debug_clause): New
2370         prototypes.
2371         (GFC_DECL_COMMON_OR_EQUIV, GFC_DECL_CRAY_POINTEE): Define.
2372         * trans-openmp.c (gfc_omp_predetermined_sharing,
2373         gfc_omp_disregard_value_expr, gfc_omp_private_debug_clause): New
2374         functions.
2375         * trans-common.c (build_equiv_decl, build_common_decl,
2376         create_common): Set GFC_DECL_COMMON_OR_EQUIV flag on the decls.
2377         * trans-decl.c (gfc_finish_cray_pointee): Set GFC_DECL_CRAY_POINTEE
2378         on the decl.
2379         * f95-lang.c (LANG_HOOKS_OMP_PREDETERMINED_SHARING,
2380         LANG_HOOKS_OMP_DISREGARD_VALUE_EXPR,
2381         LANG_HOOKS_OMP_PRIVATE_DEBUG_CLAUSE): Define.
2382
2383         * openmp.c (resolve_omp_clauses): Remove extraneous comma.
2384
2385         * symbol.c (check_conflict): Add conflict between cray_pointee and
2386         threadprivate.
2387         * openmp.c (gfc_match_omp_threadprivate): Fail if
2388         gfc_add_threadprivate returned FAILURE.
2389         (resolve_omp_clauses): Diagnose Cray pointees in SHARED,
2390         {,FIRST,LAST}PRIVATE and REDUCTION clauses and Cray pointers in
2391         {FIRST,LAST}PRIVATE and REDUCTION clauses.
2392
2393         * resolve.c (omp_workshare_flag): New variable.
2394         (resolve_function): Diagnose use of non-ELEMENTAL user defined
2395         function in WORKSHARE construct.
2396         (resolve_code): Cleanup forall_save use.  Make sure omp_workshare_flag
2397         is set to correct value in different contexts.
2398
2399         * openmp.c (resolve_omp_clauses): Replace %s with '%s' when printing
2400         variable name.
2401         (resolve_omp_atomic): Likewise.
2402
2403         PR fortran/24493
2404         * scanner.c (skip_free_comments): Set at_bol at the beginning of the
2405         loop, not before it.
2406         (skip_fixed_comments): Handle ! comments in the middle of line here
2407         as well.
2408         (gfc_skip_comments): Use skip_fixed_comments for FIXED_FORM even if
2409         not at BOL.
2410         (gfc_next_char_literal): Fix expected canonicalized *$omp string.
2411
2412         * trans-openmp.c (gfc_trans_omp_do): Use make_node and explicit
2413         initialization to build OMP_FOR instead of build.
2414
2415         * trans-decl.c (gfc_gimplify_function): Invoke
2416         diagnose_omp_structured_block_errors.
2417
2418         * trans-openmp.c (gfc_trans_omp_master): Use OMP_MASTER.
2419         (gfc_trans_omp_ordered): Use OMP_ORDERED.
2420
2421         * gfortran.h (gfc_resolve_do_iterator, gfc_resolve_blocks,
2422         gfc_resolve_omp_parallel_blocks): New prototypes.
2423         * resolve.c (resolve_blocks): Renamed to...
2424         (gfc_resolve_blocks): ... this.  Remove static.
2425         (gfc_resolve_forall): Adjust caller.
2426         (resolve_code): Only call gfc_resolve_blocks if code->block != 0
2427         and not for EXEC_OMP_PARALLEL* directives.  Call
2428         gfc_resolve_omp_parallel_blocks for EXEC_OMP_PARALLEL* directives.
2429         Call gfc_resolve_do_iterator if resolved successfully EXEC_DO
2430         iterator.
2431         * openmp.c: Include pointer-set.h.
2432         (omp_current_ctx): New variable.
2433         (gfc_resolve_omp_parallel_blocks, gfc_resolve_do_iterator): New
2434         functions.
2435         * Make-lang.in (fortran/openmp.o): Depend on pointer-set.h.
2436
2437         * openmp.c (gfc_match_omp_clauses): For max/min/iand/ior/ieor,
2438         look up symbol if it exists, use its name instead and, if it is not
2439         INTRINSIC, issue diagnostics.
2440
2441         * parse.c (parse_omp_do): Handle implied end do properly.
2442         (parse_executable): If parse_omp_do returned ST_IMPLIED_ENDDO,
2443         return it instead of continuing.
2444
2445         * trans-openmp.c (gfc_trans_omp_critical): Update for changed
2446         operand numbering.
2447         (gfc_trans_omp_do, gfc_trans_omp_parallel, gfc_trans_omp_parallel_do,
2448         gfc_trans_omp_parallel_sections, gfc_trans_omp_parallel_workshare,
2449         gfc_trans_omp_sections, gfc_trans_omp_single): Likewise.
2450
2451         * trans.h (gfc_omp_privatize_by_reference): New prototype.
2452         * f95-lang.c (LANG_HOOKS_OMP_PRIVATIZE_BY_REFERENCE): Redefine
2453         to gfc_omp_privatize_by_reference.
2454         * trans-openmp.c (gfc_omp_privatize_by_reference): New function.
2455
2456         * trans-stmt.h (gfc_trans_omp_directive): Add comment.
2457
2458         * openmp.c (gfc_match_omp_variable_list): Add ALLOW_COMMON argument.
2459         Disallow COMMON matching if it is set.
2460         (gfc_match_omp_clauses, gfc_match_omp_flush): Adjust all callers.
2461         (resolve_omp_clauses): Show locus in error messages.  Check that
2462         variable types in reduction clauses are appropriate for reduction
2463         operators.
2464
2465         * resolve.c (resolve_symbol): Don't error if a threadprivate module
2466         variable isn't SAVEd.
2467
2468         * trans-openmp.c (gfc_trans_omp_do): Put count into BLOCK, not BODY.
2469         Fix typo in condition.  Fix DOVAR initialization.
2470
2471         * openmp.c (gfc_match_omp_clauses): Match min/iand/ior/ieor
2472         rather than .min. etc.
2473
2474         * trans-openmpc.c (omp_not_yet): Remove.
2475         (gfc_trans_omp_parallel_do): Keep listprivate clause on parallel.
2476         Force creation of BIND_EXPR around the workshare construct.
2477         (gfc_trans_omp_parallel_sections): Likewise.
2478         (gfc_trans_omp_parallel_workshare): Likewise.
2479
2480         * types.def (BT_I16, BT_FN_I16_VPTR_I16,
2481         BT_FN_BOOL_VPTR_I16_I16, BT_FN_I16_VPTR_I16_I16): Add.
2482
2483         * trans-openmp.c (gfc_trans_omp_clauses): Create OMP_CLAUSE_DEFAULT.
2484         (gfc_trans_omp_code): New function.
2485         (gfc_trans_omp_do): Use it, remove omp_not_yet uses.
2486         (gfc_trans_omp_parallel, gfc_trans_omp_single): Likewise.
2487         (gfc_trans_omp_sections): Likewise.  Only treat empty last section
2488         specially if lastprivate clause is present.
2489         * f95-lang.c (gfc_init_builtin_functions): Create BUILT_IN_TRAP
2490         builtin.
2491
2492         * trans-openmp.c (gfc_trans_omp_variable_list): Update for
2493         OMP_CLAUSE_DECL name change.
2494         (gfc_trans_omp_do): Likewise.
2495
2496         * trans-openmp.c (gfc_trans_omp_clauses): Create OMP_CLAUSE_REDUCTION
2497         clauses.
2498         (gfc_trans_omp_atomic): Build OMP_ATOMIC instead of expanding
2499         sync builtins directly.
2500         (gfc_trans_omp_single): Build OMP_SINGLE statement.
2501
2502         * trans-openmp.c (gfc_trans_add_clause): New.
2503         (gfc_trans_omp_variable_list): Take a tree code and build the clause
2504         node here.  Link it to the head of a list.
2505         (gfc_trans_omp_clauses): Update to match.
2506         (gfc_trans_omp_do): Use gfc_trans_add_clause.
2507
2508         * trans-openmp.c (gfc_trans_omp_clauses): Change second argument to
2509         gfc_omp_clauses *.  Use gfc_evaluate_now instead of creating
2510         temporaries by hand.
2511         (gfc_trans_omp_atomic, gfc_trans_omp_critical): Use buildN_v macros.
2512         (gfc_trans_omp_do): New function.
2513         (gfc_trans_omp_master): Dont' check for gfc_trans_code returning NULL.
2514         (gfc_trans_omp_parallel): Adjust gfc_trans_omp_clauses caller.
2515         Use buildN_v macros.
2516         (gfc_trans_omp_parallel_do, gfc_trans_omp_parallel_sections,
2517         gfc_trans_omp_parallel_workshare, gfc_trans_omp_sections,
2518         gfc_trans_omp_single, gfc_trans_omp_workshare): New functions.
2519         (gfc_trans_omp_directive): Use them.
2520         * parse.c (parse_omp_do): Allow new_st.op == EXEC_NOP.
2521         * openmp.c (resolve_omp_clauses): Check for list items present
2522         in multiple clauses.
2523         (resolve_omp_do): Check that iteration variable is not THREADPRIVATE
2524         and is not present in any clause variable lists other than PRIVATE
2525         or LASTPRIVATE.
2526
2527         * gfortran.h (symbol_attribute): Add threadprivate bit.
2528         (gfc_common_head): Add threadprivate member, change use_assoc
2529         and saved into char to save space.
2530         (gfc_add_threadprivate): New prototype.
2531         * symbol.c (check_conflict): Handle threadprivate.
2532         (gfc_add_threadprivate): New function.
2533         (gfc_copy_attr): Copy threadprivate.
2534         * trans-openmp.c (gfc_trans_omp_clauses): Avoid creating a temporary
2535         if IF or NUM_THREADS is constant.  Create OMP_CLAUSE_SCHEDULE and
2536         OMP_CLAUSE_ORDERED.
2537         * resolve.c (resolve_symbol): Complain if a THREADPRIVATE symbol
2538         outside a module and not in COMMON has is not SAVEd.
2539         (resolve_equivalence): Ensure THREADPRIVATE objects don't get
2540         EQUIVALENCEd.
2541         * trans-common.c: Include target.h and rtl.h.
2542         (build_common_decl): Set DECL_TLS_MODEL if THREADPRIVATE.
2543         * trans-decl.c: Include rtl.h.
2544         (gfc_finish_var_decl): Set DECL_TLS_MODEL if THREADPRIVATE.
2545         * dump-parse-tree.c (gfc_show_attr): Handle THREADPRIVATE.
2546         * Make-lang.in (fortran/trans-decl.o): Depend on $(RTL_H).
2547         (fortran/trans-common.o): Depend on $(RTL_H) and $(TARGET_H).
2548         * openmp.c (gfc_match_omp_variable_list): Ensure COMMON block
2549         is from current namespace.
2550         (gfc_match_omp_threadprivate): Rewrite.
2551         (resolve_omp_clauses): Check some clause restrictions.
2552         * module.c (ab_attribute): Add AB_THREADPRIVATE.
2553         (attr_bits): Add THREADPRIVATE.
2554         (mio_symbol_attribute, mio_symbol_attribute): Handle threadprivate.
2555         (load_commons, write_common, write_blank_common): Adjust for type
2556         change of saved, store/load threadprivate bit from the integer
2557         as well.
2558
2559         * types.def (BT_FN_UINT_UINT): New.
2560         (BT_FN_VOID_UINT_UINT): Remove.
2561
2562         * trans-openmp.c (gfc_trans_omp_clauses, gfc_trans_omp_barrier,
2563         gfc_trans_omp_critical, gfc_trans_omp_flush, gfc_trans_omp_master,
2564         gfc_trans_omp_ordered, gfc_trans_omp_parallel): New functions.
2565         (gfc_trans_omp_directive): Use them.
2566
2567         * openmp.c (expr_references_sym): Add SE argument, don't look
2568         into SE tree.
2569         (is_conversion): New function.
2570         (resolve_omp_atomic): Adjust expr_references_sym callers.  Handle
2571         promoted expressions.
2572         * trans-openmp.c (gfc_trans_omp_atomic): New function.
2573         (gfc_trans_omp_directive): Call it.
2574
2575         * f95-lang.c (builtin_type_for_size): New function.
2576         (gfc_init_builtin_functions): Initialize synchronization and
2577         OpenMP builtins.
2578         * types.def: New file.
2579         * Make-lang.in (f95-lang.o): Depend on $(BUILTINS_DEF) and
2580         fortran/types.def.
2581
2582         * trans-openmp.c: Rename GOMP_* tree codes into OMP_*.
2583
2584         * dump-parse-tree.c (show_symtree): Don't crash if ns->proc_name
2585         is NULL.
2586
2587         * dump-parse-tree.c (gfc_show_namelist, gfc_show_omp_node): New
2588         functions.
2589         (gfc_show_code_node): Call gfc_show_omp_node for EXEC_OMP_* nodes.
2590
2591         * parse.c (parse_omp_do): Call pop_state before next_statement.
2592         * openmp.c (expr_references_sym, resolve_omp_atomic, resolve_omp_do):
2593         New functions.
2594         (gfc_resolve_omp_directive): Call them.
2595         * match.c (match_exit_cycle): Issue error if EXIT or CYCLE statement
2596         leaves an OpenMP structured block or if EXIT terminates !$omp do
2597         loop.
2598
2599         * Make-lang.in (F95_PARSER_OBJS): Add fortran/openmp.o.
2600         (F95_OBJS): Add fortran/trans-openmp.o.
2601         (fortran/trans-openmp.o): Depend on $(GFORTRAN_TRANS_DEPS).
2602         * lang.opt: Add -fopenmp option.
2603         * options.c (gfc_init_options): Initialize it.
2604         (gfc_handle_option): Handle it.
2605         * gfortran.h (ST_OMP_ATOMIC, ST_OMP_BARRIER, ST_OMP_CRITICAL,
2606         ST_OMP_END_CRITICAL, ST_OMP_END_DO, ST_OMP_END_MASTER,
2607         ST_OMP_END_ORDERED, ST_OMP_END_PARALLEL, ST_OMP_END_PARALLEL_DO,
2608         ST_OMP_END_PARALLEL_SECTIONS, ST_OMP_END_PARALLEL_WORKSHARE,
2609         ST_OMP_END_SECTIONS, ST_OMP_END_SINGLE, ST_OMP_END_WORKSHARE,
2610         ST_OMP_DO, ST_OMP_FLUSH, ST_OMP_MASTER, ST_OMP_ORDERED,
2611         ST_OMP_PARALLEL, ST_OMP_PARALLEL_DO, ST_OMP_PARALLEL_SECTIONS,
2612         ST_OMP_PARALLEL_WORKSHARE, ST_OMP_SECTIONS, ST_OMP_SECTION,
2613         ST_OMP_SINGLE, ST_OMP_THREADPRIVATE, ST_OMP_WORKSHARE): New
2614         statement codes.
2615         (OMP_LIST_PRIVATE, OMP_LIST_FIRSTPRIVATE, OMP_LIST_LASTPRIVATE,
2616         OMP_LIST_COPYPRIVATE, OMP_LIST_SHARED, OMP_LIST_COPYIN,
2617         OMP_LIST_PLUS, OMP_LIST_REDUCTION_FIRST, OMP_LIST_MULT,
2618         OMP_LIST_SUB, OMP_LIST_AND, OMP_LIST_OR, OMP_LIST_EQV,
2619         OMP_LIST_NEQV, OMP_LIST_MAX, OMP_LIST_MIN, OMP_LIST_IAND,
2620         OMP_LIST_IOR, OMP_LIST_IEOR, OMP_LIST_REDUCTION_LAST, OMP_LIST_NUM):
2621         New OpenMP variable list types.
2622         (gfc_omp_clauses): New typedef.
2623         (gfc_get_omp_clauses): Define.
2624         (EXEC_OMP_CRITICAL, EXEC_OMP_DO, EXEC_OMP_FLUSH, EXEC_OMP_MASTER,
2625         EXEC_OMP_ORDERED, EXEC_OMP_PARALLEL, EXEC_OMP_PARALLEL_DO,
2626         EXEC_OMP_PARALLEL_SECTIONS, EXEC_OMP_PARALLEL_WORKSHARE,
2627         EXEC_OMP_SECTIONS, EXEC_OMP_SINGLE, EXEC_OMP_WORKSHARE,
2628         EXEC_OMP_ATOMIC, EXEC_OMP_BARRIER, EXEC_OMP_END_NOWAIT,
2629         EXEC_OMP_END_SINGLE): New OpenMP gfc_exec_op codes.
2630         (struct gfc_code): Add omp_clauses, omp_name, omp_namelist
2631         and omp_bool fields to ext union.
2632         (flag_openmp): Declare.
2633         (gfc_free_omp_clauses, gfc_resolve_omp_directive): New prototypes.
2634         * scanner.c (openmp_flag, openmp_locus): New variables.
2635         (skip_free_comments, skip_fixed_comments, gfc_next_char_literal):
2636         Handle OpenMP directive lines and conditional compilation magic
2637         comments.
2638         * parse.h (COMP_OMP_STRUCTURED_BLOCK): New compile state.
2639         * parse.c (decode_omp_directive, parse_omp_do, parse_omp_atomic,
2640         parse_omp_structured_block): New functions.
2641         (next_free, next_fixed): Parse OpenMP directives.
2642         (case_executable, case_exec_markers, case_decl): Add ST_OMP_*
2643         codes.
2644         (gfc_ascii_statement): Handle ST_OMP_* codes.
2645         (parse_executable): Rearrange the loop slightly, so that
2646         parse_omp_do can return next_statement.
2647         * match.h (gfc_match_omp_eos, gfc_match_omp_atomic,
2648         gfc_match_omp_barrier, gfc_match_omp_critical, gfc_match_omp_do,
2649         gfc_match_omp_flush, gfc_match_omp_master, gfc_match_omp_ordered,
2650         gfc_match_omp_parallel, gfc_match_omp_parallel_do,
2651         gfc_match_omp_parallel_sections, gfc_match_omp_parallel_workshare,
2652         gfc_match_omp_sections, gfc_match_omp_single,
2653         gfc_match_omp_threadprivate, gfc_match_omp_workshare,
2654         gfc_match_omp_end_nowait, gfc_match_omp_end_single): New prototypes.
2655         * resolve.c (resolve_blocks): Ignore EXEC_OMP_* block directives.
2656         (resolve_code): Call gfc_resolve_omp_directive on EXEC_OMP_*
2657         directives.
2658         * trans.c (gfc_trans_code): Call gfc_trans_omp_directive for
2659         EXEC_OMP_* directives.
2660         * st.c (gfc_free_statement): Handle EXEC_OMP_* statement freeing.
2661         * trans-stmt.h (gfc_trans_omp_directive): New prototype.
2662         * openmp.c: New file.
2663         * trans-openmp.c: New file.
2664
2665 2006-02-13  Andrew Pinski  <pinskia@physics.uc.edu>
2666             Jakub Jelinek  <jakub@redhat.com>
2667
2668         PR fortran/26246
2669         * trans-decl.c (gfc_get_symbol_decl, gfc_get_fake_result_decl): Use
2670         gfc_add_decl_to_function rather than gfc_finish_var_decl on length.
2671
2672 2006-02-13  Paul Thomas  <pault@gcc.gnu.org>
2673
2674         PR fortran/26074
2675         PR fortran/25103
2676         * resolve.c (resolve_symbol): Extend the requirement that module
2677         arrays have constant bounds to those in the main program.  At the
2678         same time simplify the array bounds, to avoiding trapping parameter
2679         array references, and exclude automatic character length from main
2680         and modules. Rearrange resolve_symbol and resolve_derived to put as
2681         each flavor together, as much as is possible and move all specific
2682         code for flavors FL_VARIABLE, FL_PROCEDURE and FL_PARAMETER into new
2683         functions.
2684         (resolve_fl_var_and_proc, resolve_fl_variable, resolve_fl_procedure):
2685         New functions to do work of resolve_symbol.
2686         (resolve_index_expr): New function that is called from resolved_symbol
2687         and is extracted from resolve_charlen.
2688         (resolve_charlen): Call this new function.
2689         (resolve_fl_derived): Renamed resolve_derived to be consistent with
2690         the naming of the new functions for the other flavours.  Change the
2691         charlen checking so that the style is consistent with other similar
2692         checks. Add the generation of the gfc_dt_list, removed from resolve_
2693         symbol.
2694
2695         PR fortran/20861
2696         * resolve.c (resolve_actual_arglist): Prevent internal procedures
2697         from being dummy arguments.
2698
2699         PR fortran/20871
2700         * resolve.c (resolve_actual_arglist): Prevent pure but non-intrinsic
2701         procedures from being dummy arguments.
2702
2703         PR fortran/25083
2704         * resolve.c (check_data_variable): Add test that data variable is in
2705         COMMON.
2706
2707         PR fortran/25088
2708         * resolve.c (resolve_call): Add test that the subroutine does not
2709         have a type.
2710
2711 2006-02-12  Erik Edelmann  <eedelman@gcc.gnu.org>
2712
2713         PR fortran/25806
2714         * trans-array.c (gfc_trans_allocate_array_storage): New argument
2715         dealloc; free the temporary only if dealloc is true.
2716         (gfc_trans_allocate_temp_array): New argument bool dealloc, to be
2717         passed onwards to gfc_trans_allocate_array_storage.
2718         (gfc_trans_array_constructor, gfc_conv_loop_setup): Update call to
2719         gfc_trans_allocate_temp_array.
2720         * trans-array.h (gfc_trans_allocate_temp_array): Update function
2721         prototype.
2722         * trans-expr.c (gfc_conv_function_call): Set new argument 'dealloc'
2723         to gfc_trans_allocate_temp_array to false in case of functions
2724         returning pointers.
2725         (gfc_trans_arrayfunc_assign): Return NULL for functions returning
2726         pointers.
2727
2728 2006-02-10  Steven G. Kargl  <kargls@comcast.net>
2729
2730         PR fortran/20858
2731         *decl.c (variable_decl): Improve error message.  Remove initialization
2732         typespec.  Wrap long line.
2733         *expr.c (gfc_check_pointer_assign): Permit checking of type, kind type,
2734         and rank.
2735         *simplify.c (gfc_simplify_null): Ensure type, kind type, and rank
2736         are set.
2737
2738
2739 2006-02-10  Tobias Schl\81üter  <tobias.schlueter@physik.uni-muenchen.de>
2740
2741         PR fortran/14771
2742         * arith.c (eval_intrinsic): Accept INTRINSIC_PARENTHESES.
2743         * expr.c (check_intrinsic_op): Likewise.
2744         * module.c (mio_expr): Likewise.
2745
2746 2006-02-09  Tobias Schl\81üter  <tobias.schlueter@physik.uni-muenchen.de>
2747
2748         * dump-parse-tree.c: Update copyright years.
2749         * matchexp.c: Likewise.
2750         * module.c: Likewise.
2751
2752         PR fortran/14771
2753         * gfortran.h (gfc_intrinsic_op): Add INTRINSIC_PARENTHESES.
2754         * dump-parse-tree (gfc_show_expr): Handle INTRINSIC_PARENTHESES.
2755         * expr.c (simplify_intrinsic_op): Treat INTRINSIC_PARENTHESES as
2756         if it were INTRINSIC_UPLUS.
2757         * resolve.c (resolve_operator): Handle INTRINSIC_PARENTHESES.
2758         * match.c (intrinsic_operators): Add INTRINSIC_PARENTHESES.
2759         * matchexp.c (match_primary): Record parentheses surrounding
2760         numeric expressions.
2761         * module.c (intrinsics): Add INTRINSIC_PARENTHESES for module
2762         dumping.
2763         * trans-expr.c (gfc_conv_expr_op): Handle INTRINSIC_PARENTHESES.
2764
2765 2006-02-09  Paul Thomas  <pault@gcc.gnu.org>
2766
2767         PR fortran/26038
2768         * trans-stmt.c (gfc_trans_allocate): Provide assumed character length
2769         scalar with missing backend_decl for the hidden dummy charlen.
2770
2771         PR fortran/25059
2772         * interface.c (gfc_extend_assign): Remove detection of non-PURE
2773         subroutine in assignment interface, with gfc_error, and put it in
2774         * resolve.c (resolve_code).
2775
2776         PR fortran/25070
2777         * interface.c (gfc_procedure_use): Flag rank checking for non-
2778         elemental, contained or interface procedures in call to
2779         (compare_actual_formal), where ranks are checked for assumed
2780         shape arrays..
2781
2782 2006-02-08  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
2783
2784         PR libfortran/25425
2785         * trans-decl.c (gfc_generate_function_code): Add new argument,
2786         pedantic, to set_std call.
2787
2788 2006-02-06  Thomas Koenig  <Thomas.Koenig@online.de>
2789
2790         PR libfortran/23815
2791         * gfortran.texi: Document the GFORTRAN_CONVERT_UNIT environment
2792         variable.
2793         * invoke.texi:  Mention the "Runtime" chapter.
2794         Document the -fconvert= option.
2795         * gfortran.h:  Add options_convert.
2796         * lang.opt:  Add fconvert=little-endian, fconvert=big-endian,
2797         fconvert=native and fconvert=swap.
2798         * trans-decl.c (top level):  Add gfor_fndecl_set_convert.
2799         (gfc_build_builtin_function_decls):  Set gfor_fndecl_set_convert.
2800         (gfc_generate_function_code):  If -fconvert was specified,
2801         and this is the main program, add a call to set_convert().
2802         * options.c:  Handle the -fconvert options.
2803
2804 2006-02-06  Roger Sayle  <roger@eyesopen.com>
2805
2806         * trans-stmt.c (gfc_evaluate_where_mask): Allow the NMASK argument
2807         to be NULL to indicate that the not mask isn't required.
2808         (gfc_trans_where_2): Remove PMASK argument.  Avoid calculating the
2809         pending mask for the last clause of a WHERE chain.  Update recursive
2810         call.
2811         (gfc_trans_forall_1): Update call to gfc_trans_where_2.
2812         (gfc_trans_where): Likewise.
2813
2814 2006-02-06  Jakub Jelinek  <jakub@redhat.com>
2815
2816         Backport from gomp-20050608-branch
2817         * trans-decl.c (create_function_arglist): Handle dummy functions.
2818
2819         * trans-decl.c (gfc_get_symbol_decl): Revert explicit setting of
2820         TYPE_SIZE_UNIT.
2821         (gfc_trans_vla_type_sizes): Also "gimplify"
2822         GFC_TYPE_ARRAY_DATAPTR_TYPE for GFC_DESCRIPTOR_TYPE_P types.
2823         * trans-array.c (gfc_trans_deferred_array): Call
2824         gfc_trans_vla_type_sizes.
2825
2826         * trans-decl.c (saved_function_decls, saved_parent_function_decls):
2827         Remove unnecessary initialization.
2828         (create_function_arglist): Make sure __result has complete type.
2829         (gfc_get_fake_result_decl): Change current_fake_result_decl into
2830         a tree chain.  For entry master, create a separate variable
2831         for each result name.  For BT_CHARACTER results, call
2832         gfc_finish_var_decl on length even if it has been already created,
2833         but not pushdecl'ed.
2834         (gfc_trans_vla_type_sizes): For function/entry result, adjust
2835         result value type, not the FUNCTION_TYPE.
2836         (gfc_generate_function_code): Adjust for current_fake_result_decl
2837         changes.
2838         (gfc_trans_deferred_vars): Likewise.  Call gfc_trans_vla_type_sizes
2839         even on result if it is assumed-length character.
2840
2841         * trans-decl.c (gfc_trans_dummy_character): Add SYM argument.
2842         Call gfc_trans_vla_type_sizes.
2843         (gfc_trans_auto_character_variable): Call gfc_trans_vla_type_sizes.
2844         (gfc_trans_vla_one_sizepos, gfc_trans_vla_type_sizes_1,
2845         gfc_trans_vla_type_sizes): New functions.
2846         (gfc_trans_deferred_vars): Adjust gfc_trans_dummy_character
2847         callers.  Call gfc_trans_vla_type_sizes on assumed-length
2848         character parameters.
2849         * trans-array.c (gfc_trans_array_bounds,
2850         gfc_trans_auto_array_allocation, gfc_trans_dummy_array_bias): Call
2851         gfc_trans_vla_type_sizes.
2852         * trans.h (gfc_trans_vla_type_sizes): New prototype.
2853
2854         * trans-decl.c (gfc_build_qualified_array): For non-assumed-size
2855         arrays without constant size, create also an index var for
2856         GFC_TYPE_ARRAY_SIZE (type).  If the type is incomplete, complete
2857         it as 0..size-1.
2858         (gfc_create_string_length): Don't call gfc_defer_symbol_init
2859         if just creating DECL_ARGUMENTS.
2860         (gfc_get_symbol_decl): Call gfc_finish_var_decl and
2861         gfc_defer_symbol_init even if ts.cl->backend_decl is already
2862         set to a VAR_DECL that doesn't have DECL_CONTEXT yet.
2863         (create_function_arglist): Rework, so that hidden length
2864         arguments for CHARACTER parameters are created together with
2865         the parameters.  Resolve ts.cl->backend_decl for CHARACTER
2866         parameters.  If the argument is a non-constant length array
2867         or CHARACTER, ensure PARM_DECL has different type than
2868         its DECL_ARG_TYPE.
2869         (generate_local_decl): Call gfc_get_symbol_decl even
2870         for non-referenced non-constant length CHARACTER parameters
2871         after optionally issuing warnings.
2872         * trans-array.c (gfc_trans_array_bounds): Set last stride
2873         to GFC_TYPE_ARRAY_SIZE (type) to initialize it as well.
2874         (gfc_trans_dummy_array_bias): Initialize GFC_TYPE_ARRAY_SIZE (type)
2875         variable as well.
2876
2877         * trans-expr.c (gfc_conv_expr_val): Fix comment typo.
2878
2879         * trans-stmt.c (gfc_trans_simple_do): Fix comment.
2880
2881 2006-02-04  Roger Sayle  <roger@eyesopen.com>
2882
2883         * dependency.c (gfc_check_dependency): Remove unused vars and nvars
2884         arguments.  Replace with an "identical" argument.  A full array
2885         reference to the same symbol is a dependency if identical is true.
2886         * dependency.h (gfc_check_dependency): Update prototype.
2887         * trans-array.h (gfc_check_dependency): Delete duplicate prototype.
2888         * trans-stmt.c: #include dependency.h for gfc_check_dependency.
2889         (gfc_trans_forall_1): Update calls to gfc_check_dependency.
2890         (gfc_trans_where_2): Likewise.  Remove unneeded variables.
2891         (gfc_trans_where_3): New function for simple non-dependent WHEREs.
2892         (gfc_trans_where): Call gfc_trans_where_3 to translate simple
2893         F90-style WHERE statements without internal dependencies.
2894         * Make-lang.in (trans-stmt.o): Depend upon dependency.h.
2895
2896 2006-02-05  H.J. Lu  <hongjiu.lu@intel.com>
2897
2898         PR fortran/26041
2899         PR fortran/26064
2900         * resolve.c (resolve_types): New function.
2901         (resolve_codes): Likewise.
2902         (gfc_resolve): Use them.
2903
2904 2006-02-05  Roger Sayle  <roger@eyesopen.com>
2905
2906         * trans-stmt.c (gfc_evaluate_where_mask): Use LOGICAL*1 for WHERE
2907         masks instead of LOGICAL*4.
2908
2909 2006-02-05  Jakub Jelinek  <jakub@redhat.com>
2910
2911         * resolve.c (resolve_symbol): Initialize constructor_expr to NULL.
2912
2913 2006-02-04  Thomas Koenig  <Thomas.Koenig@online.de>
2914
2915         PR fortran/25075
2916         check.c (identical_dimen_shape):  New function.
2917         (check_dot_product):  Use identical_dimen_shape() to check sizes
2918         for dot_product.
2919         (gfc_check_matmul):  Likewise.
2920         (gfc_check_merge):  Check conformance between tsource and fsource
2921         and between tsource and mask.
2922         (gfc_check_pack):  Check conformance between array and mask.
2923
2924 2006-02-03  Steven G. Kargl  <kargls@comcast>
2925             Paul Thomas  <pault@gcc.gnu.org>
2926
2927         PR fortran/20845
2928         * resolve.c (resolve_symbol): Default initialization of derived type
2929         component reguires the SAVE attribute.
2930
2931 2006-02-02  Steven G. Kargl  <kargls@comcast>
2932
2933         PR fortran/24958
2934         match.c (gfc_match_nullify):  Free the list from head not tail.
2935
2936         PR fortran/25072
2937         * match.c (match_forall_header): Fix internal error caused by bogus
2938         gfc_epxr pointers.
2939
2940
2941 2006-01-31  Thomas Koenig  <Thomas.Koenig@online.de>
2942
2943         PR fortran/26039
2944         expr.c (gfc_check_conformance):  Reorder error message
2945         to avoid plural.
2946         check.c(gfc_check_minloc_maxloc):  Call gfc_check_conformance
2947         for checking arguments array and mask.
2948         (check_reduction):  Likewise.
2949
2950 2006-01-30  Erik Edelmann  <eedelman@gcc.gnu.org>
2951
2952         PR fortran/24266
2953         * trans-io.c (set_internal_unit): Check the rank of the
2954         expression node itself instead of its symbol.
2955
2956 2006-01-29  Paul Thomas  <pault@gcc.gnu.org>
2957
2958         PR fortran/18578
2959         PR fortran/18579
2960         PR fortran/20857
2961         PR fortran/20885
2962         * interface.c (compare_actual_formal): Error for INTENT(OUT or INOUT)
2963         if actual argument is not a variable.
2964
2965 2006-01-28  Paul Thomas  <pault@gcc.gnu.org>
2966
2967         PR fortran/17911
2968         * expr.c (gfc_check_assign, gfc_check_pointer_assign): Emit error if
2969         the lvalue is a use associated procedure.
2970
2971         PR fortran/20895
2972         PR fortran/25030
2973         * expr.c (gfc_check_pointer_assign): Emit error if lvalue and rvalue
2974         character lengths are not the same.  Use gfc_dep_compare_expr for the
2975         comparison.
2976         * gfortran.h: Add prototype for gfc_dep_compare_expr.
2977         * dependency.h: Remove prototype for gfc_dep_compare_expr.
2978
2979 2006-01-27  Paul Thomas  <pault@gcc.gnu.org>
2980
2981         PR fortran/25964
2982         * resolve.c (resolve_function): Add GFC_ISYM_LOC to the list of
2983         generic_ids exempted from assumed size checking.
2984
2985 2006-01-27  Jakub Jelinek  <jakub@redhat.com>
2986
2987         PR fortran/25324
2988         * Make-lang.in (fortran/scanner.o): Depend on toplev.h.
2989         * lang.opt (fpreprocessed): New option.
2990         * scanner.c: Include toplev.h.
2991         (gfc_src_file, gfc_src_preprocessor_lines): New variables.
2992         (preprocessor_line): Unescape filename if there were any
2993         backslashes.
2994         (load_file): If initial and gfc_src_file is not NULL,
2995         use it rather than opening the file.  If gfc_src_preprocessor_lines
2996         has non-NULL elements, pass it to preprocessor_line.
2997         (unescape_filename, gfc_read_orig_filename): New functions.
2998         * gfortran.h (gfc_option_t): Add flag_preprocessed.
2999         (gfc_read_orig_filename): New prototype.
3000         * options.c (gfc_init_options): Clear flag_preprocessed.
3001         (gfc_post_options): If flag_preprocessed, call
3002         gfc_read_orig_filename.
3003         (gfc_handle_option): Handle OPT_fpreprocessed.
3004         * lang-specs.h: Pass -fpreprocessed to f951 if preprocessing
3005         sources.
3006
3007 2006-01-27  Erik Edelmann  <eedelman@gcc.gnu.org>
3008
3009         * symbol.c (free_old_symbol): Fix confusing comment, and add code
3010           to free old_symbol->formal.
3011
3012 2006-01-26  Paul Thomas  <pault@gcc.gnu.org>
3013
3014         PR fortran/25964
3015         * resolve.c (resolve_function): Exclude statement functions from
3016         global reference checking.
3017
3018         PR fortran/25084
3019         PR fortran/20852
3020         PR fortran/25085
3021         PR fortran/25086
3022         * resolve.c (resolve_function): Declare a gfc_symbol to replace the
3023         references through the symtree to the symbol associated with the
3024         function expresion. Give error on reference to an assumed character
3025         length function is defined in an interface or an external function
3026         that is not a dummy argument.
3027         (resolve_symbol): Give error if an assumed character length function
3028         is array-valued, pointer-valued, pure or recursive. Emit warning
3029         that character(*) value functions are obsolescent in F95.
3030
3031         PR fortran/25416
3032         * trans-expr.c (gfc_conv_function_call): The above patch to resolve.c
3033         prevents any assumed character length function call from getting here
3034         except intrinsics such as SPREAD. In this case, ensure that no
3035         segfault occurs from referencing non-existent charlen->length->
3036         expr_type and provide a backend_decl for the charlen from the charlen
3037         of the first actual argument.
3038
3039         Cure temp name confusion.
3040         * trans-expr.c (gfc_get_interface_mapping_array): Change name of
3041         temporary from "parm" to "ifm" to avoid clash with temp coming from
3042         trans-array.c.
3043
3044 2006-01-25  Erik Edelmann  <eedelman@gcc.gnu.org>
3045
3046         PR fortran/25716
3047         * symbol.c (free_old_symbol): New function.
3048         (gfc_commit_symbols): Use it.
3049         (gfc_commit_symbol): New function.
3050         (gfc_use_derived): Use it.
3051         * gfortran.h: Add prototype for gfc_commit_symbol.
3052         * intrinsic.c (gfc_find_function): Search in 'conversion'
3053         if not found in 'functions'.
3054         (gfc_convert_type_warn): Add a symtree to the new
3055         expression node, and commit the new symtree->n.sym.
3056         * resolve.c (gfc_resolve_index): Make sure typespec is
3057         properly initialized.
3058
3059 2006-01-23  Paul Thomas  <pault@gcc.gnu.org>
3060
3061         PR fortran/25901
3062         * decl.c (get_proc_name): Replace subroutine and function attributes
3063         in "already defined" test by the formal arglist pointer being non-NULL.
3064
3065         Fix regression in testing of admissability of attributes.
3066         * symbol.c (gfc_add_attribute): If the current_attr has non-zero
3067         intent, do not do the check for a dummy being used.
3068         * decl.c (attr_decl1): Add current_attr.intent as the third argument
3069         in the call to gfc_add_attribute.
3070         * gfortran.h: Add the third argument to the prototype for
3071         gfc_add_attribute.
3072
3073 2006-01-21  Joseph S. Myers  <joseph@codesourcery.com>
3074
3075         * gfortranspec.c (lang_specific_driver): Update copyright notice
3076         date.
3077
3078 2006-01-21  Paul Thomas  <pault@gcc.gnu.org>
3079
3080         PR fortran/25124
3081         PR fortran/25625
3082         * decl.c (get_proc_name): If there is an existing
3083         symbol in the encompassing namespace, call errors
3084         if it is a procedure of the same name or the kind
3085         field is set, indicating a type declaration.
3086
3087         PR fortran/20881
3088         PR fortran/23308
3089         PR fortran/25538
3090         PR fortran/25710
3091         * decl.c (add_global_entry): New function to check
3092         for existing global symbol with this name and to
3093         create new one if none exists.
3094         (gfc_match_entry): Call add_global_entry before
3095         matching argument lists for subroutine and function
3096         entries.
3097         * gfortran.h: Prototype for existing function,
3098         global_used.
3099         * resolve.c (resolve_global_procedure): New function
3100         to check global symbols for procedures.
3101         (resolve_call, resolve_function): Calls to this
3102         new function for non-contained and non-module
3103         procedures.
3104         * match.c (match_common): Add check for existing
3105         global symbol, creat one if none exists and emit
3106         error if there is a clash.
3107         * parse.c (global_used): Remove static and use the
3108         gsymbol name rather than the new_block name, so that
3109         the function can be called from resolve.c.
3110         (parse_block_data, parse_module, add_global_procedure):
3111         Improve checks for existing gsymbols.  Emit error if
3112         already defined or if references were to another type.
3113         Set defined flag.
3114
3115         PR fortran/PR24276
3116         * trans-expr.c (gfc_conv_aliased_arg): New function called by 
3117         gfc_conv_function_call that coverts an expression for an aliased
3118         component reference to a derived type array into a temporary array
3119         of the same type as the component.  The temporary is passed as an
3120         actual argument for the procedure call and is copied back to the
3121         derived type after the call.
3122         (is_aliased_array): New function that detects an array reference
3123         that is followed by a component reference.
3124         (gfc_conv_function_call): Detect an aliased actual argument with
3125         is_aliased_array and convert it to a temporary and back again
3126         using gfc_conv_aliased_arg.
3127
3128 2006-01-19  Tobias Schl\81üter  <tobias.schlueter@physik.uni-muenchen.de>
3129
3130         * gfortranspec.c: Update copyright years.
3131         * trans.c: Likewise.
3132         * trans-array.c: Likewise.
3133         * trans-array.h: Likewise.
3134         * trans-decl.c: Likewise.
3135         * trans-stmt.c: Likewise.
3136         * trans-stmt.h: Likewise.
3137         * trans-types.c: Likewise.
3138
3139 2006-01-18  Tobias Schl\81üter  <tobias.schlueter@physik.uni-muenchen.de>
3140
3141         PR fortran/18540
3142         PR fortran/18937
3143         * gfortran.h (BBT_HEADER): Move definition up.
3144         (gfc_st_label): Add BBT_HEADER, remove 'prev' and 'next'.
3145         * io.c (format_asterisk): Adapt initializer.
3146         * resolve.c (resolve_branch): Allow FORTRAN 66 cross-block GOTOs
3147         as extension.
3148         (warn_unused_label): Take gfc_st_label label as argument, adapt to
3149         new data structure.
3150         (gfc_resolve): Adapt call to warn_unused_label.
3151         * symbol.c (compare_st_labels): New function.
3152         (gfc_free_st_label, free_st_labels, gfc_get_st_label): Convert to
3153         using balanced binary tree.
3154         * decl.c (match_char_length, gfc_match_old_kind_spec): Do away
3155         with 'cnt'.
3156         (warn_unused_label): Adapt to binary tree.
3157         * match.c (gfc_match_small_literal_int): Only set cnt if non-NULL.
3158         * primary.c (match_kind_param): Do away with cnt.
3159
3160 2006-01-18  Paul Thomas  <pault@gcc.gnu.org>
3161
3162         PR fortran/20869
3163         PR fortran/20875
3164         PR fortran/25024
3165         * symbol.c (check_conflict): Add pointer valued elemental
3166         functions and internal procedures with the external attribute
3167         to the list of conflicts.
3168         (gfc_add_attribute): New catch-all function to perform the
3169         checking of symbol attributes for attribute declaration
3170         statements.
3171         * decl.c (attr_decl1): Call gfc_add_attribute for each of -
3172         (gfc_match_external, gfc_match_intent, gfc_match_intrinsic,
3173         gfc_match_pointer, gfc_match_dimension, gfc_match_target):
3174         Remove spurious calls to checks in symbol.c.  Set the
3175         attribute directly and use the call to attr_decl() for
3176         checking.
3177         * gfortran.h:  Add prototype for gfc_add_attribute.
3178
3179         PR fortran/25785
3180         * resolve.c (resolve_function): Exclude PRESENT from assumed size
3181         argument checking. Replace strcmp's with comparisons with generic
3182         codes.
3183
3184 2006-01-16  Rafael \81Ávila de Esp\81índola  <rafael.espindola@gmail.com>
3185
3186         * gfortranspec.c (lang_specific_spec_functions): Remove.
3187
3188 2006-01-16  Richard Guenther  <rguenther@suse.de>
3189
3190         * trans-stmt.c (gfc_trans_if_1): Use fold_buildN and build_int_cst.
3191         (gfc_trans_arithmetic_if): Likewise.
3192         (gfc_trans_simple_do): Likewise.
3193         (gfc_trans_do): Likewise.
3194         (gfc_trans_do_while): Likewise.
3195         (gfc_trans_logical_select): Likewise.
3196         (gfc_trans_forall_loop): Likewise.
3197         (generate_loop_for_temp_to_lhs): Likewise.
3198         (generate_loop_for_rhs_to_temp): Likewise.
3199         (gfc_trans_allocate): Likewise.
3200         * trans.c (gfc_add_expr_to_block): Do not fold expr again.
3201
3202 2006-01-16  Richard Guenther  <rguenther@suse.de>
3203
3204         * trans-expr.c (gfc_conv_function_call): Use fold_build2.
3205         * trans-stmt.c (gfc_trans_goto): Likewise.  Use build_int_cst.
3206         * trans.c (gfc_trans_runtime_check): Don't fold the condition
3207         again.
3208
3209 2006-01-13  Steven G. Kargl  <kargls@comcast.net>
3210
3211         PR fortran/25756
3212         * symbol.c (gfc_free_st_label): Give variable meaningful name. Remove
3213         unneeded parenthesis. Fix-up the head of the list (2 lines gleaned
3214         from g95).
3215
3216 2006-01-13  Diego Novillo  <dnovillo@redhat.com>
3217
3218         * trans.c (gfc_add_expr_to_block): Do not fold tcc_statement
3219         nodes.
3220
3221 2006-01-11  Tobias Schl\81üter  <tobias.schlueter@physik.uni-muenchen.de>
3222
3223         * parse.c (next_fixed): Remove superfluous string concatenation.
3224
3225 2006-01-11  Bernhard Fischer  <rep.nop@aon.at>
3226
3227         PR fortran/25486
3228         * scanner.c (load_line): use maxlen to determine the line-length used
3229         for padding lines in fixed form.
3230
3231 2006-01-11  Paul Thomas  <pault@gcc.gnu.org>
3232
3233         PR fortran/25730
3234         * trans-types.c (copy_dt_decls_ifequal): Copy backend decl for
3235         character lengths.
3236
3237 2006-01-09  Andrew Pinski  <pinskia@physics.uc.edu>
3238
3239         fortran/24936
3240         * trans-stmt.c (gfc_trans_pointer_assign_need_temp): Use fold_convert
3241         to avoid type mismatch.
3242
3243 2006-01-09  Andrew Pinski  <pinskia@physics.uc.edu>
3244
3245         PR fortran/21977
3246         * trans-decl.c (gfc_generate_function_code): Move the NULLing of
3247         current_fake_result_decl down to below generate_local_vars.
3248
3249 2006-01-09  Feng Wang  <fengwang@nudt.edu.cn>
3250
3251         PR fortran/12456
3252         * trans-expr.c (gfc_to_single_character): New function that converts
3253         string to single character if its length is 1.
3254         (gfc_build_compare_string):New function that compare string and handle
3255         single character specially.
3256         (gfc_conv_expr_op): Use gfc_build_compare_string.
3257         (gfc_trans_string_copy): Use gfc_to_single_character.
3258         * trans-intrinsic.c (gfc_conv_intrinsic_strcmp): Use
3259         gfc_build_compare_string.
3260         * trans.h (gfc_build_compare_string): Add prototype.
3261
3262 2006-01-09  Feng Wang  <fengwang@nudt.edu.cn>
3263
3264         * simplify.c (gfc_simplify_char): Use UCHAR_MAX instead of literal
3265         constant.
3266         (gfc_simplify_ichar): Get the result from unsinged char and in the
3267         range 0 to UCHAR_MAX instead of CHAR_MIN to CHAR_MAX.
3268
3269 2006-01-08  Erik Edelmann  <eedelman@gcc.gnu.org>
3270
3271         PR fortran/25093
3272         * resolve.c (resolve_fntype): Check that PUBLIC functions
3273         aren't of PRIVATE type.
3274
3275 2006-01-07  Tobias Schl"uter  <tobias.schlueter@physik.uni-muenchen.de>
3276
3277         * decl.c (gfc_match_function_decl): Correctly error out in case of
3278         omitted function argument list.
3279
3280 2006-01-07  Paul Thomas  <pault@gcc.gnu.org>
3281
3282         PR fortran/22146
3283         * trans-array.c (gfc_reverse_ss): Remove static attribute.
3284         (gfc_walk_elemental_function_args): Replace gfc_expr * argument for
3285         the function call with the corresponding gfc_actual_arglist*.  Change
3286         code accordingly.
3287         (gfc_walk_function_expr): Call to gfc_walk_elemental_function_args
3288         now requires the actual argument list instead of the expression for
3289         the function call.
3290         * trans-array.h: Modify the prototype for gfc_walk_elemental_function_args
3291         and provide a prototype for gfc_reverse_ss.
3292         * trans-stmt.h (gfc_trans_call): Add the scalarization code for the case
3293         where an elemental subroutine has array valued actual arguments.
3294
3295         PR fortran/25029
3296         PR fortran/21256
3297         PR fortran/20868
3298         PR fortran/20870
3299         * resolve.c (check_assumed_size_reference): New function to check for upper
3300         bound in assumed size array references.
3301         (resolve_assumed_size_actual): New function to do a very restricted scan
3302         of actual argument expressions of those procedures for which incomplete
3303         assumed size array references are not allowed.
3304         (resolve_function, resolve_call): Switch off assumed size checking of
3305         actual arguments, except for elemental procedures and intrinsic
3306         inquiry functions, in some circumstances.
3307         (resolve_variable): Call check_assumed_size_reference.
3308
3309 2006-01-05  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
3310
3311         PR fortran/24268
3312         * io.c (next_char_not_space): New function that returns the next
3313         character that is not white space.
3314         (format_lex): Use the new function to skip whitespace within
3315         a format string.
3316
3317 2006-01-05  Erik Edelmann  <eedelman@gcc.gnu.org>
3318
3319         PR fortran/23675
3320         * expr.c (gfc_expr_set_symbols_referenced): New function.
3321         * gfortran.h: Add a function prototype for it.
3322         * resolve.c (resolve_function): Use it for
3323         use associated character functions lengths.
3324         * expr.c, gfortran.h, resolve.c: Updated copyright years.
3325
3326 2006-01-03  Steven G. Kargl  <kargls@comcast.net>
3327
3328         PR fortran/25101
3329         * resolve.c (resolve_forall_iterators):  Check for scalar variables;
3330         Check stride is nonzero.
3331
3332 2006-01-02  Steven G. Kargl  <kargls@comcast.net>
3333
3334         PR fortran/24640
3335         * parse.c (next_free): Check for whitespace after the label.
3336         * match.c (gfc_match_small_literal_int): Initialize cnt variable.
3337
3338 2006-01-01  Steven G. Kargl  <kargls@comcast.net>
3339
3340         * ChangeLog: Split previous years into ...
3341         * ChangeLog-2002: here.
3342         * ChangeLog-2003: here.
3343         * ChangeLog-2004: here.
3344         * ChangeLog-2005: here.