OSDN Git Service

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