OSDN Git Service

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