OSDN Git Service

2007-12-06 Tobias Burnus <burnus@net-b.de>
[pf3gnuchains/gcc-fork.git] / gcc / fortran / ChangeLog
1 2007-12-06  Tobias Burnus  <burnus@net-b.de>
2
3         PR fortran/34333
4         * primary.c (match_boz_constant): Add gfc_notify_std diagnostics.
5
6 2007-12-06  Paul Thomas  <pault@gcc.gnu.org>
7
8         PR fortran/34335
9         * module.c (find_symbol): Do not return symtrees with unique
10         names, which shows that they are private.
11
12 2007-12-05  Jakub Jelinek  <jakub@redhat.com>
13
14         PR debug/33739
15         * gfortran.h (gfc_file): Remove included_by field, add sibling and
16         down.
17         (gfc_start_source_files, gfc_end_source_files): New prototypes.
18         * parse.c (gfc_parse_file): Call gfc_start_source_files and
19         gfc_end_source_files instead of calling the debugging hooks directly.
20         * error.c (show_locus): Use up field instead of included_by.
21         * scanner.c (change_file, gfc_start_source_files,
22         gfc_end_source_files): New functions.
23         (gfc_advance_line): Call change_file instead of calling debug hooks
24         directly.
25         (get_file): Set up rather than included_by.  Initialize down and
26         sibling.
27         (preprocessor_line, load_file): Don't set up field here.
28
29 2007-12-05  Tobias Burnus  <burnus@net-b.de>
30
31         PR fortran/34333
32         * arith.h (gfc_compare_expr): Add operator argument, needed
33         for compare_real.
34         * arith.c (gfc_arith_init_1): Use mpfr_min instead of mpfr_cmp/set
35         to account for NaN.
36         (compare_real): New function, as mpfr_cmp but takes NaN into account.
37         (gfc_compare_expr): Use compare_real.
38         (compare_complex): Take NaN into account.
39         (gfc_arith_eq,gfc_arith_ne,gfc_arith_gt,gfc_arith_ge,gfc_arith_lt,
40         gfc_arith_le): Pass operator to gfc_compare_expr.
41         * resolve.c (compare_cases,resolve_select): Pass operator
42         to gfc_compare_expr.
43         * simplify.c (simplify_min_max): Take NaN into account.
44
45 2007-12-04  Tobias Burnus  <burnus@net-b.de>
46
47         PR fortran/34318
48         * module.c (mio_gmp_real): Properly write NaN and Infinity.
49
50 2007-12-02  Tobias Burnus  <burnus@net-b.de>
51
52         PR fortran/34186
53         * symbol.c (generate_isocbinding_symbol): Fix setting string length.
54
55 2007-11-30  Tobias Burnus  <burnus@net-b.de>
56
57         PR fortran/34133
58         * match.h: Add bool allow_binding_name to gfc_match_bind_c.
59         * decl.c (match_attr_spec,gfc_match_bind_c_stmt,gfc_match_entry):
60         Adjust accordingly.
61         (gfc_match_bind_c): Add allow_binding_name argument, reject
62         binding name for dummy arguments.
63         (gfc_match_suffix,gfc_match_subroutine): Make use of
64         allow_binding_name.
65
66 2007-11-30  Tobias Burnus  <burnus@net-b.de>
67
68         PR fortran/34186
69         * symbol.c (generate_isocbinding_symbol): Set string length.
70         * dump-parse-tree.c (gfc_show_attr): Show BIND(C) attribute.
71         * misc.c (gfc_basic_typename): Handle BT_VOID.
72
73 2007-11-29  Steven G. Kargl  <kargls@comcast.net>
74
75         PR fortran/34230
76         * fortran/arith.c (gfc_check_real_range): Set intermediate values
77         to +-Inf and 0 when -fno-range-check is in effect.
78         * fortran/invoke.texi: Improve -fno-range-check description.
79
80         PR fortran/34203
81         * fortran/invoke.texi: Document the C escaped characters activated
82         by -fbackslash.
83
84 2007-11-29  Tobias Burnus  <burnus@net-b.de>
85
86         PR fortran/34248
87         * trans-decl.c (generate_dependency_declarations): Check
88         for NULL pointers before accessing the string length.
89
90 2007-11-29  Tobias Burnus  <burnus@net-b.de>
91
92         PR fortran/34262
93         * intrinsic.c (gfc_get_intrinsic_sub_symbol): Add comment.
94         (gfc_intrinsic_sub_interface): Copy elemental state if needed.
95         * iresolve.c (gfc_resolve_mvbits): Mark procedure as elemental.
96
97 2007-11-28  Jakub Jelinek  <jakub@redhat.com>
98
99         * trans-expr.c (gfc_trans_string_copy): Convert both dest and
100         src to void *.
101
102         PR fortran/34247
103         * trans-openmp.c (gfc_omp_privatize_by_reference): For REFERENCE_TYPE
104         pass by reference only PARM_DECLs or non-artificial decls.
105
106 2007-11-27  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
107
108         PR fortran/32928
109         * decl.c (match_data_constant): Use gfc_match_init_expr to match the
110         array spec and set the initializer expression.
111
112 2007-11-27  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
113
114         PR fortran/34227
115         * match.c (gfc_match_common): Add additional check for BLOCK DATA.
116
117 2007-11-27  Paul Thomas  <pault@gcc.gnu.org>
118
119         PR fortran/29389
120         *resolve.c (resolve_ordinary_assign): Use find_sym_in_expr to
121         test if a temporary should be written for a vector subscript
122         on the lhs.
123
124         PR fortran/33850
125         * restore.c (pure_stmt_function): Add prototype and new
126         function. Calls impure_stmt_fcn.
127         (pure_function): Call it.
128         (impure_stmt_fcn): New function.
129
130         * expr.c (gfc_traverse_expr): Call *func for all expression
131         types, not just variables. Add traversal of character lengths,
132         iterators and component character lengths and arrayspecs.
133         (expr_set_symbols_referenced): Return false if not a variable.
134         * trans-stmt.c (forall_replace, forall_restore): Ditto.
135         * resolve.c (forall_index): Ditto.
136         (sym_in_expr): New function.
137         (find_sym_in_expr): Rewrite to traverse expression calling
138         sym_in_expr.
139         *trans-decl.c (expr_decls): New function.
140         (generate_expr_decls): Rewrite to traverse expression calling
141         expr_decls.
142         *match.c (check_stmt_fcn): New function.
143         (recursive_stmt_fcn): Rewrite to traverse expression calling
144         check_stmt_fcn.
145
146 2007-11-27  Paul Thomas  <pault@gcc.gnu.org>
147
148         PR fortran/33541
149         *interface.c (compare_actual_formal): Exclude assumed size
150         arrays from the possibility of scalar to array mapping.
151         * decl.c (get_proc_name): Fix whitespace problem.
152
153         PR fortran/34231
154         * gfortran.h : Add 'use_rename' bit to symbol_attribute.
155         * module.c : Add 'renamed' field to pointer_info.u.rsym.
156         (load_generic_interfaces): Add 'renamed' that is set after the
157         number_use_names is called.  This is used to set the attribute
158         use_rename, which, in its turn identifies those symbols that
159         have not been renamed.
160         (load_needed): If pointer_info.u.rsym->renamed is set, then
161         set the use_rename attribute of the symbol.
162         (read_module): Correct an erroneous use of use_flag. Use the
163         renamed flag and the use_rename attribute to determine which
164         symbols are not renamed.
165
166 2007-11-26  Steven G. Kargl  <kargls@comcast.net>
167
168         PR fortran/34203
169         * options.c:  Change default behavior of backslash processing.
170         * invoke.texi: Update documentation.
171
172 2007-11-25  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
173
174         PR fortran/33152
175         * decl.c (add_init_expr_to_sym): Remove error message.
176         * resolve.c (check_data_variable): Add new check for a data variable
177         that has an array spec, but no ref and issue an error.
178         * match.c (gfc_match_common): Remove error message.
179
180 2007-11-25  Tobias Burnus  <burnus@net-b.de>
181
182         PR fortran/34079
183         * trans-types.c (gfc_return_by_reference,
184         gfc_get_function_type): Do not return result of
185         character-returning bind(C) functions as argument.
186         * trans-expr.c (gfc_conv_function_call): Ditto.
187
188 2007-11-25  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
189
190         PR fortran/34175
191         * gfortran.texi: Document default forms assumed for various file
192         extensions.
193
194 2007-11-25  Paul Thomas  <pault@gcc.gnu.org>
195
196         PR fortran/33499
197         * decl.c (get_proc_name): If ENTRY statement occurs before type
198         specification, set the symbol untyped and ensure that it is in
199         the procedure namespace.
200
201 2007-11-24  Paul Thomas  <pault@gcc.gnu.org>
202
203         PR fortran/33541
204         * module.c (find_symtree_for_symbol): Move to new location.
205         (find_symbol): New function.
206         (load_generic_interfaces): Rework completely so that symtrees
207         have the local name and symbols have the use name.  Renamed
208         generic interfaces exclude the use of the interface without an
209         ONLY clause (11.3.2).
210         (read_module): Implement 11.3.2 in the same way as for generic
211         interfaces.
212
213 2007-11-23 Christopher D. Rickett <crickett@lanl.gov>
214
215         * trans-common.c (build_common_decl): Fix the alignment for
216         BIND(C) common blocks.
217
218 2007-11-23  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
219
220         PR fortran/34209
221         * iresolve.c (gfc_resolve_nearest): If sign variable kind does not match
222         kind of input variable, convert it to match.
223
224         PR fortran/33317
225         * trans.h: Modify prototype for gfc_conv_missing_dummy.
226         * trans-expr.c (gfc_conv_missing_dummy): Modify to pass an integer kind
227         parameter in.  Set the type of the dummy to the kind given.
228         (gfc_conv_function_call): Pass representation.length to
229         gfc_conv_missing_dummy.
230         * iresolve.c (gfc_resolve_cshift): Determine the correct kind to use and
231         if appropriate set representation.length to this kind value.
232         (gfc_resolve_eoshift): Likewise.
233         * check.c (gfc_check_cshift): Enable dim_check to allow DIM as an
234         optional argument. (gfc_check_eoshift): Likewise.
235         * trans_intrinsic.c (gfc_conv_intrinsic_function_args): Update call to
236         gfc_conv_missing_dummy.
237
238 2007-11-23  Tobias Burnus  <burnus@net-b.de>
239
240         PR fortran/34187
241         * module.c (load_needed): Ensure binding_label is not lost.
242
243         * decl.c (set_binding_label,gfc_match_bind_c): Replace
244         strncpy by strcpy.
245
246 2007-11-23  Tobias Burnus  <burnus@net-b.de>
247             Steven G. Kargl  <kargl@gcc.gnu.org>
248
249         PR fortran/34192
250         * simplify.c (gfc_simplify_nearest): Fix NEAREST for
251         subnormal numbers.
252
253 2007-11-23  Aldy Hernandez  <aldyh@redhat.com>
254
255         * trans-expr.c (gfc_trans_string_copy): Use "void *" when building a
256         memset.
257                 
258 2007-11-22  Tobias Burnus  <burnus@net-b.de>
259
260         * primary.c (gfc_match_structure_constructor): Allow
261         constructor for types without components.
262
263 2007-11-22  Tobias Burnus  <burnus@net-b.de>
264
265         PR fortran/34079
266         * trans-expr.c (gfc_conv_function_call): Do not append
267         string length arguments when calling bind(c) procedures.
268         * trans-decl.c (create_function_arglist): Do not append
269         string length arguments when declaring bind(c) procedures.
270
271 2007-11-21  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
272
273         PR fortran/34083
274         * resolve.c (resolve_structure_cons): Also check for zero rank.
275
276 2007-11-19  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
277
278         PR fortran/33317
279         * trans-expr.c (gfc_conv_missing_dummy): Revert.
280         * iresolve.c (gfc_resolve_cshift): Revert.
281         (gfc_resolve_eoshift): Likewise.
282         * check.c (gfc_check_cshift): Revert.
283         (gfc_check_eoshift): Likewise.
284
285 2007-11-19  Tobias Burnus  <burnus@net-b.de>
286
287         PR fortran/34079
288         * decl.c (gfc_match_entry): Support BIND(C).
289         (gfc_match_subroutine): Fix comment typo.
290
291 2007-11-18  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
292
293         PR fortran/33317
294         * trans-expr.c (gfc_conv_missing_dummy): Set the type of the dummy
295         argument to default integer if flagged to do so. Fix typo in comment.
296         * resolve.c (gfc_resolve_dim_arg): Whitespace cleanup.
297         * iresolve.c (gfc_resolve_cshift): Do not convert type, mark attribute
298         for converting the DIM type appropriately in trans-expr.c.
299         (gfc_resolve_eoshift): Likewise.
300         * check.c (dim_check): Remove pre-existing dead code.
301         (gfc_check_cshift): Enable dim_check to allow DIM as an optional.
302         (gfc_check_eoshift): Likewise.
303         * trans_intrinsic.c (gfc_conv_intrinsic_function_args): Fix whitespace.
304
305 2007-11-18  Paul Thomas  <pault@gcc.gnu.org>
306
307         PR fortran/31608
308         * trans-array.c (gfc_conv_expr_descriptor): Remove exception
309         for indirect references in the call to gfc_trans_scalar_assign.
310         * trans-expr.c (gfc_conv_string_parameter): Instead of asserting
311         that the expression is not an indirect reference, cast it to a
312         pointer type of the length given by se->string_length.
313
314 2007-11-18  Tobias Burnus  <burnus@net-b.de>
315
316         PR fortran/34137
317         * primary.c (match_variable): Reject non-result entry symbols.
318         * resolve.c (resolve_contained_fntype): Do not check entry master
319         functions.
320
321 2007-11-17  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
322
323         * trans-types.c (gfc_init_types): Use wider buffer.
324
325 2007-11-17  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
326
327         * trans-types.c (gfc_init_types): Use Fortran-90-style type
328         names, with kinds.
329
330 2007-11-17  Tobias Burnus  <burnus@net-b.de>
331
332         PR fortran/34133
333         * decl.c (gfc_match_suffix,gfc_match_subroutine): Disallow
334         bind(c) attribute for internal procedures.
335
336 2007-11-17  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
337
338         PR fortran/25252
339         * interface.c (gfc_current_interface_head,
340         gfc_set_current_interface_head): New functions.
341         * decl.c (gfc_match_modproc): Move check for syntax error earlier.
342         On syntax error, restore previous state of the interface.
343         * gfortran.h (gfc_current_interface_head,
344         gfc_set_current_interface_head): New prototypes.
345
346 2007-11-17  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
347
348         PR fortran/30285
349         * module.c (struct written_common, written_commons): New structure.
350         (compare_written_commons, free_written_common, write_common_0):
351         New functions.
352         (write_common): Call recursive function write_common_0.
353
354 2007-11-17  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
355
356         PR fortran/34108
357         * io.c (check_format_string): Only check character expressions.
358         (match_dt_format): Return MATCH_ERROR if that is what
359         gfc_match_st_label said.
360
361 2007-11-16  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
362
363         PR fortran/33957
364         * expr.c (check_inquiry): Don't call gfc_error now.
365
366 2007-11-16  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
367
368         PR fortran/33739
369         PR fortran/34084
370         * scanner.c (start_source_file, end_source_file,
371         exit_remaining_files, gfc_advance_line): Revert rev. 130016.
372
373 2007-11-16  Paul Thomas  <pault@gcc.gnu.org>
374
375         PR fortran/34008
376         * trans-stmt.c (gfc_conv_elemental_dependencies): Add check for
377         INTENT_INOUT as well as INTENT_OUT.
378         (gfc_trans_call): Remove redundant gcc_asserts in dependency
379         check.
380
381 2007-11-16  Paul Thomas  <pault@gcc.gnu.org>
382
383         PR fortran/33986
384         * trans-array.c (gfc_conv_array_parameter ): Allow allocatable
385         function results.
386
387 2007-11-15  Tobias Burnus  <burnus@net-b.de>
388  
389         PR fortran/33917
390         * decl.c (match_procedure_decl): Pre-resolve interface.
391         * resolve.c (resolve_symbol): Reject interfaces later
392         declared in procedure statements.
393
394 2007-11-13  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
395
396         PR fortran/33162
397         * decl.c (match_procedure_decl): Remove TODO and allow intrinsics in
398         PROCEDURE declarations.  Set attr.untyped to allow the interface to be
399         resolved later where the symbol type will be set.
400         * interface.c (compare_intr_interfaces): Remove static from pointer
401         declarations.  Add type and kind checks for dummy function arguments.
402         (compare_actual_formal_intr): New function to compare an actual
403         argument with an intrinsic function. (gfc_procedures_use): Add check for
404         interface that points to an intrinsic function, use the new function.
405         * resolve.c (resolve_specific_f0): Resolve the intrinsic interface.
406         (resolve_specific_s0): Ditto.
407
408 2007-11-13  Paul Thomas  <pault@gcc.gnu.org>
409
410         PR fortran/34080
411         * iresolve.c (gfc_resolve_transfer): Do not try to convert
412         to a constant MOLD expression, if it is an assumed size
413         dummy.
414
415 2007-11-10  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
416
417         * trans-common.c: Remove prototype for gfc_get_common.
418
419 2007-11-10  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
420
421         PR fortran/33592
422         * trans.c (gfc_call_realloc): Fix the logic and rename variables.
423
424 2007-11-08  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
425
426         PR fortran/33739
427         * scanner.c (start_source_file, end_source_file,
428         exit_remaining_files): New functions.
429         (gfc_advance_line): Use the new functions.
430
431 2007-11-08  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
432
433         PR fortran/34028
434         * trans-intrinsic.c (gfc_conv_intrinsic_ishft): Use correct type.
435
436 2007-11-08  Tobias Burnus  <burnus@net-b.de>
437
438         PR fortran/33917
439         * interface.c (check_sym_interfaces): Disallow PROCEDURE-declared
440         procedures for MODULE PROCEDURE.
441         * decl.c (match_procedure_in_interface): Do not mark as procedure.
442
443 2007-11-03  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
444
445         PR fortran/33881
446         * trans-array.c (gfc_conv_array_parameter): Evaluate
447         se->string_length instead of the expr->ts.cl->backend_decl.
448
449 2007-11-03  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
450
451         * gfortran.h: Shorten comment.
452         * trans-types.c (gfc_get_function_type): Allow argument to have
453         flavor FL_PROGRAM.
454         * trans-decl.c (gfc_sym_mangled_function_id): Mangle main program
455         name into MAIN__.
456         (build_function_decl): Fix comment.
457         * parse.c (main_program_symbol): Give the main program its proper
458         name, if any. Set its flavor to FL_PROGRAM.
459         (gfc_parse_file): Likewise.
460
461 2007-11-02  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
462
463         * intrinsic.texi (ALLOCATED): Fix typo.
464
465 2007-10-31  Tobias Burnus  <burnus@net-b.de>
466
467         PR fortran/33941
468         * modules.c (intrinsics): Use only alphabetic names for
469         intrinsic operators.
470
471 2007-10-31  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
472
473         PR fortran/33162
474         * interface.c (compare_intr_interfaces): New function to check intrinsic
475         function arguments against formal arguments. (compare_interfaces): Fix
476         logic in comparison of function and subroutine attributes.
477         (compare_parameter): Use new function for intrinsic as argument.
478         * resolve.c (resolve_actual_arglist): Allow an intrinsic without
479         function attribute to be checked further.  Set function attribute if
480         intrinsic symbol is found, return FAILURE if not.
481
482 2007-10-31  Paul Thomas  <pault@gcc.gnu.org>
483
484         PR fortran/33897
485         * decl.c (gfc_match_entry): Do not make ENTRY name
486         global for contained procedures.
487         * parse.c (gfc_fixup_sibling_symbols): Fix code for
488         determining whether a procedure is external.
489
490 2007-10-30  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
491
492         PR fortran/33596
493         * trans-intrinsic.c (gfc_conv_intrinsic_isnan): Strip NOP_EXPR
494         from the result of build_call_expr.
495
496 2007-10-29  Paul Thomas  <pault@gcc.gnu.org>
497
498         PR fortran/31217
499         PR fortran/33811
500         PR fortran/33686
501
502         * trans-array.c (gfc_conv_loop_setup): Send a complete type to
503         gfc_trans_create_temp_array if the temporary is character.
504         * trans-stmt.c (gfc_trans_assign_need_temp): Do likewise for
505         allocate_temp_for_forall_nest.
506         (forall_replace): New function.
507         (forall_replace_symtree): New function.
508         (forall_restore): New function.
509         (forall_restore_symtree): New function.
510         (forall_make_variable_temp): New function.
511         (check_forall_dependencies): New function.
512         (cleanup_forall_symtrees): New function.
513         gfc_trans_forall_1): Add and initialize pre and post blocks.
514         Call check_forall_dependencies to check for all dependencies
515         and either trigger second forall block to copy temporary or
516         copy lval, outside the forall construct and replace all
517         dependent references. After assignment clean-up and coalesce
518         the blocks at the end of the function.
519         * gfortran.h : Add prototypes for gfc_traverse_expr and
520         find_forall_index.
521         expr.c (gfc_traverse_expr): New function to traverse expression
522         and visit all subexpressions, under control of a logical flag,
523         a symbol and an integer pointer. The slave function is caller
524         defined and is only called on EXPR_VARIABLE.
525         (expr_set_symbols_referenced): Called by above to set symbols
526         referenced.
527         (gfc_expr_set_symbols_referenced): Rework of this function to
528         use two new functions above.
529         * resolve.c (find_forall_index): Rework with gfc_traverse_expr,
530         using forall_index.
531         (forall_index): New function used by previous.
532         * dependency.c (gfc_check_dependency): Use gfc_dep_resolver for
533         all references, not just REF_ARRAY.
534         (gfc_dep_resolver): Correct the logic for substrings so that
535         overlapping arrays are handled correctly.
536
537 2007-10-28  Tobias Schlüter  <tobi@gcc.gnu.org>
538
539         PR fortran/32147
540         * module.c (write_symbol): Fix whitespace.
541         (write_symbol0): Walk symtree from left-to-right instead
542         breadth-first.
543         (write_symbol1): Similarly change walk of pointer info tree.
544         (write_module): Insert linebreak.
545         * symbol.c (gfc_traverse_symtree): Change to left-to-right order.
546         (traverse_ns): Likewise.
547
548 2007-10-27 Jerry DeLisle <jvdelisle@gcc.gnu.org>
549
550         PR fortran/31306
551         * decl.c (char_len_param_value): Add check for conflicting attributes of
552         function argument.
553
554 2007-10-27  Tobias Burnus  <burnus@net-b.de>
555
556         PR fortran/33862
557         * lang-specs.h: Support .ftn and .FTN extension, use CPP for .FOR.
558         * options.c (form_from_filename): Support .ftn extension.
559         * gfortran.texi: Document support of .for and .ftn file extension.
560
561 2007-10-26  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
562
563         PR fortran/33162
564         * intrinsic.h: Add prototypes for four new functions, gfc_check_datan2,
565         gfc_check_dprod, gfc_check_fn_d, and gfc_check_x_yd.
566         * intrinsic.c (add_functions): Add double precision checks for dabs,
567         dacos, dacosh, dasin, dasinh, datan, datanh, datan2, dbesj0, dbesj1,
568         dbesy0, dbesy1, dcos, dcosh, ddim, derf, derfc, dexp, dgamma,
569         dlgama, dlog, dlog10, dmod, dsign, dsin, dsinh, dsqrt, dtan, and dtanh.
570         Add real check dprod.
571         * check.c (gfc_check_datan2): New function to check for double precision
572         argumants. (gfc_check_dprod, gfc_check_fn_d, and gfc_check_x_yd): Ditto.
573
574 2007-10-26  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
575
576         * invoke.texi: Fix typo in -fmax-errors=.
577
578 2007-10-26  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
579
580         PR fortran/29784
581         * gfortran.texi: Document that there is no logical/integer
582         conversion performed during I/O operations.
583
584 2007-10-22  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
585
586         PR fortran/33849
587         * resolve.c (resolve_actual_arglist): Fix error message text.
588
589 2007-10-22  Steven G. Kargl  <kargl@gcc.gnu.org>
590
591         PR fortran/31244
592         * gfortran.h (gfc_data_value): Change repeat from unsigned int
593         to mpz_t.
594         * decl.c(top_val_list): Remove msg variable.  Use mpz_t for
595         repeat count.
596         * resolve.c (values):  Change left from unsigned int to mpz_t.
597         (next_data_value): Change for mpz_t.
598         (check_data_variable): Change ??? to FIXME in a comment.  Use
599         "mpz_t left".
600         (resolve_data ): Use "mpz_t left".
601
602 2007-10-21  Paul Thomas  <pault@gcc.gnu.org>
603
604         PR fortran/33749
605         * resolve.c (resolve_ordinary_assign): New function that takes
606         the code to resolve an assignment from resolve_code. In
607         addition, it makes a temporary of any vector index, on the
608         lhs, using gfc_get_parentheses.
609         (resolve_code): On EXEC_ASSIGN call the new function.
610
611 2007-10-20  Tobias Burnus  <burnus@net-b.de>
612
613         PR fortran/33818
614         * resolve.c (resolve_variable): Check that symbol is in the same
615         namespace as the entry function.
616
617 2007-10-20  Paul Thomas  <pault@gcc.gnu.org>
618             FX Coudert <fxcoudert@gcc.gnu.org>
619
620         PR fortran/31608
621         * trans-array.c (gfc_conv_expr_descriptor): For all except
622         indirect references, use gfc_trans_scalar_assign instead of
623         gfc_add_modify_expr.
624         * iresolve.c (check_charlen_present): Separate creation of cl
625         if necessary and add code to treat an EXPR_ARRAY.
626         (gfc_resolve_char_achar): New function.
627         (gfc_resolve_achar, gfc_resolve_char): Call it.
628         (gfc_resolve_transfer): If the MOLD expression does not have a
629         character length expression, get it from a constant length.
630
631 2007-10-19  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
632
633         PR fortran/33544
634         * simplify.c (gfc_simplify_transfer): Only warn for short transfer when
635         -Wsurprising is given.
636         * invoke.texi: Document revised behavior.
637
638 2007-10-18  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
639
640         PR fortran/33795
641         * gfortran.texi: Document GFORTRAN_UNBUFFERED_PRECONNECTED
642         environment variable.  Delete mention of environment variable
643         GFORTRAN_UNBUFFERED_n.
644
645 2007-10-18  Paul Thomas  <pault@gcc.gnu.org>
646
647         PR fortran/33233
648         * resolve.c (check_host_association): Check singly contained
649         namespaces and start search for symbol in current namespace.
650
651 2007-10-18  Paul Thomas  <pault@gcc.gnu.org>
652             Dominique d'Humieres  <dominiq@lps.ens.fr>
653
654         PR fortran/33733
655         * simplify.c (gfc_simplify_transfer): Return null if the source
656         expression is EXPR_FUNCTION.
657
658 2007-10-17 Christopher D. Rickett <crickett@lanl.gov>
659
660         PR fortran/33760
661         * symbol.c (gen_special_c_interop_ptr): Remove code to create
662         constructor for c_null_ptr and c_null_funptr with value of 0.
663         * expr.c (check_init_expr): Prevent check on constructors for
664         iso_c_binding derived types.
665         * resolve.c (resolve_structure_cons): Verify that the user isn't
666         trying to invoke a structure constructor for one of the
667         iso_c_binding derived types.
668
669 2007-10-15 Christopher D. Rickett <crickett@lanl.gov>
670
671         PR fortran/32600
672         * trans-expr.c (gfc_conv_function_call): Generate code to inline
673         c_associated.
674         * symbol.c (get_iso_c_sym): Preserve from_intmod and intmod_sym_id
675         attributes in the resolved symbol.
676         * resolve.c (gfc_iso_c_sub_interface): Remove dead code.
677
678 2007-10-15  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
679
680         PR fortran/33055
681         * trans-io.c (create_dummy_iostat): New function to create a unique
682         dummy variable expression to use with IOSTAT.
683         (gfc_trans_inquire): Use the new function to pass unit number error info
684         to run-time library if a regular IOSTAT variable was not given.
685
686 2007-10-14  Tobias Burnus  <burnus@net-b.de>
687
688         PR fortran/33745
689         * trans-array.c (gfc_conv_ss_startstride): Fix dimension check.
690         (gfc_trans_array_bound_check, gfc_conv_array_ref,
691         gfc_conv_ss_startstride): Simplify error message.
692         * resolve.c (check_dimension): Fix dimension-type switch;
693         improve error message.
694
695 2007-10-13  Tobias Schlüter  <tobi@gcc.gnu.org>
696             Paul Thomas  <pault@gcc.gnu.org>
697
698         PR fortran/33254
699         PR fortran/33727
700         * trans-array.c (get_array_ctor_var_strlen): Check upper bound for
701         constness instead of lower bound.
702         (get_array_ctor_strlen): Add bounds-checking code.
703
704 2007-10-12  Paul Thomas  <pault@gcc.gnu.org>
705
706         PR fortran/33542
707         * resolve.c (resolve_actual_arglist): If the actual argument is
708         ambiguous, then there is an error.
709
710 2007-10-12  Paul Thomas  <pault@gcc.gnu.org>
711
712         PR fortran/33664
713         * expr.c (gfc_specification_expr): If a function is not
714         external, intrinsic or pure is an error.  Set the symbol pure
715         to prevent repeat errors.
716
717 2007-10-10  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
718
719         PR fortran/33636
720         * expr.c (find_array_section): Check for constructor constantness.
721
722 2007-10-08  Tobias Schlüter  <tobi@gcc.gnu.org>
723
724         PR fortran/33689
725         * resolve.c (gfc_resolve_expr): Fix indentation.
726         (resolve_fl_variable_derived): Rename argument.
727         (resolve_fl_variable): Fix case in message.  Clarify logic.
728         Correctly simplify array bounds.
729
730 2007-10-07  Thomas Koenig  <tkoenig@gcc.gnu.org>
731
732         PR libfortran/33683
733         * mathbuiltins.def (GAMMA):  Change function name to
734         "tgamma" instad of "gamma".
735
736 2007-10-07  Tobias Schlüter  <tobi@gcc.gnu.org>
737
738         PR fortran/20851
739         * expr.c (check_inquiry): Typo fix in error message.
740         (check_init_expr): Same * 3.
741         (check_restricted): Verify that no dummy arguments appear in
742         restricted expressions in ELEMENTAL procedures.
743         * resolve.c (resolve_fl_variable): Exchange order of checks to
744         avoid side-effect.
745
746 2007-10-06  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
747
748         PR fortran/33609
749         * simplify.c (range_check): Return gfc_bad_expr if incoming expression 
750         is NULL.
751
752 2007-10-06  Tobias Schlüter  <tobi@gcc.gnu.org>
753
754         * simplify.c (gfc_simplify_size): Fix typo.
755
756 2007-10-06  Tobias Schlüter  <tobi@gcc.gnu.org>
757
758         PR fortran/25076
759         * resolve.c (gfc_find_forall_index): Move towards top,
760         renaming to ...
761         (find_forall_index): ... this.  Add check for NULL expr.
762         (resolve_forall_iterators): Verify additional constraint.
763         (resolve_forall): Remove checks obsoleted by new code in
764         resolve_forall_iterators.
765
766 2007-10-05  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
767
768         * gfortran.h (gfc_get_data_variable, gfc_get_data_value,
769         gfc_get_data): Move to decl.c.
770         (global_used): Rename into gfc_global_used.
771         (gfc_formalize_init_value, gfc_get_section_index,
772         gfc_assign_data_value, gfc_assign_data_value_range,
773         gfc_advance_section): Move to data.h.
774         (gfc_set_in_match_data): Remove.
775         * decl.c (gfc_get_data_variable, gfc_get_data_value,
776         gfc_get_data): Move here.
777         (gfc_set_in_match_data): Rename into set_in_match_data.
778         (gfc_match_data): Likewise.
779         (add_global_entry): Rename global_used into gfc_global_used.
780         * data.c: Include data.h.
781         * trans.h (gfc_todo_error): Remove.
782         * trans-array.c (gfc_trans_array_constructor,
783         gfc_conv_ss_startstride, gfc_conv_loop_setup): Change
784         gfc_todo_error into assertions.
785         * resolve.c (resolve_global_procedure): Rename global_used into
786         gfc_global_used.
787         * parse.c (gfc_global_used, parse_module, add_global_procedure,
788         add_global_program): Likewise.
789         * trans-intrinsic.c (gfc_walk_intrinsic_function): Rename
790         global_used into gfc_global_used.
791         * Make-lang.in: Add dependencies on fortran/data.h.
792         * data.h: New file.
793
794 2007-10-04  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
795
796         PR fortran/33529
797         * decl.c (match_char_kind): New function.
798         (match_char_spec): Use match_char_kind.
799
800 2007-10-04  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
801
802         PR fortran/33502
803         * scanner.c (gfc_advance_line): Call debug_hooks->end_source_file
804         and debug_hooks->start_source_file when appropriate, and set
805         dbg_emitted.
806         (gfc_define_undef_line): New function.
807         (load_file): Don't error out on #define and #undef lines.
808         * parse.c (next_statement): Call gfc_define_undef_line.
809         (gfc_parse_file): Call debug_hooks->start_source_file and
810         debug_hooks->end_source_file for the main source file if
811         required.
812         * gfortran.h (gfc_linebuf): Add dbg_emitted field.
813         (gfc_define_undef_line): New prototype.
814
815 2007-10-04  Tobias Schlüter  <tobi@gcc.gnu.org>
816
817         PR fortran/33626
818         * resolve.c (resolve_operator): Always copy the type for
819         expressions in parentheses.
820
821 2007-10-04  Paul Thomas  <pault@gcc.gnu.org>
822
823         PR fortran/33646
824         PR fortran/33542
825         * interface.c (check_interface1): Revert patch of 10-02.
826
827 2007-10-03  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
828
829         PR fortran/26682
830         * trans-decl.c (build_function_decl): Set "externally_visible"
831         attribute on the MAIN program decl.
832
833 2007-10-03  Tobias Schlüter  <tobi@gcc.gnu.org>
834
835         PR fortran/33198
836         * resolve.c (has_default_initializer): Move to top.  Make bool.
837         (resolve_common_blocks): Simplify logic.  Add case for derived
838         type initialization.
839         (resolve_fl_variable_derived): Split out from ...
840         (resolve_fl_variable): ... here, while adapting to new h_d_i
841         interface.
842
843 2007-10-03  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
844
845         PR fortran/26682
846         * options.c (gfc_post_options): Issue an error when
847         -fwhole-program is used.
848
849 2007-10-02  Paul Thomas  <pault@gcc.gnu.org>
850
851         PR fortran/33542
852         * interface.c (check_interface1): Specific procedures are
853         always ambiguous if they have the same name.
854
855 2007-10-02  Paul Thomas  <pault@gcc.gnu.org>
856
857         PR fortran/33566
858         * primary.c (gfc_match_rvalue): Make all expressions with array
859         references to structure parameters into variable expressions.
860
861 2007-10-02  Paul Thomas  <pault@gcc.gnu.org>
862
863         PR fortran/33554
864         * trans-decl.c (init_intent_out_dt): New function.
865         (gfc_trans_deferred_vars): Remove the code for default
866         initialization of INTENT(OUT) derived types and put it
867         in the new function.  Call it earlier than before, so
868         that array offsets and lower bounds are available.
869
870 2007-10-02  Paul Thomas  <pault@gcc.gnu.org>
871
872         PR fortran/33550
873         * decl.c (get_proc_name): Return rc if rc is non-zero; ie. if
874         the name is a reference to an ambiguous symbol.
875
876 2007-10-02  Paul Thomas  <pault@gcc.gnu.org>
877
878         PR fortran/31154
879         PR fortran/31229
880         PR fortran/33334
881         * decl.c : Declare gfc_function_kind_locs and
882         gfc_function_type_locus.
883         (gfc_match_kind_spec): Add second argument kind_expr_only.
884         Store locus before trying to match the expression. If the
885         current state corresponds to a function declaration and there
886         is no match to the expression, read to the parenthesis, return
887         kind = -1, dump the expression and return.
888         (gfc_match_type_spec): Renamed from match_type_spec and all
889         references changed.  If an interface or an external function,
890         store the locus, set kind = -1 and return.  Otherwise, if kind
891         is already = -1, use gfc_find_symbol to try to find a use
892         associated or imported type.
893         match.h : Prototype for gfc_match_type_spec.
894         * parse.c (match_deferred_characteristics): New function.
895         (parse_spec): If in a function, statement is USE or IMPORT
896         or DERIVED_DECL and the function kind=-1, call
897         match_deferred_characteristics.  If kind=-1 at the end of the
898         specification expressions, this is an error.
899         * parse.h : Declare external gfc_function_kind_locs and
900         gfc_function_type_locus.
901
902 2007-09-27  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
903
904         * module.c (mio_expr): Avoid -Wcast-qual warning.
905
906 2007-09-27  Tobias Schlüter  <tobi@gcc.gnu.org>
907
908         * arith.c (reduce_binary_aa): Fix capitalization.
909         * check.c (gfc_check_dot_product): Likewise.
910         (gfc_check_matmul): Likewise.
911         * expr.c (gfc_check_conformance): Likewise.
912         (gfc_check_assign): Likewise.
913         (gfc_default_initializer): Simplify logic.
914         * trans.c (gfc_msg_bounds): Make const.
915         (gfc_msg_fault): Likewise.
916         (gfc_msg_wrong_return): Likewise.
917         * trans.h: Add const to corresponding extern declarations.
918
919 2007-09-27  Paul Thomas  <pault@gcc.gnu.org>
920
921         PR fortran/33568
922         * trans-intrinsic.c (gfc_conv_intrinsic_aint): Allow for the 
923         possibility of the optional KIND argument by making arg
924         an array, counting the number of arguments and using arg[0].
925
926 2007-09-26  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
927
928         PR fortran/30780
929         * invoke.texi: Add note to -ffpe-trap option. Fix typos.
930
931 2007-09-23  Tobias Schlüter  <tobi@gcc.gnu.org>
932
933         PR fortran/33269
934         * io.c (check_format_string): Move NULL and constant checks into
935         this function.
936         (check_io_constraints): Call gfc_simplify_expr() before calling
937         check_format_string().  Remove NULL and constant checks.
938
939 2007-09-24  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
940
941         PR fortran/33538
942         * scanner.c, parse.c, gfortran.h: Revert revision 128671.
943
944 2007-09-23  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
945
946         PR fortran/33528
947         * scanner.c (preprocessor_line): Call linemap_add when exiting
948         a file.
949         (gfc_new_file): Adjust debug code for USE_MAPPED_LOCATION.
950
951 2007-09-22  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
952
953         PR fortran/33522
954         * trans-types.c (gfc_get_desc_dim_type): Mark artificial
955         variables with TREE_NO_WARNING.
956         (gfc_get_array_descriptor_base): Likewise.
957
958 2007-09-22  Paul Thomas  <pault@gcc.gnu.org>
959
960         PR fortran/33337
961         PR fortran/33376
962         * trans-decl.c (gfc_create_module_variable): Output
963         derived type parameters.
964         * arith.c (gfc_parentheses): Return the argument if
965         it is a constant expression.
966         * primary.c (gfc_match_rvalue): Remove the clearing of
967         the module name and the use_assoc attribute for derived
968         type parameter expressions.
969
970 2007-09-22  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
971
972         PR fortran/33502
973         * scanner.c (gfc_advance_line): Call debug_hooks->start_source_file
974         and debug_hooks->end_source_file when entering and exiting
975         included files.
976         (gfc_define_undef_line): New function.
977         (load_file): Ignore #define and #undef preprocessor lines
978         while reading source files.
979         * parse.c (next_statement): Handle #define and #undef
980         preprocessor lines.
981         (gfc_parse_file): Call debug_hooks->start_source_file and
982         debug_hooks->end_source_file for the main source file if
983         requested by the debug format.
984         * gfortran.h (gfc_define_undef_line): Add prototype.
985
986 2007-09-22  Tobias Burnus  <burnus@net-b.de>
987
988         PR fortran/33445
989         * scanner.c (skip_free_comments): Warn if !$OMP& is used
990         if no OpenMP directive is to be continued.
991
992 2007-09-21  Paul Thomas  <pault@gcc.gnu.org>
993
994         *trans-expr.c (gfc_trans_pointer_assignment): Convert array
995         descriptor for subref pointer assignements, rather than using
996         the loop info version.
997
998 2007-09-21  Tobias Burnus  <burnus@net-b.de>
999
1000         PR fortran/33037
1001         * simplify.c (gfc_simplify_transfer): Warn if source size
1002         is smaller than result size.
1003
1004 2007-09-20  Asher Langton  <langton2@llnl.gov>
1005
1006         PR fortran/20441
1007         * gfortran.h : Add init_local_* enums and init_flag_* flags to
1008         gfc_option_t.
1009         * lang.opt: Add -finit-local-zero, -finit-real, -finit-integer,
1010         -finit-character, and -finit-logical flags.
1011         * invoke.texi: Document new options.
1012         * resolve.c (build_init_assign): New function.
1013         (apply_init_assign): Move part of function into build_init_assign.
1014         (build_default_init_expr): Build local initializer (-finit-*).
1015         (apply_default_init_local): Apply local initializer (-finit-*).
1016         (resolve_fl_variable): Try to add local initializer (-finit-*).
1017         * options.c (gfc_init_options, gfc_handle_option,
1018         gfc_post_options): Handle -finit-local-zero, -finit-real,
1019         -finit-integer, -finit-character, and -finit-logical flags.
1020
1021 2007-09-20  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1022
1023         PR fortran/33221
1024         * gfortran.h (symbol_attribute): Add zero_comp field.
1025         * symbol.c (gfc_use_derived): Handle case of emtpy derived types.
1026         * decl.c (gfc_match_data_decl): Likewise.
1027         (gfc_match_derived_decl): Likewise.
1028         * module.c (ab_attribute, attr_bits): Add AB_ZERO_COMP member.
1029         (mio_symbol_attribute): Write and read AB_ZERO_COMP.
1030         * resolve.c (resolve_symbol): Handle case of emtpy derived types.
1031         * parse.c (parse_derived): Likewise.
1032
1033 2007-09-20  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1034
1035         PR fortran/33288
1036         * arith.c (reduce_unary, reduce_binary_ac, reduce_binary_ca,
1037         reduce_binary_aa): Call ourselves recursively if an element of
1038         the constructor is itself a constant array.
1039
1040 2007-09-20  Tobias Schlüter  <tobi@gcc.gnu.org>
1041
1042         * io.c (resolve_tag_format): New function using code split out
1043         and simplified from ...
1044         (resolve_tag): ... this function.  Simplify logic.  Unify
1045         IOSTAT, IOLENGTH and SIZE handling.
1046
1047 2007-09-20  Christopher D. Rickett  <crickett@lanl.gov>
1048
1049         PR fortran/33497
1050         * resolve.c (gfc_iso_c_func_interface): Use information from
1051         subcomponent if applicable.
1052
1053 2007-09-20  Tobias Burnus  <burnus@net-b.de>
1054
1055         PR fortran/33325
1056         * intrinsic.text: Add documentation of the intrinsic modules.
1057         * gfortran.texi: Link to intrinsic-modules section and to
1058         the GOMP manual.
1059
1060 2007-09-18  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1061
1062         PR fortran/31119
1063         * trans-array.c (gfc_conv_ss_startstride): Only perform bounds
1064         checking for optional args when they are present.
1065
1066 2007-09-18  Tobias Burnus  <burnus@net-b.de>
1067
1068         PR fortran/33231
1069         * resolve.c (resolve_elemental_actual): Check for conformance
1070         of intent out/inout dummies.
1071
1072 2007-09-17  Tobias Burnus  <burnus@net-b.de>
1073
1074         PR fortran/33106
1075         * resolve.c (resolve_symbol): Reject public variable of
1076         private derived-types for Fortran 95.
1077
1078 2007-09-17  Tobias Burnus  <burnus@net-b.de>
1079
1080         * resolve.c (resolve_fl_procedure): Allow private dummies
1081         for Fortran 2003.
1082
1083 2007-09-17  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1084
1085         * trans-types.c (gfc_get_desc_dim_type): Do not to try
1086         emit debug info.
1087         (gfc_get_array_descriptor_base): Likewise.
1088         (gfc_get_mixed_entry_union): Likewise
1089         (gfc_get_derived_type): Set decl location for fields and
1090         derived type itself.
1091
1092 2007-09-16  Paul Thomas  <pault@gcc.gnu.org>
1093
1094         PR fortran/29396
1095         PR fortran/29606
1096         PR fortran/30625
1097         PR fortran/30871
1098         * trans.h : Add extra argument to gfc_build_array_ref. Rename
1099         gfc_conv_aliased_arg to gfc_conv_subref_array_arg.  Move
1100         prototype of is_aliased_array to gfortran.h and rename it
1101         gfc_is_subref_array.  Add field span to lang_decl, add a new
1102         decl lang specific flag accessed by GFC_DECL_SUBREF_ARRAY_P
1103         and a new type flag GFC_DECL_SUBREF_ARRAY_P.
1104         * trans.c (gfc_build_array_ref): Add the new argument, decl.
1105         If this is a subreference array pointer, use the lang_decl
1106         field 'span' to calculate the offset in bytes and use pointer
1107         arithmetic to address the element.
1108         * trans-array.c (gfc_conv_scalarized_array_ref,
1109         gfc_conv_array_ref): Add the backend declaration as the third
1110         field, if it is likely to be a subreference array pointer.
1111         (gfc_conv_descriptor_dimension, gfc_trans_array_ctor_element,
1112         gfc_trans_array_constructor_element, structure_alloc_comps,
1113         gfc_conv_array_index_offset): For all other references to
1114         gfc_build_array_ref, set the third argument to NULL.
1115         (gfc_get_dataptr_offset): New function.
1116         (gfc_conv_expr_descriptor): If the rhs of a pointer assignment
1117         is a subreference array, then calculate the offset to the
1118         subreference of the first element and set the descriptor data
1119         pointer to this, using gfc_get_dataptr_offset.
1120         trans-expr.c (gfc_get_expr_charlen): Use the expression for the
1121         character length for a character subreference.
1122         (gfc_conv_substring, gfc_conv_subref_array_arg): Add NULL for
1123         third argument in call to gfc_build_array_ref.
1124         (gfc_conv_aliased_arg): Rename to gfc_conv_subref_array_arg.
1125         (is_aliased_array): Remove.
1126         (gfc_conv_function_call): Change reference to is_aliased_array
1127         to gfc_is_subref_array and reference to gfc_conv_aliased_arg to
1128         gfc_conv_subref_array_arg.
1129         (gfc_trans_pointer_assignment): Add the array element length to
1130         the lang_decl 'span' field.
1131         * gfortran.h : Add subref_array_pointer to symbol_attribute and
1132         add the prototype for gfc_is_subref_array.
1133         * trans-stmt.c : Add NULL for third argument in all references
1134         to gfc_build_array_ref.
1135         * expr.c (gfc_is_subref_array): Renamed is_aliased_array.
1136         If this is a subreference array pointer, return true.
1137         (gfc_check_pointer_assign): If the rhs is a subreference array,
1138         set the lhs subreference_array_pointer attribute.
1139         * trans-decl.c (gfc_get_symbol_decl): Allocate the lang_decl
1140         field if the symbol is a subreference array pointer and set an
1141         initial value of zero for the 'span' field.
1142         * trans-io.c (set_internal_unit): Refer to is_subref_array and
1143         gfc_conv_subref_array_arg.
1144         (nml_get_addr_expr): Add NULL third argument to
1145         gfc_build_array_ref. 
1146         (gfc_trans_transfer): Use the scalarizer for a subreference
1147         array.
1148
1149 2007-09-13  Thomas Koenig  <tkoenig@gcc.gnu.org>
1150
1151         * iresolve.c (resolve_mask_arg): If a mask is an array
1152         expression, convert it to kind=1.
1153
1154 2007-09-13  Tobias Burnus  <burnus@net-b.de>
1155
1156         PR fortran/33343
1157         * expr.c (gfc_check_conformance): Print ranks in the error message.
1158         * resolve.c (resolve_elemental_actual): Check also conformance of
1159         the actual arguments for elemental functions.
1160
1161 2007-09-13  Tobias Burnus  <burnus@net-b.de>
1162
1163         * symbol.c (gfc_add_elemental,gfc_add_pure,gfc_add_recursive):
1164         Allow prefixes only to be specified once.
1165
1166 2007-09-13  Tobias Burnus  <burnus@net-b.de>
1167
1168         PR fortran/33412
1169         * symbol.c (check_conflict): Add conflict of ELEMENTAL with Bind(C).
1170
1171 2007-09-12  Tobias Burnus  <burnus@net-b.de>
1172
1173         PR fortran/33297
1174         * check.c (scalar_check): Move up in the file.
1175         (kind_check): Call scalar_check.
1176         (dim_check): If optional, do not call nonoptional_check; use
1177         bool for optional.
1178         (gfc_check_all_any,gfc_check_count,gfc_check_cshift,gfc_check_eoshift,
1179         gfc_check_lbound,gfc_check_minloc_maxloc,check_reduction,
1180         gfc_check_spread,gfc_check_ubound): Use true/false instead of 0/1
1181         for dim_check; honor changed meaning of optional.
1182         (gfc_check_int): Replace checks by kind_check.
1183         (gfc_check_size): Replace checks by dim_check.
1184
1185 2007-09-12  Tobias Burnus  <burnus@net-b.de>
1186
1187         PR fortran/33284
1188         PR fortran/33310
1189         * symbol.c (check_conflict): Add conflict between INTRINSIC and ENTRY
1190         and between BIND(C) and PARAMETER.
1191
1192 2007-09-12  Tobias Burnus  <burnus@net-b.de>
1193
1194         * trans-expr.c (gfc_conv_initializer): Fix expr == NULL check.
1195
1196 2007-09-12  Jan Hubicka  <jh@suse.cz>
1197
1198         * f95-lang.c (LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION): Kill.
1199
1200 2007-09-12  Christopher D. Rickett  <crickett@lanl.gov>
1201
1202         PR fortran/33395
1203         * trans-expr.c (gfc_conv_initializer): Remove unnecessary test for
1204         intmod_sym_id and use derived symbol to set new kind of C_NULL_PTR
1205         and C_NULL_FUNPTR expressions.
1206
1207 2007-09-11  Christopher D. Rickett  <crickett@lanl.gov>
1208
1209         PR fortran/33040
1210         * trans-expr.c (gfc_trans_structure_assign): Convert component
1211         C_NULL_PTR and C_NULL_FUNPTR component initializers to (void *).
1212         * trans-types.c (gfc_get_derived_type): Create a backend_decl for
1213         the c_address field of C_PTR and C_FUNPTR and ensure initializer
1214         is of proper type/kind for (void *).
1215
1216 2007-09-11  Jan Hubicka <jh@suse.cz>
1217
1218         * f95-lang.c (gfc_expand_function): Kill.
1219         (LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION): Kill.
1220
1221 2007-09-08  Tobias Burnus  <burnus@net-b.de>
1222
1223         PR fortran/31547
1224         * gfortran.texi: Document when CPP is called.
1225
1226         * intrinsic.texi (IOR): Fix typos.
1227
1228 2007-09-10  Paul Thomas  <pault@gcc.gnu.org>
1229
1230         PR fortran/33370
1231         * trans-expr.c (copyable_array_p):  Add tests that expression
1232         is a variable, that it has no subreferences and that it is a
1233         full array.
1234         (gfc_trans_assignment): Change conditions to suit modifications
1235         to copyable_array_p.
1236
1237 2007-09-06  Tom Tromey  <tromey@redhat.com>
1238
1239         * scanner.c (get_file): Update.
1240         (load_file): Update.
1241         (gfc_next_char_literal): Use gfc_linebuf_linenum.
1242         * f95-lang.c (gfc_init): Update.
1243         * gfortran.h (gfc_linebuf_linenum): New macro.
1244
1245 2007-09-05  Sandra Loosemore  <sandra@codesourcery.com>
1246
1247         * trans-decl.c (build_entry_thunks): Use set_cfun.
1248         (gfc_generate_function_code): Likewise.
1249
1250 2007-09-05  Paul Thomas  <pault@gcc.gnu.org>
1251
1252         PR fortran/31564
1253         * primary.c (gfc_match_rvalue): Make expressions that refer
1254         to derived type parameters that have array references into
1255         variable expressions.  Remove references to use association
1256         from the symbol.
1257
1258         PR fortran/33241
1259         * decl.c (add_init_expr_to_sym): Provide assumed character
1260         length parameters with the length of the initialization
1261         expression, if a constant, or that of the first element of
1262         an array.
1263
1264 2007-09-04  Janus Weil  <jaydub66@gmail.com>
1265             Paul Thomas  <pault@gcc.gnu.org>
1266
1267         * decl.c (match_procedure_decl,match_procedure_in_interface,
1268         gfc_match_procedure): Handle PROCEDURE statements.
1269         * gfortran.h (struct gfc_symbol): New member "gfc_symbol *interface".
1270         (enum gfc_statement): New element "ST_PROCEDURE".
1271         (strcut symbol_attribute): New member "unsigned procedure".
1272         * interface.c (check_interface0): Extended error checking.
1273         * match.h: Add gfc_match_procedure prototype.
1274         * parse.c (decode_statement,next_statement,gfc_ascii_statement,
1275         parse_derived,parse_interface): Implement PROCEDURE statements.
1276         * resolve.c (resolve_symbol): Ditto.
1277         * symbol.c (check_conflict): Ditto.
1278         (gfc_add_proc): New function for setting the procedure attribute.
1279         (copy_formal_args): New function for copying formal argument lists.
1280
1281 2007-09-03  Daniel Jacobowitz  <dan@codesourcery.com>
1282
1283         * Make-lang.in (gfortranspec.o): Remove SHLIB_MULTILIB.
1284
1285 2007-09-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1286
1287         * gfortranspec.c (lang_specific_driver): Use CONST_CAST2.
1288         * options.c (gfc_post_options): Supply a TYPE for CONST_CAST.
1289         * parse.c (parse_omp_structured_block): Likewise,
1290         * st.c (gfc_free_statement): Likewise,
1291
1292 2007-09-03  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1293
1294         PR fortran/31675
1295         * libgfortran.h: New file.
1296         * iso-fortran-env.def: Use macros in the new header instead of
1297         hardcoded integer constants.
1298         * Make-lang.in (F95_PARSER_OBJS, GFORTRAN_TRANS_DEPS): Add
1299         fortran/libgfortran.h.
1300         * gfortran.h (GFC_STD_*, GFC_FPE_*, options_convert,
1301         ioerror_codes): Remove.
1302         * trans.c (ERROR_ALLOCATION): Remove.
1303         (gfc_call_malloc, gfc_allocate_with_status,
1304         gfc_allocate_array_with_status): Use LIBERROR_ALLOCATION.
1305         * trans-types.h (GFC_DTYPE_*): Remove.
1306         * trans-decl.c (gfc_generate_function_code): Use
1307         GFC_CONVERT_NATIVE instead of CONVERT_NATIVE.
1308         * trans-io.c (set_parameter_value, set_parameter_ref): Use
1309         LIBERROR_* macros instead of IOERROR_ macros.
1310         * trans-intrinsic.c (gfc_conv_intrinsic_function): Use
1311         LIBERROR_END and LIBERROR_EOR instead of hardcoded constants.
1312         * options.c (gfc_init_options): Use GFC_CONVERT_NATIVE instead of
1313         CONVERT_NATIVE.
1314         (gfc_handle_option): Use GFC_CONVERT_* macros instead of CONVERT_*.
1315
1316 2007-09-02  Steven G. Kargl  <kargl@gcc.gnu.org>
1317
1318         * invoke.texi: Fix the -frange-checking option entry.
1319
1320 2007-09-02  Roger Sayle  <roger@eyesopen.com>
1321
1322         * decl.c (match_string_p): New helper function to explicitly match
1323         a string of characters.
1324         (match_attr_spec): Remove no longer needed DECL_COLON from decl_types.
1325         Delete decls array and peek_char.  Rewrite decl attribute parser to
1326         avoid calling gfc_match_strings.
1327         * match.c (gfc_match_strings): Delete unused function.
1328         * match.h (gfc_match_strings): Delete prototype.
1329
1330 2007-09-02  Tobias Schlüuter  <tobi@gcc.gnu.org>
1331
1332         * dump-parse-tree.c (show_char_const): New function.
1333         (gfc_show_expr): Use it.
1334         * expr.c (find_substring_ref): Rework to not keep characters
1335         dangling beyond end of string.
1336
1337 2007-09-02  H.J. Lu  <hongjiu.lu@intel.com>
1338
1339         PR fortran/33276
1340         * array.c (expand_iterator): Initialize frame.prev.
1341
1342 2007-08-31  Tobias Burnus  <burnus@net-b.de>
1343
1344         PR fortran/33232
1345         * io.c (match_io): Also diagnose extra comma for READ.
1346
1347 2007-08-31  Joseph Myers  <joseph@codesourcery.com>
1348
1349         * intrinsic.texi (LGAMMA): Remove empty @cindex line.
1350
1351 2007-08-31  Paul Thomas  <pault@gcc.gnu.org>
1352
1353         PR fortran/31879
1354         PR fortran/31197
1355         PR fortran/31258
1356         PR fortran/32703
1357         * gfortran.h : Add prototype for gfc_resolve_substring_charlen.
1358         * resolve.c (gfc_resolve_substring_charlen): New function.
1359         (resolve_ref): Call gfc_resolve_substring_charlen.
1360         (gfc_resolve_character_operator): New function.
1361         (gfc_resolve_expr): Call the new functions in cases where the
1362         character length is missing.
1363         * iresolve.c (cshift, eoshift, merge, pack, reshape, spread,
1364         transpose, unpack): Call gfc_resolve_substring_charlen for
1365         source expressions that are character and have a reference.
1366         * trans.h (gfc_trans_init_string_length) Change name to
1367         gfc_conv_string_length; modify references in trans-expr.c,
1368         trans-array.c and trans-decl.c.
1369         * trans-expr.c (gfc_trans_string_length): Handle case of no
1370         backend_decl.
1371         (gfc_conv_aliased_arg): Remove code for treating substrings
1372         and replace with call to gfc_trans_string_length.
1373         * trans-array.c (gfc_conv_expr_descriptor): Remove code for
1374         treating strings and call gfc_trans_string_length instead.
1375
1376 2007-08-30  Tobias Burnus  <burnus@net-b.de>
1377
1378         PR fortran/33228
1379         * interface.c (check_interface0): Improve error for external procs.
1380         (check_sym_interfaces): Fix checking of module procedures.
1381
1382 2007-08-29  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1383
1384         PR fortran/32989
1385         * iresolve.c (gfc_resolve_getarg): Handle non-default integer
1386         kinds.
1387         * check.c (gfc_check_getarg): New function
1388         * intrinsic.h: Add prototype for gfc_check_getarg.
1389         * intrinsic.c (add_subroutines): Add reference to gfc_check_getarg.
1390         * intrinsic.texi (GETARG): Adjust documentation.
1391
1392 2007-08-29  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1393             Tobias Burnus  <burnus@gcc.gnu.org>
1394
1395         PR fortran/33105
1396         * intrinsic.c (add_functions): Add IS_IOSTAT_END and
1397         IS_IOSTAT_EOR intrinsics.
1398         * gfortran.h (gfc_isym_id): Add GFC_ISYM_IS_IOSTAT_END and
1399         GFC_ISYM_IS_IOSTAT_EOR.
1400         * trans-intrinsic.c (gfc_conv_has_intvalue): New function.
1401         (gfc_conv_intrinsic_function): Call gfc_conv_has_intvalue for
1402         GFC_ISYM_IS_IOSTAT_END and GFC_ISYM_IS_IOSTAT_EOR.
1403         * intrinsic.texi: Add IS_IOSTAT_END and IS_IOSTAT_EOR.
1404
1405 2007-08-28  Christopher D. Rickett  <crickett@lanl.gov>
1406
1407         PR fortran/33215
1408         * decl.c (build_sym): Pass number of identifiers on line to
1409         set_binding_label.
1410         (set_binding_label): Verify that only one identifier given if
1411         NAME= specified, even if the given binding label has zero length.
1412         (gfc_match_bind_c): Remove declaration for has_name_equals because
1413         it hides the static global one that is needed.
1414
1415 2007-08-29  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1416
1417         * trans-array.c (gfc_grow_array): Use gfc_call_realloc.
1418         (gfc_array_allocate): Use gfc_allocate_with_status and
1419         gfc_allocate_array_with_status.
1420         (gfc_array_deallocate): Use gfc_deallocate_with_status.
1421         (gfc_trans_dealloc_allocated): Use gfc_deallocate_with_status.
1422         * trans-stmt.c (gfc_trans_allocate): Use gfc_allocate_with_status.
1423         (gfc_trans_deallocate): Use gfc_deallocate_with_status.
1424         * trans.c (gfc_allocate_with_status, gfc_allocate_array_with_status,
1425         gfc_deallocate_with_status, gfc_call_realloc): New functions.
1426         * trans.h (gfc_allocate_with_status, gfc_allocate_array_with_status,
1427         gfc_deallocate_with_status, gfc_call_realloc): New prototypes.
1428         (gfor_fndecl_internal_realloc, gfor_fndecl_allocate,
1429         gfor_fndecl_allocate_array, gfor_fndecl_deallocate): Remove.
1430         * f95-lang.c (gfc_init_builtin_functions): Create decl for
1431         BUILT_IN_REALLOC.
1432         * trans-decl.c (gfor_fndecl_internal_realloc,
1433         gfor_fndecl_allocate, gfor_fndecl_allocate_array,
1434         gfor_fndecl_deallocate): Remove function decls.
1435         (gfc_build_builtin_function_decls): Likewise.
1436
1437 2007-08-28  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
1438
1439         PR fortran/33055
1440         Revert previous patch.
1441
1442 2007-08-28  Jakub Jelinek  <jakub@redhat.com>
1443
1444         PR fortran/22244
1445         * Make-lang.in (fortran/trans-types.o): Depend on $(FLAGS_H).
1446         * trans-types.c: Include flags.h.
1447         (gfc_get_nodesc_array_type): Add TYPE_DECL TYPE_NAME with
1448         correct bounds and dimensions for packed arrays.
1449
1450 2007-08-27  Tobias Burnus  <burnus@net-b.de>
1451
1452         * simplify.c (gfc_simplify_lgamma): Fix mpfr_lgamma call.
1453
1454 2007-08-26  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
1455
1456         PR fortran/33055
1457         * trans-io.c (create_dummy_iostat): New function to create a unique
1458         dummy variable expression to use with IOSTAT.
1459         (gfc_trans_inquire): Use the new function to pass unit number error info
1460         to run-time library if a regular IOSTAT variable was not given.
1461
1462 2007-08-26  H.J. Lu  <hongjiu.lu@intel.com>
1463
1464         * gfortran.h (gfc_isym_id): Add GFC_ISYM_GAMMA and
1465         GFC_ISYM_LGAMMA.
1466
1467 2007-08-26  Asher Langton  <langton2@llnl.gov>
1468             Tobias Burnus  <burnus@net-b.de>
1469
1470         * gfortran.h (gfc_option_t): Add flag_recursive.
1471         * lang.opt: Add -frecursive option and update -fopenmp.
1472         * invoke.texi (-frecursive): Document new option.
1473         (-fopenmp,-fno-automatic,-fmax-stack-var-size): Update.
1474         * options.c (gfc_init_options, gfc_post_options,
1475         gfc_handle_option): Add -frecursive and modify -fopenmp.
1476         (gfc_post_options): Add warning for conflicting flags.
1477
1478 2007-08-26  Tobias Burnus  <burnus@net-b.de>
1479
1480         PR fortran/31298
1481         * module.c (mio_symbol_ref,mio_interface_rest):  Return pointer_info.
1482         (load_operator_interfaces): Support multible loading of an operator.
1483
1484 2007-08-26  Tobias Burnus  <burnus@net-b.de>
1485
1486         PR fortran/32985
1487         * match.c (gfc_match_common): Remove SEQUENCE diagnostics.
1488         * resolve.c (resolve_common_blocks): Add SEQUENCE diagnostics;
1489         fix walking through the tree.
1490
1491 2007-08-26  Tobias Burnus  <burnus@net-b.de>
1492
1493         PR fortran/32980
1494         * intrinsic.h (gfc_simplify_gamma,gfc_simplify_lgamma,
1495         gfc_resolve_gamma,gfc_resolve_lgamma): New function declations.
1496         * mathbuiltins.def: Define GAMMA and LGAMMA.
1497         * intrinsic.c (add_functions): Add GAMMA, DGAMMA, LGAMMA, ALGAMA
1498         and DLGAMA.
1499         * simplify.c (gfc_simplify_gamma,gfc_simplify_lgamma): New functions.
1500         * iresolve.c (gfc_resolve_gamma,gfc_resolve_lgamma): New functions.
1501         * intrinsic.texi: Add documentation for GAMMA and LGAMMA.
1502
1503 2007-08-26  Tobias Burnus  <burnus@net-b.de>
1504
1505         PR fortran/33188
1506         * parse.c (parse_derived): Support empty derived type
1507         definitions for Fortran 2003.
1508
1509 2007-08-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1510
1511         * trans-openmp.c (gfc_omp_privatize_by_reference): Constify.
1512         * trans.h (gfc_omp_privatize_by_reference): Likewise.
1513
1514 2007-08-24  Tobias Burnus  <burnus@net-b.de>
1515
1516         PR fortran/33178
1517         * intrinsic.c (gfc_intrinsic_func_interface): Fix initialization
1518         expression check.
1519
1520 2007-08-24  Thomas Koenig  <tkoenig@gcc.gnu.org>
1521
1522         PR fortran/32972
1523         * iresolve.c:  Don't convert array masks.
1524
1525 2007-08-24  Tobias Burnus  <burnus@net-b.de>
1526
1527         PR fortran/33139
1528         * trans-array.c (gfc_conv_expr_descriptor): Copy bounds for
1529         whole-array pointer assignments.
1530
1531 2007-08-23  Jakub Jelinek  <jakub@redhat.com>
1532
1533         * decl.c (variable_decl): Don't share charlen structs if
1534         length == NULL.
1535         * trans-decl.c (create_function_arglist): Assert
1536         f->sym->ts.cl->backend_decl is NULL instead of unsharing
1537         charlen struct here.
1538
1539 2007-08-23  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1540
1541         PR fortran/33095
1542         * trans-intrinsic.c (gfc_conv_intrinsic_minmax): Remove
1543         runtime error checking.
1544
1545 2007-08-22  Roger Sayle  <roger@eyesopen.com>
1546             Tobias Schlüter <tobias.schlueter@physik.uni-muenchen.de>
1547
1548         * match.c (intrinsic_operators): Delete.
1549         (gfc_match_intrinsic_op): Rewrite matcher to avoid calling
1550         gfc_match_strings.
1551
1552 2007-08-22  Christopher D. Rickett  <crickett@lanl.gov>
1553
1554         PR fortran/33020
1555         * resolve.c (gfc_iso_c_sub_interface): Remove setting of type and
1556         kind for optional SHAPE parameter of C_F_POINTER.
1557
1558 2007-08-22  Janus Weil  <jaydub66@gmail.com>
1559
1560         * decl.c (match_attr_spec): Pass on errors from gfc_match_bind_c.
1561         (gfc_match_bind_c): Bugfix in check for NAME= with abstract interfaces.
1562         (gfc_match_mopdproc): Bugfix to reject module procedures in
1563         abstract interfaces.
1564
1565 2007-08-22  Kai Tietz  <kai.tietz@onevision.com>
1566
1567         * f95-lang.c: (gfc_init_decl_processing): Choose sizetype by using
1568         Pmode.
1569
1570 2007-08-21  Paul Brook  <paul@codesourcery.com>
1571             Nathan Sidwell  <nathan@codesourcery.com>
1572             Mark Mitchell  <mark@codesourcery.com>
1573             Joseph Myers  <joseph@codesourcery.com>
1574
1575         * gfortranspec.c (lang_specific_driver): Use pkgversion_string.
1576         * Make-lang.in (gfortran.pod): Define BUGURL.
1577         * invoke.texi: Use BUGURL for bug-reporting instructions.
1578
1579 2007-08-19  Roger Sayle  <roger@eyesopen.com>
1580
1581         * match.c (intrinsic_operators): Make static.
1582         (gfc_op2string): New function for converting a gfc_intrinsic_op to
1583         to a "const char*", replacing the macro of the same name.
1584         * gfortran.h (intrinsic_operators): Delete prototype.
1585         (gfc_op2string): Replace macro with function prototype.
1586
1587 2007-08-18  Tobias Burnus  <burnus@net-b.de>
1588
1589         * gfortran.h (gfc_is_intrinsic_typename): Add declaration.
1590         * symbol.c (gfc_is_intrinsic_typename): New function.
1591         * parse.c (decode_statement): Check for space in ABSTRACT INTERFACE.
1592         (parse_interface): Use gfc_is_intrinsic_typename.
1593         * decl.c (gfc_match_derived_decl): Ditto.
1594         * module.c (gfc_match_use): Use gcc_unreachable() for
1595         INTERFACE_ABSTRACT in switch().
1596
1597 2007-08-18  Roger Sayle  <roger@eyesopen.com>
1598
1599         * primary.c (match_logical_constant_string): New function to match
1600         a ".true." or a ".false.".
1601         (match_logical_constant): Use it instead of gfc_match_strings.
1602
1603 2007-08-18  Paul Thomas  <pault@gcc.gnu.org>
1604             Janus Weil  <jaydub66@gmail.com>
1605
1606         * interface.c (gfc_match_interface,gfc_match_abstract_interface,
1607         gfc_match_end_interface,gfc_add_interface): Add abstract interface.
1608         * dump-parse-tree.c (gfc_show_attr): Ditto.
1609         * gfortran.h (interface_type,symbol_attribute): Ditto.
1610         * module.c (gfc_match_use,ab_attribute,attr_bits,
1611         mio_symbol_attribute): Ditto.
1612         * resolve.c (resolve_function): Ditto.
1613         * match.h: Ditto.
1614         * parse.c (decode_statement): Ditto.
1615         (parse_interface): Ditto, check for C1203 (name of abstract interface
1616         cannot be the same as an intrinsic type).
1617         * decl.c (gfc_match_bind_c): Check for NAME= with abstract interfaces.
1618         (access_attr_decl): Handle Abstract interfaces.
1619
1620 2007-08-18  Paul Thomas  <pault@gcc.gnu.org>
1621
1622         PR fortran/32881
1623         * expr.c (gfc_check_pointer_assign): If the rhs is the
1624         initialization expression for the rhs, there is no error.
1625
1626 2007-08-18  Paul Thomas  <pault@gcc.gnu.org>
1627
1628         PR fortran/32875
1629         * trans-array.c (get_array_ctor_strlen): Set the character
1630         length of a zero length array to zero.
1631
1632 2007-08-16  Tobias Burnus  <burnus@net-b.de>
1633
1634         PR fortran/33072
1635         * module.c (gfc_match_use): Mark user operators as such.
1636         (find_use_name_n): Distinguish between operators and other symbols.
1637         (find_use_name,number_use_names,mio_namelist,
1638          load_operator_interfaces,load_generic_interfaces,read_module,
1639          write_generic): Update find_use_name_n calls.
1640
1641 2007-08-15  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1642
1643         PR fortran/29459
1644         * trans.c (gfc_create_var_np): Do not emit warnings for
1645         anonymous variables.
1646
1647 2007-08-15  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1648
1649         PR fortran/33066
1650         * decl.c (gfc_get_type_attr_spec): Fix whitespace.
1651         (gfc_match_derived_decl): Fix logic.
1652
1653 2007-08-14  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1654
1655         PR fortran/33073
1656         * trans-intrinsic.c (build_fixbound_expr): Convert to result type
1657         in all cases.
1658
1659 2007-08-14  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1660
1661         PR fortran/32594
1662         * trans-expr.c (gfc_conv_substring_expr): Only call
1663         gfc_conv_substring if expr->ref is not NULL.
1664         * expr.c (gfc_is_constant_expr): If e->ref is NULL, the substring
1665         expression might be a constant.
1666         (gfc_simplify_expr): Handle missing start and end, as well as
1667         missing ref.
1668
1669 2007-08-13  Paul Thomas  <pault@gcc.gnu.org>
1670
1671         PR fortran/32926
1672         * match.c (gfc_match_call): Do not create a new symtree in the
1673         case where the existing symbol is external and not referenced.
1674
1675 2007-08-13  Paul Thomas  <pault@gcc.gnu.org>
1676
1677         PR fortran/32827
1678         * decl.c (variable_decl): Check for an imported symbol
1679         by looking for its symtree and testing for the imported
1680         attribute.
1681         (gfc_match_import): Remove change of symbol's namespace
1682         and set the attribute imported instead.
1683         * symbol.c (gfc_get_sym_tree): It is not an error if a
1684         symbol is imported.
1685         * gfortran.h : Add the 'imported' to symbol_attribute.
1686
1687 2007-08-13  Paul Thomas  <pault@gcc.gnu.org>
1688
1689         PR fortran/32962
1690         * trans-array.c (gfc_conv_array_transpose): Set the offset
1691         of the destination to zero if the loop is zero based.
1692
1693 2007-08-12  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1694
1695         PR fortran/29600
1696         * intrinsic.c (add_functions): Add optional KIND argument to ACHAR.
1697         * iresolve.c (gfc_resolve_achar): Handle the KIND argument.
1698         * check.c (gfc_check_achar): Check for the optional KIND argument.
1699         * simplify.c (gfc_simplify_achar): Use KIND argument.
1700         * intrinsic.h (gfc_check_achar, gfc_simplify_achar,
1701         gfc_resolve_achar): Adjust prototypes.
1702
1703 2007-08-12  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1704
1705         PR fortran/30964
1706         PR fortran/33054
1707         * trans-expr.c (gfc_conv_function_call): When no formal argument
1708         list is available, we still substitute missing optional arguments.
1709         * check.c (gfc_check_random_seed): Correct the check on the
1710         number of arguments to RANDOM_SEED.
1711         * intrinsic.c (add_subroutines): Add a resolution function to
1712         RANDOM_SEED.
1713         * iresolve.c (gfc_resolve_random_seed): New function.
1714         * intrinsic.h (gfc_resolve_random_seed): New prototype.
1715
1716 2007-08-12  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1717
1718         PR fortran/32860
1719         * error.c (error_uinteger): New function.
1720         (error_integer): Call error_uinteger.
1721         (error_print): Handle %u, %lu, %li and %ld format specifiers.
1722         * interface.c (compare_actual_formal): Use the new %lu specifier.
1723
1724 2007-08-12  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1725
1726         PR fortran/31629
1727         * lang.opt (-fmodule-private): New option.
1728         * gfortran.h (gfc_option_t): Add flag_module_private member.
1729         * invoke.texi (-fmodule-private): Document the new option.
1730         * module.c (gfc_check_access): Allow the -fmodule-private option
1731         to modify the default behaviour.
1732         * options.c (gfc_init_options): Initialize flag_module_private.
1733         (gfc_handle_option): Handle -fmodule-private.
1734
1735 2007-08-12  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1736
1737         PR fortran/29600
1738         * intrinsic.c (add_functions): Add KIND arguments to COUNT,
1739         IACHAR, ICHAR, INDEX, LBOUND, LEN, LEN_TRIM, SCAN, SIZE, UBOUND
1740         and VERIFY.
1741         * iresolve.c (gfc_resolve_count): Add kind argument.
1742         (gfc_resolve_iachar): New function.
1743         (gfc_resolve_ichar): Add kind argument.
1744         (gfc_resolve_index_func): Likewise.
1745         (gfc_resolve_lbound): Likewise.
1746         (gfc_resolve_len): Likewise.
1747         (gfc_resolve_len_trim): Likewise.
1748         (gfc_resolve_scan): Likewise.
1749         (gfc_resolve_size): New function.
1750         (gfc_resolve_ubound): Add kind argument.
1751         (gfc_resolve_verify): Likewise.
1752         * trans-decl.c (gfc_get_extern_function_decl): Allow specific
1753         intrinsics to have 4 arguments.
1754         * check.c (gfc_check_count): Add kind argument.
1755         (gfc_check_ichar_iachar): Likewise.
1756         (gfc_check_index): Likewise.
1757         (gfc_check_lbound): Likewise.
1758         (gfc_check_len_lentrim): New function.
1759         (gfc_check_scan): Add kind argument.
1760         (gfc_check_size): Likewise.
1761         (gfc_check_ubound): Likewise.
1762         (gfc_check_verify): Likewise.
1763         * intrinsic.texi: Update documentation for COUNT, IACHAR, ICHAR,
1764         INDEX, LBOUND, LEN, LEN_TRIM, SCAN, SIZE, UBOUND and VERIFY.
1765         * simplify.c (get_kind): Whitespace fix.
1766         (int_expr_with_kind): New function.
1767         (gfc_simplify_iachar): Add kind argument.
1768         (gfc_simplify_iachar): Likewise.
1769         (gfc_simplify_ichar): Likewise.
1770         (gfc_simplify_index): Likewise.
1771         (simplify_bound_dim): Likewise.
1772         (simplify_bound): Likewise.
1773         (gfc_simplify_lbound): Likewise.
1774         (gfc_simplify_len): Likewise.
1775         (gfc_simplify_len_trim): Likewise.
1776         (gfc_simplify_scan): Likewise.
1777         (gfc_simplify_shape): Pass NULL as kind argument to gfc_simplify_size.
1778         (gfc_simplify_size): Add kind argument.
1779         (gfc_simplify_ubound): Likewise.
1780         (gfc_simplify_verify): Likewise.
1781         * intrinsic.h: Update prototypes and add new ones.
1782         * trans-intrinsic.c (gfc_conv_intrinsic_index): Rename into
1783         gfc_conv_intrinsic_index_scan_verify.
1784         (gfc_conv_intrinsic_scan, gfc_conv_intrinsic_verify): Remove.
1785         (gfc_conv_intrinsic_function): Call
1786         gfc_conv_intrinsic_index_scan_verify to translate the INDEX,
1787         SCAN and VERIFY intrinsics.
1788
1789 2007-08-11  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1790
1791         PR fortran/31189
1792         * invoke.texi (-fbacktrace): Document the new behaviour.
1793
1794 2007-08-11  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1795
1796         PR fortran/32937
1797         * trans-array.c (gfc_conv_expr_descriptor): Use
1798         gfc_conv_const_charlen to generate backend_decl of right type.
1799         * trans-expr.c (gfc_conv_expr_op): Use correct return type.
1800         (gfc_build_compare_string): Use int type instead of default
1801         integer kind for single character comparison.
1802         (gfc_conv_aliased_arg): Give backend_decl the right type.
1803         * trans-decl.c (gfc_build_intrinsic_function_decls): Make
1804         compare_string return an int.
1805
1806 2007-08-11  Ian Lance Taylor  <iant@google.com>
1807
1808         * f95-lang.c (gfc_get_alias_set): Change return type to
1809         alias_set_type.
1810
1811 2007-08-10  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1812
1813         PR fortran/31270
1814         * trans.c (gfc_trans_runtime_check): Reorder arguments and
1815         add extra variable arguments. Hand them to the library function.
1816         * trans.h (gfc_trans_runtime_check): Update prototype.
1817         * trans-array.c (gfc_trans_array_bound_check): Issue more
1818         detailled error messages.
1819         (gfc_conv_array_ref): Likewise.
1820         (gfc_conv_ss_startstride): Likewise.
1821         (gfc_trans_dummy_array_bias): Reorder arguments to
1822         gfc_trans_runtime_check.
1823         * trans-expr.c (gfc_conv_substring): Issue more detailled
1824         error messages.
1825         (gfc_conv_function_call): Reorder arguments to gfc_trans_runtime_check.
1826         * trans-stmt.c (gfc_trans_goto): Likewise.
1827         * trans-io.c (set_string): Reorder arguments to
1828         gfc_trans_runtime_check and issue a more detailled error message.
1829         * trans-decl.c (gfc_build_builtin_function_decls): Make
1830         runtime_error and runtime_error_at handle a variable number of
1831         arguments.
1832         * trans-intrinsic.c (gfc_conv_intrinsic_bound): Reorder arguments
1833         to gfc_trans_runtime_check.
1834         (gfc_conv_intrinsic_minmax): Likewise.
1835         (gfc_conv_intrinsic_repeat): Issue more detailled error messages.
1836
1837 2007-08-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1838
1839         * gfortranspec.c (lang_specific_driver): Use CONST_CAST.
1840         * options.c (gfc_post_options): Likewise.
1841         * parse.c (parse_omp_structured_block): Likewise.
1842         * st.c (gfc_free_statement): Likewise.
1843
1844 2007-08-10  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1845
1846         PR fortran/32933
1847         * trans-decl.c (gfc_build_builtin_function_decls): Change
1848         prototype for associated.
1849         * trans-intrinsic.c (gfc_conv_intrinsic_minmax): Convert the
1850         result of __builtin_isnan into a boolean.
1851         (gfc_conv_intrinsic_strcmp): Cleanup.
1852         (gfc_conv_associated): Convert the result of the associated
1853         function into a boolean.
1854
1855 2007-08-09  Tobias Burnus  <burnus@net-b.de>
1856
1857         PR fortran/32987
1858         * io.c (format_token): Add FMT_ERROR.
1859         (next_char_not_space): Print error/warning when
1860         '\t' are used in format specifications.
1861         (format_lex): Propagate error.
1862         (check_format): Ditto.
1863
1864 2007-08-09  Tobias Burnus  <burnus@net-b.de>
1865
1866         PR fortran/33001
1867         * arith.c (arith_error): Point in the error message
1868         to -fno-range-check.
1869
1870 2007-08-09  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1871
1872         PR fortran/32902
1873         * intrinsic.texi (SIZEOF): Add mention to C_SIZE_T.
1874
1875 2007-08-06  Christopher D. Rickett  <crickett@lanl.gov>
1876
1877         PR fortran/32732
1878         * trans-expr.c (gfc_conv_scalar_char_value): Convert the tree and
1879         actual arg expressions for scalar characters passed by-value to
1880         bind(c) routines.
1881         (gfc_conv_function_call): Call gfc_conv_scalar_char_value.
1882         * trans.h: Add prototype for gfc_conv_scalar_char_value.
1883         * trans-decl.c (generate_local_decl): Convert by-value character
1884         dummy args of bind(c) procedures using
1885         gfc_conv_scalar_char_value.
1886
1887 2007-08-06  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1888
1889         PR fortran/30947
1890         * iresolve.c (gfc_resolve_alarm_sub): Suffix the subroutine name
1891         with the kind of the STATUS argument.
1892
1893 2007-08-06  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1894
1895         PR fortran/30948
1896         * intrinsic.c (add_functions): Fix name of argument to CHDIR.
1897
1898 2007-08-06  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1899
1900         PR fortran/30933
1901         * iresolve.c (gfc_resolve_exit): Convert argument to default
1902         integer kind.
1903
1904 2007-08-06  Daniel Franke  <franke.daniel@gmail.com>
1905
1906         * resolve.c (derived_pointer): Removed, replaced callers by access 
1907         to appropiate attribute bit.
1908         (derived_inaccessable): Shortcut recursion depth.
1909         (resolve_fl_namelist): Fixed checks for private components in namelists.
1910
1911 2007-08-06  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1912
1913         PR fortran/29828
1914         * trans.h (gfor_fndecl_string_minmax): New prototype.
1915         * trans-decl.c (gfor_fndecl_string_minmax): New variable.
1916         (gfc_build_intrinsic_function_decls): Create gfor_fndecl_string_minmax.
1917         * check.c (gfc_check_min_max): Allow for character arguments.
1918         * trans-intrinsic.c (gfc_conv_intrinsic_minmax_char): New function.
1919         (gfc_conv_intrinsic_function): Add special case for MIN and MAX
1920         intrinsics with character arguments.
1921         * simplify.c (simplify_min_max): Add simplification for character
1922         arguments.
1923
1924 2007-08-06  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1925
1926         PR fortran/31612
1927         * invoke.texi: Adjust documentation for option -fsyntax-only.
1928
1929 2007-08-05  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1930             Tobias Burnus  <burnus@gcc.gnu.org>
1931
1932         PR fortran/32979
1933         * intrinsic.h (gfc_check_isnan): Add prototype.
1934         * gfortran.h (gfc_isym_id): Add GFC_ISYM_ISNAN.
1935         * intrinsic.c (add_functions): Add ISNAN intrinsic.
1936         * check.c (gfc_check_isnan): New function.
1937         * trans-intrinsic.c (gfc_conv_intrinsic_isnan): New function.
1938         (gfc_conv_intrinsic_function): Call gfc_conv_intrinsic_isnan
1939         to translate ISNAN.
1940         * intrinsic.texi: Document ISNAN.
1941
1942 2007-08-04  Paul Thomas  <pault@gcc.gnu.org>
1943
1944         PR fortran/31214
1945         * symbol.c (get_unique_symtree): Moved from module.c.
1946         * module.c (get_unique_symtree): Moved to symbol.c.
1947         * decl.c (get_proc_name): Transfer the typespec from the local
1948         symbol to the module symbol, in the case that an entry is also
1949         a module procedure.  Ensure the local symbol is cleaned up by
1950         pointing to it with a unique symtree.
1951
1952         * dump_parse_tree (gfc_show_code_node): Add EXEC_ASSIGN_CALL.
1953
1954 2008-08-04  Steven G. Kargl  <kargl@gcc.gnu.org>
1955
1956         PR fortran/32969
1957         * iresolve.c (gfc_resolve_rrspacing): Convert argument(s) to
1958         expected KIND.
1959         (gfc_resolve_scale): Ditto.
1960         (gfc_resolve_set_exponent): Ditto.
1961         (gfc_resolve_spacing): Ditto.
1962  
1963         PR fortran/32968
1964         * trans-intrinsic.c (gfc_conv_intrinsic_si_kind,
1965         gfc_conv_intrinsic_sr_kind): Convert the argument(s) to the
1966         expected KIND, and fold the result to the expected KIND.
1967
1968 2007-08-03  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1969
1970         PR fortran/31202
1971         * f95-lang.c (gfc_init_builtin_functions): Defin builtins for 
1972         lround{f,,l} and llround{f,,l}.
1973         * trans-intrinsic.c (build_fix_expr): Generate calls to the
1974         {l,}round{f,,l} functions.
1975
1976 2007-08-01  Thomas Koenig  <tkoenig@gcc.gnu.org>
1977
1978         PR libfortran/32954
1979         * intrinsic.c (resolve_mask_arg):  New function.
1980         (gfc_resolve_maxloc):  Use resolve_mask_arg for mask resolution.
1981         (gfc_resolve_maxval):  Likewise.
1982         (gfc_resolve_minloc):  Likewise.
1983         (gfc_resolve_minval):  Likewise.
1984         (gfc_resolve_pack):  Likewise.
1985         (gfc_resolve_product):  Likewise.
1986         (gfc_resolve_sum):  Likewise.
1987         (gfc_resolve_unpack):  Likewise.
1988
1989 2007-08-01  Tobias Burnus  <burnus@net-b.de>
1990
1991         PR fortran/32936
1992         * match.c (gfc_match_allocate): Better check that STAT is
1993         a variable.
1994
1995         * check.c (gfc_check_allocated): Reorder checks to improve
1996         error message.
1997
1998 2007-08-01  Nick Clifton  <nickc@redhat.com>
1999
2000         * arith.c: Change copyright header to refer to version 3 of the
2001         GNU General Public License and to point readers at the COPYING3
2002         file and the FSF's license web page.
2003         * openmp.c, interface.c, intrinsic.c, trans-array.c, trans-expr.c,
2004         symbol.c, iso-fortran-env.def, intrinsic.h, decl.c, trans-array.h,
2005         matchexp.c, dump-parse-tree.c, trans-common.c, array.c,
2006         Make-lang.in, trans-openmp.c, gfortran.h, error.c,
2007         iso-c-binding.def, lang.opt, data.c, trans-const.c, trans-stmt.c,
2008         expr.c, trans-const.h, trans-stmt.h, module.c, trans.c, scanner.c,
2009         trans-types.c, trans.h, gfortranspec.c, trans-types.h,
2010         lang-specs.h, io.c, bbt.c, resolve.c, f95-lang.c, st.c,
2011         iresolve.c, match.c, trans-decl.c, trans-io.c, target-memory.c,
2012         match.h, target-memory.h, parse.c, arith.h, check.c, dependency.c,
2013         parse.h, types.def, convert.c, dependency.h, primary.c,
2014         trans-intrinsic.c, options.c, misc.c, simplify.c: Likewise.
2015
2016 2007-08-01  Daniel Franke  <franke.daniel@gmail.com>
2017
2018         * trans-decl.c (generate_local_decl): Emit warning on unused parameter
2019         on "-Wall -Wextra" or "-Wunused-parameter" but not on "-Wall", changed
2020         messages that start with lower case to upper case.
2021         * invoke.texi (-Wparameter-unused): Document differences between gcc
2022         and gfortran regarding this option.
2023
2024 2007-08-01  Daniel Franke  <franke.daniel@gmail.com>
2025
2026         PR fortran/32945
2027         * expr.c (check_specification_function): Skip check if no symtree 
2028         is available.
2029
2030 2007-08-01  Paul Thomas  <pault@gcc.gnu.org>
2031
2032         PR fortran/31609
2033         * resolve.c (resolve_entries): Entries declared to be module
2034         procedures must point to the function namespace.
2035
2036 2007-07-31  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
2037
2038         PR fortran/32938
2039         * trans-stmt.c (gfc_trans_return): Convert to correct type.
2040
2041 2007-07-31  Steven G. Kargl  <kargl@gcc.gnu.org>
2042
2043         PR fortran/32942
2044         * trans-intrinsic.c (gfc_conv_intrinsic_exponent): Convert to correct
2045         type.
2046
2047 2007-07-29  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
2048
2049         * invoke.texi: Document -fsign-zero flag.
2050
2051 2007-07-29  Paul Thomas  <pault@gcc.gnu.org>
2052
2053         PR fortran/31211
2054         * trans-expr.c (gfc_conv_expr_reference): Add block for case of
2055         scalar pointer functions so that NULL result is correctly
2056         handled.
2057
2058         PR fortran/32682
2059         * trans-array.c (gfc_trans_array_constructor): On detecting a
2060         multi-dimensional parameter array, set the loop limits.
2061
2062 2007-07-29  Daniel Franke  <franke.daniel@gmail.com>
2063
2064         PR fortran/32906
2065         * resolve.c (resolve_fl_parameter): Check for constant shape arrays,
2066         adjusted error message.
2067
2068 2007-07-29  Daniel Franke  <franke.daniel@gmail.com>
2069
2070         * invoke.texi: Removed -w from option summary.
2071
2072 2007-07-29  Daniel Franke  <franke.daniel@gmail.com>
2073
2074         PR fortran/32879
2075         * intrinsic.texi (IRAND, RAND, RANDOM_NUMBER): Document algorithm
2076         used for random number generator.
2077
2078 2007-07-28  Kazu Hirata  <kazu@codesourcery.com>
2079
2080         * gfortran.h, interface.c, resolve.c, symbol.c: Fix comment
2081         typos.
2082         * intrinsic.texi, invoke.texi: Fix typos.
2083
2084 2007-07-28  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
2085
2086         PR fortran/31609
2087         * resolve.c (generic_sym): Check for a same symbol and if so, return to
2088         avoid infinite recursion.
2089
2090 2007-07-28  Daniel Franke  <franke.daniel@gmail.com>
2091
2092         PR fortran/31818
2093         PR fortran/32876
2094         PR fortran/32905
2095         * gfortran.h (symbol_attribute): Added bits for pointer_comp, 
2096         private_comp.
2097         * parse.c (parse_derived): Set pointer_comp/private_comp bits if 
2098         the derived type ultimately contains pointer components or private 
2099         components.
2100         * module.c (ab_attribute): New values AB_POINTER_COMP, AB_PRIVATE_COMP.
2101         (attr_bits): Added names for new ab_attributes.
2102         (mio_symbol_attribute): Save/restore new attribute bits in modules.
2103         * match.c (gfc_match_namelist): Removed check for namelist objects
2104         of assumed shape.
2105         * resolve.c (resolve_fl_namelist): Added check for pointer or
2106         private components in nested types. Added check for namelist objects
2107         of assumed shape.
2108
2109 2007-07-28  Paul Thomas  <pault@gcc.gnu.org>
2110
2111         PR fortran/32880
2112         * trans-expr.c (gfc_trans_scalar_assign): Revert to fixed order
2113         for lse and rse pre expressions, for derived types with
2114         allocatable components.  Instead, assign the lhs to a temporary
2115         and deallocate after the assignment.
2116
2117 2007-07-28  Janne Blomqvist  <jb@gcc.gnu.org>
2118
2119         PR fortran/32909
2120         * trans-stmt.c (gfc_trans_character_select): Replace occurrences
2121         of gfc_c_int_type_node with integer_type_node.
2122         * trans-decl.c (gfc_build_intrinsic_function_decls): Likewise.
2123         (gfc_build_builtin_function_decls): Likewise.
2124         (gfc_generate_function_code): Likewise.
2125         * trans-io.c (gfc_build_io_library_fndecls): Likewise.
2126
2127 2007-07-27  Janne Blomqvist  <jb@gcc.gnu.org>
2128
2129         * trans-decl.c (gfc_build_builtin_function_decls): Use existing
2130         gfc_array_index_type rather than creating another typenode for
2131         gfc_index_integer_kind.
2132
2133 2007-07-27  Janne Blomqvist  <jb@gcc.gnu.org>
2134
2135         * trans-io.c (gfc_build_io_library_fndecls): Change to use
2136         gfc_array_index_type for array descriptor triplets instead of
2137         gfc_int4_type_node.
2138
2139 2007-07-26  Steven G. Kargl  <kargl@gcc.gnu.org>
2140
2141         PR fortran/32899
2142         * resolve.c (resolve_operator): Add INTRINSIC_EQ_OS comparison.
2143
2144 2007-07-27  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
2145             Daniel Franke  <franke.daniel@gmail.com>
2146
2147         PR fortran/32760
2148         * primary.c (match_variable): Do not call gfc_add_flavor if symbol has
2149         attribute of ACCESS_PUBLIC or ACCESS_PRIVATE already marked.
2150
2151 2007-07-27  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
2152
2153         PR fortran/32035
2154         * trans-stmt.c (gfc_trans_character_select): Replace the
2155         mechanism with labels by a SWITCH_EXPR.
2156         * trans-decl.c (gfc_build_builtin_function_decls): Change
2157         return type for select_string.
2158
2159 2007-07-27  Paul Thomas  <pault@gcc.gnu.org>
2160
2161         PR fortran/32903
2162         * trans-decl.c (gfc_trans_deferred_vars): Set intent(out)
2163         derived types as referenced, if they have the the default
2164         initializer set.
2165
2166 2007-07-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2167
2168         * gfortran.h (generate_isocbinding_symbol): Constify.
2169         * symbol.c (gen_special_c_interop_ptr, gen_cptr_param,
2170         generate_isocbinding_symbol): Likewise.
2171
2172 2007-07-24  Paul Thomas  <pault@gcc.gnu.org>
2173
2174         PR fortran/31205
2175         PR fortran/32842
2176         * trans-expr.c (gfc_conv_function_call): Remove the default
2177         initialization of intent(out) derived types.
2178         * symbol.c (gfc_lval_expr_from_sym): New function.
2179         * matchexp.c (gfc_get_parentheses): Return argument, if it is
2180         character and posseses a ref.
2181         * gfortran.h : Add prototype for gfc_lval_expr_from_sym.
2182         * resolve.c (has_default_initializer): Move higher up in file.
2183         (resolve_code): On detecting an interface assignment, check
2184         if the rhs and the lhs are the same symbol.  If this is so,
2185         enclose the rhs in parenetheses to generate a temporary and
2186         prevent any possible aliasing.
2187         (apply_default_init): Remove code making the lval and call
2188         gfc_lval_expr_from_sym instead.
2189         (resolve_operator): Give a parentheses expression a type-
2190         spec if it has no type.
2191         * trans-decl.c (gfc_trans_deferred_vars): Apply the a default
2192         initializer, if any, to an intent(out) derived type, using
2193         gfc_lval_expr_from_sym and gfc_trans_assignment.  Check if
2194         the dummy is present.
2195
2196 2007-07-24  Daniel Franke  <franke.daniel@gmail.com>
2197
2198         PR fortran/32867
2199         * expr.c (check_init_expr): Simplify matched functions.
2200
2201 2007-07-24  Daniel Franke  <franke.daniel@gmail.com>
2202
2203         PR fortran/32778
2204         * intrinsic.c (add_sym): Do not exclude any symbols, even if not part
2205         of the selected standard.
2206         (make generic): Likewise.
2207         (make alias): Likewise, set standard the alias belongs to.
2208         (add_subroutines): Call make_noreturn unconditionally.
2209         (check_intrinsic_standard): Change return value to try.
2210         (gfc_intrinsic_func_interface): Check return value of above function.
2211         (gfc_intrinsic_sub_interface): Likewise.
2212
2213 2007-07-24  Thomas Koenig  <tkoenig@gcc.gnu.org>
2214
2215         PR fortran/30814
2216         * trans-decl.c (generate_function_code):  Add argument
2217         for flag_bounds_check to the array for set_options.
2218         * invoke.texi (-fbounds-check): Document new libarary run-time
2219         behaviour.
2220
2221 2007-07-23  Daniel Franke  <franke.daniel@gmail.com>
2222
2223         PR fortran/25104
2224         PR fortran/31639
2225         * expr.c (check_transformational): Reject valid transformational
2226         intrinsics to avoid ICE.
2227         (check_inquiry): Report error for assumed character lengths for
2228         all supported standards.
2229         (check_init_expr): Whitespace fix.
2230
2231 2007-07-23  Christopher D. Rickett  <crickett@lanl.gov>
2232
2233         PR fortran/32797
2234         PR fortran/32800
2235         * decl.c (verify_bind_c_sym): Use the result symbol for functions
2236         with a result clause.  Warn if implicitly typed.  Verify the type
2237         and rank of the SHAPE argument, if given.
2238         * resolve.c (gfc_iso_c_sub_interface): Use gfc_procedure_use to
2239         check the actual args against the formal, sorting them if
2240         necessary.
2241         * symbol.c (gen_shape_param): Initialize type of SHAPE param to
2242         BT_VOID.
2243
2244 2007-07-23  Christopher D. Rickett  <crickett@lanl.gov>
2245
2246         PR fortran/32732
2247         * trans-decl.c (generate_local_decl): Convert the TREE_TYPE for by
2248         value character dummy args of BIND(C) procedures.
2249         * trans-expr.c (gfc_conv_variable): Do not build address
2250         expression for BT_CHARACTER dummy args.
2251
2252 2007-07-23  Christopher D. Rickett  <crickett@lanl.gov>
2253             Tobias Burnus  <burnus@net-b.de>
2254
2255         PR fortran/32600
2256         * trans-expr.c (gfc_conv_function_call): Handle c_funloc.
2257         * trans-types.c: Add pfunc_type_node.
2258         (gfc_init_types,gfc_typenode_for_spec): Use it.
2259         * resolve.c (gfc_iso_c_func_interface): Fix whitespace and
2260         improve error message.
2261
2262 2007-07-22  Daniel Franke  <franke.daniel@gmail.com>
2263
2264         PR fortran/32710
2265         * parse.c (gfc_fixup_sibling_symbols): No replacement of symbols if
2266         the current is a namelist.
2267
2268 2007-07-22  Daniel Franke  <franke.daniel@gmail.com>
2269
2270         PR fortran/29962
2271         PR fortran/31253
2272         PR fortran/31265
2273         PR fortran/31639
2274         * gfortran.h (gfc_intrinsic_sym): Changed members elemental, pure,
2275         generic, specific, actual_ok, noreturn into bits of a bitfield, 
2276         added bits for inquiry, transformational, conversion.
2277         * check.c (non_init_transformational): Removed, removed all callers.
2278         * intrinsic.c (enum class): New.
2279         (add_sym*): Replaced argument elemetal by enum class. Changed all
2280         callers.
2281         (add_functions): Assign appropriate classes to intrinsic functions.
2282         (add_subroutines): Assign appropriate classes to intrinsic subroutines.
2283         (add_conv): Set conversion attribute.
2284         (gfc_init_expr_extensions): Removed, removed all callers.
2285         (gfc_intrinsic_func_interface): Reimplemented check for non-standard
2286         initializatione expressions.
2287         * expr.c (check_specification_function): New.
2288         (gfc_is_constant_expr): Added check for specification functions.
2289         (check_init_expr_arguments): New.
2290         (check_inquiry): Changed return value to MATCH, added checks for
2291         inquiry functions defined by F2003.
2292         (check_transformational): New.
2293         (check_null): New.
2294         (check_elemental): New.
2295         (check_conversion): New.
2296         (check_init_expr): Call new check functions, add more specific error
2297         messages.
2298
2299 2007-07-21  Christopher D. Rickett  <crickett@lanl.gov>
2300
2301         PR fortran/32627
2302         * resolve.c (set_name_and_label): Set kind number for character
2303         version of c_f_pointer.
2304         (gfc_iso_c_sub_interface): Set the kind of the SHAPE formal arg to
2305         that of the actual SHAPE arg.
2306         * symbol.c (gen_shape_param): Initialize kind for SHAPE arg.
2307
2308 2007-07-21  Christopher D. Rickett  <crickett@lanl.gov>
2309
2310         PR fortran/32801
2311         * symbol.c (generate_isocbinding_symbol): Remove unnecessary
2312         conditional.
2313
2314         PR fortran/32804
2315         * resolve.c (gfc_iso_c_func_interface): Reject assumed-shape and
2316         deferred-shape arrays as args to C_LOC.  Fix bug in testing
2317         character args to C_LOC.
2318
2319 2007-07-21  Lee Millward  <lee.millward@gmail.com>
2320
2321         PR fortran/32823
2322         * trans-intrinsic.c (gfc_conv_intrinsic_int): Evaluate all
2323         arguments passed, not just the first one. Adjust code to 
2324         refer to "args[0]" instead of "arg" as a result.
2325         
2326 2007-07-19  Christopher D. Rickett  <crickett@lanl.gov>
2327
2328         PR fortran/32600
2329         * trans-expr.c (gfc_conv_function_call): Inline C_LOC.
2330
2331 2007-07-18  Christopher D. Rickett  <crickett@lanl.gov>
2332
2333         PR fortran/32801
2334         * symbol.c (generate_isocbinding_symbol): Fix bug where
2335         ISOCBINDING_FUNPTR was generated for C_LOC instead of the needed
2336         ISOCBINDING_PTR.
2337
2338 2007-07-17  Janus Weil  <jaydub66@gmail.com> 
2339
2340         PR fortran/32535
2341         * resolve.c (resolve_fl_namelist): Check for namelist private 
2342         components in contained subprograms.
2343
2344 2007-07-17  Paul Thomas  <pault@gcc.gnu.org>
2345
2346         PR fortran/31320
2347         PR fortran/32665
2348         * trans-expr.c (gfc_trans_subcomponent_assign): Ensure that
2349         renormalization unity base is done independently of existing
2350         lbound value.
2351         (gfc_trans_scalar_assign): If rhs is not a variable, put
2352         lse->pre after rse->pre to ensure that de-allocation of lhs
2353         occurs after evaluation of rhs.
2354
2355 2007-07-16  Lee Millward  <lee.millward@gmail.com>
2356
2357         PR fortran/32222
2358         PR fortran/32238
2359         PR fortran/32242        
2360         * trans-intrinsic.c (gfc_conv_intrinsic_function_args): Adjust
2361         to operate on a stack allocated array for the intrinsic arguments
2362         instead of creating a TREE_LIST. Add two new parameters for the
2363         array and the number of elements. Update all callers to allocate
2364         an array of the correct length to pass in. Update comment.
2365         (gfc_intrinsic_argument_list_length): New function.
2366         (gfc_conv_intrinsic_conversion): Call it.
2367         (gfc_conv_intrinsic_mnimax): Likewise.
2368         (gfc_conv_intrinsic_merge): Likewise.
2369         (gfc_conv_intrinsic_lib_function): Call it. Use new CALL_EXPR
2370         constructors.
2371         (gfc_conv_intrinsic_cmplx): Likewise.
2372         (gfc_conv_intrinsic_ctime): Likewise.
2373         (gfc_covn_intrinsic_fdate): Likewise.
2374         (gfc_conv_intrinsic_ttynam): Likewise.
2375         (gfc_conv_intrinsic_ishftc): Likewise.
2376         (gfc_conv_intrinsic_index): Likewise.
2377         (gfc_conv_intrinsic_scan): Likewise.
2378         (gfc_conv_intrinsic_verify): Likewise.
2379         (gfc_conv_intrinsic_trim): Likewise.
2380         (gfc_conv_intrinsic_aint): Use new CALL_EXPR constructors.
2381         (gfc_conv_intrinsic_exponent): Likewise.
2382         (gfc_conv_intrinsic_bound): Likewise.
2383         (gfc_conv_intrinsic_abs): Likewise.
2384         (gfc_conv_intrinsic_mod): Likewise.
2385         (gfc_conv_intrinsic_sign): Likewise.
2386         (gfc_conv_intrinsic_len): Likewise.
2387         (gfc_conv_intrinsic_adjust): Likewise.
2388         (gfc_conv_intrinsic_si_kind): Likewise. 
2389         
2390 2007-07-16  Janne Blomqvist  <jb@gcc.gnu.org>
2391
2392         PR fortran/32748
2393         * trans-decl.c (gfc_build_builtin_function_decls): Remove
2394         DECL_IS_MALLOC attribute from internal_realloc, thus reverting
2395         part of my 2007-07-03 patch.
2396
2397 2007-07-15  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
2398             Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
2399
2400         PR fortran/32611
2401         * gfortran.h (gfc_option_t): Add flag_sign_zero field.
2402         * lang.opt (-fsign-zero): New option.
2403         * trans.h: Rename gfor_fndecl_set_std into gfor_fndecl_set_options.
2404         * trans-decl.c (gfc_build_builtin_function_decls): Build the function
2405         declaration to pass an array containing the options to be used by the
2406         runtime library. (gfc_generate_function_code): Build an array that
2407         contains option values to be passed to the runtime library and the call
2408         to the function. 
2409         * options.c (gfc_init_options): Initialize the flag_sign_zero field.
2410         (gfc_handle_option): Handle the -fsign-zero option.
2411
2412 2007-07-15  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
2413
2414         PR fortran/32036
2415         * trans-array.c (gfc_conv_array_ref): Only evaluate index once.
2416
2417 2007-07-15  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
2418
2419         PR fortran/32357
2420         * iresolve.c (gfc_resolve_mvbits): Convert FROMPOS, LEN and TOPOS
2421         to C int.
2422
2423 2007-07-14  Thomas Koenig  <tkoenig@gcc.gnu.org>
2424
2425         PR libfortran/32731
2426         * iresolve.c(gfc_resolve_pack):  A scalar mask has
2427         to be kind=4, an array mask with kind<4 is converted
2428         to gfc_default_logical_kind automatically.
2429         (gfc_resolve_unpack):  Convert mask to gfc_default_lotical_kind
2430         if it has a kind<4.
2431
2432 2007-07-14  Paul Thomas  <pault@gcc.gnu.org>
2433
2434         PR fortran/32724
2435         * parse.c (parse_spec): Emit error on unexpected statement
2436         function.
2437
2438 2007-07-13  Daniel Franke  <franke.daniel@gmail.com>
2439
2440         * invoke.texi: Unified upper- and lower-case in menus.
2441         (-w, -W): Removed, documented by gcc.
2442         * intrinsic.texi: Unified Class-section entries, added
2443         subroutine/function warning where appropiate.
2444
2445 2007-07-12  Daniel Franke  <franke.daniel@gmail.com>
2446
2447         PR fortran/31639
2448         * decl.c (gfc_match_suffix): Removed surplus general error that hides
2449         a more specific message.
2450         * resolve.c (resolve_fl_variable): Reject illegal initializiers only
2451         if not already done.
2452         (resolve_fl_procedure): Added check for initializers of functions.
2453
2454 2007-07-12  Daniel Franke  <franke.daniel@gmail.com>
2455
2456         PR fortran/32704
2457         * invoke.texi (-static-libgfortran): Document new option.
2458
2459 2007-07-12  Paul Thomas  <pault@gcc.gnu.org>
2460
2461         PR fortran/32634
2462         PR fortran/32727
2463         * module.c (write_generic): Restore patch of 2007-07-10 and use
2464         symbol name if there are no use names. 
2465
2466 2007-07-12  Christopher D. Rickett  <crickett@lanl.gov>
2467
2468         PR fortran/32599
2469         * decl.c (verify_c_interop_param): Require character string dummy
2470         args to BIND(C) procedures to have length 1.
2471         * resolve.c (resolve_fl_procedure): Modify parameter checking for
2472         BIND(C) procedures.
2473
2474         PR fortran/32601
2475         * resolve.c (gfc_iso_c_func_interface): Verify that a valid
2476         expression is given as an argument to C_LOC and C_ASSOCIATED.
2477         * trans-io.c (transfer_expr): Add argument for code block.  Add
2478         standards check to determine if an error message should be
2479         reported for printing C_PTR or C_FUNPTR.
2480         (transfer_array_component): Update arguments to transfer_expr.
2481         (gfc_trans_transfer): Ditto.
2482
2483         * symbol.c (gen_cptr_param): Fix whitespace.
2484
2485 2007-07-12  Jakub Jelinek  <jakub@redhat.com>
2486
2487         PR fortran/32550
2488         * trans.h (GFC_POINTER_TYPE_P): Define.
2489         * trans-types.c (gfc_sym_type): Set it for types on attr->sym.pointer.
2490         * trans-openmp.c (gfc_omp_privatize_by_reference): Return false
2491         if GFC_POINTER_TYPE_P is set on the type.
2492
2493 2007-07-12  Richard Guenther  <rguenther@suse.de>
2494
2495         * trans-intrinsic.c (gfc_conv_intrinsic_repeat): Convert
2496         arguments to gfc_charlen_type_node.
2497         * trans-io.c (gfc_convert_array_to_string): Convert type
2498         size to gfc_array_index_type.
2499
2500 2007-07-12  Daniel Franke  <franke.daniel@gmail.com>
2501
2502         PR fortran/32634
2503         PR fortran/32727
2504         * module.c: Reverted Paul's patch from 2007-07-10.
2505
2506 2007-07-11  Richard Guenther  <rguenther@suse.de>
2507
2508         * trans-array.c (gfc_conv_array_parameter): Use correct
2509         types for comparison.
2510         * trans-intrinsic.c (gfc_conv_intrinsic_repeat): Use
2511         correct types for POINTER_PLUS_EXPR.
2512         * trans-stmt.c (gfc_trans_forall_loop): Use correct type
2513         for integer one constant.
2514
2515 2007-07-10  Paul Thomas  <pault@gcc.gnu.org>
2516
2517         PR fortran/32157
2518         * resolve.c (is_external_proc): New function.  Adds test that
2519         the symbol is not an intrinsic procedure.
2520         * (resolve_function, resolve_call): Replace logical statements
2521         with call to is_external_proc.
2522
2523         PR fortran/32689
2524         * simplify.c (gfc_simplify_transfer): If mold has rank, the
2525         result is an array.
2526
2527         PR fortran/32634
2528         * module.c (write_generic): Write the local name of the
2529         interface. 
2530
2531 2007-07-09  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
2532
2533         PR fortran/29459
2534         * trans-array.c (gfc_trans_array_constructor): Mark offset field
2535         with TREE_NO_WARNING.
2536         * trans-decl.c (gfc_build_qualified_array): Mark lbound, ubound,
2537         stride and size variables with TREE_NO_WARNING.
2538
2539 2007-07-09  Steven G. Kargl  <kargl@gcc.gnu.org>
2540
2541         * trans-decl.c (set_tree_decl_type_code): Remove function.
2542         (generate_local_decl): Remove reference to set_tree_decl_type_code.
2543
2544 2007-07-09  Daniel Franke  <franke.daniel@gmail.com>
2545
2546         PR fortran/31129
2547         * trans-decl.c (generate_local_decl) Emit a warning if an unused
2548         parameter is found.
2549
2550 2007-07-08  Daniel Franke  <franke.daniel@gmail.com>
2551
2552         PR fortran/29876
2553         * module.c (gfc_match_use): Do not set an non-existant 
2554         intrinsic operator if a user-defined operator is found.
2555
2556 2007-07-08  Daniel Franke  <franke.daniel@gmail.com>
2557
2558         PR fortran/24784
2559         PR fortran/28004
2560         * trans-decl.c (generate_local_decl): Adjusted warning on unused 
2561         dummy arguments, tell middle-end not to emit additional warnings.
2562
2563 2007-07-08  Daniel Franke  <franke.daniel@gmail.com>
2564             Tobias Schlüter <tobias.schlueter@physik.uni-muenchen.de>
2565
2566         PR fortran/17711
2567         * gfortran.h (gfc_intrinsic_op): Added INTRINSIC_EQ_OS,
2568         INTRINSIC_NE_OS, INTRINSIC_GT_OS, INTRINSIC_GE_OS, 
2569         INTRINSIC_LT_OS and INTRINSIC_LE_OS.
2570         * arith.c (eval_intrinsic, eval_type_intrinsic0): Likewise.
2571         * arith.h (gfc_eq, gfc_ne, gfc_gt, gfc_ge, gfc_lt, gfc_le):
2572         Added gfc_intrinsic_op as third argument type.
2573         * dump-parse-tree.c (gfc_show_expr): Account for new enum values.
2574         * expr.c (simplify_intrinsic_op, check_intrinsic_op): Likewise.
2575         * interface.c (check_operator_interface): Likewise.
2576         (gfc_check_interfaces): Added cross-checks for FORTRAN 77 and 
2577         Fortran 90 style operators using new enum values.
2578         (gfc_extend_expr): Likewise.
2579         (gfc_add_interface): Likewise.
2580         * match.c (intrinsic_operators): Distinguish FORTRAN 77 style
2581         operators from Fortran 90 style operators using new enum values.
2582         * matchexp.c (match_level_4): Account for new enum values.
2583         * module.c (mio_expr): Likewise.
2584         * resolve.c (resolve_operator): Deal with new enum values, fix
2585         inconsistent error messages.
2586         * trans-expr.c (gfc_conv_expr_op): Account for new enum values.
2587
2588 2007-07-08  Tobias Burnus  <burnus@net-b.de>
2589
2590         PR fortran/32669
2591         * interface.c (get_expr_storage_size): Properly obtain lower bound.
2592         (compare_actual_formal): Add space before parenthesis.
2593
2594 2007-07-08  Daniel Franke  <franke.daniel@gmail.com>
2595
2596         PR fortran/25094
2597         * resolve.c (resolve_fl_procedure): Added check for PRIVATE types 
2598         in PUBLIC interfaces.
2599
2600 2007-07-07  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
2601
2602         PR fortran/32644
2603         * decl.c (match_attr_spec): Don't return MATCH_ERROR if comma found and
2604         gfc_match_bind_c does not return MATCH_YES.
2605
2606 2007-07-07  Kazu Hirata  <kazu@codesourcery.com>
2607
2608         * decl.c, gfortran.h, interface.c, module.c, resolve.c,
2609         trans-array.c, trans-decl.c: Fix comment typos.  Follow
2610         spelling conventions.
2611         * intrinsic.texi: Fix typos.  Follow spelling conventions.
2612
2613 2007-05-06  Daniel Franke  <franke.daniel@gmail.com>
2614
2615         PR fortran/32633
2616         * symbol.c (save_status): New.
2617         * gfortran.h (save_status): Added external declaration.
2618         (check_conflict): Check for conflicting explicite SAVE statements
2619         only.
2620         (gen_special_c_interop_ptr): Use SAVE_EXPLICIT constant.
2621         * module.c (ab_attribute, attr_bits): Removed enumerator value 
2622         AB_SAVE for save attribute.
2623         (mio_symbol_attribute): Import/export the full SAVE status, 
2624         removed usage of AB_SAVE.
2625         * dump-parse-tree.c (gfc_show_attr): Dump full SAVE status.
2626         * decl.c (add_init_expr_to_sym): Set SAVE_IMPLICIT only if not
2627         already explicit.
2628
2629 2007-07-05  Daniel Franke  <franke.daniel@gmail.com>
2630             Tobias Burnus  <burnus@net-b.de>
2631
2632         PR fortran/32359
2633         * gfortran.h (symbol_attribute): Change save attribute into an enum.
2634         * decl.c (add_init_expr_to_sym): Set it to SAVE_IMPLICIT.
2635         * symbol.c (gfc_add_save): Check for SAVE_EXPLICIT.
2636         * resolve.c (resolve_fl_variable): Check for SAVE_EXPLICIT.
2637         (resolve_symbol): Allow OMP threadprivate with
2638         initialization SAVEd and save_all variable.
2639         * trans-decl.c (gfc_finish_var_decl): Remove obsolete sym->value check.
2640
2641 2007-07-05  Paul Thomas  <pault@gcc.gnu.org>
2642
2643         PR fortran/32526
2644         * match.c (gfc_match_call): Check, in all cases, that a symbol
2645         is neither generic nor a subroutine before trying to add it as
2646         a subroutine.
2647
2648         PR fortran/32613
2649         * match.c (gfc_match_do): Reset the implied_index attribute.
2650
2651 2007-07-04  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
2652
2653         PR fortran/31198
2654         * trans-intrinsic.c (trans-intrinsic.c): Handle optional
2655         arguments correctly for MIN and MAX intrinsics.
2656
2657 2007-07-03  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
2658
2659         PR fortran/32545
2660         * io.c (check_format): Always call gfc_error for errors.
2661         (check_format_string): Change type of this function to try and
2662         return the result of check_format.
2663         (check_io_constraints): Return MATCH_ERROR if check_format_string
2664         returns FAILURE.
2665
2666 2007-07-03  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
2667
2668         PR fortran/32612
2669         * decl.c (get_proc_name): Include attr->mod_proc in check for error.
2670
2671 2007-07-03  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
2672
2673         PR fortran/32432
2674         * gfortran.h: Change type of gfc_assign_data_value from void to try.
2675         * data.c (gfc_assign_data_value): Return FAILURE if error found.
2676         * resolve.c (check_data_variable): If gfc_assign_data_value returns
2677         failure, break out of loop and return failure.
2678
2679 2007-07-03  Christopher D. Rickett  <crickett@lanl.gov>
2680
2681         PR fortran/32579
2682         * symbol.c (gen_cptr_param): Generate C_PTR and C_FUNPTR if necessary.
2683         (build_formal_args): Pass intrinsic module symbol id to
2684         gen_cptr_param.
2685
2686 2007-07-03  Tobias Burnus  <burnus@net-b.de>
2687
2688         PR fortran/25062
2689         * resolve.c (resolve_common_blocks): New check function.
2690         (resolve_types): Use it.
2691
2692 2007-07-03  Tobias Burnus  <burnus@net-b.de>
2693
2694         PR fortran/30940
2695         * interface.c (get_sym_storage_size): New function.
2696         (get_sym_storage_size): New function.
2697         (compare_actual_formal): Enhance sequence association
2698         support and improve checking.
2699
2700 2007-07-03  Janne Blomqvist  <jb@gcc.gnu.org>
2701
2702         * trans-decl.c (gfc_build_builtin_function_decls): Mark
2703         internal_realloc as a malloc function.
2704
2705 2007-07-03  Tobias Burnus  <burnus@net-b.de>
2706
2707         PR fortran/20888
2708         * resolve.c (resolve_operator): Check for NULL as operand.
2709
2710 2007-07-02  Tobias Burnus  <burnus@net-b.de>
2711
2712         * gfortran.texi (Fortran 2003): Add ISO Bind C.
2713         * intrinsic.texi (C_ASSOCIATED,C_F_POINTER,C_F_PROCPOINTER,
2714         C_FUNLOC,C_LOC): Document new ISO Bind C intrinsics.
2715
2716 2007-07-01  Christopher D. Rickett  <crickett@lanl.gov>
2717
2718         * interface.c (gfc_compare_derived_types): Special case for comparing
2719         derived types across namespaces.
2720         (gfc_compare_types): Deal with BT_VOID.
2721         (compare_parameter): Use BT_VOID to accept ISO C Binding pointers.
2722         * trans-expr.c (gfc_conv_function_call): Remove setting parm_kind
2723         to SCALAR
2724         (gfc_conv_initializer): Deal with ISO C Binding NULL_PTR and 
2725         NULL_FUNPTR.
2726         (gfc_conv_expr): Convert expressions for ISO C Binding derived types.
2727         * symbol.c (gfc_set_default_type): BIND(C) variables should not be
2728         Implicitly declared.
2729         (check_conflict): Add BIND(C) and check for conflicts.
2730         (gfc_add_explicit_interface): Whitespace.       
2731         (gfc_add_is_bind_c): New function.  
2732         (gfc_copy_attr): Use it.
2733         (gfc_new_symbol): Initialize ISO C Binding objects.
2734         (get_iso_c_binding_dt):  New function.
2735         (verify_bind_c_derived_type): Ditto.
2736         (gen_special_c_interop_ptr): Ditto.
2737         (add_formal_arg): Ditto.
2738         (gen_cptr_param): Ditto.
2739         (gen_fptr_param): Ditto.
2740         (gen_shape_param): Ditto.
2741         (add_proc_interface): Ditto.
2742         (build_formal_args): Ditto.
2743         (generate_isocbinding_symbol):  Ditto.
2744         (get_iso_c_sym):  Ditto.
2745         * decl.c (num_idents_on_line, has_name_equals): New variables.
2746         (verify_c_interop_param): New function.
2747         (build_sym): Finish binding labels and deal with COMMON blocks.
2748         (add_init_expr_to_sym): Check if the initialized expression is
2749         an iso_c_binding named constants
2750         (variable_decl): Set ISO C Binding type_spec components.
2751         (gfc_match_kind_spec): Check match for C interoperable kind.
2752         (match_char_spec): Fix comment. Chnage gfc_match_small_int
2753         to gfc_match_small_int_expr.  Check for C interoperable kind.
2754         (match_type_spec): Clear the current binding label.
2755         (match_attr_spec): Add DECL_IS_BIND_C.  If BIND(C) is found, use it
2756         to set attributes.
2757         (set_binding_label): New function.
2758         (set_com_block_bind_c): Ditto.
2759         (verify_c_interop): Ditto.
2760         (verify_com_block_vars_c_interop): Ditto.
2761         (verify_bind_c_sym): Ditto.
2762         (set_verify_bind_c_sym): Ditto.
2763         (set_verify_bind_c_com_block): Ditto.
2764         (get_bind_c_idents): Ditto.
2765         (gfc_match_bind_c_stmt): Ditto.
2766         (gfc_match_data_decl): Use num_idents_on_line.
2767         (match_result): Deal with right paren in BIND(C).
2768         (gfc_match_suffix): New function.
2769         (gfc_match_function_decl): Use it.  Code is re-arranged to deal with
2770         ISO C Binding result clauses.
2771         (gfc_match_subroutine):  Deal with BIND(C).
2772         (gfc_match_bind_c): New function.
2773         (gfc_get_type_attr_spec): New function.  Code is re-arranged in and
2774         taken from gfc_match_derived_decl.
2775         (gfc_match_derived_decl): Add check for BIND(C).
2776         * trans-common.c: Forward declare gfc_get_common.
2777         (gfc_sym_mangled_common_id): Change arg from 'const char *name' to
2778         'gfc_common_head *com'.  Check for ISO C Binding of the common block.
2779         (build_common_decl): 'com->name' to 'com in SET_DECL_ASSEMBLER_NAME.
2780         * gfortran.h: Add GFC_MAX_BINDING_LABEL_LEN
2781         (bt): Add BT_VOID
2782         (sym_flavor): Add FL_VOID.
2783         (iso_fortran_env_symbol, iso_c_binding_symbol, intmod_id): New enum
2784         (CInteropKind_t): New struct.
2785         (c_interop_kinds_table): Use it.  Declare an array of structs.
2786         (symbol_attribute): Add is_bind_c, is_c_interop, and is_iso_c
2787         bitfields.
2788         (gfc_typespec): Add is_c_interop; is_iso_c, and f90_type members.
2789         (gfc_symbol): Add from_intmod, intmod_sym_id, binding_label, and
2790         common_block members.
2791         (gfc_common_head): Add binding_label and is_bind_c members.
2792         (gfc_gsymbol): Add sym_name, mod_name, and binding_label members.
2793         Add prototypes for get_c_kind, gfc_validate_c_kind, 
2794         gfc_check_any_c_kind, gfc_add_is_bind_c, gfc_add_value,
2795         verify_c_interop, verify_c_interop_param, verify_bind_c_sym,
2796         verify_bind_c_derived_type, verify_com_block_vars_c_interop,
2797         generate_isocbinding_symbol, get_iso_c_sym, gfc_iso_c_sub_interface
2798         * iso-c-binding.def: New file. This file contains the definitions
2799         of the types provided by the Fortran 2003 ISO_C_BINDING intrinsic
2800         module.
2801         * trans-const.c (gfc_conv_constant_to_tree): Deal with C_NULL_PTR
2802          or C_NULL_FUNPTR expressions.
2803         * expr.c (gfc_copy_expr): Add BT_VOID case.  For BT_CHARACTER, the
2804         ISO C Binding requires a minimum string length of 1 for '\0'.  
2805         * module.c (intmod_sym): New struct.
2806         (pointer_info): Add binding_label member.
2807         (write_atom): Set len to 0 for NULL pointers. Check for NULL p and *p.
2808         (ab_attribute): Add AB_IS_BIND_C, AB_IS_C_INTEROP and AB_IS_ISO_C.
2809         (attr_bits): Add "IS_BIND_C", "IS_C_INTEROP", and "IS_ISO_C".
2810         (mio_symbol_attribute): Deal with ISO C Binding attributes.
2811         (bt_types): Add "VOID".
2812         (mio_typespec): Deal with ISO C Binding components.
2813         (mio_namespace_ref): Add intmod variable. 
2814         (mio_symbol): Check for symbols from an intrinsic module.
2815         (load_commons): Check for BIND(C) common block.
2816         (read_module): Read binding_label and use it.
2817         (write_common): Add label.  Write BIND(C) info.
2818         (write_blank_common): Blank commons are not BIND(C).  Explicitly
2819         set is_bind_c=0.
2820         (write_symbol): Deal with binding_label.
2821         (sort_iso_c_rename_list): New function.
2822         (import_iso_c_binding_module): Ditto.
2823         (create_int_parameter): Add to args.
2824         (use_iso_fortran_env_module): Adjust to deal with iso_c_binding
2825         intrinsic module.
2826         * trans-types.c (c_interop_kinds_table): new array of structs. 
2827         (gfc_validate_c_kind): New function.
2828         (gfc_check_any_c_kind): Ditto.
2829         (get_real_kind_from_node): Ditto.
2830         (get_int_kind_from_node): Ditto.
2831         (get_int_kind_from_width): Ditto.
2832         (get_int_kind_from_minimal_width): Ditto.
2833         (init_c_interop_kinds): Ditto.
2834         (gfc_init_kinds): call init_c_interop_kinds.
2835         (gfc_typenode_for_spec): Adjust for BT_VOID and ISO C Binding pointers.
2836         Adjust handling of BT_DERIVED.
2837         (gfc_sym_type): Whitespace.
2838         (gfc_get_derived_type):  Account for iso_c_binding derived types
2839         * resolve.c (is_scalar_expr_ptr): New function.
2840         (gfc_iso_c_func_interface): Ditto.
2841         (resolve_function): Use gfc_iso_c_func_interface. 
2842         (set_name_and_label): New function.
2843         (gfc_iso_c_sub_interface): Ditto.
2844         (resolve_specific_s0): Use gfc_iso_c_sub_interface.
2845         (resolve_bind_c_comms): New function.
2846         (resolve_bind_c_derived_types): Ditto.
2847         (gfc_verify_binding_labels): Ditto.
2848         (resolve_fl_procedure): Check for ISO C interoperability.
2849         (resolve_symbol): Check C interoperability.
2850         (resolve_types): Walk the namespace.  Check COMMON blocks.
2851         * trans-decl.c (gfc_sym_mangled_identifier):  Prevent the mangling
2852         of identifiers that have an assigned binding label.
2853         (gfc_sym_mangled_function_id): Use the binding label rather than
2854         the mangled name.
2855         (gfc_finish_var_decl): Put variables that are BIND(C) into a common
2856         segment of the object file, because this is what C would do.
2857         (gfc_create_module_variable): Conver to proper types
2858         (set_tree_decl_type_code): New function.
2859         (generate_local_decl): Check dummy variables and derived types for
2860         ISO C Binding attributes.
2861         * match.c (gfc_match_small_int_expr): New function.
2862         (gfc_match_name_C): Ditto.
2863         (match_common_name): Deal with ISO C Binding in COMMON blocks
2864         * trans-io.c (transfer_expr):  Deal with C_NULL_PTR or C_NULL_FUNPTR
2865         expressions
2866         * match.h: Add prototypes for gfc_match_small_int_expr,
2867         gfc_match_name_C, match_common_name, set_com_block_bind_c,
2868         set_binding_label, set_verify_bind_c_sym,
2869         set_verify_bind_c_com_block, get_bind_c_idents,
2870         gfc_match_bind_c_stmt, gfc_match_suffix, gfc_match_bind_c,
2871         gfc_get_type_attr_spec
2872         * parse.c (decode_statement): Use gfc_match_bind_c_stmt
2873         (parse_derived): Init *derived_sym = NULL, and gfc_current_block
2874         later for valiadation.
2875         * primary.c (got_delim): Set ISO C Binding components of ts.
2876         (match_logical_constant): Ditto.
2877         (match_complex_constant): Ditto.
2878         (match_complex_constant): Ditto.
2879         (gfc_match_rvalue): Check for existence of at least one arg for
2880         C_LOC, C_FUNLOC, and C_ASSOCIATED.
2881         * misc.c (gfc_clear_ts): Clear ISO C Bindoing components in ts.
2882         (get_c_kind): New function.
2883
2884 2007-07-01  Janne Blomqvist  <jb@gcc.gnu.org>
2885
2886         PR fortran/32239
2887         * trans-expr.c (gfc_conv_power_op): Use builtin_powi for
2888         real**int4 powers.
2889         * f95-lang.c (gfc_init_builtin_functions): Add builtin_powi to the
2890         builtins table.
2891
2892 2007-07-01  Janne Blomqvist  <jb@gcc.gnu.org>
2893
2894         * trans.h: Remove decls for 64-bit allocation functions.
2895         * trans-array.c (gfc_grow_array): Always pick the standard realloc
2896         function decl.
2897         (gfc_array_allocate): Likewise.
2898         * trans-decl.c: Remove trees for 64-bit allocation functions.
2899         (gfc_build_builtin_function_decls): Don't build fndecls for 64-bit
2900         allocations functions, use index_int_type for normal allocation
2901         functions.
2902
2903 2007-06-30  Daniel Franke  <franke.daniel@gmail.com>
2904
2905         PR fortran/20373
2906         * intrinsic.c (add_functions): Additional function types.
2907         (gfc_convert_type_warn): Remove intrinsic-flag from
2908         conversion functions.
2909         * resolve.c (resolve_symbol): Added type checks to 
2910         explicitly defined intrinsics.
2911
2912 2007-06-30  Tobias Burnus  <burnus@net-b.de>
2913
2914         PR fortran/32555
2915         * io.c (check_format): Allow zero to precede the
2916         P edit descriptor.
2917
2918 2007-06-30  Paul Thomas  <pault@gcc.gnu.org>
2919
2920         PR fortran/32472
2921         * simplify.c (gfc_simplify_repeat): Add handling of character
2922         literal for first argument.
2923
2924 2007-06-29  Daniel Franke  <franke.daniel@gmail.com>
2925
2926         * resolve.c (resolve_operator): Added check whether a user
2927         defined operator is available.
2928
2929 2007-06-29  Daniel Franke <franke.daniel@gmail.com>
2930
2931         * openmp.c (resolve_omp_clauses): Adjust error message to
2932         better reflect the actual requirement.
2933
2934 2007-06-29  Tobias Burnus  <burnus@net-b.de>
2935
2936         PR fortran/32483
2937         * io.c (format_lex): Fix FMT_ZERO.
2938         (check_format,check_format_string,gfc_match_format,
2939         check_io_constraints) Additional checking for READ.
2940
2941 2007-06-28 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
2942
2943         PR other/31400
2944         * lang.opt (static-libgfortran): New option.
2945         * gfortranspec.c (ADD_ARG_LIBGFORTRAN): New macro.
2946         (Option): Add OPTION_static and OPTION_static_libgfortran.
2947         (lookup_option): Handle the new -static-libgfortran option.
2948         (lang_specific_driver): Check whether -static is passed.
2949         Handle the new -static-libgfortran option.
2950         * options.c (gfc_handle_option): If -static-libgfortran is
2951         passed and isn't supported on this configuration, error out.
2952
2953 2007-06-27  Daniel Franke  <franke.daniel@gmail.com>
2954
2955         PR fortran/32467
2956         * openmp.c (resolve_omp_clauses): Emit error on allocatable
2957         components in COPYIN, COPYPRIVATE, FIRSTPRIVATE and LASTPRIVATE
2958         clauses.
2959
2960 2007-06-25  Paul Thomas  <pault@gcc.gnu.org>
2961
2962         PR fortran/32464
2963         * resolve.c (check_host_association): Return if the old symbol
2964         is use associated.  Introduce retval to reduce the number of
2965         evaluations of the first-order return value.
2966
2967         PR fortran/31494
2968         * match.c (gfc_match_call): If a host associated symbol is not
2969         a subroutine, build a new symtree/symbol in the current name
2970         space.
2971
2972 2007-06-24  Tobias Burnus  <burnus@net-de>
2973
2974         PR fortran/32460
2975         * interface.c (gfc_compare_derived_types): Add access check.
2976         * symbol.c (gfc_find_component): Ditto.
2977         (gfc_set_component_attr,gfc_get_component_attr) Copy access state.
2978         * dump-parse-tree.c (gfc_show_components): Dump access state.
2979         * gfortran.h (struct gfc_component): Add gfc_access.
2980         * module.c (mio_component): Add access state.
2981         * (gfc_match_structure_constructor): Check for private access state.
2982
2983 2007-06-24  Paul Thomas  <pault@gcc.gnu.org>
2984
2985         PR fortran/32298
2986         PR fortran/31726
2987         * trans-intrinsic.c (gfc_conv_intrinsic_minmaxloc): Calculate
2988         the offset between the loop counter and the position as
2989         defined. Add the offset within the loop so that the mask acts
2990         correctly.  Do not advance the location on the basis that it
2991         is zero.
2992
2993 2007-06-22  Daniel Franke  <franke.daniel@gmail.com>
2994
2995         PR fortran/31473
2996         * symbol.c (gfc_copy_attr): Emit errors for duplicate 
2997         EXTERNAL/INTRINSIC statements.
2998
2999 2007-06-22  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
3000
3001         PR fortran/32360
3002         * expr.c (gfc_check_assign): If the rvalue expression type is NULL_EXPR,
3003         check to see if the lvalue has attribute pointer and data.  
3004
3005 2007-06-21  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
3006
3007         PR fortran/31162
3008         * resolve.c (gfc_resolve_iterator_expr): Add check for REAL using
3009         gfc_notify_standard. (gfc_resolve_iterator): Remove check.
3010         (resolve_branch): Change "Obsolete" to "Deleted feature".
3011         * io.c (resolve_tag): Ditto.
3012         * match.c (gfc_match_pause, gfc_match_assign, gfc_match_goto): Ditto.
3013
3014 2007-06-20  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
3015
3016         PR fortran/32361
3017         * match.c (gfc_match_common): If the symbol value expression type is
3018         NULL_EXPR, don't error if previously initialized.
3019
3020 2007-06-20  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
3021
3022         PR fortran/25061
3023         * decl.c (get_proc_name) Check symbol for generic interface
3024         and issue an error.
3025
3026 2007-06-20  Andrew Pinski  <andrew_pinski@playstation.sony.com>
3027         Richard Guenther  <rguenther@suse.de>
3028
3029         PR fortran/32140
3030         * trans.c (gfc_build_addr_expr): Use the correct types.
3031
3032 2007-06-19  Paul Thomas  <pault@gcc.gnu.org>
3033
3034         PR fortran/20863
3035         PR fortran/20882
3036         * resolve.c (resolve_code): Use gfc_impure_variable as a
3037         condition for rejecting derived types with pointers, in pure
3038         procedures.
3039         (gfc_impure_variable): Add test for dummy arguments of pure
3040         procedures; any for functions and INTENT_IN for subroutines.
3041
3042         PR fortran/32236
3043         * data.c (gfc_assign_data_value): Change the ICE on an array
3044         reference initializer not being an array into an error and
3045         clear init to prevent a repetition of the error.
3046
3047 2007-06-17  Janne Blomqvist  <jb@gcc.gnu.org>
3048
3049         * gfortran.texi: Add documentation for GFORTRAN_UNBUFFERED_n
3050         environment variables. Fix documentation for
3051         GFORTRAN_UNBUFFERED_ALL environment variable.
3052
3053 2007-06-15  Andrew Pinski  <andrew_pinski@playstation.sony.com>
3054
3055         * trans-intrinsic.c (gfc_conv_intrinsic_repeat): Use
3056         POINTER_PLUS_EXPR instead of PLUS_EXPR for pointer addition.
3057         * trans-expr.c (gfc_trans_string_copy): Create
3058         POINTER_PLUS_EXPR instead of a PLUS_EXPR
3059         for pointer types.
3060
3061 2007-06-14  Paul Thomas  <pault@gcc.gnu.org>
3062
3063         PR fortran/32302
3064         * trans-common.c (build_common_decl): If resizing of common
3065         decl is needed, update the TREE_TYPE.
3066
3067 2007-06-13  Tobias Burnus  <burnus@net-b.de>
3068
3069         PR fortran/32323
3070         * interface.c (has_vector_section): New.
3071         (compare_actual_formal): Check for array sections with vector subscript.
3072
3073 2007-06-12  Dirk Mueller  <dmueller@suse.de>
3074
3075         * trans-stmt.c (gfc_trans_call): fix gcc_assert to
3076         a comparison, not an assignment.
3077
3078 2007-06-12  Paul Thomas  <pault@gcc.gnu.org>
3079
3080         * trans-common.c (create_common): Initialize 'field_init'.
3081
3082 2007-06-12  Paul Thomas  <pault@gcc.gnu.org>
3083
3084         PR fortran/29786
3085         PR fortran/30875
3086         * trans-common.c (get_init_field): New function.
3087         (create_common): Call get_init_field for overlapping
3088         initializers in equivalence blocks.
3089         * resolve.c (resolve_equivalence_derived, resolve_equivalence):
3090         Remove constraints on initializers in equivalence blocks.
3091         * target-memory.c (expr_to_char, gfc_merge_initializers):
3092         New functions.
3093         (encode_derived): Add the bit offset to the byte offset to get
3094         the total offset to the field.
3095         * target-memory.h : Add prototype for gfc_merge_initializers.
3096
3097 2007-06-11  Rafael Avila de Espindola  <espindola@google.com>
3098
3099         * trans-types.c (gfc_signed_type): Remove.
3100         * trans-types.h (gfc_signed_type): Remove.
3101         * f95-lang.c (LANG_HOOKS_SIGNED_TYPE): Remove.
3102
3103 2007-06-08 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
3104
3105         * trans-intrinsic.c: Revert Lee's 2007-06-04 patch.
3106
3107 2007-06-07  Steven G. Kargl  <kargl@gcc.gnu.org>
3108             Jerry DeLisle  <jvdelisle@gcc.gnu.org>
3109
3110         PR fortran/32223
3111         * match.c (gfc_match_special_char): New function.  Match special char.
3112         Add handling '\0'.
3113         * match.h: Add prototype.
3114         * io.c (next_char): Use it.
3115         * primary.c (next_string_char): Ditto.
3116
3117 2007-06-06  Steven G. Kargl  <kargl@gcc.gnu.org>
3118
3119         * decl.c: Miscellaneous whitespace fixes.
3120         * expr.c: Likewise.
3121         * gfortran.h: Likewise.
3122         * interface.c : Likewise.
3123         * io.c: Likewise.
3124         * match.c: Likewise.
3125         * match.h: Likewise.
3126         * module.c: Likewise.
3127         * parse.c: Likewise.
3128         * resolve.c: Likewise.
3129         * symbol.c: Likewise.
3130         * trans-array.c: Likewise.
3131         * trans-common.c: Likewise.
3132         * trans-decl.c: Likewise.
3133         * trans-intrinsic.c: Likewise.
3134         * trans-io.c: Likewise.
3135         * trans-stmt.c: Likewise.
3136         * trans-types.c: Likewise.
3137
3138 2007-06-05  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
3139
3140         PR fortran/18923
3141         * parse.c (decode_statement): Don't call gfc_undo_symbols on MATCH_ERROR
3142         for ST_FUNCTION since it is called in reject_statement.
3143         (parse_contained): If error, loop back after reject_statement and try
3144         again.  Free the namespace if an error occured.
3145
3146 2007-06-04 Lee Millward <lee.millward@codesourcery.com>
3147
3148         * trans-intrinsic.c (gfc_conv_intrinsic_function_args): Adjust
3149         to operate on a stack allocated array for the intrinsic arguments
3150         instead of creating a TREE_LIST. Add two new parameters for the
3151         array and the number of elements. Update all callers to allocate
3152         an array of the correct length to pass in. Update comment.
3153         (gfc_intrinsic_argument_list_length): New function.
3154         (gfc_conv_intrinsic_mnimax): Call it.
3155         (gfc_conv_intrinsic_merge): Likewise.
3156         (gfc_conv_intrinsic_lib_function): Call it. Use new CALL_EXPR
3157         constructors.
3158         (gfc_conv_intrinsic_cmplx): Likewise.
3159         (gfc_conv_intrinsic_ctime): Likewise.
3160         (gfc_covn_intrinsic_fdate): Likewise.
3161         (gfc_conv_intrinsic_ttynam): Likewise.
3162         (gfc_conv_intrinsic_ishftc): Likewise.
3163         (gfc_conv_intrinsic_index): Likewise.
3164         (gfc_conv_intrinsic_scan): Likewise.
3165         (gfc_conv_intrinsic_verify): Likewise.
3166         (gfc_conv_intrinsic_trim): Likewise.
3167         (gfc_conv_intrinsic_aint): Use new CALL_EXPR constructors.
3168         (gfc_conv_intrinsic_exponent): Likewise.
3169         (gfc_conv_intrinsic_bound): Likewise.
3170         (gfc_conv_intrinsic_abs): Likewise.
3171         (gfc_conv_intrinsic_mod): Likewise.
3172         (gfc_conv_intrinsic_sign): Likewise.
3173         (gfc_conv_intrinsic_len): Likewise.
3174         (gfc_conv_intrinsic_adjust): Likewise.
3175         (gfc_conv_intrinsic_si_kind): Likewise.
3176
3177 2007-06-04  Steve Ellcey  <sje@cup.hp.com>
3178
3179         * trans-array.c (gfc_conv_array_parameter): Initialize tmp.
3180
3181 2007-05-31  Richard Guenther  <rguenther@suse.de>
3182
3183         * trans-expr.c (gfc_conv_expr_op): Use zero constant
3184         that matches the lse type.
3185         (gfc_trans_string_copy): Use sizetype zero constant.
3186         * intrinsic.c (add_functions): The sizeof intrinsic has
3187         index type result.
3188         * trans-types.c (gfc_get_dtype): Convert size to index
3189         type before shifting.
3190         * trans-array.c (gfc_trans_array_constructor_value): Use
3191         index type for offset computation.
3192         * trans-intrinsic.c (gfc_conv_associated): Use correct type
3193         for zero constant.
3194
3195 2007-05-31  Paul Thomas  <pault@gcc.gnu.org>
3196
3197         PR fortran/32156
3198         * trans-array.c (gfc_trans_array_constructor): Treat the case
3199         where the ss expression charlen is missing.
3200
3201 22007-05-31  Paul Thomas  <pault@gcc.gnu.org>
3202
3203         PR fortran/32103
3204         * module.c (mio_symtree_ref): If an equivalence group member
3205         is not used, give it a hidden symbol and set the pointer_info.
3206         (load_equiv): Only free the equivalence if none of the members
3207         are used.
3208
3209 2007-05-29  Daniel Franke  <franke.daniel@gmail.com>
3210
3211         * gfortran.h: Renamed 'enum gfc_generic_isym_id' to 'enum gfc_isym_id',
3212         added missing GFC_ISYM_* enumerators, ordered alphabetically.
3213         (struct gfc_intrinsic_sym): Renamed 'generic_id' to 'id'.
3214         (gfc_find_subroutine): New prototype.
3215         * intrinsic.c (add_sym, add_sym_*): Added argument 'id' and changed all callers.
3216         (find_subroutine): Renamed to 'gfc_find_subroutine', removed static.  
3217         * dependency.c: Changed usage of isym->generic_id to isym->id.  
3218         * openmp.c: Likewise.  
3219         * resolve.c: Likewise.  
3220         * trans-array.c: Likewise.  
3221         * trans-expr.c: Likewise.  
3222         * trans-intrinsic.c: Likewise.  
3223         * trans-openmp.c: Likewise.
3224
3225 2007-05-28  Tobias Schlüter  <tobi@gcc.gnu.org>
3226
3227         * gfortran.h (gfc_generic_isym_id): Add GFC_ISYM_SIZEOF.
3228         * intrinsic.c (add_functions): Add stuff for SIZEOF intrinsic.
3229         * intrinsic.h (gfc_check_sizeof): Add prototype of ...
3230         * check.c (gfc_check_sizeof): .. new function.
3231         * trans-intrinsic.c (gfc_conv_intrinsic_sizeof): New function.
3232         (gfc_conv_intrinsic_strcmp): Whitespace fix.
3233         (gfc_conv_intrinsic_array_transfer): Remove double initialization,
3234         use fold_build. where appropriate.
3235         (gfc_conv_intrinsic_function): Add case for SIZEOF.
3236         * intrinsic.texi: Add documentation for SIZEOF.
3237
3238 2007-05-28  Brooks Moses  <brooks.moses@codesourcery.com>
3239
3240         * trans-array.c (gfc_conv_expr_descriptor): Edit comment.
3241
3242 2007-05-28  Brooks Moses  <brooks.moses@codesourcery.com>
3243
3244         PR fortran/31972
3245         * target-memory.c (gfc_target_expr_size): Add handling
3246         for size of BT_HOLLERITH variables.
3247         * check.c (gfc_check_transfer): Reject BT_HOLLERITH
3248         variables in MOLD argument of TRANSFER.
3249
3250 2007-05-28  Brooks Moses  <brooks.moses@codesourcery.com>
3251
3252         * gfortran.h (gfc_expr): Remove from_H, add "representation"
3253         struct.
3254         * primary.c (match_hollerith_constant): Store the representation
3255         of the Hollerith in representation, not in value.character.
3256         * arith.c: Add dependency on target-memory.h.
3257         (eval_intrinsic): Remove check for from_H.
3258         (hollerith2representation): New function.
3259         (gfc_hollerith2int): Determine value of the new constant.
3260         (gfc_hollerith2real): Likewise.
3261         (gfc_hollerith2complex): Likewise.
3262         (gfc_hollerith2logical): Likewise.
3263         (gfc_hollerith2character): Point both representation.string and
3264         value.character.string at the value string.
3265         * data.c (create_character_initializer): For BT_HOLLERITH
3266         rvalues, get the value from the representation rather than
3267         value.character.
3268         * expr.c (free_expr0): Update handling of BT_HOLLERITH values
3269         and values with representation.string.
3270         (gfc_copy_expr): Likewise.
3271         * intrinsic.c (do_simplify): Remove special treatement of
3272         variables resulting from Hollerith constants.
3273         * dump-parse-trees.c (gfc_show_expr): Update handling of
3274         Holleriths.
3275         * trans-const.c (gfc_conv_constant_to_tree): Replace from_H
3276         check with check for representation.string; get Hollerith
3277         representation from representation.string, not value.character.
3278         * trans-expr.c (is_zero_initializer_p): Replace from_H check
3279         with check for representation.string.
3280         * trans-stmt.c (gfc_trans_integer_select): Use
3281         gfc_conv_mpz_to_tree for case values, so as to avoid picking up
3282         the memory representation if the case is given by a transfer
3283         expression.
3284         * target-memory.c (gfc_target_encode_expr): Use the known memory
3285         representation rather than the value, if it exists.
3286         (gfc_target_interpret_expr): Store the memory representation of
3287         the interpreted expression as well as its value.
3288         (interpret_integer): Move to gfc_interpret_integer, make
3289         non-static.
3290         (interpret_float): Move to gfc_interpret_float, make non-static.
3291         (interpret_complex): Move to gfc_interpret_complex, make
3292         non-static.
3293         (interpret_logical): Move to gfc_interpret_logical, make
3294         non-static.
3295         (interpret_character): Move to gfc_interpret_character, make
3296         non-static.
3297         (interpret_derived): Move to gfc_interpret_derived, make
3298         non-static.
3299         * target-memory.h: Add prototypes for newly-exported
3300         gfc_interpret_* functions.
3301
3302 2007-05-27  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
3303
3304         PR fortran/31812
3305         * parse.c (next_statement): Warn for truncated lines if source is free
3306         form.
3307
3308 2007-05-27 Paul Thomas  <pault@gcc.gnu.org>
3309            Tobias Burnus  <burnus@net-b.de>
3310
3311         PR fortran/32088
3312         * symbol.c (gfc_check_function_type): Copy dimensions of
3313           result variable.
3314         * resolve.c (resolve_contained_fntype): Improve symbol output in
3315           the error message.
3316
3317 2007-05-26  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
3318
3319         PR fortran/31813
3320         * io.c (check_format): Add warning for H specifier in format.
3321         
3322 2007-05-26  Tobias Burnus  <burnus@net-b.de>
3323
3324         * gfortran.texi: Document the GFORTRAN_ERROR_DUMPCORE and
3325         GFORTRAN_ERROR_BACKTRACE environment variables.
3326
3327 2007-05-26  Paul Thomas  <pault@gcc.gnu.org>
3328
3329         PR fortran/31219
3330         * trans.h : Add no_function_call bitfield to gfc_se structure.
3331         Add stmtblock_t argument to prototype of get_array_ctor_strlen.
3332         * trans-array.c (get_array_ctor_all_strlen): New function.
3333         (get_array_ctor_strlen): Add new stmtblock_t argument and call
3334         new function for character elements that are not constants,
3335         arrays or variables.
3336         (gfc_conv_array_parameter): Call get_array_ctor_strlen to get
3337         good string length.
3338         * trans-intrinsic (gfc_conv_intrinsic_len): Add new argument
3339         to call of get_array_ctor_strlen.
3340
3341 2007-05-25  Kazu Hirata  <kazu@codesourcery.com>
3342
3343         * intrinsic.texi: Fix typos.
3344
3345 2007-05-25  Paul Thomas  <pault@gcc.gnu.org>
3346
3347         PR fortran/32047
3348         * trans-expr.c (gfc_apply_interface_mapping_to_expr): Change
3349         order in logic under EXPR_FUNCTION to handle functions with
3350         no arguments.
3351
3352 2007-05-23  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
3353
3354         PR fortran/31716
3355         * array.c (spec_dimen_size): Test for correct BT_INTEGER type. 
3356
3357 2007-05-23  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
3358
3359         PR fortran/32046
3360         * trans-expr.c (gfc_trans_zero_assign): Convert the result of
3361         TYPE_SIZE_UNIT into a signed type.
3362         (gfc_trans_array_copy):  Likewise.
3363         (gfc_trans_array_constructor_copy): Likewise.
3364         * trans-array.c (gfc_trans_create_temp_array): Likewise.
3365         (gfc_grow_array): Likewise.
3366         (gfc_array_init_size): Likewise.
3367         (gfc_duplicate_allocatable): Likewise.
3368         * trans-stmt.c (allocate_temp_for_forall_nest_1): Likewise.
3369
3370 2007-05-22  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
3371
3372         PR fortran/18923
3373         * resolve.c (resolve_function): Don't call resolve_global_procedure if
3374         there is no name. Delete duplicated statement in ELSE clause.
3375
3376 2007-05-22 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
3377
3378         PR fortran/31627
3379         * trans-array.c (gfc_trans_array_bound_check): Take extra argument to
3380         indicate whether we should check the upper bound in that dimension.
3381         (gfc_conv_array_index_offset): Check only the lower bound of the
3382         last dimension for assumed-size arrays.
3383         (gfc_conv_array_ref): Likewise.
3384         (gfc_conv_ss_startstride): Likewise.
3385
3386 2007-05-21  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
3387             Daniel Franke  <franke.daniel@gmail.com>
3388
3389         PR fortran/32002
3390         * resolve.c (resolve_actual_arglist): Resolve actual argument after
3391         being identified as variable.
3392
3393 2007-05-21  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
3394
3395         PR fortran/32027
3396         * trans-stmt.c (gfc_trans_do): Fix the value of loop variable
3397         when the loop ends.
3398
3399 2007-05-21  H.J. Lu  <hongjiu.lu@intel.com>
3400
3401         * trans-stmt.c (gfc_trans_do): Fix a typo in comment.
3402
3403 2007-05-21  Paul Thomas  <pault@gcc.gnu.org>
3404
3405         PR fortran/31867
3406         PR fortran/31994
3407         * trans-array.c (gfc_conv_expr_descriptor): Obtain the stored
3408         offset for non-descriptor, source arrays and correct for stride
3409         not equal to one before writing to field of output descriptor.
3410
3411 2007-05-20  Daniel Franke  <franke.daniel@gmail.com>
3412
3413         PR fortran/32001
3414         * check.c (check_rest): Improved argument conformance check and 
3415         fixed error message generation.
3416
3417 2007-05-19  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
3418
3419         PR fortran/30820
3420         * Make-lang.in: Remove use of -Wno-error for expr.o, resolve.o,
3421         simplify.o and trans-common.o.
3422
3423 2007-05-19  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
3424
3425         PR fortran/31974
3426         * trans-array.c (gfc_trans_auto_array_allocation): Avoid
3427         multiplication of mismatched types.
3428
3429 2007-05-18  Daniel Franke  <franke.daniel@gmail.com>
3430
3431         PR fortran/24633
3432         * symbol.c (gfc_add_flavor): Add the NAME to error message if
3433         available.
3434
3435 2007-05-15  Daniel Franke  <franke.daniel@gmail.com>
3436
3437         PR fortran/31919
3438         PR fortran/31929
3439         PR fortran/31930
3440         * intrinsic.c (check_specific): Check elemental intrinsics for
3441         rank and shape.
3442         (add_functions): Fixed dummy argument names of BESJN and BESYN.
3443         Fixed elemental status of MCLOCK and MCLOCK8.
3444         * check.c (check_rest): Added check for array conformance.
3445         (gfc_check_merge): Removed check for array conformance.
3446         (gfc_check_besn): Removed check for scalarity.
3447         * intrinsic.texi (CSHIFT, EOSHIFT): Fixed typos.
3448         (BESJN, BESYN): Clarified documentation.
3449
3450 2007-05-17  Tobias Burnus  <burnus@net-b.de>
3451
3452         * gfortran.texi (GFORTRAN_CONVERT_UNIT): Improve documentation.
3453
3454 2007-05-16  Brooks Moses  <brooks.moses@codesourcery.com>
3455
3456         PR fortran/18769
3457         PR fortran/30881
3458         PR fortran/31194
3459         PR fortran/31216
3460         PR fortran/31427
3461         * target-memory.c: New file.
3462         * target-memory.h: New file.
3463         * simplify.c: Add #include "target-memory.h".
3464         (gfc_simplify_transfer): Implement constant-
3465         folding for TRANSFER intrinsic.
3466         * Make-lang.in: Add dependencies on new target-memory.* files.
3467
3468 2007-05-15  Paul Brook  <paul@codesourcery.com>
3469
3470         * trans-types.c (gfc_type_for_size): Handle signed TImode.
3471
3472 2007-05-14  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
3473
3474         PR fortran/30723
3475         * trans.h (gfor_fndecl_internal_malloc, gfor_fndecl_internal_malloc64,
3476         gfor_fndecl_internal_free): Remove prototypes.
3477         (gfor_fndecl_os_error, gfc_call_free, gfc_call_malloc): Add prototypes.
3478         * trans.c (gfc_call_malloc, gfc_call_free): New functions.
3479         * f95-lang.c (gfc_init_builtin_functions): Add __builtin_free
3480         and __builtin_malloc builtins.
3481         * trans-decl.c (gfor_fndecl_internal_malloc,
3482         gfor_fndecl_internal_malloc64, gfor_fndecl_internal_free): Remove.
3483         (gfor_fndecl_os_error): Add.
3484         (gfc_build_builtin_function_decls): Don't create internal_malloc,
3485         internal_malloc64 and internal_free library function declaration.
3486         Create os_error library call function declaration.
3487         * trans-array.c (gfc_trans_allocate_array_storage,
3488         gfc_trans_auto_array_allocation, gfc_trans_dummy_array_bias,
3489         gfc_conv_array_parameter, gfc_duplicate_allocatable): Use
3490         gfc_call_malloc and gfc_call_free instead of building calls to
3491         internal_malloc and internal_free.
3492         * trans-expr.c (gfc_conv_string_tmp): Likewise.
3493         * trans-stmt.c (gfc_do_allocate, gfc_trans_assign_need_temp,
3494         gfc_trans_pointer_assign_need_temp, gfc_trans_forall_1,
3495         gfc_trans_where_2: Likewise.
3496         * trans-intrinsic.c (gfc_conv_intrinsic_ctime,
3497         gfc_conv_intrinsic_fdate, gfc_conv_intrinsic_ttynam,
3498         gfc_conv_intrinsic_array_transfer, gfc_conv_intrinsic_trim): Likewise.
3499
3500 2007-05-14  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
3501
3502         PR fortran/31725
3503         * trans-expr.c (gfc_conv_substring): Evaluate substring bounds
3504         only once.
3505
3506 2007-05-14  Rafael Avila de Espindola  <espindola@google.com>
3507
3508         * f95-lang.c (LANG_HOOKS_UNSIGNED_TYPE): Remove.
3509         * trans-intrinsic.c (gfc_conv_intrinsic_ishft): Use unsigned_type_for
3510         instead of gfc_unsigned_type.
3511         * trans-stmt.c (gfc_trans_do): Use unsigned_type_for instead of
3512         gfc_unsigned_type.
3513         * trans-types.c (gfc_unsigned_type): Remove.
3514         * trans-types.h (gfc_unsigned_type): Remove.
3515
3516 2007-05-12  Paul Thomas  <pault@gcc.gnu.org>
3517
3518         PR fortran/30746
3519         * resolve.c (check_host_association): New function that detects
3520         incorrect host association and corrects it.
3521         (gfc_resolve_expr): Call the new function for variables and
3522         functions.
3523         * match.h : Remove prototype for gfc_match_rvalue.
3524         * gfortran.h : Add prototype for gfc_match_rvalue.
3525
3526 2007-05-11 Paul Thomas <pault@gcc.gnu.org>
3527
3528         PR fortran/30876
3529         * trans-expr.c (gfc_conv_function_call): Reduce indirection for
3530         direct assignments of recursive array valued functions.
3531         * primary.c (gfc_match_rvalue): Correct error for recursive
3532         function calls such that directly recursive calls of scalar
3533         function without an explicit result are disallowed.
3534
3535 2007-05-11 Paul Thomas <pault@gcc.gnu.org>
3536
3537         PR fortran/30878
3538         * resolve.c (resolve_fl_namelist): It is not an error if the
3539         namelist element is the result variable of the enclosing
3540         function.  Search for the symbol in current and all parent
3541         namespaces for a potential conflict.
3542         * symbol.c (check_conflict): Remove the conflict between
3543         'in_namelist' and 'FL_PROCEDURE' because the symbol info
3544         is not available to exclude function result variables.
3545         * trans-io.c (nml_get_addr_expr): Use the fake result decl
3546         if the symbol is an implicit result variable.
3547
3548 2007-05-11  Paul Thomas  <pault@gcc.gnu.org>
3549
3550         PR fortran/31474
3551         * decl.c (get_proc_name): If an entry has already been declared
3552         as a module procedure, pick up the symbol and the symtree and
3553         use them for the entry.
3554
3555 2007-05-08  Paul Thomas  <pault@gcc.gnu.org>
3556
3557         PR fortran/31630
3558         * resolve.c (resolve_symbol): Remove the flagging mechanism from the
3559         formal namespace resolution and instead check that the formal
3560         namespace is not the current namespace.
3561
3562 2007-05-08  Paul Thomas  <pault@gcc.gnu.org>
3563
3564         PR fortran/31692
3565         * trans-array.c (gfc_conv_array_parameter): Convert full array
3566         references to the result of the procedure enclusing the call.
3567
3568 2007-05-08  Paul Thomas  <pault@gcc.gnu.org>
3569
3570         PR fortran/29397
3571         PR fortran/29400
3572         * decl.c (add_init_expr_to_sym): Expand a scalar initializer
3573         for a parameter array into an array expression with the right
3574         shape.
3575         * array.c (spec_dimen_size): Remove static attribute.
3576         * gfortran.h : Prototype for spec_dimen_size.
3577
3578 2007-05-07  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
3579
3580         PR fortran/31399
3581         * trans-stmt.c (gfc_trans_do): Handle large loop counts.
3582
3583 2007-05-07  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
3584
3585         PR fortran/31764
3586         * simplify.c (gfc_simplify_new_line): NEW_LINE can be simplified
3587         even for non constant arguments.
3588
3589 2007-05-06  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
3590             Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
3591
3592         PR fortran/31201
3593         * gfortran.h: Add runtime error codes from libgfortran.h. Define
3594         MAX_UNIT_NUMBER.
3595         * trans.c (gfc_trans_runtime_check): Update the format of runtime error
3596         messages to match library runtime errors.  Use call to new library
3597         function runtime_error_at().
3598         * trans.h: Add prototype for new function gfc_trans_io_runtime_check.
3599         Add declaration for library functions runtime_error_at and
3600         generate_error.
3601         * trans_io.c (gfc_trans_io_runtime_check): New function.
3602         (set_parameter_value): Add error checking for UNIT numbers.
3603         (set_parameter_ref): Initialize the users variable to zero. 
3604         (gfc_trans_open): Move setting of unit number to after setting of common
3605         flags so that runtime error trapping can be detected.
3606         (gfc_trans_close): Likewise. (build_filepos): Likewise.
3607         (gfc_trans_inquire): Likewise. (build_dt): Likewise.
3608         * trans-decl.c: Add declarations for runtime_error_at and
3609         generate_error. (gfc_build_builtin_function_decls): Build function
3610         declarations for runtime_error_at and generate_error.
3611
3612 2007-05-06  Paul Thomas  <pault@gcc.gnu.org>
3613
3614         PR fortran/31540
3615         * resolve.c (resolve_fl_procedure): Resolve constant character
3616         lengths.
3617
3618 2007-05-05  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
3619
3620         PR fortran/31251
3621         * decl.c (match_char_spec): Add check for invalid character lengths.
3622
3623 2007-05-04  Brooks Moses  <brooks.moses@codesourcery.com>
3624
3625         * intrinsic.texi (CMPLX): Document result kind.
3626         (COMPLEX): Add documentation.
3627
3628 2007-05-04  Daniel Franke  <franke.daniel@gmail.com>
3629
3630         PR fortran/31760
3631         * intrinsic.c (add_functions): Replaced calls to gfc_check_g77_math1
3632         by gfc_check_fn_r to avoid checks for scalarity.
3633         * check.c (gfc_check_besn): Removed check for scalarity.
3634         (gfc_check_g77_math1): Removed.
3635         * intrinsic.h (gfc_check_g77_math1): Removed.
3636
3637 2007-05-04  Daniel Franke  <franke.daniel@gmail.com>
3638
3639         * check.c (gfc_check_fseek_sub): Fixed typo.
3640
3641 2007-05-04  Daniel Franke  <franke.daniel@gmail.com>
3642
3643         PR fortran/22359
3644         * intrinsic.c (add_subroutines): Added FSEEK.
3645         * intrinsic.h (gfc_resolve_fseek_sub, gfc_check_fseek_sub): New.
3646         * iresolve.c (gfc_resolve_fseek_sub): New.
3647         * check.c (gfc_check_fseek_sub): New.
3648         * intrinsic.texi (FSEEK): Updated.
3649
3650 2007-05-04  Tobias Burnus  <burnus@net-b.de>
3651
3652         PR fortran/31803
3653         * expr.c (gfc_check_pointer_assign): Check for NULL pointer.
3654
3655 2007-05-04  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
3656
3657         PR fortran/31251
3658         * simplify.c (gfc_simplify_len): Only simplify integer lengths.
3659
3660 2007-05-04  Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
3661
3662         PR fortran/31781
3663         * simplify.c (gfc_simplify_repeat): Don't put function call with
3664         side effect in a gcc_assert().
3665
3666 2007-05-04  Tobias Burnus  <burnus@net-b.de>
3667
3668         PR fortran/25071
3669         * interface.c (compare_actual_formal): Check character length.
3670
3671 2007-05-01  Thomas Koenig  <tkoenig@gcc.gnu.org>
3672
3673         PR fortran/31732
3674         * dependency.c (gfc_full_array_ref_p):  If the reference is
3675         to a single element, check that the array has a single
3676         element and that the correct element is referenced.
3677
3678 2007-05-01  Daniel Franke  <franke.daniel@gmail.com>
3679
3680         * intrinsic.c (add_functions): Fixed ELEMENTAL specifications.
3681         (add_subroutines): Replaced magic numbers in function calls by
3682         ELEMENTAL and NOT_ELEMENTAL respectively.
3683         * intrinsic.texi (MVBITS): Changed class to elemental subroutine.
3684         (RANDOM_NUMBER): Changed class to subroutine.
3685         (HUGE, TINY): Changed class to inquiry function.
3686
3687 2007-04-30  Brooks Moses  <brooks.moses@codesourcery.com>
3688
3689         * trans-const.c (gfc_conv_mpz_to_tree): Use mpz_get_double_int.
3690         (gfc_conv_tree_to_mpz): New function.
3691         (gfc_conv_mpfr_to_tree): Use real_from_mpfr.
3692         (gfc_conv_tree_to_mpfr): New function.
3693         * trans-const.h: (gfc_conv_tree_to_mpz): New prototype.
3694         (gfc_conv_tree_to_mpfr): New prototype.
3695
3696 2007-04-30  Daniel Franke  <franke.daniel@gmail.com>
3697
3698         * intrinsic.texi (IERRNO): Changed class to non-elemental function.
3699         (LOG10): Removed COMPLEX as accepted argument type.
3700         (NEW_LINE): Changed class from elemental to inquiry function.
3701         (SIGN): Removed requirement of scalar arguments.
3702         (SNGL): Changed class to elemental function.
3703
3704 2007-04-29  Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
3705
3706         PR fortran/31591
3707         * simplify.c (simplify_bound_dim): New function.
3708         (simplify_bound): Use the above. Perform simplification of LBOUND
3709         and UBOUND when DIM argument is not present.
3710
3711 2007-04-29  Daniel Franke  <franke.daniel@gmail.com>
3712
3713         * gfortran.texi: Cleaned up keyword index.
3714         * invoke.texi: Likewise.
3715         * intrinsic.texi: Likewise.
3716                         
3717 2007-04-29  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
3718
3719         PR fortran/31645
3720         * scanner.c (load_file): Discard the byte order mark if one is
3721         found on the first non-preprocessor line of a file.
3722
3723 2007-04-29  Paul Thomas  <pault@gcc.gnu.org>
3724
3725         PR fortran/31711
3726         * trans-array.c (gfc_conv_resolve_dependencies): Create a temp
3727         whenever a dependency is found.
3728
3729 2007-04-28  Tobias Schlüter  <tobi@gcc.gnu.org>
3730
3731         * options.c (gfc_handle_option): Ensure requested free form line
3732         length is not too small.
3733
3734 2007-04-27  Brooks Moses  <brooks.moses@codesourcery.com>
3735
3736         * intrinsic.texi (Transfer): Improve documentation.
3737
3738 2007-04-27  Brooks Moses  <brooks.moses@codesourcery.com>
3739
3740         * gfortran.texi (Option Index): Add @samp as needed.
3741
3742 2007-04-27  Daniel Franke  <franke.daniel@gmail.com>
3743
3744         * gfortran.texi: Added node and menu entry for an option index.
3745         * invoke.texi: Moved command line option related entries of the concept 
3746         index to the option index.
3747
3748 2007-04-27  Daniel Franke  <franke.daniel@gmail.com>
3749
3750         * intrinsic.texi (AND, FPUT, FPUTC, MODULO, OR, SET_EXPONENT,
3751         XOR): Fixed examples.
3752
3753 2007-04-27  Daniel Franke  <franke.daniel@gmail.com>
3754
3755         * intrinsic.texi (PRODUCT, RESHAPE, SPACING, SPREAD, SUM, 
3756         SYSTEM_CLOCK, TRANSFER, UNPACK): New.
3757         (DATE_AND_TIME, CPU_TIME, RRSPACING): Added cross references.
3758
3759 2007-04-26  Daniel Franke  <franke.daniel@gmail.com>
3760
3761         * intrinsic.texi (NULL, PACK, PRESENT, REPEAT, SCAN, SHAPE, 
3762         SIZE, TRANSPOSE, TRIM, VERIFY): New.
3763         (ADJUSTL, ADJUSTR, INDEX): Added cross references.
3764         (INT, INT2, INT8, LONG): Enabled section header.
3765
3766 2007-04-25  Janne Blomqvist  <jb@gcc.gnu.org>
3767
3768         * module.c (module_char): Replace fgetc() with
3769         getc(). 
3770         (write_char): Replace fputc() with putc().
3771         * scanner.c (load_line): Replace fgetc() with getc().
3772         (gfc_read_orig_filename): Likewise.
3773
3774 2007-04-25  Tobias Burnus  <burnus@net-b.de>
3775
3776         PR fortran/31668
3777         * error.c (error_print): Fix %% support.
3778         * intrinsic.c (sort_actual): Improve error message.
3779         * resolve.c (resolve_actual_arglist): Allow %VAL for
3780         interfaces defined in the module declaration part.
3781
3782 2007-04-25  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
3783
3784         PR libfortran/31299
3785         * intrinsic.texi (GETLOG): Update documentation to reflect
3786         library changes.
3787
3788 2007-04-24  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
3789
3790         PR fortran/31587
3791         * module.c (write_char): Add character to the MD5 buffer.
3792         (read_md5_from_module_file): New function.
3793         (gfc_dump_module): Compute MD5 for new module file. Call
3794         read_md5_from_module_file. Only overwrite old module file
3795         if the new MD5 is different.
3796
3797 2007-04-23  Paul Thomas  <pault@gcc.gnu.org>
3798
3799         PR fortran/31630
3800         * resolve.c (resolve_symbol): Allow resolution of formal
3801         namespaces nested within formal namespaces coming from modules.
3802
3803         PR fortran/31620
3804         * trans-expr.c (gfc_trans_assignment): Make the call to
3805         gfc_trans_zero_assign conditional on the lhs array ref being
3806         the only reference.
3807
3808 2007-04-23  Tobias Burnus  <burnus@net-b.de>
3809
3810         * primary.c (match_integer_constant): Mention -fno-range-check
3811         in the error message.
3812
3813 2007-04-21  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
3814
3815         PR fortran/31495
3816         * scanner.c (load_line):  Remove check for comment after ampersand and
3817         adjust tracking of ampersand.
3818
3819 2007-04-21  Andrew Pinski  <andrew_pinski@playstation.sony.com>
3820
3821         * f95-lang.c (lang_tree_node): Use GENERIC_NEXT
3822         instead of checking GIMPLE_STMT_P in chain_next.
3823
3824 2007-04-17  Tobias Schlüter  <tobi@gcc.gnu.org>
3825
3826         * trans-types.h (gfc_packed): New enum.
3827         (gfc_get_nodesc_array_type): Change prototype to use new enum.
3828         * trans-types.c (gfc_get_nodesc_array): Use gfc_packed for
3829         argument packed.  Adapt all references to values accordingly.
3830         (gfc_sym_type): Use enum values in call to gfc_get_nodesc_array.
3831         (gfc_get_derived_type): Likewise.
3832         * trans-array.c (gfc_build_constant_array_constructor): Likewise.
3833         * trans-expr.c (gfc_get_interface_mapping_charlen): Changed packed
3834         argument to type gfc_packed.
3835         (gfc_add_interface_mapping): Use enum values in call to
3836         gfc_get_interface_mapping.
3837         * trans-decl.c (gfc_build_dummy_array_decl): Adapt to use enum
3838         values when determining packing.
3839
3840         * trans-decl.c (gfc_finish_decl): Remove unused second argument
3841         'init'.  Simplify code accordingly.  Remove calls to
3842         gfc_fatal_error in favor of gcc_assert.
3843         (create_function_arglist): Remove second argument from calls to
3844         gfc_finish-decl.
3845         (gfc_trans_dummy_character): Likewise.
3846
3847         * arith.h: Update copyright years.
3848         * dependency.h: Likewise.
3849         * gfortran.h: Likewise.
3850         * lang-specs.h: Likewise.
3851         * parse.h: Likewise.
3852         * symbol.c: Likewise.
3853         * trans.h: Likewise.
3854         * trans.c: Likewise.
3855         * trans-array.c: Likewise.
3856         * trans-common.c: Likewise.
3857         * trans-const.h: Likewise.
3858         * trans-const.c: Likewise.
3859         * trans-decl.c: Likewise.
3860         * trans-expr.c: Likewise.
3861         * trans-io.c: Likewise.
3862         * trans-openmp.c: Likewise.
3863         * trans-types.h: Likewise.
3864         * types.def: Likewise.
3865
3866 2007-04-17  Tobias Schlüter  <tobi@gcc.gnu.org>
3867
3868         PR fortran/31144
3869         * decl.c (gfc_sym_mangled_identifier): Use capital letters in name
3870         mangling.
3871         (gfc_sym_mangled_function_id): Likewise.
3872
3873 2007-04-15  Paul Thomas  <pault@gcc.gnu.org>
3874
3875         PR fortran/31204
3876         * primary.c (check_for_implicit_index): New function to check
3877         that a host associated variable is not an undeclared implied
3878         do loop index.
3879         (gfc_match_rvalue, match_variable): Use it and reset the
3880         implied_index attribute.
3881         * gfortran.h : Add the implied_index field to symbol_attribute.
3882         * match.c (gfc_match_iterator): Mark the iterator variable
3883         with the new attribute.
3884         * decl.c (build_sym): Reset the new attribute.
3885
3886 2007-04-15  Kazu Hirata  <kazu@codesourcery.com>
3887
3888         * gfc-internals.texi: Fix typos.
3889         * simplify.c: Fix a comment typo.
3890
3891 2007-04-14  Bernhard Fischer  <aldot@gcc.gnu.org>
3892
3893         * primary.c: Commentary typo fix; Add question about redundant (?)
3894         set.
3895
3896 2007-04-14  Paul Thomas  <pault@gcc.gnu.org>
3897
3898         PR fortran/29507
3899         PR fortran/31404
3900         * expr.c (scalarize_intrinsic_call): New function to
3901         scalarize elemental intrinsic functions in initialization
3902         expressions.
3903         (check_init_expr): Detect elemental intrinsic functions
3904         in initalization expressions and call previous.
3905
3906 2007-04-13  Tobias Burnus  <burnus@net-b.de>
3907
3908         PR fortran/31559
3909         * primary.c (match_variable): External functions
3910         are no variables.
3911
3912 2007-04-13  Paul Thomas  <pault@gcc.gnu.org>
3913
3914         PR fortran/31550
3915         * trans-types.c (copy_dt_decls_ifequal): Do not get pointer
3916         derived type components.
3917
3918 2007-04-13  Tobias Schlüter  <tobi@gcc.gnu.org>
3919
3920         PR fortran/18937
3921         * resolve.c: Include obstack.h and bitmap.h.  New variable
3922         labels_obstack.
3923         (code_stack): Add tail and reachable_labels fields.
3924         (reachable_labels): New function.
3925         (resolve_branch): Rework to use new fields in code_stack.
3926         (resolve_code): Call reachable_labels.
3927         (resolve_codes): Allocate and free labels_obstack.
3928
3929 2007-04-12  Tobias Schlüter  <tobi@gcc.gnu.org>
3930
3931         PR fortran/31250
3932         * decl.c (match_char_spec): Move check for negative CHARACTER
3933         length ...
3934         * resolve.c (resolve_charlen): ... here.
3935         (resolve_types): Resolve CHARACTER lengths earlier.
3936
3937 2007-04-12  Daniel Franke  <franke.daniel@gmail.com>
3938
3939         PR fortran/31234
3940         * intrinsic.texi (RANDOM_SEED, RANDOM_NUMBER): New.
3941
3942 2007-04-12  Tobias Schlüter  <tobi@gcc.gnu.org>
3943
3944         PR fortran/31266
3945         * primary.c (gfc_variable_attr): Don't copy string length if it
3946         doesn't make sense.
3947         * resolve.c (resolve_code): Clarify error message.
3948
3949         PR fortran/31471
3950         * decl.c (gfc_match_end): Also check for construct name in END
3951         FORALL and END WERE statements.
3952         * match.c (match_case_eos): Use uppercase for statement name in
3953         error message.
3954         (match_elsewhere): Construct name may appear iff construct has a
3955         name.
3956
3957         * trans-types.c: Update copyright years.  Reformat long comment
3958         explaining array descriptor format.  Remove obsolete mention of
3959         TYPE_SET.
3960
3961         * arith.c (gfc_arith_uplus): Rename to ...
3962         (gfc_arith_identity): ... this.
3963         (gfc_parentheses): New function.
3964         (gfc_uplus): Adapt to renamed function.
3965         * arith.h (gfc_parentheses): Add prototype.
3966         * expr.c (gfc_copy_expr): Deal with INTRINSIC_PARENTHESES.
3967         (simplifiy_intrinsic_op): Treat INTRINSIC_UPLUS separately from
3968         INTRINSIC_PARENTHESES.
3969
3970 2007-04-12  Tobias Burnus  <burnus@net-b.de>
3971
3972         PR fortran/31472
3973         * decl.c (match_attr_spec): Allow PRIVATE/PUBLIC
3974         attribute in type definitions.
3975         (gfc_match_private): Allow PRIVATE statement only
3976         in specification part of modules.
3977         (gfc_match_public): Ditto for PUBLIC.
3978         (gfc_match_derived_decl): Allow PRIVATE/PUBLIC attribute only in
3979         specificification part of modules.
3980
3981 2007-04-07  Paul Thomas  <pault@gcc.gnu.org>
3982
3983         PR fortran/31257
3984         * intrinsic.c (add_functions): Add ref. to gfc_resolve_achar.
3985         * intrinsic.h : Add prototype for gfc_resolve_achar.
3986         * iresolve.c (gfc_resolve_achar): New function.
3987
3988 2007-04-07  Paul Thomas  <pault@gcc.gnu.org>
3989
3990         PR fortran/30880
3991         * resolve.c (resolve_fl_variable): Set flag to 2 for automatic
3992         arrays.  Make condition for automatic array error explicit.
3993         If a dummy, no error on an INTENT(OUT) derived type.
3994
3995 2007-04-07  Paul Thomas  <pault@gcc.gnu.org>
3996
3997         PR fortran/30872
3998         * expr.c (find_array_element): Correct arithmetic for rank > 1.
3999
4000 2007-04-07  Paul Thomas  <pault@gcc.gnu.org>
4001
4002         PR fortran/31222
4003         * check.c (numeric_check): If an expresson has not got a type,
4004         see if it is a symbol for which a default type applies.
4005
4006 2007-04-07  Paul Thomas  <pault@gcc.gnu.org>
4007
4008         PR fortran/31214
4009         * trans-decl.c (gfc_get_symbol_decl): Allow unreferenced use
4010         associated symbols.
4011
4012 2007-04-07  Paul Thomas  <pault@gcc.gnu.org>
4013
4014         PR fortran/31293
4015         * symbol.c (gfc_check_function_type): New function.
4016         * gfortran.h : Add prototype for previous.
4017         * parse.c (parse_progunit): Call it after parsing specification
4018         statements.
4019
4020 2007-04-05  Paul Thomas  <pault@gcc.gnu.org>
4021
4022         PR fortran/31483
4023         * trans-expr.c (gfc_conv_function_call): Give a dummy
4024         procedure the correct type if it has alternate returns.
4025
4026 2007-04-05  Paul Thomas  <pault@gcc.gnu.org>
4027
4028         PR fortran/31292
4029         * decl.c (gfc_match_modproc): Go up to the top of the namespace
4030         tree to find the module namespace for gfc_get_symbol.
4031
4032 2007-04-03  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
4033
4034         PR fortran/31304
4035         * fortran/gfortran.h (gfc_charlen_int_kind): New prototype.
4036         * fortran/trans-types.c (gfc_charlen_int_kind): New variable.
4037         (gfc_init_types): Define gfc_charlen_int_kind. 
4038         * fortran/trans.h (gfor_fndecl_string_repeat): Remove prototype.
4039         * fortran/trans-decl.c (gfor_fndecl_string_repeat): Delete.
4040         (gfc_build_intrinsic_function_decls): Don't set
4041         gfor_fndecl_string_repeat.
4042         * fortran/trans-intrinsic.c (gfc_conv_intrinsic_repeat): Rewrite
4043         so that we don't have to call a library function.
4044         * fortran/simplify.c (gfc_simplify_repeat): Perform the necessary
4045         checks on the NCOPIES argument, and work with arbitrary size
4046         arguments.
4047
4048 2007-03-31  Tobias Burnus  <burnus@net-b.de>
4049
4050         * intrinsic.c (add_functions): Fix name of dummy argument
4051           for new_line and exit intrinsic.
4052
4053 2007-03-31  Paul Thomas  <pault@gcc.gnu.org>
4054
4055         PR fortran/31160
4056         * gfortran.texi: Add a section for the %VAL, %REF and %LOC
4057         extensions.
4058
4059 2007-03-30  Rafael Avila de Espindola  <espindola@google.com>
4060
4061         * trans-types.c (gfc_signed_or_unsigned_type): Remove.
4062         (gfc_unsigned_type): Use get_signed_or_unsigned_type instead of
4063         gfc_signed_or_unsigned_type.
4064         (gfc_signed_type): Ditto.
4065         * trans-types.h (gfc_signed_or_unsigned_type): Remove.
4066         * f95-lang.c (LANG_HOOKS_SIGNED_OR_UNSIGNED_TYPE): Remove.
4067
4068 2007-03-30  Tobias Schlüter  <tobi@gcc.gnu.org>
4069
4070         * symbol.c (gfc_find_gsymbol): Simplify, don't unconditionally
4071         descend into all branches.
4072
4073 2007-03-29  Tobias Schlüter  <tobi@gcc.gnu.org>
4074
4075         * intrinsic.c (conv_name): Let gfc_get_string handle the format.
4076         (find_conv): Compare pointers instead of calling strcmp.
4077         (find_sym): Likewise, but ensure that the compared pointer is in
4078         the global string table.
4079
4080 2007-03-28  Tobias Schlüter  <tobi@gcc.gnu.org>
4081
4082         * gfc-internals.texi: Fix output filename.  Merge type index into
4083         concept index.  Start documentation of gfc_code structure.
4084
4085 2007-03-26  Brooks Moses  <brooks.moses@codesourcery.com>
4086
4087         * gfc-internals.texi: New file,
4088         * Make-lang.in: Add rules to convert it to dvi, pdf, and info.
4089
4090 2007-03-26  Brooks Moses  <brooks.moses@codesourcery.com>
4091  
4092         * error.c (show_locus): Remove always-false test.
4093
4094 2007-03-26  Brooks Moses  <brooks.moses@codesourcery.com>
4095
4096         * lang.opt: Minor edits to descriptions.
4097
4098 2007-03-25  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
4099
4100         PR fortran/30877
4101         * fortran/interface.c (check_operator_interface): Implement
4102         the standard checks on user operators extending intrinsic operators.
4103         * fortran/resolve.c (resolve_operator): If the ranks of operators
4104         don't match, don't error out but try the user-defined ones first.
4105
4106 2007-03-24  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
4107
4108         PR fortran/30655
4109         * expr.c (check_dimension): Fix logic of comparisons.
4110
4111 2007-03-24  Paul Thomas  <pault@gcc.gnu.org>
4112
4113         PR fortran/31215
4114         * trans-expr.c (gfc_apply_interface_mapping_to_expr): Return
4115         int result that is non-zero if the expression is the function
4116         result.  Only the characteristics of the result expression
4117         can be used in a procedure interface, so simplify LEN in situ
4118         using its character length.
4119
4120         PR fortran/31209
4121         PR fortran/31200
4122         * trans-expr.c (gfc_conv_function_call): Do not use
4123         gfc_conv_expr_reference for actual pointer function with formal
4124         target because a temporary is created that does not transfer
4125         the reference correctly.  Do not indirect formal pointer
4126         functions since it is the function reference that is needed.
4127
4128 2007-03-24  Brooks Moses  <brooks.moses@codesourcery.com>
4129
4130         * gfortran.h: Edit comments on GFC_STD_*.
4131
4132 2007-03-23  Brooks Moses  <brooks.moses@codesourcery.com>
4133
4134         * invoke.texi: Misc. small typo fixes.
4135         (-Wcharacter-truncation): Add.
4136         (-Wnonstd-intrinsics): Correct spelling.
4137         (-std=): Edit.
4138         (-fintrinsic-modules-path): Add.
4139
4140 2007-03-23  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
4141
4142         PR fortran/30834
4143         * arith.c (complex_pow): Rewrite to handle large power.
4144         (gfc_arith_power): Handle large power in the real and integer
4145         cases.
4146
4147 2007-03-22  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
4148
4149         PR fortran/31262
4150         * trans-const.c (gfc_conv_mpz_to_tree): Allow integer constants
4151         larger than twice the width of a HOST_WIDE_INT.
4152
4153 2006-03-22  Paul Thomas  <pault@gcc.gnu.org>
4154
4155         PR fortran/31193
4156         * trans-intrinsic.c (gfc_size_in_bytes): Remove function.
4157         (gfc_conv_intrinsic_array_transfer): Remove calls to previous.
4158         Explicitly extract TREE_TYPEs for source and mold.  Use these
4159         to calculate length of source and mold, except for characters,
4160         where the se string_length is used.  For mold, the TREE_TYPE is
4161         recalculated using gfc_get_character_type_len so that the
4162         result is correctly cast for character literals and substrings.
4163         Do not use gfc_typenode_for_spec for the final cast.
4164
4165 2007-03-22  Tobias Schlüter  <tobi@gcc.gnu.org>
4166
4167         PR fortran/20897
4168         * decl.c (gfc_match_derived_decl): Reliably reject
4169         'doubleprecision' and 'doublecomplex' as type names.
4170
4171 2007-03-19  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
4172
4173         PR fortran/31203
4174         * trans-expr.c (gfc_trans_init_string_length): Length should
4175         never be negative.
4176         (gfc_conv_function_call): Likewise.
4177
4178 2007-03-18  Paul Thomas  <pault@gcc.gnu.org>
4179
4180         PR fortran/30531
4181         PR fortran/31086
4182         * symbo.c : Add gfc_derived_types.
4183         (gfc_free_dt_list): Free derived type list gfc_derived_types.
4184         (gfc_free_namespace): Remove call to gfc_free_dt_list.
4185         (gfc_symbol_done_2): Call  gfc_free_dt_list.
4186         * gfortran.h : Declare gfc_derived_types to be external. Remove
4187         derived types field from gfc_namespace.
4188         * resolve.c (resolve_fl_derived): Refer to gfc_derived types
4189         rather than namespace derived_types.
4190         (resolve_fntype): Remove special treatment for module
4191         derived type functions.
4192         * trans-types.c (gfc_get_derived_type): Remove search for like
4193         derived types.  Finish by copying back end declaration to like
4194         derived types in the derived type list gfc_derived_types.
4195
4196         2007-03-17  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
4197
4198         PR fortran/31120
4199         * trans-expr.c (gfc_conv_powi): Make n argument unsigned hwi.
4200         (gfc_conv_cst_int_power): Handle integer exponent with care,
4201         since it might be too large for us.
4202
4203 2007-03-17  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
4204
4205         PR fortran/31184
4206         * invoke.texi: Fix typo.
4207
4208 2007-03-16  Tobias Burnus  <burnus@net-b.de>
4209
4210         * trans-decl.c (gfc_generate_function_code): Use all arguments of
4211           set_std.
4212
4213 2007-03-15  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
4214
4215         * gfortran.h (gfc_option_t): Add flag_backtrace field.
4216         * lang.opt: Add -fbacktrace option.
4217         * invoke.texi: Document the new option.
4218         * trans-decl.c (gfc_build_builtin_function_decls): Add new
4219         option to the call to set_std.
4220         * options.c (gfc_init_options, gfc_handle_option): Handle the
4221         new option.
4222
4223 2007-03-15  Tobias Burnus  <burnus@gcc.gnu.org>
4224             Paul Thomas  <pault@gcc.gnu.org>
4225
4226         PR fortran/30922
4227         * decl.c (gfc_match_import): If the parent of the current name-
4228         space is null, try looking for an imported symbol in the parent
4229         of the proc_name interface.
4230         * resolve.c (resolve_fl_variable): Do not check for blocking of
4231         host association by a same symbol, if the symbol is in an
4232         interface body.
4233
4234 2007-03-15  Paul Thomas  <pault@gcc.gnu.org>
4235
4236         PR fortran/30879
4237         * decl.c (match_data_constant): Before going on to try to match
4238         a name, try to match a structure component.
4239
4240
4241         PR fortran/30870
4242         * resolve.c (resolve_actual_arglist): Do not reject a generic
4243         actual argument if it has a same name specific interface.
4244
4245         PR fortran/31163
4246         * trans-array.c (parse_interface): Do not nullify allocatable
4247         components if the symbol has the saved attribute.
4248
4249 2007-03-14  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
4250
4251         * trans-array.c (gfc_trans_auto_array_allocation): Replace
4252         fold(convert()) by fold_convert().
4253         (gfc_duplicate_allocatable): Likewise.
4254         * trans-intrinsic.c (gfc_conv_intrinsic_dot_product): Use
4255         build_int_cst instead of converting an integer_zero_node
4256         to the final type.
4257
4258 2007-03-14  Jakub Jelinek  <jakub@redhat.com>
4259
4260         * module.c (mio_typespec): Don't look at ts->cl if not BT_CHARACTER.
4261
4262 2007-03-13  Brooks Moses  <brooks.moses@codesourcery.com>
4263
4264         PR fortran/30933
4265         PR fortran/30948
4266         PR fortran/30953
4267         * intrinsics.texi (CHDIR): Fix argument names, note
4268         that STATUS must be a default integer.
4269         (CTIME): Fix argument names, note that RESULT must
4270         be a default integer.
4271         (EXIT): Note that STATUS must be a default integer.
4272
4273 2007-03-13  Brooks Moses  <brooks.moses@codesourcery.com>
4274
4275         PR fortran/28068
4276         * intrinsic.texi: General whitespace cleanup, remove
4277         comment about missing intrinsics.
4278         (menu): Add lines for new entries listed below.
4279         (ACOSH): Mention specific function DACOSH, correct
4280         description phrasing.
4281         (ASINH): Mention specific function DASINH, correct
4282         description phrasing.
4283         (ATANH): Mention specific function DATANH, correct
4284         description phrasing.
4285         (COS): Add index entry for CCOS.
4286         (CPU_TIME): Correct "REAL" to "REAL(*)".
4287         (EXP): Add index entry for CEXP.
4288         (INT): Correct argument name to "A".
4289         (INT2): New entry.
4290         (INT8): New entry.
4291         (LONG): New entry.
4292         (MAX): Add index entries for specific variants.
4293         (MCLOCK): New entry.
4294         (MCLOCK8): New entry.
4295         (SECNDS): Adjust to a more standard form.
4296         (SECOND): New entry.
4297         (TIME): Add cross-reference to MCLOCK.
4298         (TIME8): Add cross-reference to MCLOCK8.
4299
4300 2007-03-11  Paul Thomas  <pault@gcc.gnu.org>
4301
4302         PR fortran/30883
4303         * parse.c (parse_interface): Use the default types from the
4304         formal namespace if a function or its result do not have a type
4305         after parsing the specification statements.
4306
4307 2007-03-08  Brooks Moses  <brooks.moses@codesourcery.com>
4308
4309         * intrinsic.texi: (ICHAR) Improve internal I/O note.
4310         (ACHAR): Reference it.
4311         (CHAR): Reference it.
4312         (IACHAR): Reference it.
4313
4314 2007-03-08  Brooks Moses  <brooks.moses@codesourcery.com>
4315
4316         * intrinsic.texi: (LINK) Document function form.
4317         (RENAME): Likewise.
4318         (SYMLNK): Likewise.
4319         (SYSTEM): Likewise.
4320         (UNLINK): Likewise.
4321
4322 2007-03-08  Brooks Moses  <brooks.moses@codesourcery.com>
4323
4324         * intrinsic.texi: minor typo fixes, removed prologue.
4325         (FSEEK): moved to correct place in alphabetical order.
4326
4327 2007-03-08  Daniel Franke  <franke.daniel@gmail.com>
4328
4329         PR fortran/30947
4330         * check.c (gfc_check_alarm_sub): Added check for default integer 
4331         kind of status argument.
4332         * iresolve.c (gfc_resolve_alarm_sub): Removed conversion of 
4333         status argument.
4334         * intrinsic.texi (ALARM): Extended documentation.
4335
4336 2007-03-08  Daniel Franke  <franke.daniel@gmail.com>
4337
4338         * intrinsic.texi (GERROR, ISATTY, TTYNAM): New.
4339         (ABORT, FLUSH, FNUM, IRAND, MALLOC, SIGNAL, SRAND): Fixed typo.
4340         * intrinsic.c (add_subroutines): Adjusted dummy argument names 
4341         of GERROR and TTYNAM.
4342
4343 2007-07-08  Tobias Burnus  <burnus@net-b.de>
4344
4345         * module.c (gfc_match_use): Support renaming of operators
4346         in USE statements.
4347         * gfortran.texi (Fortran 2003 Status): Document support of
4348         renaming of operators.
4349
4350 2007-07-08  Tobias Burnus  <burnus@net-b.de>
4351
4352         PR fortran/30973
4353         * module.c (read_module): Always import module name as symbol.
4354         (gfc_match_use): Disallow module name in the only clause of
4355         a use statement.
4356
4357 2007-03-08  Paul Thomas  <pault@gcc.gnu.org>
4358
4359         PR fortran/31011
4360         * expr.c (find_array_section): Correct arithmetic for section
4361         size.
4362
4363 2007-03-07  Brooks Moses  <brooks.moses@codesourcery.com>
4364
4365         * iresolve.c (gfc_resolve_ishftc): Correct s_kind value.
4366
4367 2007-03-06  Daniel Franke  <franke.daniel@gmail.com>
4368
4369         PR documentation/30950
4370         * intrinsic.texi (AND, CPU_TIME): Fix dummy argument names.
4371         (FREE): Fix call syntax.
4372
4373 2007-03-06  Brooks Moses  <brooks.moses@codesourcery.com>
4374
4375         * intrinsic.texi: Limit column widths to a total of .85.
4376
4377 2007-03-05  Brooks Moses  <brooks.moses@codesourcery.com>
4378
4379         * gfortran.texi (GFortran and G77): Rewrite completely.
4380
4381 2007-03-05  Brooks Moses  <brooks.moses@codesourcery.com>
4382
4383         * match.c (gfc_match_name): Expanded comment.
4384
4385 2007-03-05  Brooks Moses  <brooks.moses@codesourcery.com>
4386
4387         * gfortran.texi (Old-style kind specifications): Document
4388         special handling of old-style kind specifiers for COMPLEX.
4389         * decl.c (gfc_match_old_kind_spec): Document kind/bytesize
4390         assumptions for COMPLEX in comment.
4391
4392 2007-03-05  Brooks Moses  <brooks.moses@codesourcery.com>
4393
4394         PR 31050
4395         * gfortranspec.c (lang_specific_driver): Update program
4396         name and copyright date.
4397
4398 2007-03-03  Paul Thomas  <pault@gcc.gnu.org>
4399
4400         PR fortran/30882
4401         * check.c (dim_rank_check): The shape of subsections of
4402         assumed-size arrays is known.
4403
4404 2007-03-02  Paul Thomas  <pault@gcc.gnu.org>
4405             Tobias Burnus  <burnus@net-b.de>
4406
4407         PR fortran/30873
4408         * decl.c (gfc_match_entry): Remove erroneous entry result check.
4409
4410 2007-03-01  Brooks Moses  <brooks.moses@codesourcery.com>
4411
4412         * Make-lang.in: Add install-pdf target as copied from
4413         automake v1.10 rules.
4414
4415 2007-03-01  Tobias Burnus  <burnus@net-b.de>
4416
4417         PR fortran/30865
4418         * trans-intrinsic.c (gfc_conv_intrinsic_size): Compare pointers.
4419
4420 2007-02-28  Tobias Burnus  <burnus@net-b.de>
4421             Paul Thomas  <pault@gcc.gnu.org>
4422
4423         PR fortran/30888
4424         PR fortran/30887
4425         * resolve.c (resolve_actual_arglist): Allow by-value
4426         arguments and non-default-kind for %VAL().
4427         * trans-expr.c (conv_arglist_function): Allow
4428         non-default-kind for %VAL().
4429
4430 2007-02-28  Tobias Burnus  <burnus@net-b.de>
4431
4432         PR fortran/30968
4433         * primary.c (next_string_char): Correct reading a character
4434         after the delimiter.
4435         (match_string_constant): Print warning message only once.
4436
4437 2007-02-27  Richard Guenther  <rguenther@suse.de>
4438
4439         * trans-array.c (structure_alloc_comps): Use correct type
4440         for null pointer constant.
4441
4442 2007-02-26  Brooks Moses  <brooks.moses@codesourcery.com>
4443
4444         * gfortran.texi: Standardize title page, remove version number
4445         from copyright page.
4446
4447 2007-02-26  Thomas Koenig  <Thomas.Koenig@online.de>
4448             Paul Thomas  <pault@gcc.gnu.org>
4449
4450         PR fortran/30865
4451         * trans-intrinsic.c (gfc_conv_intrinsic_size):
4452         If dim is an optional argument, check for its
4453         presence and call size0 or size1, respectively.
4454
4455 2007-02-23  Paul Thomas <pault@gcc.gnu.org>
4456
4457         PR fortran/30660
4458         * resolve.c (has_default_initializer): New function.
4459         (resolve_fl_variable): Call has_default_initializer to determine if
4460         the derived type has a default initializer to its ultimate
4461         components.
4462
4463
4464 2007-02-22  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
4465
4466         * options.c (set_default_std_flags): New function to consolidate
4467         setting the flags.
4468         (gfc_init_options): Use new function.
4469         (gfc_handle_option): Use new function.
4470
4471 2007-02-22  Brooks Moses  <brooks.moses@codesourcery.com>
4472
4473         * gfortran.texi (Old-style kind specifications): Document
4474         special handling of old-style kind specifiers for COMPLEX.
4475         * decl.c (gfc_match_old_kind_spec): Documented kind/bytesize
4476         assumptions in comment.
4477
4478 2007-02-21  Bernhard Fischer  <aldot@gcc.gnu.org>
4479
4480         * parse.c (next_free): Gooble spaces after OpenMP sentinel.
4481
4482 2007-02-20  Thomas Koenig  <Thomas.Koenig@online.de>
4483
4484         PR fortran/30869
4485         * match.c (gfc_match_iterator): Remove conflict between
4486         loop variable and pointer.
4487
4488 2007-02-20  Tobias Burnus  <burnus@net-b.de>
4489
4490         PR fortran/30522
4491         * symbol.c (gfc_add_volatile): Allow to set VOLATILE
4492           attribute for host-associated variables.
4493         * gfortran.h (symbol_attribute): Save namespace
4494           where VOLATILE has been set.
4495         * trans-decl.c (gfc_finish_var_decl): Move variable
4496           declaration to the top.
4497
4498 2007-02-20  Tobias Burnus  <burnus@net-b.de>
4499
4500         PR fortran/30783
4501         * resolve.c (resolve_symbol): Add character dummy VALUE check.
4502
4503 2007-02-19  Thomas Koenig  <Thomas.Koenig@online.de>
4504
4505         PR libfortran/30533
4506         * fortran/iresolve.c (gfc_resolve_maxloc): Remove coercion of
4507         argument to default integer.
4508         (gfc_resolve_minloc): Likewise.
4509
4510 2007-02-18  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
4511
4512         PR fortran/30681
4513         * options.c (gfc_init_options): Relax warning level for obsolescent.
4514         * match.c (match_arithmetic_if): Change to obsolescent from deleted.
4515         (gfc_match_if): Same.
4516
4517 2007-02-18  Roger Sayle  <roger@eyesopen.com>
4518
4519         * trans-array.c (gfc_build_constant_array_constructor): When the
4520         shape of the constructor is known, use that to construct the
4521         gfc_array_spec.
4522         (gfc_trans_constant_array_constructor): Initialize the "info"
4523         information for all of the dimensions of the array constructor.
4524         (constant_array_constructor_loop_size): New function.
4525         (gfc_trans_array_constructor): Use it to determine whether a
4526         loop is suitable for "constant array constructor" optimization.
4527
4528         * trans-intrinsic.c (gfc_conv_intrinsic_anyall): Use fold_build2
4529         instead of build2, to avoid conditions like "(a != b) != 0".
4530
4531 2007-02-18  Roger Sayle  <roger@eyesopen.com>
4532             Paul Thomas <pault@gcc.gnu.org>
4533
4534         PR fortran/30400
4535         * match.c (match_forall_iterator): Use gfc_match_expr instead
4536         of gfc_match_variable to match the iterator variable.  Return
4537         MATCH_NO if not a variable.  Remove the reset of the symbol's
4538         flavor in cleanup.
4539
4540 2007-02-16  Tobias Burnus  <burnus@net-b.de>
4541
4542         PR fortran/30793
4543         * trans-decl.c (gfc_generate_function_code): Do not initialize
4544         pointers to derived components.
4545
4546 2007-02-15  Sandra Loosemore  <sandra@codesourcery.com>
4547             Brooks Moses  <brooks.moses@codesourcery.com>
4548             Lee Millward  <lee.millward@codesourcery.com>
4549
4550         * trans-expr.c (gfc_conv_power_op): Use build_call_expr.
4551         (gfc_conv_string_tmp): Likewise.
4552         (gfc_conv_concat_op): Likewise.
4553         (gfc_build_compare_string): Likewise.
4554         (gfc_conv_function_call): Use build_call_list instead of build3.
4555
4556         * trans-array.c (gfc_trans_allocate_array_storage): Use
4557         build_call_expr.
4558         (gfc_grow_array): Likewise.
4559         (gfc_trans_array_ctor_element): Likewise.
4560         (gfc_trans_array_constructor_value): Likewise.
4561         (gfc_array_allocate): Likewise.
4562         (gfc_array_deallocate): Likewise.
4563         (gfc_trans_auto_array_allocation): Likewise.
4564         (gfc_trans_dummy_array_bias): Likewise.
4565         (gfc_conv_array_parameter): Likewise.
4566         (gfc_trans_dealloc_allocated): Likewise.
4567         (gfc_duplicate_allocatable): Likewise.
4568
4569         * trans-openmp.c (gfc_trans_omp_barrier): Use build_call_expr.
4570         (gfc_trans_omp_flush): Likewise.
4571
4572         * trans-stmt.c (gfc_conv_elementel_dependencies): Use build_call_expr.
4573         (gfc_trans_pause): Likewise.
4574         (gfc_trans_stop): Likewise.
4575         (gfc_trans_character_select): Likewise.
4576         (gfc_do_allocate): Likewise.
4577         (gfc_trans_assign_need_temp): Likewise.
4578         (gfc_trans_pointer_assign_need_temp): Likewise.
4579         (gfc_trans_forall_1): Likewise.
4580         (gfc_trans_where_2): Likewise.
4581         (gfc_trans_allocate): Likewise.
4582         (gfc_trans_deallocate): Likewise.
4583
4584         * trans.c (gfc_trans_runtime_check): Use build_call_expr.
4585
4586         * trans-io.c (gfc_trans_open): Use build_call_expr.
4587         (gfc_trans_close): Likewise.
4588         (build_filepos): Likewise.
4589         (gfc_trans_inquire): Likewise.
4590         (NML_FIRST_ARG): Delete.
4591         (NML_ADD_ARG): Delete.
4592         (transfer_namelist_element): Use build_call_expr.
4593         (build_dt): Likewise.
4594         (gfc_trans_dt_end): Likewise.
4595         (transfer_expr): Likewise.
4596         (transfer_array-desc): Likewise.
4597
4598         * trans-decl.c (gfc_generate_function_code): Use build_call_expr.
4599         (gfc_generate_constructors): Likewise.
4600
4601         * trans-intrinsic.c (gfc_conv_intrinsic_ctime): Use build_call_expr.
4602         (gfc_conv_intrinsic_fdate): Likewise.
4603         (gfc_conv_intrinsic_ttynam): Likewise.
4604         (gfc_conv_intrinsic_array_transfer): Likewise.
4605         (gfc_conv_associated): Likewise.
4606         (gfc_conv_intrinsic_si_kind): Likewise.
4607         (gfc_conv_intrinsic_trim): Likewise.
4608         (gfc_conv_intrinsic_repeat: Likewise.
4609         (gfc_conv_intrinsic_iargc): Likewise.
4610
4611 2007-02-14  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
4612
4613         PR fortran/30779
4614         * scanner.c (gfc_next_char_literal): Add check for end of file after
4615         call to advance_line.
4616
4617 2007-02-14  Steven G. Kargl  <kargl@gcc.gnu.org>
4618
4619         PR fortran/30799
4620         * primary.c (match_logical_constant): Return MATCH_ERROR on invalid
4621         kind.
4622
4623 2007-02-14  Steven G. Kargl  <kargl@gcc.gnu.org>
4624
4625         * misc.c (gfc_typename): Fix potential buffer overflow.
4626
4627 2007-02-13  Paul Thomas  <pault@gcc.gnu.org>
4628
4629         PR fortran/30554
4630         * module.c (read_module): Set pointer_info to referenced if the
4631         symbol has no namespace.
4632
4633 2007-02-12  Nick Clifton  <nickc@redhat.com>
4634
4635         * lang.opt: Add Warning attribute to warning options.
4636
4637 2007-02-11  Daniel Franke  <franke.daniel@gmail.com>
4638
4639         * intrinsic.texi (HOSTNM): Fix typographical error in syntax.
4640         (SLEEP): Added section and documentation.
4641
4642 2007-02-11  Tobias Schlüter  <tobi@gcc.gnu.org>
4643
4644         PR fortran/30478
4645         * decl.c (add_init_expr_to_sym): Remove ENUM specific code.
4646         (variable_decl): Likewise.  Rewrap comment.
4647         (match_attr_spec): Remove ENUM specific code.
4648         (gfc_match_enum): Fix typo in error message.
4649         (enumerator_decl): New function.
4650         (gfc_match_enumerator_def): Use enumerator_decl instead of
4651         variable_decl.  Adapt code accordingly.
4652
4653 2007-02-11  Paul Thomas  <pault@gcc.gnu.org>
4654
4655         PR fortran/30554
4656         * module.c (find_symtree_for_symbol): New function to return
4657         a symtree that is not a "unique symtree" given a symbol.
4658         (read_module): Do not automatically set pointer_info to
4659         referenced because this inhibits the generation of a unique
4660         symtree.  Recycle the existing symtree if possible by calling
4661         find_symtree_for_symbol.
4662
4663         PR fortran/30319
4664         * decl.c (add_init_expr_to_sym): Make new charlen for an array
4665         constructor initializer.
4666
4667 2007-02-10  Richard Henderson  <rth@redhat.com>, Jakub Jelinek  <jakub@redhat.com>
4668
4669         * f95-lang.c (gfc_init_builtin_functions): Add __emutls_get_address
4670         and __emutls_register_common.
4671         * openmp.c (gfc_match_omp_threadprivate): Don't error if !have_tls.
4672         * trans-common.c (build_common_decl): Don't check have_tls.
4673         * trans-decl.c (gfc_finish_var_decl): Likewise.
4674         * types.def (BT_WORD, BT_FN_PTR_PTR): New.
4675         (BT_FN_VOID_PTR_WORD_WORD_PTR): New.
4676
4677 2007-02-09  Tobias Burnus  <burnus@net-b.de>
4678
4679         PR fortran/30512
4680         * trans-intrinsic.c (gfc_conv_intrinsic_minmaxloc,
4681           gfc_conv_intrinsic_minmaxval): Use HUGE-1 for most negative integer.
4682
4683 2007-02-09  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
4684
4685         PR fortran/30720
4686         * trans-array.c (gfc_trans_create_temp_array): Remove use of the
4687         function argument. Always generate code for negative extent.
4688         Simplify said code.
4689         * trans-array.h (gfc_trans_create_temp_array): Change prototype.
4690         * trans-expr.c (gfc_conv_function_call): Remove use of last argument
4691         of gfc_trans_create_temp_array.
4692         * trans-intrinsic.c (gfc_conv_intrinsic_array_transfer): Likewise.
4693         * trans-stmt.c (gfc_conv_elemental_dependencies): Likewise.
4694
4695 2007-02-08  Roger Sayle  <roger@eyesopen.com>
4696
4697         * trans-stmt.c (gfc_trans_forall_1): Optimize the cases where the
4698         mask expression is a compile-time constant (".true." or ".false.").
4699
4700 2007-02-04  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
4701
4702         PR fortran/30611
4703         * trans-intrinsic.c (gfc_conv_intrinsic_repeat): Evaluate
4704         arguments only once. Generate check that NCOPIES argument is not
4705         negative.
4706
4707 2007-02-04  Steven G. Kargl <kargl@gcc.gnu.org>
4708
4709         PR fortran/30605
4710         * fortran/invoke.texi: Update documentation.
4711         * fortran/options.c (gfc_post_options): Deal with tabs with -std=f2003
4712         and -pedantic.
4713
4714 2007-02-03  Kazu Hirata  <kazu@codesourcery.com>
4715
4716         * trans-array.c: Fix a comment typo.
4717
4718 2007-02-03  Paul Thomas  <pault@gcc.gnu.org>
4719
4720         PR fortran/30514
4721         * array.c (match_array_element_spec): If the length of an array is
4722         negative, adjust the upper limit to make it zero length.
4723
4724         PR fortran/30660
4725         * resolve.c (pure_function, resolve_function): Initialize name to
4726         null to clear up build warnings.
4727         (resolve_fl_variable): Look at components explicitly to check for
4728         default initializer, rather than using gfc_default_initializer.
4729
4730 2007-02-02  Steven G. Kargl <kargl@gcc.gnu.org>
4731
4732         PR fortran/30683
4733         * resolve.c (resolve_generic_f): Check for non-NULL sym.
4734
4735 2007-02-02  Roger Sayle  <roger@eyesopen.com>
4736
4737         * trans.c (gfc_build_array_ref): Use STRIP_TYPE_NOPS to eliminate
4738         NON_LVALUE_EXPR nodes and useless type conversions.
4739
4740 2007-02-02  Paul Thomas  <pault@gcc.gnu.org>
4741
4742         PR fortran/30284
4743         PR fortran/30626
4744         * trans-expr.c (gfc_conv_aliased_arg): Remove static attribute
4745         from function and make sure that substring lengths are
4746         translated.
4747         (is_aliased_array): Remove static attribute.
4748         * trans.c : Add prototypes for gfc_conv_aliased_arg and
4749         is_aliased_array.
4750         * trans-io.c (set_internal_unit): Add the post block to the
4751         arguments of the function.  Use is_aliased_array to check if
4752         temporary is needed; if so call gfc_conv_aliased_arg.
4753         (build_dt): Pass the post block to set_internal_unit and
4754         add to the block after all io activiy is done.
4755
4756 2007-02-01  Roger Sayle  <roger@eyesopen.com>
4757
4758         * trans-array.c (gfc_conv_expr_descriptor): We don't need to use
4759         a temporary array to pass a constant non-character array constructor.
4760         Generalize the descriptor generation code to handle scalarizer
4761         "info" without an array reference.
4762
4763 2007-02-01  Roger Sayle  <roger@eyesopen.com>
4764
4765         * dependency.c (gfc_check_dependency) <EXPR_ARRAY>: Implement
4766         dependency checking for array constructors.
4767
4768 2007-02-01  Roger Sayle  <roger@eyesopen.com>
4769
4770         * trans-stmt.c (compute_overall_iter_number): Document function
4771         arguments.  Generalize "unconditional forall nest with constant
4772         bounds" optimization to eliminate unconditional inner loops with
4773         constant bounds.
4774
4775 2007-01-31  Tobias Burnus  <burnus@net-b.de>
4776
4777         PR fortran/30520
4778         * interface.c (compare_actual_formal): Check conformance between
4779           actual and VOLATILE dummy arguments.
4780         * symbol.c (gfc_add_volatile): Allow setting of VOLATILE
4781           multiple times in different scopes.
4782         * decl.c (gfc_match_volatile): Search symbol in host association.
4783
4784 2007-01-31  Kazu Hirata  <kazu@codesourcery.com>
4785
4786         * simplify.c, trans-array.c: Fix comment typos.
4787
4788 2007-01-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4789
4790         * invoke.texi (Code Gen Options): Fix abbreviation typo.
4791         * intrinsic.texi (ACCESS, LSHIFT, RSHIFT): Fix typos.
4792
4793 2007-01-30  Steve Ellcey  <sje@cup.hp.com>
4794
4795         PR fortran/30432
4796         * trans-types.c (gfc_get_function_type): Do not add void_type_node
4797         to empty arg list.
4798         * trans-decl.c (create_function_arglist): Change assert.
4799
4800 2007-01-29  Paul Thomas  <pault@gcc.gnu.org>
4801
4802         PR fortran/30554
4803         * module.c (read_module): If a symbol is excluded by an ONLY
4804         clause, check to see if there is a symtree already loaded. If
4805         so, attach the symtree to the pointer_info.
4806
4807 2007-01-28  Thomas Koenig  <Thomas.Koenig@online.de>
4808
4809         PR libfortran/30389
4810         * gfortran.h: Remove gfc_simplify_init_1.
4811         * arith.h: Remove third argument from gfc_compare_string.
4812         * arith.c (gfc_compare_expression): Remove third argument
4813         from call to gfc_compare_string.
4814         (gfc_compare_string): Remove third argument xcoll_table.
4815         Remove use of xcoll_table.
4816         * misc.c (gfc_init_1): Remove call to gfc_simplify_init_1.
4817         * simplify.c (ascii_table): Remove.
4818         (xascii_table): Likewise.
4819         (gfc_simplify_achar): ICE if extract_int fails.  Remove use of
4820         ascii_table.  Warn if -Wsurprising and value < 0 or > 127.
4821         (gfc_simplify_char): ICE if extract_int fails. Error if
4822         value < 0 or value > 255.
4823         (gfc_simplify_iachar): Remove use of xascii_table.
4824         Char values outside of 0..255 are an ICE.
4825         (gfc_simplify_lge): Remove use of xascii_table.
4826         (gfc_simplify_lgt): Likewise.
4827         (gfc_simplify_lle): Likewise.
4828         (gfc_simplify_llt): Likewise.
4829         (invert_table): Remove.
4830         (gfc_simplify_init_1): Remove.
4831
4832 2007-01-27  Roger Sayle  <roger@eyesopen.com>
4833
4834         * trans-stmt.c (forall_info): Replace the next_nest and outer
4835         fields that previously implemented a doubly-linked list with a
4836         single prev_nest field (singly-linked list).
4837         (gfc_trans_nested_forall_loop): The nested_forall_info argument
4838         now denotes the innermost FORALL in the loop nest.
4839         (compute_overall_iter_number): Use prev_nest instead of next_nest.
4840         (gfc_trans_forall_1): Link/cons the new "info" to the head of the
4841         nested_forall_info linked list.  Free the current "info" when done.
4842
4843 2007-01-27  Paul Thomas  <pault@gcc.gnu.org>
4844
4845         PR fortran/30407
4846         * trans-expr.c (gfc_conv_operator_assign): New function.
4847         * trans.h : Add prototype for gfc_conv_operator_assign.
4848         * trans-stmt.c (gfc_trans_where_assign): Add a gfc_symbol for
4849         a potential operator assignment subroutine.  If it is non-NULL
4850         call gfc_conv_operator_assign instead of the first assignment.
4851         ( gfc_trans_where_2): In the case of an operator assignment,
4852         extract the argument expressions from the code for the
4853         subroutine call and pass the symbol to gfc_trans_where_assign.
4854         resolve.c (resolve_where, gfc_resolve_where_code_in_forall,
4855         gfc_resolve_forall_body): Resolve the subroutine call for
4856         operator assignments.
4857
4858 2007-01-26  Steven Bosscher  <stevenb.gcc@gmail.com>
4859             Steven G. Kargl <kargl@gcc.gnu.org>
4860
4861         PR fortran/30278
4862         * fortran/io.c (next_char): Deal with backslash escaped characters.
4863         Issue warnings in non -std=gnu cases.
4864         * fortran/primary.c (next_string_char): Issue warnings in non
4865
4866 2007-01-26  Tobias Burnus  <burnus@net-b.de>
4867
4868         * lang-specs.h: Add support for .f03 and .F03 extensions.
4869         * gfortran.texi: Document .f03 extension.
4870         * options.c (form_from_filename): Recognize .f03.
4871
4872 2007-01-25  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
4873
4874         PR fortran/30437
4875         * lang.opt (Wall): Remove RejectNegative.
4876         * options.c (gfc_handle_option): Wall can be disabled.
4877         (set_Wall): Add a parameter for disabling Wall.
4878         
4879 2007-01-23  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
4880
4881         PR fortran/30532
4882         * scanner.c (load_line): Remove check fot ctrl-z and don't gobble.
4883         
4884 2007-01-23  Paul Thomas  <pault@gcc.gnu.org>
4885
4886         PR fortran/30481
4887         * match.c (gfc_match_namelist): Add check for assumed size character
4888         in namelist and provide error if found.
4889
4890 2007-01-21  Brooks Moses  <brooks.moses@codesourcery.com>
4891
4892         * intrinsic.texi (ACHAR): Added cross-references.
4893         (CHAR): Put cross-references in alphabetical order.
4894         (IACHAR): Added cross-references.
4895         (ICHAR): Added cross-references.
4896
4897 2007-01-20  Brooks Moses  <brooks.moses@codesourcery.com>
4898
4899         * intrinsic.texi: Edited all "Syntax" examples to a consistent form.
4900         (MAXVAL): Corrected description of result characteristics.
4901         (MINVAL): Same.
4902         (UMASK): Added documentation.
4903
4904 2007-01-20  Steven G. Kargl  <kargl@gcc.gnu.org>
4905
4906         * openmp.c, matchexp.c, module.c, scanner.c, resolve.c, st.c,
4907         parse.c, primary.c, options.c, misc.c, simplify.c: Next installment
4908         in the massive whitespace patch.
4909
4910 2007-01-20  Roger Sayle  <roger@eyesopen.com>
4911
4912         * module.c (mio_array_ref): The dimen_type fields of an array ref
4913         are an enumerated type and can't be read/written directly with a
4914         call to mio_integer.  Instead loop over and cast each element.
4915
4916 2007-01-20  Roger Sayle  <roger@eyesopen.com>
4917
4918         * dependency.c (gfc_full_array_ref_p): Check that ref->next is NULL,
4919         i.e. that the ARRAY_REF doesn't mention components.
4920         * trans-array.c (gfc_constant_array_constructor_p): Export external
4921         function renamed from constant_array_constructor_p.
4922         (gfc_build_constant_array_constructor): Export.
4923         (gfc_trans_array_constructor): Update call to the renamed function
4924         constant_array_constructor_p.
4925         * trans-array.h (gfc_constant_array_constructor_p): Prototype here.
4926         (gfc_build_constant_array_constructor): Likewise.
4927         * trans-expr.c (gfc_build_memcpy_call): New helper function split
4928         out from gfc_trans_array_copy.
4929         (gfc_trans_array_copy): Use gfc_build_memcpy_call.
4930         (gfc_trans_array_constructor_copy): New function to optimize
4931         assigning an entire array from a constant array constructor.
4932         (gfc_trans_assignment): Call gfc_trans_array_constructor_copy
4933         when appropriate.
4934
4935 2007-01-20  Roger Sayle  <roger@eyesopen.com>
4936
4937         * trans-intrinsic.c (gfc_conv_intrinsic_sign): New branchless
4938         implementation for the SIGN intrinsic with integral operands.
4939         (gfc_conv_intrinsic_minmax): Fix whitespace.
4940
4941 2007-01-20  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
4942
4943         * gfortran.h (gfc_options_t): Add flag_allow_leading_underscore.
4944         * lang.opt: Add -fallow-leading-underscore.
4945         * match.c (gfc_match_name): Allow leading underscore in symbol
4946         name if -fallow-leading-underscore is used.
4947         * symbol.c (gfc_get_default_type): Add special case for symbol
4948         names beginning with an underscore.
4949         * trans-decl.c (gfc_get_extern_function_decl,
4950         gfc_build_intrinsic_function_decls): Add _gfortran prefix to
4951         library symbols selected_int_kind, selected_real_kind and 
4952         all specifics.
4953         * options.c (gfc_init_options, gfc_handle_option): Handle the
4954         new -fallow-leading-underscore option.
4955
4956 2007-01-20  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
4957
4958         PR fortran/30446
4959         * options.c (gfc_handle_module_path_options): Path used in -J
4960         option is now added to the module search path.
4961
4962 2007-01-20  Richard Guenther  <rguenther@suse.de>
4963
4964         PR fortran/30223
4965         * f95-lang.c (gfc_init_builtin_functions): Provide cbrt and
4966         cexpi builtins if we have TARGET_C99_FUNCTIONS.  Provide
4967         sincos builtins if the target has sincos.
4968
4969 2007-01-19  Brooks Moses  <brooks.moses@codesourcery.com>
4970
4971         * intrinsic.texi (MATMUL): Corrected a typo.
4972         (MAX): Separated @var arguments.
4973         (MIN): Separated @var arguments.
4974
4975 2007-01-19  Brooks Moses  <brooks.moses@codesourcery.com>
4976
4977         * intrinsic.texi: general whitespace cleanup.
4978         (menu): Added TIME8, removed UNMASK.
4979         (AINT): Clarified argument requirement.
4980         (ANINT): Clarified argument requirement.
4981         (CEILING): Clarified argument requirement.
4982         (CHAR): Clarified argument requirement.
4983         (CMPLX): Clarified argument requirement.
4984         (DCMPLX): Clarified argument requirement.
4985         (FGET): Line rewrapping.
4986         (FLOOR): Clarified argument requirement.
4987         (GMTIME): Added documentation.
4988         (IAND): Added cross-reference.
4989         (IBCLR): Added cross-reference.
4990         (IBSET): Added cross-reference.
4991         (IEOR): Added cross-reference.
4992         (INT): Collapsed examples, clarified argument requirement.
4993         (IOR): Added cross-references.
4994         (LEN_TRIM): Corrected result kind.
4995         (LINK): Added cross-reference.
4996         (LLT): Removed "documentation pending".
4997         (LOGICAL): Added documentation.
4998         (LSHIFT): Added documentation.
4999         (LTIME): Added documentation.
5000         (MATMUL): Added documentation.
5001         (MAX): Added documentation.
5002         (MAXLOC): Added documentation.
5003         (MAXVAL): Added documentation.
5004         (MERGE): Added documentation.
5005         (MIN): Added documentation.
5006         (MINLOC): Added documentation.
5007         (MINVAL): Added documentation.
5008         (MVBITS): Moved to correct place, added documentation.
5009         (NOT): Added documentation.
5010         (PERROR): Added documentation.
5011         (RAN): Moved to correct place, added documentation.
5012         (REAL): Clarified argument requirement.
5013         (RENAME): Added documentation.
5014         (RSHIFT): Clarified argument requirement.
5015         (SIGN): Corrected table specification.
5016         (SYMLNK): Added documentation.
5017         (SYSTEM): Added documentation.
5018         (TIME): Added documentation.
5019         (TIME8): Added section and documentation.
5020         (UNMASK): Removed erroneous section.
5021
5022 2007-01-18  H.J. Lu  <hongjiu.lu@intel.com>
5023
5024         * trans-stmt.c (compute_overall_iter_number): Fix a typo.
5025
5026 2007-01-18  Roger Sayle  <roger@eyesopen.com>
5027
5028         * trans-expr.c (copyable_array_p): Consider user derived types without
5029         allocatable components to be copyable.
5030
5031 2007-01-18  Roger Sayle  <roger@eyesopen.com>
5032
5033         * trans-stmt.c (compute_overall_iter_number): Enhance to precompute
5034         the number of interations in unconditional FORALL nests with constant
5035         bounds.
5036
5037 2007-01-18  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
5038             Tobias Burnus  <burnus@net-b.de>
5039
5040         PR libfortran/29649
5041         * gfortran.h (gfc_option_t): Add flag_dump_core.
5042         * lang.opt: Add -fdump-core option.
5043         * invoke.texi: Document the new options.
5044         * trans-decl.c (gfc_build_builtin_function_decls): Add new
5045           options to the call to set_std.
5046         * options.c (gfc_init_options, gfc_handle_option): Set the
5047           new options.
5048
5049 2007-01-17  Paul Thomas  <pault@gcc.gnu.org>
5050
5051         PR fortran/30476
5052         * module.c (load_generic_interfaces): Make the marking of the
5053         symbol as ambiguous conditional on the module names being
5054         different.
5055         (write_generic): Ensure that the generic interface has a
5056         non-NULL module field.
5057
5058 2007-01-16  Roger Sayle  <roger@eyesopen.com>
5059
5060         PR fortran/30404
5061         * trans-stmt.c (forall_info): Remove pmask field.
5062         (gfc_trans_forall_loop): Remove NVAR argument, instead assume that
5063         NVAR covers all the interation variables in the current forall_info.
5064         Add an extra OUTER parameter, which specified the loop header in
5065         which to place mask index initializations.
5066         (gfc_trans_nested_forall_loop): Remove NEST_FLAG argument.
5067         Change the semantics of MASK_FLAG to only control the mask in the
5068         innermost loop.
5069         (compute_overall_iter_number): Optimize the trivial case of a
5070         top-level loop having a constant number of iterations.  Update
5071         call to gfc_trans_nested_forall_loop.  Calculate the number of
5072         times the inner loop will be executed, not to size of the 
5073         iteration space.
5074         (allocate_temp_for_forall_nest_1): Reuse SIZE as BYTESIZE when
5075         sizeof(type) == 1.  Tidy up.
5076         (gfc_trans_assign_need_temp): Remove NEST_FLAG argument from calls
5077         to gfc_trans_nested_forall_loop.
5078         (gfc_trans_pointer_assign_need_temp): Likewise.
5079         (gfc_trans_forall_1): Remove unused BYTESIZE, TMPVAR, SIZEVAR and
5080         LENVAR local variables.  Split mask allocation into a separate
5081         hunk/pass from mask population.  Use allocate_temp_for_forall_nest
5082         to allocate the FORALL mask with the correct size.  Update calls
5083         to gfc_trans_nested_forall_loop.
5084         (gfc_evaluate_where_mask): Update call to
5085         gfc_trans_nested_forall_loop.
5086         (gfc_trans_where_2): Likewise.
5087
5088 2007-01-15  Paul Thomas  <pault@gcc.gnu.org>
5089
5090         PR fortran/28172
5091         * trans-stmt.c (gfc_trans_call): If it does not have one, get
5092         a backend_decl for an alternate return.
5093
5094         PR fortran/29389
5095         * resolve.c (pure_function): Statement functions are pure. Note
5096         that this will have to recurse to comply fully with F95.
5097
5098         PR fortran/29712
5099         * resolve.c (resolve_function): Only a reference to the final
5100         dimension of an assumed size array is an error in an inquiry
5101         function.
5102
5103         PR fortran/30283
5104         * resolve.c (resolve_function): Make sure that the function
5105         expression has a type.
5106
5107 2007-01-14  Paul Thomas  <pault@gcc.gnu.org>
5108
5109         PR fortran/30410
5110         * trans-decl.c (gfc_sym_mangled_function_id): Module, external
5111         symbols must not have the module name prepended.
5112
5113 2007-01-11  Thomas Koenig  <Thomas.Koenig@online.de>
5114
5115         PR libfortran/30415
5116         * iresolve.c (gfc_resolve_maxloc): If the rank
5117         of the return array is nonzero and we process an
5118         integer array smaller than default kind, coerce
5119         the array to default integer.
5120         * iresolve.c (gfc_resolve_minloc): Likewise.
5121
5122 2007-01-11  Brooks Moses  <brooks.moses@codesourcery.com>
5123
5124         * simplify.c: Update copyright to 2007.
5125         * scanner.c: Same.
5126
5127 2007-01-11  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
5128
5129         PR fortran/30430
5130         * scanner.c (gfc_release_include_path): Free gfc_option.module_dir
5131         only once!
5132
5133 2007-01-09  Brooks Moses  <brooks.moses@codesourcery.com>
5134
5135         * simplify.c (gfc_simplify_ibclr): Fix POS comparison.
5136         (gfc_simplify_ibset): Same.
5137
5138 2007-01-09  Brooks Moses  <brooks.moses@codesourcery.com>
5139
5140         PR 30381
5141         PR 30420
5142         * simplify.c (convert_mpz_to_unsigned): New function.
5143         (convert_mpz_to_signed): New function, largely based on
5144         twos_complement().
5145         (twos_complement): Removed.
5146         (gfc_simplify_ibclr): Add conversions to and from an
5147         unsigned representation before bit-twiddling.
5148         (gfc_simplify_ibset): Same.
5149         (gfc_simplify_ishftc): Add checks for overly large
5150         constant arguments, only check the third argument if
5151         it's present, carry over high bits into the result as
5152         appropriate, and perform the final conversion back to
5153         a signed representation using the correct sign bit.
5154         (gfc_simplify_not): Removed unnecessary masking.
5155
5156 2007-01-09  Paul Thomas  <pault@gcc.gnu.org>
5157
5158         PR fortran/30408
5159         * resolve.c (resolve_code): Use the code->expr character length
5160         directly to set length of llen.
5161
5162 2007-01-09  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
5163
5164         PR fortran/30408
5165         * lang.opt: Add Wcharacter_truncation option.
5166         * options.c (gfc_init_options): Initialize
5167         gfc_option.warn_character_truncation to zero.
5168         (gfc_handle_option): Add case for OPT_Wcharacter_truncation.
5169
5170 2007-01-08  Steven G. Kargl  <kargl@gcc.gnu.org>
5171
5172         * interface.c, intrinsic.c, gfortranspec.c, io.c, f95-lang.c,
5173         iresolve.c, match.c: Update Copyright years.  Whitespace.
5174
5175 2007-01-08  Richard Guenther  <rguenther@suse.de>
5176
5177         * trans-io.c (transfer_array_desc): Use build_int_cst instead
5178         of build_int_cstu.
5179
5180 2007-01-08  Roger Sayle  <roger@eyesopen.com>
5181
5182         * trans-array.c (constant_array_constructor_p): New function to
5183         determine whether an array constructor consists only of constant
5184         elements, and if so return it's size.
5185         (gfc_build_constant_array_constructor): Construct a statically
5186         initialized gfortran array for a given EXPR_ARRAY.
5187         (gfc_trans_constant_array_constructor): Efficiently scalarize
5188         a constant array constructor.
5189         (gfc_trans_array_constructor): Tidy up use of CONST_STRING.
5190         Special case scalarization of constant array constructors, all of
5191         whose elements are specified, using constant_array_constructor_p 
5192         and gfc_trans_constant_array_constructor.
5193         (gfc_conv_scalarized_array_ref): Check whetger info->offset is zero
5194         before adding it to index, to avoid creating a NON_LVALUE_EXPR.
5195
5196 2007-01-08  Kazu Hirata  <kazu@codesourcery.com>
5197
5198         gfortran.texi: Fix typos.
5199
5200 2007-01-07  Steven G. Kargl  <kargl@gcc.gnu.org>
5201
5202         * decl.c, dump-parse-tree.c, error.c, data.c, expr.c, dependency.c,
5203         convert.c: Update Copyright dates.  Fix whitespace.
5204
5205 2007-01-07  Bernhard Fischer  <aldot@gcc.gnu.org>
5206
5207         * data.c (gfc_assign_data_value): Fix whitespace.
5208
5209 2007-01-07  Bernhard Fischer  <aldot@gcc.gnu.org>
5210
5211         * trans-array.c (gfc_trans_create_temp_array, gfc_array_init_size):
5212         Commentary typo fix.
5213
5214 2007-01-07  Bernhard Fischer  <aldot@gcc.gnu.org>
5215
5216         PR fortran/27698
5217         * match.c (gfc_match_name): Print diagnostics for invalid
5218         character in names.
5219
5220 2007-01-06  Steven G. Kargl  <kargl@gcc.gnu.org>
5221
5222         * array.c: Fix whitespace in comment table.
5223
5224 2007-01-06  Steven G. Kargl  <kargl@gcc.gnu.org>
5225
5226         * array.c, bbt.c, check.c: Update copyright years.  Whitespace.
5227
5228 2007-01-06  Steven G. Kargl  <kargl@gcc.gnu.org>
5229
5230         * arith.c: Update copyright years.  Whitespace.
5231
5232 2007-01-05  Roger Sayle  <roger@eyesopen.com>
5233
5234         * trans-expr.c (gfc_trans_assignment_1): New subroutine to scalarize
5235         array assignments split out from gfc_trans_assignment.
5236         (gfc_trans_array_copy): New function to implement array to array
5237         copies via calls to __builtin_memcpy.
5238         (copyable_array_p): New helper function to identify an array of
5239         simple/POD types, that may be copied/assigned using memcpy.
5240         (gfc_trans_assignment): Use gfc_trans_array_copy to handle simple
5241         whole array assignments considered suitable by copyable_array_p.
5242         Invoke gfc_trans_assignment_1 to perform the fallback scalarization.
5243
5244 2007-01-05  Roger Sayle  <roger@eyesopen.com>
5245
5246         * trans-array.c (gfc_trans_array_constructor_value): Make the
5247         static const "data" array as TREE_READONLY.
5248         * trans-stmt.c (gfc_trans_character_select): Likewise.
5249
5250 2007-01-05  Roger Sayle  <roger@eyesopen.com>
5251
5252         * trans-array.c (gfc_conv_loop_setup): Test whether the loop
5253         stride is one, to avoid fold_build2 introducing a useless
5254         NON_LVALUE_EXPR node.
5255
5256 2007-01-05  Tobias Burnus  <burnus@net-b.de>
5257
5258         * symbol.c (check_conflict): Fix error message.
5259
5260 2007-01-05  Paul Thomas  <pault@gcc.gnu.org>
5261
5262         PR fortran/23232
5263         * decl.c (gfc_in_match_data, gfc_set_in_match_data): New
5264         functions to signal that a DATA statement is being matched.
5265         (gfc_match_data): Call gfc_set_in_match_data on entry and on
5266         exit.
5267         * gfortran.h : Add prototypes for above.
5268         * expr.c (check_init_expr): Avoid check on parameter or
5269         variable if gfc_in_match_data is true.
5270         (gfc_match_init_expr): Do not call error on non-reduction of
5271         expression if gfc_in_match_data is true.
5272
5273         PR fortran/27996
5274         PR fortran/27998
5275         * decl.c (gfc_set_constant_character_len): Add boolean arg to
5276         flag array constructor resolution.  Warn if string is being
5277         truncated.  Standard dependent error if string is padded. Set
5278         new arg to false for all three calls to
5279         gfc_set_constant_character_len.
5280         * match.h : Add boolean arg to prototype for
5281         gfc_set_constant_character_len.
5282         * gfortran.h : Add warn_character_truncation to gfc_options.
5283         * options.c (set_Wall): Set warn_character_truncation if -Wall
5284         is set.
5285         * resolve.c (resolve_code): Warn if rhs string in character
5286         assignment has to be truncated.
5287         * array.c (gfc_resolve_character_array_constructor): Set new
5288         argument to true for call to gfc_set_constant_character_len.
5289
5290 2007-01-05  Tobias Burnus  <burnus@net-b.de>
5291
5292         PR fortran/29624
5293         * interface.c (compare_parameter_intent): New function.
5294           (check_intents): Support pointer intents.
5295         * symbol.c (check_conflict): Support pointer intents,
5296           better conflict_std message.
5297         * expr.c (gfc_check_assign,gfc_check_pointer_assign):
5298           Support pointer intents.
5299         * resolve.c (resolve_deallocate_expr,resolve_allocate_expr):
5300           Support pointer intents.
5301
5302 2007-01-03  Brooks Moses  <brooks.moses@codesourcery.com>
5303
5304         PR 30371
5305         * check.c (gfc_check_kill_sub): Add checks for non-scalar
5306         arguments.
5307
5308 2007-01-04  Brooks Moses  <brooks.moses@codesourcery.com>
5309
5310         * intrinsic.texi: Minor cleanup, reflowing overlong
5311         paragraphs, and correcting whitespace.
5312
5313 2007-01-04  Brooks Moses  <brooks.moses@codesourcery.com>
5314
5315         * intrinsic.texi (LBOUND): Add documentation.
5316         (LGE): Add documentation.
5317         (LGT): Add documentation.
5318         (LINK): Add documentation.
5319         (LLE): Add documentation.
5320         (LLT): Add documentation.
5321         (LNBLNK): Add documentation.
5322         (UBOUND): Add documentation.
5323         (UNLINK): Add documentation.
5324
5325 2007-01-04  Brooks Moses  <brooks.moses@codesourcery.com>
5326
5327         * intrinsic.texi (IAND): Clarify argument specifications.
5328         (IBCLR): Add documentation.
5329         (IBITS): Add documentation.
5330         (IBSET): Add documentation.
5331         (IEOR): Add documentation.
5332         (IERRNO): Add documentation.
5333         (INDEX): Add documentation.
5334         (IOR): Add documentation.
5335         (ISHFT): Add documentation.
5336         (ISHFTC): Add documentation.
5337         (KILL): Add documentation.
5338         (LEN_TRIM): Add documentation.
5339
5340 2007-01-04  Brooks Moses  <brooks.moses@codesourcery.com>
5341
5342         PR 30235
5343         * interface.c (compare_actual_formal): check for
5344         alternate returns when iterating over non-present
5345         arguments.
5346
5347 2007-01-04  Brooks Moses  <brooks.moses@codesourcery.com>
5348
5349         * invoke.texi: Update manpage copyright to include 2007.
5350
5351 2007-01-04  Brooks Moses  <brooks.moses@codesourcery.com>
5352
5353         * gfortran.texi: Update copyright to include 2007.
5354         * intrinsic.texi: Update copyright to include 2007.
5355         * invoke.texi: Update copyright to include 2007.
5356
5357 2007-01-02  Tobias Burnus  <burnus@net-b.de>
5358             Jakub Jelinek  <jakub@redhat.com>
5359
5360         PR fortran/30276
5361         * scanner.c (open_included_file): Revert patch.
5362           (gfc_open_included_file): Support absolute pathnames.
5363           (gfc_open_intrinsic_module): Support absolute pathnames.
5364
5365 2007-01-03  Brooks Moses  <brooks.moses@codesourcery.com>
5366
5367         * gfortran.texi (GNU Fortran and GCC): Rewrite
5368
5369 2007-01-03  Brooks Moses  <brooks.moses@codesourcery.com>
5370
5371         * gfortran.texi (Introduction): Lower "Part I:
5372         Introduction" to a chapter, renumber Parts II and III to
5373         Parts I and II.
5374         * intrinsic.texi (Introduction): Rename to "Introduction
5375         to Intrinsics" to avoid conflict with the new chapter.
5376
5377 2007-01-03  Brooks Moses  <brooks.moses@codesourcery.com>
5378
5379         * intrinsic.texi (Introduction): Rewrite first paragraph.
5380
5381 2007-01-03  Brooks Moses  <brooks.moses@codesourcery.com>
5382
5383         * invoke.texi (OpenMP): Added index entry.
5384         * gfortran.texi (title page): Removed erroneous '*'.
5385
5386 2007-01-03  Brooks Moses  <brooks.moses@codesourcery.com>
5387
5388         * gfortran.texi (GFORTRAN_DEFAULT_RECL): Added units
5389         to description.
5390         (Extensions): Miscellaneous minor rewriting and copyediting.
5391         (BOZ-literal constants): Renamed from Hexadecimal constants.
5392         (Hollerith constants support): Added explanation and 
5393         suggestions for standard-conforming modern equivalents.
5394
5395 2007-01-03  Brooks Moses  <brooks.moses@codesourcery.com>
5396
5397         * intrinsic.texi: Improvements to index entries; change
5398         @findex entries to @cindex entries.
5399         * invoke.texi: Standardize and improve index entries.
5400         * gfortran.texi: Fix @code in one index entry.
5401
5402 2007-01-03  Brooks Moses  <brooks.moses@codesourcery.com>
5403
5404         * invoke.texi: Change @code-type macros to appropriate
5405         variants (@command, @option, etc.)
5406         * gfortran.texi: Same.
5407
5408 2007-01-03  Brooks Moses  <brooks.moses@codesourcery.com>
5409
5410         * intrinsic.texi: Various minor cleanups.
5411
5412 2007-01-02  Steven G. Kargl  <kargls@comcast.net>
5413
5414         * trans-intrinsic.c (gfc_conv_intrinsic_ibits): Fix call to
5415         build_int_cst.
5416
5417 2007-01-02  Tobias Burnus  <burnus@net-b.de>
5418
5419         PR fortran/30276
5420         * scanner.c (open_included_file): Support full-path filenames.
5421
5422 2007-01-02  Paul Thomas  <pault@gcc.gnu.org>
5423
5424         PR fortran/20896
5425         * interface.c (check_sym_interfaces): Remove call to
5426         resolve_global_procedure.
5427         gfortran.h : Remove prototype for resolve_global_procedure.
5428         resolve.c (resolve_global_procedure): Add static attribute
5429         to function declaration.
5430
5431 2007-01-01  Steven G. Kargl  <kargls@comcast.net>
5432
5433         * ChangeLog: Copy to ...
5434         * ChangeLog-2006: here.