2018-06-12 Steven G. Kargl <kargl@gcc.gnu.org>
[official-gcc.git] / gcc / fortran / ChangeLog
blob46498a30c7f564d9b05a28e4c527481be0815d41
1 2018-06-12  Steven G. Kargl  <kargl@gcc.gnu.org>
3         PR fortran/44491
4         * expr.c (gfc_check_assign): Select non-NULL locus.
6 2018-06-11  Janus Weil  <janus@gcc.gnu.org>
8         PR fortran/45521
9         * interface.c (compare_ptr_alloc): New function.
10         (generic_correspondence): Call it.
12 2018-06-10  Thomas Koenig  <tkoenig@gcc.gnu.org>
14         * gfortran.h (gfc_expr): Add no_bounds_check field.
15         * frontend-passes.c (get_array_inq_function): Set no_bounds_check
16         on function and function argument.
17         (inline_matmul_assign): Set no_bounds_check on zero expression
18         and on lhs of zero expression.
19         Also handle A1B2 case if realloc on assigment is active.
20         * trans-array.c (gfc_conv_array_ref): Don't do range checking
21         if expr has no_bounds_check set.
22         (gfc_conv_expr_descriptor): Set no_bounds_check on ss if expr
23         has it set.
24         * trans-expr.c (gfc_trans_assignment_1): Set no_bounds_check
25         on lss and lss if the corresponding expressions have it set.
27 2018-06-10  Dominique d'Humieres  <dominiq@gcc.gnu.org>
29         PR fortran/79854
30         * trans-const.c: Remove include "diagnostic-core.h".
31         (gfc_conv_constant_to_tree): Replace fatal_error with gcc_unreachable.
33 2018-06-10  Janus Weil  <janus@gcc.gnu.org>
35         PR fortran/85088
36         * decl.c (match_attr_spec): Synchronize the DECL_* enum values with the
37         INTENT_* values from the enum 'sym_intent'. Call 'match_intent_spec'
38         and remove a TODO note.
39         * gfortran.h: Add a comment to sym_intent.
41 2018-06-09  Steven G. Kargl  <kargl@gcc.gnu.org>
43         PR fortran/38351
44         * resolve.c (resolve_operator): Provide better error message for
45         derived type entity used in an binary intrinsic numeric operator.
47 2018-06-09  Steven G. Kargl  <kargl@gcc.gnu.org>
49         PR fortran/85138
50         PR fortran/85996
51         PR fortran/86051
52         * decl.c (gfc_match_char_spec): Use private namespace in attempt to
53         reduce a charlen to a constant.
55 2018-06-09  Steven G. Kargl  <kargl@gcc.gnu.org>
57         PR fortran/78278
58         * data.c (gfc_assign_data_value): Re-arrange code to allow for
59         an error for double initialization of CHARACTER entities.
61 2018-06-09  Steven G. Kargl  <kargl@gcc.gnu.org>
63         PR fortran/63514
64         * symbol.c (gfc_add_volatile): Enforce F2008:C1282 and F2018:C1588.
66 2018-06-08  Thomas Koenig  <tkoenig@gcc.gnu.org>
68         PR fortran/85631
69         * trans.h (gfc_ss): Add field no_bounds_check.
70         * trans-array.c (gfc_conv_ss_startstride): If flag_realloc_lhs and
71         ss->no_bounds_check is set, do not use runtime checks.
72         * trans-expr.c (gfc_trans_assignment_1): Set lss->no_bounds_check
73         for reallocatable lhs.
75 2018-06-08  Steven G. Kargl  <kargl@gcc.gnu.org>
77         PR fortran/86059
78         * array.c (match_array_cons_element): NULL() cannot be in an
79         array constructor.
81 2018-06-08  Steven G. Kargl  <kargl@gcc.gnu.org>
83         PR fortran/78571
84         * data.c (create_character_initializer): Return early if type is
85         incompatible with CHARACTER.
87 2018-06-07  Steven G. Kargl  <kargl@gcc.gnu.org>
89         PR fortran/86045
90         * simplify.c (gfc_simplify_mod): Re-arrange code to test whether
91         'P' is zero and issue an error if it is.
93 2018-06-06  Thomas Koenig  <tkoenig@gcc.gnu.org>
95         PR fortran/85641
96         * frontend-passes.c (is_fe_temp): Add prototype.
97         (realloc_string_callback): Early return for frontend-generated
98         temporary.
100 2018-06-05  Cesar Philippidis  <cesar@codesourcery.com>
102         PR fortran/85701
104         * openmp.c (gfc_resolve_oacc_declare): Error on functions and
105         subroutine data clause arguments.
107 2018-06-04  Steven G. Kargl  <kargl@gcc.gnu.org>
109         PR fortran/85981
110         * resolve.c (resolve_allocate_deallocate): Check errmsg is default
111         character kind.
113 2018-06-03  Paul Thomas  <pault@gcc.gnu.org>
115         PR fortran/36497
116         * decl.c (variable_decl): Use gfc_add_type for cray pointees.
118 2018-06-01  Steven G. Kargl  <kargl@gcc.gnu.org>
120         PR fortran/63570
121         * check.c (gfc_check_random_init): New function. Check arguments of
122         RANDOM_INIT.
123         * gfortran.h (GFC_ISYM_RANDOM_INIT): New enum token.
124         * intrinsic.c (add_subroutines): Add RANDOM_INIT to list of
125         subroutines.
126         (gfc_check_intrinsic_standard): Introduce Fortran 2018 check.
127         * intrinsic.h: Add prototypes for gfc_check_random_init and
128         gfc_resolve_random_init
129         * intrinsic.texi: Document new intrinsic subprogram.
130         * iresolve.c (gfc_resolve_random_init): Resolve routine name.
131         * trans-decl.c: Declare gfor_fndecl_random_init
132         * trans-intrinsic.c (conv_intrinsic_random_init): New function.
133         Translate call to RANDOM_INIT.
134         (gfc_conv_intrinsic_subroutine): Call it.
135         * trans.h: Declare gfor_fndecl_random_init
137 2018-05-27  Steven G. Kargl  <kargl@gcc.gnu.org>
139         * decl.c (match_data_constant):  Fortran 2018 allows pointer
140         initialization in a data statement.
142 2018-05-25  Janus Weil  <janus@gcc.gnu.org>
144         PR fortran/85839
145         * match.c (gfc_match_block_data): Call gfc_notify_std to warn about
146         an obsolescent feature in Fortran 2018.
147         (gfc_match_equivalence): Ditto.
148         * resolve.c (resolve_common_blocks): Ditto.
149         (gfc_resolve_forall): Ditto.
150         * symbol.c (gfc_define_st_label): Ditto.
152 2018-05-24  Steven G. Kargl  <kargl@gcc.gnu.org>
154         PR fortran/85543
155         * resolve.c (update_current_proc_array_outer_dependency): Avoid NULL
156         pointer dereference.
158 2018-05-24  Steven G. Kargl  <kargl@gcc.gnu.org>
160         PR fortran/85780
161         * resolve.c (resolve_fl_procedure): Avoid NULL dereference.
163 2018-05-24  Steven G. Kargl  <kargl@gcc.gnu.org>
165         PR fortran/85779
166         * decl.c (gfc_match_derived_decl): Fix NULL point dereference.
168 2018-05-24  Steven G. Kargl  <kargl@gcc.gnu.org>
170         PR fortran/85895
171         * resolve.c (resolve_sync): Resolve expression before checking for
172         an error.
174 2018-05-22  Janus Weil  <janus@gcc.gnu.org>
176         PR fortran/85841
177         * libgfortran.h: Remove the macros GFC_STD_F2008_TS and
178         GFC_STD_OPT_F08TS.
179         * error.c (notify_std_msg): Remove GFC_STD_F2008_TS.
180         * options.c (set_default_std_flags): Ditto.
181         (gfc_handle_option): Make -std=f2008ts an alias for -std=f2018.
182         * array.c (gfc_match_array_spec): Replace GFC_STD_F2008_TS by
183         GFC_STD_F2018.
184         * check.c (gfc_check_atomic, gfc_check_event_query,
185         gfc_check_c_f_pointer, gfc_check_c_f_procpointer, gfc_check_c_funloc,
186         gfc_check_c_loc, gfc_check_num_images, gfc_check_this_image): Ditto.
187         * decl.c (gfc_verify_c_interop_param, gfc_match_decl_type_spec): Ditto.
188         * intrinsic.c (add_functions, add_subroutines,
189         gfc_check_intrinsic_standard): Ditto.
190         * iso-c-binding.def: Ditto.
191         * iso-fortran-env.def: Ditto.
192         * match.c (gfc_match_event_post, gfc_match_event_wait,
193         gfc_match_fail_image, gfc_match_form_team, gfc_match_change_team,
194         gfc_match_end_team, gfc_match_sync_team): Ditto.
195         * gfortran.texi: Remove mention of -std=f2008ts.
196         Move TSs into F2018 section.
197         * invoke.texi: Update documentation of -std=f2008ts.
199 2018-05-21  Janus Weil  <janus@gcc.gnu.org>
201         PR fortran/85841
202         * libgfortran.h: New macros GFC_STD_OPT_*.
203         * error.c (notify_std_msg): New function.
204         (gfc_notify_std): Adjust such that it can handle combinations of
205         GFC_STD_* flags in the 'std' argument, not just a single one.
206         * match.c (match_arithmetic_if, gfc_match_if): Reject arithmetic if
207         in Fortran 2018.
208         (gfc_match_stopcode): Use GFC_STD_OPT_* macros.
209         * options.c (set_default_std_flags): Warn for F2018 deleted features
210         by default.
211         (gfc_handle_option): F2018 deleted features are allowed in earlier
212         standards.
213         * symbol.c (gfc_define_st_label, gfc_reference_st_label): Reject
214         nonblock do constructs in Fortran 2018.
216 2018-05-20  Paul Thomas  <pault@gcc.gnu.org>
218         PR fortran/80657
219         * resolve.c (flag_fn_result_spec): Use the 'sym' argument to
220         test for self refs to the function result in the character len
221         expression. If a self reference is found, emit an error and
222         return true.
223         (resolve_fntype): Use the function symbol in the calls to the
224         above.
226 2018-05-20  Paul Thomas  <pault@gcc.gnu.org>
228         PR fortran/49636
229         * trans-array.c (gfc_get_array_span): Renamed from
230         'get_array_span'.
231         (gfc_conv_expr_descriptor): Change references to above.
232         * trans-array.h : Add prototype for 'gfc_get_array_span'.
233         * trans-intrinsic.c (gfc_conv_associated): Add pre and post
234         blocks for 'arg1'.
235         * trans-stmt.c (trans_associate_var): If the associate name is
236         a subref array pointer, use gfc_get_array_span for the span.
238 2018-05-20  Paul Thomas  <pault@gcc.gnu.org>
240         PR fortran/82275
241         * match.c (gfc_match_type_spec): Go through the array ref and
242         decrement 'rank' for every dimension that is an element.
244 2018-05-19  Paul Thomas  <pault@gcc.gnu.org>
246         PR fortran/82923
247         PR fortran/66694
248         PR fortran/82617
249         * trans-array.c (gfc_alloc_allocatable_for_assignment): Set the
250         charlen backend_decl of the rhs expr to ss->info->string_length
251         so that the value in the current scope is used.
253 2018-05-13  Steven G. Kargl  <kargl@gcc.gnu.org>
255         PR fortran/63529
256         * gfortran.texi: Clarify documentation for Cray pointer and
257         assumed-sized array.
259 2018-05-13  Paul Thomas  <pault@gcc.gnu.org>
261         PR fortran/85742
262         * trans-types.c (gfc_get_dtype_rank_type): Reorder evaluation
263         of 'size'. If the element type is a pointer use the size of the
264         TREE_TYPE of the type, unless it is VOID_TYPE. In this latter
265         case, set the size to zero.
267 2018-05-13  Steven G. Kargl  <kargl@gcc.gnu.org>
269         * gfortran.h: Remove prototype.
270         * symbol.c (gfc_new_undo_checkpoint): Remove unused function.
272 2018-05-11  Steven G. Kargl  <kargl@gcc.gnu.org>
274         PR fortran/85542
275         * expr.c (check_inquiry): Avoid NULL pointer dereference.
277 2018-05-10  Steven G. Kargl  <kargl@gcc.gnu.org>
279         PR fortran/85687
280         * check.c (gfc_check_rank): Check that the argument is a data object.
282 2018-05-10  Steven G. Kargl  <kargl@gcc.gnu.org>
284         PR fortran/85521
285         * array.c (gfc_resolve_character_array_constructor): Substrings
286         with upper bound smaller than lower bound are zero length strings.
288 2018-05-10  Steven G. Kargl  <kargl@gcc.gnu.org>
290         PR fortran/70870
291         * data.c (gfc_assign_data_value): Check that a data object does
292         not also have default initialization.
294 2018-05-10  Marek Polacek  <polacek@redhat.com>
296         PR fortran/85735
297         * options.c (gfc_post_options): Set main_input_filename.
299 2018-05-10  Thomas Koenig  <tkoenig@gcc.gnu.org>
301         PR fortran/54613
302         * intrinsic.texi: Document BACK for MINLOC and MAXLOC.
304 2018-05-10  Paul Thomas  <pault@gcc.gnu.org>
306         PR fortran/68846
307         PR fortran/70864
308         * resolve.c (get_temp_from_expr): The temporary must not have
309         dummy or intent attributes.
311 2018-05-08  Thomas Koenig  <tkoenig@gcc.gnu.org>
313         PR fortran/54613
314         * check.c (gfc_check_minmaxloc): Remove error for BACK not being
315         implemented.  Use gfc_logical_4_kind for BACK.
316         * simplify.c (min_max_choose): Add optional argument back_val.
317         Handle it.
318         (simplify_minmaxloc_to_scalar): Add argument back_val. Pass
319         back_val to min_max_choose.
320         (simplify_minmaxloc_to_nodim): Likewise.
321         (simplify_minmaxloc_to_array): Likewise.
322         (gfc_simplify_minmaxloc): Add argument back, handle it.
323         Pass back_val to specific simplification functions.
324         (gfc_simplify_minloc): Remove ATTRIBUTE_UNUSED from argument back,
325         pass it on to gfc_simplify_minmaxloc.
326         (gfc_simplify_maxloc): Likewise.
327         * trans-intrinsic.c (gfc_conv_intrinsic_minmaxloc): Adjust
328         comment. If BACK is true, use greater or equal (or lesser or
329         equal) insteal of greater (or lesser). Mark the condition of
330         having found a value which exceeds the limit as unlikely.
332 2018-05-07  Jeff Law  <law@redhat.comg>
334         * scanner.c (preprocessor_line): Call linemap_add after a line
335         directive that changes the current filename.
337 2018-05-06  Andre Vehreschild  <vehre@gcc.gnu.org>
339         PR fortran/85507
340         * dependency.c (gfc_dep_resolver): Revert looking at coarray dimension
341         introduced by r259385.
342         * trans-intrinsic.c (conv_caf_send): Always report a dependency for
343         same variables in coarray assignments.
345 2018-05-02  Tom de Vries  <tom@codesourcery.com>
347         PR libgomp/82428
348         * f95-lang.c (DEF_GOACC_BUILTIN_ONLY): Define.
350 2018-04-24  Steven G. Kargl  <kargl@gcc.gnu.org>
352         PR fortran/85520
353         * decl.c (gfc_match_char_spec): Check for negative length and set to 0.
355 2018-04-14  Andre Vehreschild  <vehre@gcc.gnu.org>
357         PR fortran/81773
358         PR fortran/83606
359         * dependency.c (gfc_dep_resolver): Coarray indexes are to be ignored
360         during dependency computation.  They define no data dependency.
361         * trans-array.c (conv_array_index_offset): The stride can not be set
362         here, prevent fail.
363         * trans-intrinsic.c (conv_caf_send): Add creation of temporary array
364         for caf_get's result and copying to the array with vectorial
365         indexing.
367 2018-04-14  Thomas Koenig  <tkoenig@gcc.gnu.org>
369         PR fortran/85387
370         * frontend-passes.c (traverse_io_block): Check for start, end or
371         stride being defined by an outer implied DO loop.
373 2018-04-12  Thomas Koenig  <tkoenig@gcc.gnu.org>
375         PR fortran/83064
376         PR testsuite/85346
377         * trans-stmt.c (gfc_trans_forall_loop): Use annot_expr_ivdep_kind
378         for annotation and remove dependence on -ftree-parallelize-loops.
380 2018-04-10  Jakub Jelinek  <jakub@redhat.com>
382         PR fortran/85313
383         * openmp.c (resolve_omp_do): Remove bogus if (j < i) break;.
384         (resolve_oacc_nested_loops): Likewise.  Formatting fix.
386 2018-04-09  Thomas Koenig  <tkoenig@gcc.gnu.org>
388         PR fortran/83064
389         * trans-stmt.c (gfc_trans_forall_loop): Remove annotation for
390         parallell processing of DO CONCURRENT -ftree-parallelize-loops
391         is set.
393 2018-04-09  Thomas Koenig  <tkoenig@gcc.gnu.org>
395         PR fortran/51260
396         * resolve.c (resolve_variable): Simplify cases where access to a
397         parameter array results in a single constant.
399 2018-04-02  Thomas Koenig  <tkoenig@gcc.gnu.org>
401         PR fortran/85102
402         * decl.c (variable_decl): If upper or lower bounds simplify
403         to a constant, use that.
405 2018-03-30  Paul Thomas  <pault@gcc.gnu.org>
407         PR fortran/84931
408         * simplify.c (gfc_convert_constant): Handle case of array
409         constructors within an array that has no iterator and improve
410         the conciseness of this section of code.
412 2017-03-30  Thomas Koenig  <tkoenig@gcc.gnu.org>
414         PR fortran/85111
415         * array.c (gfc_resolve_character_array_constructor): Early
416         exit for zero-size arrays.
417         * simplify.c (simplify_transformation_to_array): Exit early
418         if the result size is zero.
419         (simplify_minmaxloc_to_array): Likewise.
421 2018-03-28  Mikael Morin  <mikael@gcc.gnu.org>
423         PR fortran/69497
424         * symbol.c (gfc_symbol_done_2): Start freeing namespaces
425         from the root.
426         (gfc_free_namespace): Restore assert (revert r258839).
428 2018-03-28  Jakub Jelinek  <jakub@redhat.com>
430         * gfortran.h (gfc_dt): Rename default_exp field to dec_ext.
431         * ioparm.def (IOPARM_dt_default_exp): Rename to ...
432         (IOPARM_dt_dec_ext): ... this.
433         * trans-io.c (build_dt): Adjust for default_exp renaming to
434         dec_ext and IOPARM_dt_default_exp renaming to IOPARM_dt_dec_ext.
435         * io.c (match_io): Likewise.
437 2018-03-27  Thomas Koenig  <tkoenig@gcc.gnu.org>
439         PR fortran/85084
440         * frontend-passes.c (gfc_run_passes): Do not run front-end
441         optimizations if a previous error occurred.
443 2018-03-27  Thomas Koenig  <tkoenig@gcc.gnu.org>
444         Harald Anlauf  <anlauf@gmx.de>
446         PR fortran/85083
447         * primary.c (gfc_convert_to_structure_constructor): Check
448         conformance of argument types in structure constructor.
450 2018-03-26  Thomas Koenig  <tkoenig@gcc.gnu.org>
452         PR fortran/66709
453         * io.c: Include constructor.h.
454         (resolve_tag_format): For a constant character array, concatenate
455         into a single character expression.
457 2018-03-25  Seth Johnson <johnsonsr@ornl.gov>
458         Dominique d'Humieres  <dominiq@gcc.gnu.org>
460         PR fortran/84924
461         * check.c (gfc_check_c_f_pointer): Allow scalar noninteroperable
462         scalar derived type with -std=f2003 and -std=f2008.
464 2018-03-24  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
465             Dominique d'Humieres  <dominiq@gcc.gnu.org>
467         PR fortran/69497
468         * symbol.c (gfc_free_namespace): Delete the assert and only if
469         refs count is equals zero, free the namespace. Otherwise,
470         something is halfway and other errors will resound.
472 2018-03-24  Thomas Koenig  <tkoenig@gcc.gnu.org>
474         PR fortran/70068
475         * expr.c (find_substring_ref): Change types of start, end
476         and length variables to gfc_charlen_t. Set length to zero
477         for empty substring.
479 2018-03-24  Steven G. Kargl  <kargl@gcc.gnu.org>
481         PR fortran/42651
482         * decl.c (check_function_name): Improved error message
483         (gfc_match_volatile, gfc_match_asynchronous) Use check_function_name.
485 2018-03-22  Steven G. Kargl  <kargl@gcc.gnu.org>
487         PR fortran/84922
488         * decl.c (get_proc_name): If the MODULE prefix appears in interface
489         body, then it must appear on the contained subroutine or function.
490         While here, fix nearby mis-indented code.
492 2018-03-21  Thomas Koenig  <tkoenig@gcc.gnu.org>
493         Harald Anlauf  <anlauf@gmx.de>
495         PR fortran/84957
496         * trans-types.c (gfc_sym_type): Do not dereference NULL pointer.
498 2018-03-21  Janne Blomqvist  <jb@gcc.gnu.org>
500         PR fortran/84615
501         * trans-expr.c (gfc_conv_procedure_call): Convert charlen to
502         gfc_charlen_type_node when calling procedure.
504 2018-03-20  Steven G. Kargl  <kargl@gcc.gnu.org>
506         PR fortran/85001
507         * interface.c (symbol_rank): Remove bogus null pointer check that
508         crept in when translating a ternary operator into an if-else
509         constructor.
511 2018-03-19  Thomas Koenig  <tkoenig@gcc.gnu.org>
513         PR fortran/84931
514         * simplify.c (gfc_convert_constant): Correctly handle iterators
515         for type conversion.
517 2018-03-18  Steven G. Kargl  <kargl@gcc.gnu.org>
519         PR fortran/77414
520         * decl.c (get_proc_name):  Check for a subroutine re-defined in
521         the contain portion of a subroutine.  Change language of existing
522         error message to better describe the issue. While here fix whitespace
523         issues.
525 2018-03-18  Steven G. Kargl  <kargl@gcc.gnu.org>
527         PR fortran/65453
528         * decl.c (get_proc_name): Catch clash between a procedure statement
529         and a contained subprogram
531 2018-03-16  Steven G. Kargl  <kargl@gcc.gnu.org>
533         PR fortran/69395
534         * decl.c (merge_array_spec): Correct the error condition.
536 2018-03-15  Steven G. Kargl  <kargl@gcc.gnu.org>
538         PR fortran/78741
539         * decl.c (get_proc_name):  Check for clash of entry name with
540         subroutine name.
542 2018-03-15  Steven G. Kargl  <kargl@gcc.gnu.org>
544         PR fortran/69395
545         * decl.c (merge_array_spec): Limit the merging to maximum allowed
546         dimensions, and issue error message if limit is exceeded.
548 2018-03-13  Steven G. Kargl  <kargl@gcc.gnu.org>
550         * check.c (gfc_check_kill_sub):  Remove check for INTEGER(4) or (8).
551         * intrinsic.c (add_functions): Remove reference to gfc_resolve_kill.
552         (add_subroutines): Remove reference to gfc_resolve_kill_sub.
553         * intrinsic.texi: Update documentation.
554         * iresolve.c (gfc_resolve_kill, gfc_resolve_kill_sub): Remove.
555         * trans-decl.c (gfc_build_intrinsic_function_decls):  Add
556         gfor_fndecl_kill and gfor_fndecl_kill_sub
557         * trans-intrinsic.c (conv_intrinsic_kill, conv_intrinsic_kill_sub): new
558         functions.
559         (gfc_conv_intrinsic_function): Use conv_intrinsic_kill.
560         (gfc_conv_intrinsic_subroutine): Use conv_intrinsic_kill_sub.
561         * trans.h: Declare gfor_fndecl_kill and gfor_fndecl_kill_sub.
563 2018-03-11  Paul Thomas  <pault@gcc.gnu.org>
565         PR fortran/84546
566         * trans-array.c (structure_alloc_comps): Make sure that the
567         vptr is copied and that the unlimited polymorphic _len is used
568         to compute the size to be allocated.
569         * trans-expr.c (gfc_get_class_array_ref): If unlimited, use the
570         unlimited polymorphic _len for the offset to the element.
571         (gfc_copy_class_to_class): Set the new 'unlimited' argument.
572         * trans.h : Add the boolean 'unlimited' to the prototype.
574 2018-03-11  Steven G. Kargl  <kargl@gcc.gnu.org>
576         PR fortran/83939
577         * resolve.c (resolve_fl_procedure): Enforce F2018:C15100.
579 2018-03-11  Steven G. Kargl  <kargls@gcc.gnu.org>
581         * check.c (gfc_check_kill):  Check pid and sig are scalar.
582         (gfc_check_kill_sub): Restrict kind to 4 and 8.
583         * intrinsic.c (add_function): Sort keyword list.  Add pid and sig
584         keywords for KILL.  Remove redundant *back="back" in favor of the
585         original *bck="back".
586         (add_subroutines): Sort keyword list.  Add pid and sig keywords
587         for KILL.
588         * intrinsic.texi: Fix documentation to consistently use pid and sig.
589         * iresolve.c (gfc_resolve_kill): Kind can only be 4 or 8.  Choose the
590         correct function.
591         (gfc_resolve_rename_sub): Add comment.
593 2018-03-11  Thomas Koenig  <tkoenig@gcc.gnu.org>
595         PR fortran/66128
596         * simplify.c (simplify_transformation): Return default result for
597         empty array argument.
598         (gfc_simplify_all): Remove special-case handling for zerosize.
599         (gfc_simplify_any): Likewise.
600         (gfc_simplify_count): Likewise.
601         (gfc_simplify_iall): Likewise.
602         (gfc_simplify_iany): Likewise.
603         (gfc_simplify_iparity): Likewise.
604         (gfc_simplify_minval): Likewise.
605         (gfc_simplify_maxval): Likewise.
606         (gfc_simplify_norm2): Likewise.
607         (gfc_simplify_product): Likewise.
608         (gfc_simplify_sum): Likewise.
610 2018-03-10  Steven G. Kargl  <kargl@gcc.gnu.org>
612         PR fortran/84734
613         * arith.c (check_result, eval_intrinsic):  If result overflows, pass
614         the expression up the chain instead of a NULL pointer.
616 2018-03-07  Steven G. Kargl  <kargl@gcc.gnu.org>
618         PR fortran/64124
619         PR fortran/70409
620         * decl.c (gfc_match_char_spec): Try to reduce a charlen to a constant.
622 2017-03-06  Thomas Koenig  <tkoenig@gcc.gnu.org>
624         PR fortran/84697
625         PR fortran/66128
626         * expr.c (simplify_parameter_variable): If p is a size zero array
627         and not an ARRAY_EXPR insert an empty array constructor and
628         return.
629         * gfortran.h: Add prototype for gfc_is_size_zero_array.
630         * simplify.c (is_size_zero_array): Make non-static and rename into
631         (gfc_is_size_zero_array):  Check for parameter arrays of zero
632         size by comparing shape and absence of constructor.
633         (gfc_simplify_all): Use gfc_is_size_zero_array instead of
634         is_size_zero_array.
635         (gfc_simplify_count): Likewise.
636         (gfc_simplify_iall): Likewise.
637         (gfc_simplify_iany): Likewise.
638         (gfc_simplify_iparity): Likewise.
639         (gfc_simplify_minval): Likewise.
640         (gfc_simplify_maxval): Likewise.
641         (gfc_simplify_product): Likewise.
642         (gfc_simplify_sum): Likewise.
644 2018-03-06  Steven G. Kargl  <kargl@gcc.gnu.org>
646         PR fortran/56667
647         * primary.c (match_sym_complex_part): Give the matcher for an implied
648         do-loop a chance to run.
650 2018-03-03  Harald Anlauf  <anlauf@gmx.de>
652         PR fortran/71085
653         * trans-expr.c (gfc_apply_interface_mapping_to_expr): Do not
654         dereference NULL pointer.
656 2018-03-03  Steven G. Kargl  <kargl@gcc.gnu.org>
658         PR fortran/66128
659         * simplify.c (is_size_zero_array): New function to check for size
660         zero array.
661         (gfc_simplify_all, gfc_simplify_any, gfc_simplify_count,
662          gfc_simplify_iall, gfc_simplify_iany, gfc_simplify_iparity,
663          gfc_simplify_minval, gfc_simplify_maxval, gfc_simplify_norm2,
664          gfc_simplify_product, gfc_simplify_sum): Use it, and implement
665         requirements from F2018.
667 2018-03-03  Steven G. Kargl  <kargl@gcc.gnu.org>
669         PR fortran/51434
670         * simplify.c (gfc_simplify_transfer): Resolve mold.
672 2018-03-03  Paul Thomas  <pault@gcc.gnu.org>
674         PR fortran/80965
675         * resolve.c (build_loc_call): Change symtree name from 'loc' to
676         '_loc'.
678 2018-03-01  Paul Thomas  <pault@gcc.gnu.org>
680         PR fortran/84219
681         * target-memory.c (gfc_interpret_derived): Assert that BT_VOID
682         components are caf tokens.
683         (gfc_target_interpret_expr): Treat BT_VOID expressions as
684         integers.
686 2018-03-01  Paul Thomas  <pault@gcc.gnu.org>
688         PR fortran/84538
689         * class.c (class_array_ref_detected): Remove the condition that
690         there be no reference after the array reference.
691         (find_intrinsic_vtab): Remove excess whitespace.
692         * trans-array.c (gfc_conv_scalarized_array_ref): Rename 'tmp'
693         as 'base and call build_class_array_ref earlier.
695 2018-02-28  Paul Thomas  <pault@gcc.gnu.org>
697         PR fortran/83901
698         * trans-stmt.c (trans_associate_var): Make sure that the se
699         expression is a pointer type before converting it to the symbol
700         backend_decl type.
702 2018-02-25  Steven G. Kargl  <kargl@gcc.gnu.org>
704         PR fortran/83633
705         * decl.c (variable_decl): Check that an explicit-shape-array with
706         nonconstant bounds is allowed.
708 2018-02-25  Paul Thomas  <pault@gcc.gnu.org>
710         PR fortran/84523
711         * trans-intrinsic.c (gfc_conv_allocated): If the argument se
712         has a pre block, add it to the expression pre block.
714 2018-02-25  Thomas Koenig  <tkoenig@gcc.gnu.org>
716         PR fortran/78238
717         * gfortran.h (gfc_integer_4_kind): Define.
718         * resolve.c (resolve_select_type): Make sure that the
719         kind of c->high is gfc_integer_4_kind.
721 2018-02-24  Steven G. Kargl <kargl@gcc.gnu.org>
723         PR fortran/30792
724         * decl.c (gfc_match_data): Check for invalid substring in
725         data-implied-do
727 2018-02-23  Steven G. Kargl  <kargl@gcc.gnu.org>
729         * intrinsic.texi: Arguments to MATMUL cannot both be rank one.
731 2018-02-23  Steven G. Kargl  <kargl@gcc.gnu.org>
733         PR fortran/84511
734         * trans-io.c (transfer_expr): Deal with C_LOC in transfer statement.
736 2018-02-23  Steven G. Kargl  <kargl@gcc.gnu.org>
738         PR fortran/84346
739         * interface.c (compare_actual_formal): Issue error if keyword is
740         used in a statement function.
742 2018-02-23  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
744         PR fortran/84506
745         * trans-io.c (set_parameter_value_inquire): Adjust range check of
746         negative unit values for kind=8 units to the kind=4 negative limit.
748 2018-02-23  Paul Thomas  <pault@gcc.gnu.org>
750         PR fortran/83149
751         * trans-types.c (gfc_sym_type): Test sym->ns->proc_name before
752         accessing its components.
754 2018-02-23  Paul Thomas  <pault@gcc.gnu.org>
756         PR fortran/83149
757         * trans-decl.c (gfc_finish_var_decl): Test sym->ns->proc_name
758         before accessing its components.
760 2018-02-23  Paul Thomas  <pault@gcc.gnu.org>
762         PR fortran/83148
763         * trans-const.c : Clean up some whitespace issues.
764         * trans-expr.c (gfc_conv_initializer): If an iso_c_binding
765         derived type has a kind value of zero, set it to the default
766         integer kind.
768 2018-02-23  Janne Blomqvist  <jb@gcc.gnu.org>
770         PR fortran/84519
771         * trans-decl.c (gfc_build_builtin_function_decls): Add bool
772         argument to stop and error stop decls.
773         * trans-stmt.c (gfc_trans_stop): Add false value to argument
774         lists.
776 2018-02-22  Janne Blomqvist  <jb@gcc.gnu.org>
778         PR 78534
779         PR 84509
780         * trans-decl.c (gfc_build_builtin_function_decls): Pass
781         gfc_int8_type node to pause_numeric, size_type_node to
782         pause_string.
783         * trans-stmt.c (gfc_trans_pause): Likewise.
785 2018-02-22  Janne Blomqvist  <jb@gcc.gnu.org>
787         * gfortran.texi: Update Coarray API description.
788         * trans-decl.c (gfc_build_builtin_function_decls): Use size_t for
789         character lengths, int for exit codes.
790         (generate_coarray_sym_init): Use size_t for character length.
791         * trans-intrinsic.c (conv_co_collective): Likewise.
792         * trans-stmt.c (gfc_trans_lock_unlock): Likewise.
793         (gfc_trans_event_post_wait): Likewise.
794         (gfc_trans_sync): Likewise.
795         (gfc_trans_stop): Use size_t for character lengths, int for exit
796         codes.
798 2018-02-20  Thomas Koenig  <tkoenig@gcc.gnu.org>
800         PR fortran/48890
801         PR fortran/83823
802         * primary.c (gfc_convert_to_structure_constructor):
803         For a constant string constructor, make sure the length
804         is correct.
806 2018-02-19  Paul Thomas  <pault@gcc.gnu.org>
808         PR fortran/83344
809         PR fortran/83975
810         * resolve.c (resolve_assoc_var): Rearrange the logic for the
811         determination of the character length of associate names. If
812         the associate name is missing a length expression or the length
813         expression is not a constant and the target is not a variable,
814         make the associate name allocatable and deferred length.
815         * trans-decl.c (gfc_get_symbol_decl): Null the character length
816         backend_decl for deferred length associate names that are not
817         variables. Set 'length' to gfc_index_zero_node for character
818         associate names, whose character length is a PARM_DECL.
820 2018-02-19  Thomas Koenig  <tkoenig@gcc.gnu.org>
822         PR fortran/35339
823         * frontend-passes.c (traverse_io_block): Remove workaround for
824         PR 80945.
826 2018-02-19  Andre Vehreschild  <vehre@gcc.gnu.org>
828         * gfortran.texi: Document additional src/dst_type.  Fix some typos.
829         * trans-decl.c (gfc_build_builtin_function_decls): Declare the new
830         argument of _caf_*_by_ref () with * e { get, send, sendget }.
831         * trans-intrinsic.c (gfc_conv_intrinsic_caf_get): Add the type of the
832         data referenced when generating a call to caf_get_by_ref ().
833         (conv_caf_send): Same but for caf_send_by_ref () and
834         caf_sendget_by_ref ().
836 2018-02-18  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
838         PR fortran/84389
839         * io.c (check_format): Allow FMT_COLON.
841 2018-02-18  Paul Thomas  <pault@gcc.gnu.org>
843         PR fortran/80945
844         * trans-array.c (gfc_conv_expr_descriptor): Set parmtype from
845         the typenode in the case of deferred length characters.
847 2018-02-17  Thomas Koenig  <tkoenig@gcc.gnu.org>
849         PR fortran/84270
850         * frontend-passes (scalarized_expr):  If the expression
851         is an assumed size array, leave in the last reference
852         and pass AR_SECTION instead of AR_FULL to gfc_resolve
853         in order to avoid an error.
855 2018-02-17  Paul Thomas  <pault@gcc.gnu.org>
857         PR fortran/84115
858         * resolve.c (resolve_assoc_var): If a non-constant target expr.
859         has no string length expression, make the associate variable
860         into a deferred length, allocatable symbol.
861         * trans-decl.c (gfc_is_reallocatable_lhs): Add and use a ptr to
862         the symbol.
863         * trans-stmt.c (trans_associate_var): Null and free scalar
864         associate names that are allocatable. After assignment, remove
865         the allocatable attribute to prevent reallocation.
867 2018-02-16  Jakub Jelinek  <jakub@redhat.com>
869         PR fortran/84418
870         * trans-openmp.c (gfc_trans_omp_clauses): For OMP_CLAUSE_LINEAR_REF
871         kind set OMP_CLAUSE_LINEAR_STEP to TYPE_SIZE_UNIT times last_step.
873 2018-02-16  Dominique d'Humieres  <dominiq@gcc.gnu.org>
875         PR fortran/84354
876         * decl.c (gfc_get_pdt_instance): Replace '%qs' with %qs.
878 2018-02-15  Janus Weil  <janus@gcc.gnu.org>
880         PR fortran/84409
881         * interface.c (check_dtio_arg_TKR_intent): Add a check for character
882         length.
884 2018-02-14  Janus Weil  <janus@gcc.gnu.org>
886         PR fortran/84385
887         * match.c (gfc_match_select_type): Fix check for selector in
888         SELECT TYPE statement.
890 2018-02-13  Janus Weil  <janus@gcc.gnu.org>
892         PR fortran/84313
893         * symbol.c (check_conflict): Reject procedure pointers in common blocks.
895 2018-02-13  Alastair McKinstry  <alastair.mckinstry@sceal.ie>
896             Janne Blomqvist  <jb@gcc.gnu.org>
898         * module.c (dump_module): Use lbasename to ensure that module
899         files are reproducible.
901 2018-02-12  Janus Weil  <janus@gcc.gnu.org>
903         PR fortran/84273
904         * resolve.c (resolve_component): Fix checks of passed argument in
905         procedure-pointer components.
907 2018-02-11  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
909         PR fortran/35299
910         * resolve.c (resolve_formal_arglist): Update error message.
912 2018-02-11  Andre Vehreschild  <vehre@gcc.gnu.org>
914         * gfortran.texi: Fix typos in documentation of caf_register ().
915         * trans-array.c (structure_alloc_comps): Only register a component of
916         a derived typed corray, not of an ultimate component coarray.
918 2018-02-11  Steven G. Kargl  <kargl@gcc.gnu.org>
920         PR fortran/54223
921         PR fortran/84276
922         * interface.c (compare_actual_formal): Add in_statement_function
923         bool parameter.  Skip check of INTENT attribute for statement
924         functions.  Arguments to a statement function cannot be optional,
925         issue error for missing argument.
926         (gfc_procedure_use, gfc_ppc_use, gfc_arglist_matches_symbol): Use
927          in_statement_function.
929 2018-02-11  Paul Thomas  <pault@gcc.gnu.org>
931         PR fortran/84074
932         * trans-expr.c (gfc_conv_derived_to_class): Set the use_offset
933         flag. If the is a vector subscript or the expression is not a
934         variable, make the descriptor one-based.
936 2018-02-10  Paul Thomas  <pault@gcc.gnu.org>
938         PR fortran/84141
939         PR fortran/84155
940         * trans-array.c (gfc_array_init_size): Revert the change made
941         in revision 257356 setting the dtype.
942         * trans-types.c (gfc_get_dtype): Do not use the cached dtype.
943         Call gfc_get_dtype_rank_type every time.
945         PR fortran/56691
946         * trans-array.c (gfc_conv_expr_descriptor): If the source array
947         is a descriptor type, use its offset, removing the condition
948         that is be a class expression.
950 2018-02-07  Steven G. Kargl  <kargl@gcc.gnu.org>
952         PR fortran/82994
953         * match.c (gfc_match_deallocate): Check for NULL pointer.
955 2018-02-07  Thomas Koenig  <tkoenig@gcc.gnu.org>
957         PR fortran/68560
958         * trans-intrinsic.c (gfc_conv_intrinsic_shape): New function.
959         (gfc_conv_intrinsic_function): Call it.
961 2018-02-07  Steven G. Kargl  <kargl@gcc.gnu.org>
963         PR fortran/82049
964         * match.c (gfc_match_type_spec): If the charlen is non-NULL, then
965         try to resolve it.  While here return early if possible.
967 2018-02-04  Paul Thomas  <pault@gcc.gnu.org>
969         PR fortran/84115
970         * trans-decl.c (gfc_get_symbol_decl): Do not finish the decl of
971         'length' if the symbol charlen backend_decl is an indirect ref.
973 2018-02-03  Paul Thomas  <pault@gcc.gnu.org>
975         PR fortran/84141
976         PR fortran/84155
977         * trans-array.c (gfc_array_init_size): Instead of gfc_get_dtype
978         use gfc_get_dtype_rank_type.
980 2018-02-01  Janne Blomqvist  <jb@gcc.gnu.org>
982         PR 83975
983         PR 83344
984         * resolve.c (resolve_assoc_var): Generate an error if
985         target length unknown.
987 2018-02-01  Janne Blomqvist  <jb@gcc.gnu.org>
989         PR fortran/83705
990         * simplify.c (gfc_simplify_repeat): Increase limit for deferring
991         to runtime, print a warning message.
993 2018-01-31  Jakub Jelinek  <jakub@redhat.com>
995         PR fortran/84116
996         * openmp.c (gfc_match_omp_clauses): If all the linear
997         gfc_match_omp_variable_list calls failed, don't gfc_free_omp_namelist
998         nor set *head = NULL.  Formatting fixes.
1000 2018-01-31  Paul Thomas  <pault@gcc.gnu.org>
1002         PR fortran/84088
1003         * trans-expr.c (gfc_conv_procedure_call): If the parm expr is
1004         an address expression passed to an assumed rank dummy, convert
1005         to an indirect reference.
1007 2018-01-31  Thomas Koenig  <tkoenig@gcc.gnu.org>
1009         * dump-parse-tree.c (write_proc): Use sym_name (which may
1010         be sym->binding_label) instead of sym->name.
1012 2018-01-31  Janne Blomqvist  <jb@gcc.gnu.org>
1014         * trans-const.c (gfc_conv_string_init): Use gfc_charlen_t instead
1015         of int for slen.
1017 2018-01-31  Janne Blomqvist  <jb@gcc.gnu.org>
1019         PR fortran/78534
1020         * trans-expr.c (fill_with_spaces): Use memset instead of
1021         generating loop.
1022         (gfc_trans_string_copy): Improve opportunity to use builtins with
1023         constant lengths.
1025 2018-01-30  Jakub Jelinek  <jakub@redhat.com>
1027         PR debug/84131
1028         * trans-array.c (gfc_get_descriptor_offsets_for_info): Set *data_off
1029         to DATA_FIELD's offset rather than OFFSET_FIELD's offset.
1031 2018-01-30  Thomas Koenig  <tkoenig@gcc.gnu.org>
1033         PR fortran/84134
1034         * array.c (gfc_ref_dimen_size): Whitespace fixes.  If stride is
1035         zero, return false.
1037 2018-01-30  Thomas Koenig  <tkoenig@gcc.gnu.org>
1039         PR fortran/84133
1040         * frontend-passes (matmul_to_var_expr): Return early if
1041         in association list.
1042         (inline_matmul_assign): Likewise.
1044 2017-01-29  Thomas Koenig  <tkoenig@gcc.gnu.org>
1046         PR fortran/84073
1047         * resolve.c (resolve_component): Ensure BIND(C) character
1048         components have length one.
1049         (resolve_symbol): Likewise for variables.
1051 2018-01-27  Jakub Jelinek  <jakub@redhat.com>
1053         PR fortran/84065
1054         * decl.c (add_init_expr_to_sym): Ignore initializers for too large
1055         lengths.
1057 2018-01-26  Damian Rouson  <damian@sourceryinstitute.org>
1058             Alessandro Fanfarillo  <fanfarillo.gcc@gmail.com>
1059             Soren Rasmussen  <s.c.rasmussen@gmail.com>
1061         Partial support for Fortran 2018 teams features.
1063         * array.c (gfc_match_array_ref): add team attribute in coarray
1064         transfers.
1065         * check.c (gfc_check_get_team, gfc_check_team_number): add new
1066         functions for get_team and team_number.
1067         * dump-parse-tree.c (show_code_node): add new statements: form team,
1068         change team, end team, and sync team.
1069         * expr.c (gfc_find_team_co): add new function.
1070         * gfortran.h: add new statements.
1071         * intrinsic.c (add_functions): add get_team and team_number functions.
1072         * intrinsic.h: add get_team and team_number prototypes for check,
1073         simplify, and resolve.
1074         * iresolve.c (gfc_resolve_get_team, gfc_resolve_team_number): add new
1075         functions.
1076         * iso-fortran-env.def: add the team_type derived type.
1077         * match.c (gfc_match_if, gfc_match_form_team, gfc_match_team_number)
1078         (gfc_match_end_team, gfc_match_sync_team, gfc_match_change_team):
1079         add change team, end team, form team, sync team match and functions.
1080         * match.h: add new prototypes for change team, end team, form team,
1081         and sync team.
1082         * parse.c (decode_statement): add cases for change team, end team,
1083         form team, and sync team.
1084         * resolve.c: add cases for exec form team, change team, end team, and
1085         sync team.
1086         * simplify.c (gfc_simplify_get_team): add new function for get team.
1087         * st.c (gfc_free_statement): add cases exec for change team, end team,
1088         form team, sync team.
1089         * trans-decl.c (gfor_fndecl_caf_form_team)
1090         (gfor_fndecl_caf_change_team, gfor_fndecl_caf_end_team)
1091         (gfor_fndecl_caf_sync_team, gfor_fndecl_caf_get_team)
1092         (gfor_fndecl_caf_team_number): add functions and definitions.
1093         * trans-intrinsic.c (conv_caf_send, conv_intrinsic_team_number): add
1094         new function and team_type argument support.
1095         * trans-stmt.c (gfc_trans_form_team, gfc_trans_change_team)
1096         (gfc_trans_end_team, gfc_trans_sync_team): add new functions.
1097         * trans-stmt.h: add new prototypes.
1098         * trans-types.c (gfc_get_derived_type): check condition for team_type.
1099         * trans.c (trans_code): new exec cases for form team, change team, end
1100         team, and sync team.
1101         * trans.h: add new prototypes.
1103 2018-01-26  Steven G. Kargl  <kargl@gcc.gnu.org>
1105         PR fortran/83998
1106         * simplify.c (compute_dot_product):  Initialize result to INTEGER(1) 0
1107         or .false.  The summation does the correct type conversion.
1108         (gfc_simplify_dot_product): Special case zero-sized arrays.
1110 2018-25-01  Paul Thomas  <pault@gcc.gnu.org>
1112         PR fortran/37577
1113         * array.c (gfc_match_array_ref): If standard earlier than F2008
1114         it is an error if the reference dimension is greater than 7.
1115         libgfortran.h : Increase GFC_MAX_DIMENSIONS to 15. Change the
1116         dtype masks and shifts accordingly.
1117         * trans-array.c (gfc_conv_descriptor_dtype): Use the dtype
1118         type node to check the field.
1119         (gfc_conv_descriptor_dtype): Access the rank field of dtype.
1120         (duplicate_allocatable_coarray): Access the rank field of the
1121         dtype descriptor rather than the dtype itself.
1122         * trans-expr.c (get_scalar_to_descriptor_type): Store the type
1123         of 'scalar' on entry and use its TREE_TYPE if it is ARRAY_TYPE
1124         (ie. a character).
1125         (gfc_conv_procedure_call): Pass TREE_OPERAND (tmp,0) to
1126         get_scalar_to_descriptor_type if the actual expression is a
1127         constant.
1128         (gfc_trans_structure_assign): Assign the rank directly to the
1129         dtype rank field.
1130         * trans-intrinsic.c (gfc_conv_intrinsic_rank): Cast the result
1131         to default integer kind.
1132         (gfc_conv_intrinsic_sizeof): Obtain the element size from the
1133         'elem_len' field of the dtype.
1134         * trans-io.c (gfc_build_io_library_fndecls): Replace
1135         gfc_int4_type_node with dtype_type_node where necessary.
1136         (transfer_namelist_element): Use gfc_get_dtype_rank_type for
1137         scalars.
1138         * trans-types.c : Provide 'get_dtype_type_node' to acces the
1139         dtype_type_node and, if necessary, build it.
1140         The maximum size of an array element is now determined by the
1141         maximum value of size_t.
1142         Update the description of the array descriptor, including the
1143         type def for the dtype_type.
1144         (gfc_get_dtype_rank_type): Build a constructor for the dtype.
1145         Distinguish RECORD_TYPEs that are BT_DERIVED or BT_CLASS.
1146         (gfc_get_array_descriptor_base): Change the type of the dtype
1147         field to dtype_type_node.
1148         (gfc_get_array_descr_info): Get the offset to the rank field of
1149         the dtype.
1150         * trans-types.h : Add a prototype for 'get_dtype_type_node ()'.
1151         * trans.h : Define the indices of the dtype fields.
1153 2018-23-01  Paul Thomas  <pault@gcc.gnu.org>
1155         PR fortran/83866
1156         * decl.c (gfc_match_derived_decl): If eos not matched, recover
1157         and emit error about garbage after declaration.
1159 2018-23-01  Paul Thomas  <pault@gcc.gnu.org>
1161         PR fortran/83898
1162         * trans-stmt.c (trans_associate_var): Do not set cst_array_ctor
1163         for characters.
1165 2018-01-22  Janne Blomqvist  <jb@gcc.gnu.org>
1167         PR 78534
1168         PR 83704
1169         * arith.c (gfc_arith_concat): Use size_t for string length.
1170         (gfc_compare_string): Likewise.
1171         (gfc_compare_with_Cstring): Likewise.
1172         * array.c (gfc_resolve_character_array_constructor): Use
1173         HOST_WIDE_INT, gfc_mpz_get_hwi.
1174         * check.c (gfc_check_fe_runtime_error): Use size_t.
1175         * data.c (create_character_initializer): Use HOST_WIDE_INT,
1176         gfc_extract_hwi.
1177         * decl.c (gfc_set_constant_character_len): Use gfc_charlen_t.
1178         (add_init_expr_to_sym): Use HOST_WIDE_INT.
1179         * expr.c (gfc_build_init_expr): Use HOST_WIDE_INT,
1180         gfc_extract_hwi.
1181         (gfc_apply_init): Likewise.
1182         * match.h (gfc_set_constant_character_len): Update prototype.
1183         * primary.c (match_string_constant): Use size_t.
1184         * resolve.c (resolve_ordinary_assign): Use HOST_WIDE_INT,
1185         gfc_mpz_get_hwi.
1186         * simplify.c (init_result_expr): Likewise.
1187         (gfc_simplify_len_trim): Use size_t.
1188         * target-memory.c (gfc_encode_character): Use size_t.
1189         (gfc_target_encode_expr): Use HOST_WIDE_INT, gfc_mpz_get_hwi.
1190         (interpret_array): Use size_t.
1191         (gfc_interpret_character): Likewise.
1192         * target-memory.h (gfc_encode_character): Update prototype.
1193         (gfc_interpret_character): Likewise.
1194         (gfc_target_interpret_expr): Likewise.
1195         * trans-const.c (gfc_build_string_const): Use size_t for length
1196         argument.
1197         (gfc_build_wide_string_const): Likewise.
1198         * trans-const.h (gfc_build_string_const): Likewise.
1199         (gfc_build_wide_string_const): Likewise.
1201 2018-01-20  Steven G. Kargl  <kargl@gcc.gnu.org>
1203         PR fortran/83900
1204     * simplify.c (gfc_simplify_matmul): Set return type correctly.
1206 2018-01-19  Steven G. Kargl  <kargl@gcc.gnu.org>
1208         PR fortran/83900
1209         * simplify.c (gfc_simplify_matmul): Delete bogus assertion.
1211 2018-01-17  Harald Anlauf  <anlauf@gmx.de>
1213         PR fortran/83864
1214         * expr.c (add_init_expr_to_sym): Do not dereference NULL pointer.
1216 2018-01-17  Harald Anlauf  <anlauf@gmx.de>
1218         PR fortran/83874
1219         * decl.c (add_init_expr_to_sym): Do not dereference NULL pointer.
1221 2018-01-15  Louis Krupp  <louis.krupp@zoho.com>
1223         PR fortran/82257
1224         * interface.c (compare_rank): Don't try to retrieve CLASS_DATA
1225         from symbol marked unlimited polymorphic.
1226         * resolve.c (resolve_structure_cons): Likewise.
1227         * misc.c (gfc_typename): Don't dereference derived->components
1228         if it's NULL.
1230 2018-01-15  Thomas Koenig  <tkoenig@gcc.gnu.org>
1232         PR fortran/54613
1233         * gfortran.h (gfc_check_f): Rename f4ml to f5ml.
1234         (gfc_logical_4_kind): New macro
1235         * intrinsic.h (gfc_simplify_minloc): Add a gfc_expr *argument.
1236         (gfc_simplify_maxloc): Likewise.
1237         (gfc_resolve_maxloc): Likewise.
1238         (gfc_resolve_minloc): Likewise.
1239         * check.c (gfc_check_minloc_maxloc): Add checking for "back"
1240         argument; also raise error if it is used (for now). Add it
1241         if it isn't present.
1242         * intrinsic.c (add_sym_4ml): Rename to
1243         (add_sym_5ml), adjust for extra argument.
1244         (add_functions): Add "back" constant. Adjust maxloc and minloc
1245         for back argument.
1246         * iresolve.c (gfc_resolve_maxloc): Add back argument. If back is
1247         not of gfc_logical_4_kind, convert.
1248         (gfc_resolve_minloc): Likewise.
1249         * simplify.c (gfc_simplify_minloc): Add back argument.
1250         (gfc_simplify_maxloc): Likewise.
1251         * trans-intinsic.c (gfc_conv_intrinsic_minmaxloc): Rename last
1252         argument to %VAL to ensure passing by value.
1253         (gfc_conv_intrinsic_function): Call gfc_conv_intrinsic_minmaxloc
1254         also for library calls.
1256 2018-01-13  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
1258         PR fortran/82007
1259         * resolve.c (resolve_transfer): Delete code looking for 'DT'
1260         format specifiers in format strings. Set formatted to true if a
1261         format string or format label is present.
1262         * trans-io.c (get_dtio_proc): Likewise. (transfer_expr): Fix
1263         whitespace.
1265 2018-01-13  Thomas Koenig  <tkoenig@gcc.gnu.org>
1267         PR fortran/83744
1268         * dump-parse-tree.c (get_c_type_name): Remove extra line.
1269         Change for loop to use declaration in for loop. Handle BT_LOGICAL
1270         and BT_CHARACTER.
1271         (write_decl): Add where argument. Fix indentation. Replace
1272         assert with error message. Add typename to warning
1273         in comment.
1274         (write_type): Adjust locus to call of write_decl.
1275         (write_variable): Likewise.
1276         (write_proc): Likewise. Replace assert with error message.
1278 2018-01-13  Paul Thomas  <pault@gcc.gnu.org>
1280         PR fortran/52162
1281         * trans-expr.c (gfc_trans_scalar_assign): Flag is_alloc_lhs if
1282         the rhs expression is neither an elemental nor a conversion
1283         function.
1285         PR fortran/83622
1286         * trans-array.c (is_pointer_array): Remove unconditional return
1287         of false for -fopenmp.
1289 2018-01-13  Thomas Koenig  <tkoenig@gcc.gnu.org>
1290         <emsr@gcc.gnu.org>
1292         PR fortran/83803
1293         * dump-parse-tree.c (write_proc): Always emit closing parenthesis
1294         for functions.
1296 2018-01-10  Steven G. Kargl  <kargl@gcc.gnu.org>
1298         PR fortran/82367
1299         * resolve.c (resolve_allocate_expr): Check for NULL pointer.
1301 2018-01-10  Steven G. Kargl  <kargl@gcc.gnu.org>
1303         PR fortran/83093
1304         * resolve.c (resolve_charlen): Check the type of cl->length
1305         after resolution.
1307 2018-01-10  Janne Blomqvist  <jb@gcc.gnu.org>
1309         PR fortran/83740
1310         * trans-array.c (gfc_trans_array_ctor_element): Fix formatting.
1312 2018-01-10  Janne Blomqvist  <jb@gcc.gnu.org>
1314         PR fortran/83740
1315         * trans-array.c (gfc_trans_array_ctor_element): Convert RHS to the
1316         LHS type when assigning.
1318 2018-01-09  Steven G. Kargl  <kargl@gcc.gnu.org>
1320         PR fortran/83742
1321         * expr.c (gfc_is_simply_contiguous): Check for NULL pointer.
1323 2018-01-08  Steven G. Kargl  <kargl@gcc.gnu.org>
1325         * match.c (gfc_match_allocate): Check for NULL pointer.
1327 2018-01-08  Steven G. Kargl  <kargl@gcc.gnu.org>
1329         * expr.c (gfc_check_pointer_assign): Fix typo in comment.
1331 2018-01-08  Paul Thomas  <pault@gcc.gnu.org>
1333         PR fortran/83611
1334         * decl.c (gfc_get_pdt_instance): If parameterized arrays have
1335         an initializer, convert the kind parameters and add to the
1336         component if the instance.
1337         * trans-array.c (structure_alloc_comps): Add 'is_pdt_type' and
1338         use it with case COPY_ALLOC_COMP. Call 'duplicate_allocatable'
1339         for parameterized arrays. Clean up typos in comments. Convert
1340         parameterized array initializers and copy into the array.
1341         * trans-expr.c (gfc_trans_scalar_assign): Do a deep copy for
1342         parameterized types.
1343         *trans-stmt.c (trans_associate_var): Deallocate associate vars
1344         as necessary, when they are PDT function results for example.
1346         PR fortran/83731
1347         * trans-array.c (structure_alloc_comps): Only compare len parms
1348         when they are declared explicitly.
1350 2018-01-06  Janne Blomqvist  <jb@gcc.gnu.org>
1352         PR fortran/50892
1353         * trans-expr.c (gfc_trans_pointer_assignment): fold_convert rhs to
1354         lhs type.
1356 2018-01-05  Janne Blomqvist  <jb@gcc.gnu.org>
1358         PR fortran/78534
1359         PR fortran/66310
1360         * array.c (got_charlen): Use gfc_charlen_int_kind.
1361         * class.c (gfc_find_derived_vtab): Use gfc_size_kind instead of
1362         hardcoded kind.
1363         (find_intrinsic_vtab): Likewise.
1364         * decl.c (match_char_length): Use gfc_charlen_int_kind.
1365         (add_init_expr_to_sym): Use gfc_charlen_t and gfc_charlen_int_kind.
1366         (gfc_match_implicit): Use gfc_charlen_int_kind.
1367         * dump-parse-tree.c (show_char_const): Use gfc_charlen_t and size_t.
1368         (show_expr): Use HOST_WIDE_INT_PRINT_DEC.
1369         * expr.c (gfc_get_character_expr): Length parameter of type
1370         gfc_charlen_t.
1371         (gfc_get_int_expr): Value argument of type HOST_WIDE_INT.
1372         (gfc_extract_hwi): New function.
1373         (simplify_const_ref): Make string_len of type gfc_charlen_t.
1374         (gfc_simplify_expr): Use HOST_WIDE_INT for substring refs.
1375         * frontend-passes.c (optimize_trim): Use gfc_charlen_int_kind.
1376         * gfortran.h (gfc_mpz_get_hwi): New prototype.
1377         (gfc_mpz_set_hwi): Likewise.
1378         (gfc_charlen_t): New typedef.
1379         (gfc_expr): Use gfc_charlen_t for character lengths.
1380         (gfc_size_kind): New extern variable.
1381         (gfc_extract_hwi): New prototype.
1382         (gfc_get_character_expr): Use gfc_charlen_t for character length.
1383         (gfc_get_int_expr): Use HOST_WIDE_INT type for value argument.
1384         * gfortran.texi: Update description of hidden string length argument.
1385         * iresolve.c (check_charlen_present): Use gfc_charlen_int_kind.
1386         (gfc_resolve_char_achar): Likewise.
1387         (gfc_resolve_repeat): Pass string length directly without
1388         temporary, use gfc_charlen_int_kind.
1389         (gfc_resolve_transfer): Use gfc_charlen_int_kind.
1390         * match.c (select_intrinsic_set_tmp): Use HOST_WIDE_INT for charlen.
1391         * misc.c (gfc_mpz_get_hwi): New function.
1392         (gfc_mpz_set_hwi): New function.
1393         * module.c (atom_int): Change type from int to HOST_WIDE_INT.
1394         (parse_integer): Don't complain about large integers.
1395         (write_atom): Use HOST_WIDE_INT for integers.
1396         (mio_integer): Handle integer type mismatch.
1397         (mio_hwi): New function.
1398         (mio_intrinsic_op): Use HOST_WIDE_INT.
1399         (mio_array_ref): Likewise.
1400         (mio_expr): Likewise.
1401         * primary.c (match_substring): Use gfc_charlen_int_kind.
1402         * resolve.c (resolve_substring_charlen): Use gfc_charlen_int_kind.
1403         (resolve_character_operator): Likewise.
1404         (resolve_assoc_var): Likewise.
1405         (resolve_select_type): Use HOST_WIDE_INT for charlen, use snprintf.
1406         (resolve_charlen): Use mpz_sgn to determine sign.
1407         * simplify.c (gfc_simplify_repeat): Use HOST_WIDE_INT/gfc_charlen_t
1408         instead of long.
1409         * symbol.c (generate_isocbinding_symbol): Use gfc_charlen_int_kind.
1410         * target-memory.c (size_character): Length argument of type
1411         gfc_charlen_t.
1412         (gfc_encode_character): Likewise.
1413         (gfc_interpret_character): Use gfc_charlen_t.
1414         * target-memory.h (gfc_encode_character): Modify prototype.
1415         * trans-array.c (gfc_trans_array_ctor_element): Use existing type.
1416         (get_array_ctor_var_strlen): Use gfc_conv_mpz_to_tree_type.
1417         (trans_array_constructor): Use existing type.
1418         (get_array_charlen): Likewise.
1419         * trans-const.c (gfc_conv_mpz_to_tree_type): New function.
1420         * trans-const.h (gfc_conv_mpz_to_tree_type): New prototype.
1421         * trans-decl.c (gfc_trans_deferred_vars): Use existing type.
1422         (add_argument_checking): Likewise.
1423         * trans-expr.c (gfc_class_len_or_zero_get): Build const of type
1424         gfc_charlen_type_node.
1425         (gfc_conv_intrinsic_to_class): Use gfc_charlen_int_kind instead of
1426         4, fold_convert to correct type.
1427         (gfc_conv_class_to_class): Build const of type size_type_node for
1428         size.
1429         (gfc_copy_class_to_class): Likewise.
1430         (gfc_conv_string_length): Use same type in expression.
1431         (gfc_conv_substring): Likewise, use HOST_WIDE_INT for charlen.
1432         (gfc_conv_string_tmp): Make sure len is of the right type.
1433         (gfc_conv_concat_op): Use same type in expression.
1434         (gfc_conv_procedure_call): Likewise.
1435         (fill_with_spaces): Comment out memset() block due to spurious
1436         -Wstringop-overflow warnings.
1437         (gfc_trans_string_copy): Use gfc_charlen_type_node.
1438         (alloc_scalar_allocatable_for_subcomponent_assignment):
1439         fold_convert to right type.
1440         (gfc_trans_subcomponent_assign): Likewise.
1441         (trans_class_vptr_len_assignment): Build const of correct type.
1442         (gfc_trans_pointer_assignment): Likewise.
1443         (alloc_scalar_allocatable_for_assignment): fold_convert to right
1444         type in expr.
1445         (trans_class_assignment): Build const of correct type.
1446         * trans-intrinsic.c (gfc_conv_associated): Likewise.
1447         (gfc_conv_intrinsic_repeat): Do calculation in sizetype.
1448         * trans-io.c (gfc_build_io_library_fndecls): Use
1449         gfc_charlen_type_node for character lengths.
1450         (set_string): Convert to right type in assignment.
1451         * trans-stmt.c (gfc_trans_label_assign): Build const of
1452         gfc_charlen_type_node.
1453         (trans_associate_var): Likewise.
1454         (gfc_trans_character_select): Likewise.
1455         (gfc_trans_allocate): Likewise, don't typecast strlen result.
1456         (gfc_trans_deallocate): Don't typecast strlen result.
1457         * trans-types.c (gfc_size_kind): New variable.
1458         (gfc_init_types): Determine gfc_charlen_int_kind and gfc_size_kind
1459         from size_type_node.
1460         * trans-types.h: Fix comment.
1462 2018-01-04  Thomas Koenig  <tkoenig@gcc.gnu.org>
1464         PR fortran/83683
1465         PR fortran/45689
1466         * check.c (gfc_check_eoshift): Check for string length and
1467         for conformance of boundary.
1468         * intrinsic.c (add_functions): Add gfc_simplify_eoshift.
1469         * intrinsic.h: Add prototype for gfc_simplify_eoshift.
1470         * simplify.c (gfc_simplify_eoshift): New function.
1472 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
1473             Alan Hayward  <alan.hayward@arm.com>
1474             David Sherwood  <david.sherwood@arm.com>
1476         * trans-types.c (gfc_type_for_mode): Handle MODE_VECTOR_BOOL.
1478 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
1479             Alan Hayward  <alan.hayward@arm.com>
1480             David Sherwood  <david.sherwood@arm.com>
1482         * trans-types.c (gfc_type_for_mode): Check valid_vector_subparts_p.
1484 2018-01-03  Thomas Koenig  <tkoenig@gcc.gnu.org>
1486         PR fortran/83664
1487         * check.c (gfc_check_eoshift): Error for missing boundary if array
1488         is not one of the standard types.
1490 2018-01-03  Jakub Jelinek  <jakub@redhat.com>
1492         Update copyright years.
1494         * gfortranspec.c (lang_specific_driver): Update copyright notice
1495         dates.
1496         * gfc-internals.texi: Bump @copying's copyright year.
1497         * gfortran.texi: Ditto.
1498         * intrinsic.texi: Ditto.
1499         * invoke.texi: Ditto.
1501 2017-01-02  Thomas Koenig  <tkoenig@gcc.gnu.org>
1503         PR fortran/45689
1504         * intrinsic.c (add_function): Add gfc_simplify_maxloc and
1505         gfc_simplify_minloc to maxloc and minloc, respectively.
1506         * intrinsic.h: Add prototypes for gfc_simplify_minloc
1507         and gfc_simplify_maxloc.
1508         * simplify.c (min_max_chose): Adjust prototype.  Modify function
1509         to have a return value which indicates if the extremum was found.
1510         (is_constant_array_expr): Fix typo in comment.
1511         (simplify_minmaxloc_to_scalar): New function.
1512         (simplify_minmaxloc_nodim): New function.
1513         (new_array): New function.
1514         (simplify_minmaxloc_to_array): New function.
1515         (gfc_simplify_minmaxloc): New function.
1516         (simplify_minloc): New function.
1517         (simplify_maxloc): New function.
1519 2018-01-02  Thomas Koenig  <tkoenig@gcc.gnu.org>
1521         PR fortran/45689
1522         PR fortran/83650
1523         * simplify.c (gfc_simplify_cshift): Re-implement to allow full
1524         range of arguments.
1526 2018-01-01  Paul Thomas  <pault@gcc.gnu.org>
1528         PR fortran/83076
1529         * resolve.c (resolve_fl_derived0): Add caf_token fields for
1530         allocatable and pointer scalars, when -fcoarray selected.
1531         * trans-types.c (gfc_copy_dt_decls_ifequal): Copy the token
1532         field as well as the backend_decl.
1533         (gfc_get_derived_type): Flag GFC_FCOARRAY_LIB for module
1534         derived types that are not vtypes. Components with caf_token
1535         attribute are pvoid types. For a component requiring it, find
1536         the caf_token field and have the component token field point to
1537         its backend_decl.
1539         PR fortran/83319
1540         *trans-types.c (gfc_get_array_descriptor_base): Add the token
1541         field to the descriptor even when codimen not set.
1543 Copyright (C) 2018 Free Software Foundation, Inc.
1545 Copying and distribution of this file, with or without modification,
1546 are permitted in any medium without royalty provided the copyright
1547 notice and this notice are preserved.