OSDN Git Service

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