OSDN Git Service

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