OSDN Git Service

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