gfortran.h (gfc_symbol): Add pointer to next derived type.
[gcc.git] / gcc / fortran / ChangeLog
1 2018-07-20 Andrew Benson <abenson@carnegiescience.edu>
2
3 * gfortran.h (gfc_symbol): Add pointer to next derived type.
4 (gfc_dt_list, gfc_get_dt_list): Remove.
5 (gfc_namespace): Replace gfc_dt_list with gfc_symbol.
6 * parse.c (resolve_all_program_units): Replace gfc_free_dt_list() with
7 simple nullification of gfc_derived_types.
8 * resolve.c (resolve_global_procedure): Replace gfc_dt_list with
9 gfc_symbol.
10 (add_dt_to_dt_list): Change derived type linked list insertion to
11 utilize dt_next pointers in gfc_symbol.
12 * symbol.c (gfc_new_symbol, gfc_free_dt_list, gfc_symbol_done2)
13 (get_iso_c_binding_dt, generate_isocbinding_symbol): Remove
14 gfc_free_dt_list as gfc_dt_list is obsoleted. Change derived type
15 linked list search/insertion to utilize dt_next pointers in gfc_symbol.
16 * trans-types.c (gfc_get_derived_type): Change derived type linked
17 list search to utilize dt_next pointers in gfc_symbol.
18
19 2018-07-19 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
20
21 * trans-intrinsic.c: (gfc_conv_intrinsic_minmax): Emit MIN_MAX_EXPR
22 or IFN_FMIN/FMAX sequence to calculate the min/max when possible.
23
24 2018-07-18 Janus Weil <janus@gcc.gnu.org>
25 Thomas Koenig <tkoenig@gcc.gnu.org>
26
27 PR fortran/85599
28 * dump-parse-tree.c (show_attr): Add handling of implicit_pure.
29 * frontend-passes.c (do_warn_function_elimination): Do not warn for
30 pure functions.
31 * gfortran.h: Add prototypes for gfc_pure_function and
32 gfc_implicit_pure_function.
33 * gfortran.texi: Add chapter on evaluation of logical expressions.
34 * invoke.texi: Mention that -Wfunction-elimination is implied
35 by -Wextra.
36 * lang.opt: Make -Wextra imply -Wfunction-elimination.
37 * resolve.c (pure_function): Rename to gfc_pure_function.
38 (gfc_implicit_pure_function): New function.
39 (check_pure_function): Use it here.
40 (impure_function_callback): New function.
41 (resolve_operator): Call it via gfc_expr_walker.
42
43 2018-07-16 Fritz Reese <fritzoreese@gmail.com>
44
45 PR fortran/83184
46 * decl.c (match_old_style_init): Initialize locus of variable expr when
47 creating a data variable.
48 (match_clist_expr): Verify array is explicit shape/size before
49 attempting to allocate constant array constructor.
50
51 2018-07-16 Fritz Reese <fritzoreese@gmail.com>
52
53 PR fortran/86417
54 * module.c (mio_component): Set component->loc when loading from module.
55
56 2018-07-10 Jakub Jelinek <jakub@redhat.com>
57
58 PR fortran/86421
59 * module.c (omp_declare_simd_clauses): Add LINEAR with _REF, _VAL and
60 _UVAL suffixes.
61 (mio_omp_declare_simd): Save and restore ref, val and uval modifiers
62 on linear clauses. Initialize n->where to gfc_current_locus.
63
64 2018-07-05 Paul Thomas <pault@gcc.gnu.org>
65
66 PR fortran/86408
67 * resolve.c.c (resolve_contained_fntype): Reference to C418 is
68 in F2008 and not F2003.
69 (resolve_function): Ditto in error message. Also, exclude
70 deferred character length results from the error.
71
72 2018-07-05 Fritz Reese <fritzoreese@gmail.com>
73
74 PR fortran/83183
75 PR fortran/86325
76 * expr.c (class_allocatable, class_pointer, comp_allocatable,
77 comp_pointer): New helpers.
78 (component_initializer): Generate EXPR_NULL for allocatable or pointer
79 components. Do not generate initializers for components within BT_CLASS.
80 Do not assign to comp->initializer.
81 (gfc_generate_initializer): Use new helpers; move code to generate
82 EXPR_NULL for class allocatable components into component_initializer().
83
84 2018-07-04 Jerry DeLisle <jvdelisle@gcc.gnu.org>
85
86 PR fortran/82009
87 * trans-decl.c (gfc_process_block_locals): Delete assert and set
88 saved_local_decls = NULL_TREE.
89
90 2018-07-02 Richard Biener <rguenther@suse.de>
91
92 PR lto/86321
93 * trans-types.c (gfc_get_array_type_bounds): Unshare TYPE_FIELDs
94 for the distinct type copy.
95
96 2018-07-02 Paul Thomas <pault@gcc.gnu.org>
97
98 PR fortran/82969
99 PR fortran/86242
100 * trans-array.c (structure_alloc_comps): Do not explicitly copy
101 procedure pointer components.
102
103 2018-07-02 Paul Thomas <pault@gcc.gnu.org>
104
105 PR fortran/45305
106 * expr.c : Add a prototype for scalarize_intrinsic_call.
107 (gfc_simplify_expr): Use scalarize_intrinsic_call for elemental
108 intrinsic function calls.
109 (scalarize_intrinsic_call): Add 'init_flag' argument. Check if
110 the expression or any of the actual argument expressions are
111 NULL. Before calling gfc_check_init_expr, check 'init_flag'.
112 Only simplify the scalarized expressions if there are no errors
113 on the stack.
114 (gfc_check_init_expr): Set 'init_flag' true in the call to
115 scalarize_intrinsic_call.
116
117 2018-06-28 Fritz Reese <fritzoreese@gmail.com>
118
119 PR fortran/82865
120 * decl.c (gfc_match_type): Refactor and check for PDT declarations.
121
122 2018-06-28 Martin Liska <mliska@suse.cz>
123
124 * gfortranspec.c: Include opt-suggestions.h.
125
126 2018-06-25 Fritz Reese <fritzoreese@gmail.com>
127
128 PR fortran/82972
129 PR fortran/83088
130 PR fortran/85851
131 * expr.c (component_initializer): Assign init expr to c->initializer.
132 (generate_isocbinding_initializer): New.
133 (gfc_generate_initializer): Call generate_isocbinding_initializer to
134 generate initializers for c_ptr and c_funptr with -finit-derived.
135
136 2018-06-23 Jerry DeLisle <jvdelisle@gcc.gnu.org>
137
138 PR fortran/85983
139 * interface.c (check_dtio_interface1): Delete assert.
140
141 2018-06-22 Paul Thomas <pault@gcc.gnu.org>
142 Rainer Orth <ro@gcc.gnu.org>
143
144 PR fortran/86281
145 * resolve.c (resolve_contained_fntype): Check for the charlen
146 before testing the length.
147
148 2018-06-21 Paul Thomas <pault@gcc.gnu.org>
149
150 PR fortran/49630
151 * resolve.c (resolve_contained_fntype): Change standard ref.
152 from F95 to F2003: C418. Correct a spelling error in a comment.
153 It is an error for an abstract interface to have an assumed
154 character length result.
155 * trans-expr.c (gfc_conv_procedure_call): Likewise change the
156 standard reference.
157
158 2018-06-21 Paul Thomas <pault@gcc.gnu.org>
159
160 PR fortran/83118
161 * resolve.c (resolve_ordinary_assign): Force the creation of a
162 vtable for assignment of non-polymorphic expressions to an
163 unlimited polymorphic object.
164 * trans-array.c (gfc_alloc_allocatable_for_assignment): Use the
165 size of the rhs type for such assignments. Set the dtype, _len
166 and vptrs appropriately.
167 * trans-expr.c (gfc_trans_assignment): Force the use of the
168 _copy function for these assignments.
169
170 2018-06-20 Chung-Lin Tang <cltang@codesourcery.com>
171 Thomas Schwinge <thomas@codesourcery.com>
172 Cesar Philippidis <cesar@codesourcery.com>
173
174 * gfortran.h (gfc_omp_clauses): Add unsigned if_present, finalize
175 bitfields.
176 * openmp.c (enum omp_mask2): Remove OMP_CLAUSE_PRESENT_OR_*. Add
177 OMP_CLAUSE_{IF_PRESENT,FINALIZE}.
178 (gfc_match_omp_clauses): Update handling of copy, copyin, copyout,
179 create, deviceptr, present_of_*. Add support for finalize and
180 if_present.
181 (OACC_PARALLEL_CLAUSES): Remove PRESENT_OR_* clauses.
182 (OACC_KERNELS_CLAUSES): Likewise.
183 (OACC_DATA_CLAUSES): Likewise.
184 (OACC_DECLARE_CLAUSES): Likewise.
185 (OACC_UPDATE_CLAUSES): Add IF_PRESENT clause.
186 (OACC_ENTER_DATA_CLAUSES): Remove PRESENT_OR_* clauses.
187 (OACC_EXIT_DATA_CLAUSES): Add FINALIZE clause.
188 (gfc_match_oacc_declare): Update to OpenACC 2.5 semantics.
189 * trans-openmp.c (gfc_trans_omp_clauses): Add support for IF_PRESENT
190 and FINALIZE.
191
192 2018-06-18 Eric Botcazou <ebotcazou@adacore.com>
193
194 * trans-decl.c (gfc_get_fake_result_decl): Revert latest change.
195
196 2018-06-17 Eric Botcazou <ebotcazou@adacore.com>
197
198 * trans-decl.c (nonlocal_dummy_decl_pset): Delete.
199 (nonlocal_dummy_decls): Likewise.
200 (gfc_nonlocal_dummy_array_decl): Likewise.
201 (gfc_get_symbol_decl): Do not call gfc_nonlocal_dummy_array_decl.
202 (gfc_get_fake_result_decl): Do not generate a new DECL if simply
203 reusing the result of a recursive call.
204 (gfc_generate_function_code): Do not create, insert and destroy
205 nonlocal_dummy_decls.
206
207 2018-06-13 Steven G. Kargl <kargl@gcc.gnu.org>
208
209 PR fortran/86110
210 * array.c (gfc_resolve_character_array_constructor): Avoid NULL
211 pointer dereference.
212
213 2018-06-13 Cesar Philippidis <cesar@codesourcery.com>
214
215 PR fortran/85703
216 * parse.c (decode_oacc_directive): Set gfc_matching_function
217 to false.
218 (decode_omp_directive): Likewise.
219
220 2018-06-13 Cesar Philippidis <cesar@codesourcery.com>
221
222 PR fortran/85702
223 * openmp.c (gfc_match_oacc_wait): Use %C to report error location.
224
225 2018-06-12 David Malcolm <dmalcolm@redhat.com>
226
227 PR other/69968
228 * misc.c (gfc_closest_fuzzy_match): Update for renaming of
229 levenshtein_distance to get_edit_distance.
230
231 2018-06-12 Steven G. Kargl <kargl@gcc.gnu.org>
232
233 PR fortran/44491
234 * expr.c (gfc_check_assign): Select non-NULL locus.
235
236 2018-06-11 Janus Weil <janus@gcc.gnu.org>
237
238 PR fortran/45521
239 * interface.c (compare_ptr_alloc): New function.
240 (generic_correspondence): Call it.
241
242 2018-06-10 Thomas Koenig <tkoenig@gcc.gnu.org>
243
244 * gfortran.h (gfc_expr): Add no_bounds_check field.
245 * frontend-passes.c (get_array_inq_function): Set no_bounds_check
246 on function and function argument.
247 (inline_matmul_assign): Set no_bounds_check on zero expression
248 and on lhs of zero expression.
249 Also handle A1B2 case if realloc on assigment is active.
250 * trans-array.c (gfc_conv_array_ref): Don't do range checking
251 if expr has no_bounds_check set.
252 (gfc_conv_expr_descriptor): Set no_bounds_check on ss if expr
253 has it set.
254 * trans-expr.c (gfc_trans_assignment_1): Set no_bounds_check
255 on lss and lss if the corresponding expressions have it set.
256
257 2018-06-10 Dominique d'Humieres <dominiq@gcc.gnu.org>
258
259 PR fortran/79854
260 * trans-const.c: Remove include "diagnostic-core.h".
261 (gfc_conv_constant_to_tree): Replace fatal_error with gcc_unreachable.
262
263 2018-06-10 Janus Weil <janus@gcc.gnu.org>
264
265 PR fortran/85088
266 * decl.c (match_attr_spec): Synchronize the DECL_* enum values with the
267 INTENT_* values from the enum 'sym_intent'. Call 'match_intent_spec'
268 and remove a TODO note.
269 * gfortran.h: Add a comment to sym_intent.
270
271 2018-06-09 Steven G. Kargl <kargl@gcc.gnu.org>
272
273 PR fortran/38351
274 * resolve.c (resolve_operator): Provide better error message for
275 derived type entity used in an binary intrinsic numeric operator.
276
277 2018-06-09 Steven G. Kargl <kargl@gcc.gnu.org>
278
279 PR fortran/85138
280 PR fortran/85996
281 PR fortran/86051
282 * decl.c (gfc_match_char_spec): Use private namespace in attempt to
283 reduce a charlen to a constant.
284
285 2018-06-09 Steven G. Kargl <kargl@gcc.gnu.org>
286
287 PR fortran/78278
288 * data.c (gfc_assign_data_value): Re-arrange code to allow for
289 an error for double initialization of CHARACTER entities.
290
291 2018-06-09 Steven G. Kargl <kargl@gcc.gnu.org>
292
293 PR fortran/63514
294 * symbol.c (gfc_add_volatile): Enforce F2008:C1282 and F2018:C1588.
295
296 2018-06-08 Thomas Koenig <tkoenig@gcc.gnu.org>
297
298 PR fortran/85631
299 * trans.h (gfc_ss): Add field no_bounds_check.
300 * trans-array.c (gfc_conv_ss_startstride): If flag_realloc_lhs and
301 ss->no_bounds_check is set, do not use runtime checks.
302 * trans-expr.c (gfc_trans_assignment_1): Set lss->no_bounds_check
303 for reallocatable lhs.
304
305 2018-06-08 Steven G. Kargl <kargl@gcc.gnu.org>
306
307 PR fortran/86059
308 * array.c (match_array_cons_element): NULL() cannot be in an
309 array constructor.
310
311 2018-06-08 Steven G. Kargl <kargl@gcc.gnu.org>
312
313 PR fortran/78571
314 * data.c (create_character_initializer): Return early if type is
315 incompatible with CHARACTER.
316
317 2018-06-07 Steven G. Kargl <kargl@gcc.gnu.org>
318
319 PR fortran/86045
320 * simplify.c (gfc_simplify_mod): Re-arrange code to test whether
321 'P' is zero and issue an error if it is.
322
323 2018-06-06 Thomas Koenig <tkoenig@gcc.gnu.org>
324
325 PR fortran/85641
326 * frontend-passes.c (is_fe_temp): Add prototype.
327 (realloc_string_callback): Early return for frontend-generated
328 temporary.
329
330 2018-06-05 Cesar Philippidis <cesar@codesourcery.com>
331
332 PR fortran/85701
333
334 * openmp.c (gfc_resolve_oacc_declare): Error on functions and
335 subroutine data clause arguments.
336
337 2018-06-04 Steven G. Kargl <kargl@gcc.gnu.org>
338
339 PR fortran/85981
340 * resolve.c (resolve_allocate_deallocate): Check errmsg is default
341 character kind.
342
343 2018-06-03 Paul Thomas <pault@gcc.gnu.org>
344
345 PR fortran/36497
346 * decl.c (variable_decl): Use gfc_add_type for cray pointees.
347
348 2018-06-01 Steven G. Kargl <kargl@gcc.gnu.org>
349
350 PR fortran/63570
351 * check.c (gfc_check_random_init): New function. Check arguments of
352 RANDOM_INIT.
353 * gfortran.h (GFC_ISYM_RANDOM_INIT): New enum token.
354 * intrinsic.c (add_subroutines): Add RANDOM_INIT to list of
355 subroutines.
356 (gfc_check_intrinsic_standard): Introduce Fortran 2018 check.
357 * intrinsic.h: Add prototypes for gfc_check_random_init and
358 gfc_resolve_random_init
359 * intrinsic.texi: Document new intrinsic subprogram.
360 * iresolve.c (gfc_resolve_random_init): Resolve routine name.
361 * trans-decl.c: Declare gfor_fndecl_random_init
362 * trans-intrinsic.c (conv_intrinsic_random_init): New function.
363 Translate call to RANDOM_INIT.
364 (gfc_conv_intrinsic_subroutine): Call it.
365 * trans.h: Declare gfor_fndecl_random_init
366
367 2018-05-27 Steven G. Kargl <kargl@gcc.gnu.org>
368
369 * decl.c (match_data_constant): Fortran 2018 allows pointer
370 initialization in a data statement.
371
372 2018-05-25 Janus Weil <janus@gcc.gnu.org>
373
374 PR fortran/85839
375 * match.c (gfc_match_block_data): Call gfc_notify_std to warn about
376 an obsolescent feature in Fortran 2018.
377 (gfc_match_equivalence): Ditto.
378 * resolve.c (resolve_common_blocks): Ditto.
379 (gfc_resolve_forall): Ditto.
380 * symbol.c (gfc_define_st_label): Ditto.
381
382 2018-05-24 Steven G. Kargl <kargl@gcc.gnu.org>
383
384 PR fortran/85543
385 * resolve.c (update_current_proc_array_outer_dependency): Avoid NULL
386 pointer dereference.
387
388 2018-05-24 Steven G. Kargl <kargl@gcc.gnu.org>
389
390 PR fortran/85780
391 * resolve.c (resolve_fl_procedure): Avoid NULL dereference.
392
393 2018-05-24 Steven G. Kargl <kargl@gcc.gnu.org>
394
395 PR fortran/85779
396 * decl.c (gfc_match_derived_decl): Fix NULL point dereference.
397
398 2018-05-24 Steven G. Kargl <kargl@gcc.gnu.org>
399
400 PR fortran/85895
401 * resolve.c (resolve_sync): Resolve expression before checking for
402 an error.
403
404 2018-05-22 Janus Weil <janus@gcc.gnu.org>
405
406 PR fortran/85841
407 * libgfortran.h: Remove the macros GFC_STD_F2008_TS and
408 GFC_STD_OPT_F08TS.
409 * error.c (notify_std_msg): Remove GFC_STD_F2008_TS.
410 * options.c (set_default_std_flags): Ditto.
411 (gfc_handle_option): Make -std=f2008ts an alias for -std=f2018.
412 * array.c (gfc_match_array_spec): Replace GFC_STD_F2008_TS by
413 GFC_STD_F2018.
414 * check.c (gfc_check_atomic, gfc_check_event_query,
415 gfc_check_c_f_pointer, gfc_check_c_f_procpointer, gfc_check_c_funloc,
416 gfc_check_c_loc, gfc_check_num_images, gfc_check_this_image): Ditto.
417 * decl.c (gfc_verify_c_interop_param, gfc_match_decl_type_spec): Ditto.
418 * intrinsic.c (add_functions, add_subroutines,
419 gfc_check_intrinsic_standard): Ditto.
420 * iso-c-binding.def: Ditto.
421 * iso-fortran-env.def: Ditto.
422 * match.c (gfc_match_event_post, gfc_match_event_wait,
423 gfc_match_fail_image, gfc_match_form_team, gfc_match_change_team,
424 gfc_match_end_team, gfc_match_sync_team): Ditto.
425 * gfortran.texi: Remove mention of -std=f2008ts.
426 Move TSs into F2018 section.
427 * invoke.texi: Update documentation of -std=f2008ts.
428
429 2018-05-21 Janus Weil <janus@gcc.gnu.org>
430
431 PR fortran/85841
432 * libgfortran.h: New macros GFC_STD_OPT_*.
433 * error.c (notify_std_msg): New function.
434 (gfc_notify_std): Adjust such that it can handle combinations of
435 GFC_STD_* flags in the 'std' argument, not just a single one.
436 * match.c (match_arithmetic_if, gfc_match_if): Reject arithmetic if
437 in Fortran 2018.
438 (gfc_match_stopcode): Use GFC_STD_OPT_* macros.
439 * options.c (set_default_std_flags): Warn for F2018 deleted features
440 by default.
441 (gfc_handle_option): F2018 deleted features are allowed in earlier
442 standards.
443 * symbol.c (gfc_define_st_label, gfc_reference_st_label): Reject
444 nonblock do constructs in Fortran 2018.
445
446 2018-05-20 Paul Thomas <pault@gcc.gnu.org>
447
448 PR fortran/80657
449 * resolve.c (flag_fn_result_spec): Use the 'sym' argument to
450 test for self refs to the function result in the character len
451 expression. If a self reference is found, emit an error and
452 return true.
453 (resolve_fntype): Use the function symbol in the calls to the
454 above.
455
456 2018-05-20 Paul Thomas <pault@gcc.gnu.org>
457
458 PR fortran/49636
459 * trans-array.c (gfc_get_array_span): Renamed from
460 'get_array_span'.
461 (gfc_conv_expr_descriptor): Change references to above.
462 * trans-array.h : Add prototype for 'gfc_get_array_span'.
463 * trans-intrinsic.c (gfc_conv_associated): Add pre and post
464 blocks for 'arg1'.
465 * trans-stmt.c (trans_associate_var): If the associate name is
466 a subref array pointer, use gfc_get_array_span for the span.
467
468 2018-05-20 Paul Thomas <pault@gcc.gnu.org>
469
470 PR fortran/82275
471 * match.c (gfc_match_type_spec): Go through the array ref and
472 decrement 'rank' for every dimension that is an element.
473
474 2018-05-19 Paul Thomas <pault@gcc.gnu.org>
475
476 PR fortran/82923
477 PR fortran/66694
478 PR fortran/82617
479 * trans-array.c (gfc_alloc_allocatable_for_assignment): Set the
480 charlen backend_decl of the rhs expr to ss->info->string_length
481 so that the value in the current scope is used.
482
483 2018-05-13 Steven G. Kargl <kargl@gcc.gnu.org>
484
485 PR fortran/63529
486 * gfortran.texi: Clarify documentation for Cray pointer and
487 assumed-sized array.
488
489 2018-05-13 Paul Thomas <pault@gcc.gnu.org>
490
491 PR fortran/85742
492 * trans-types.c (gfc_get_dtype_rank_type): Reorder evaluation
493 of 'size'. If the element type is a pointer use the size of the
494 TREE_TYPE of the type, unless it is VOID_TYPE. In this latter
495 case, set the size to zero.
496
497 2018-05-13 Steven G. Kargl <kargl@gcc.gnu.org>
498
499 * gfortran.h: Remove prototype.
500 * symbol.c (gfc_new_undo_checkpoint): Remove unused function.
501
502 2018-05-11 Steven G. Kargl <kargl@gcc.gnu.org>
503
504 PR fortran/85542
505 * expr.c (check_inquiry): Avoid NULL pointer dereference.
506
507 2018-05-10 Steven G. Kargl <kargl@gcc.gnu.org>
508
509 PR fortran/85687
510 * check.c (gfc_check_rank): Check that the argument is a data object.
511
512 2018-05-10 Steven G. Kargl <kargl@gcc.gnu.org>
513
514 PR fortran/85521
515 * array.c (gfc_resolve_character_array_constructor): Substrings
516 with upper bound smaller than lower bound are zero length strings.
517
518 2018-05-10 Steven G. Kargl <kargl@gcc.gnu.org>
519
520 PR fortran/70870
521 * data.c (gfc_assign_data_value): Check that a data object does
522 not also have default initialization.
523
524 2018-05-10 Marek Polacek <polacek@redhat.com>
525
526 PR fortran/85735
527 * options.c (gfc_post_options): Set main_input_filename.
528
529 2018-05-10 Thomas Koenig <tkoenig@gcc.gnu.org>
530
531 PR fortran/54613
532 * intrinsic.texi: Document BACK for MINLOC and MAXLOC.
533
534 2018-05-10 Paul Thomas <pault@gcc.gnu.org>
535
536 PR fortran/68846
537 PR fortran/70864
538 * resolve.c (get_temp_from_expr): The temporary must not have
539 dummy or intent attributes.
540
541 2018-05-08 Thomas Koenig <tkoenig@gcc.gnu.org>
542
543 PR fortran/54613
544 * check.c (gfc_check_minmaxloc): Remove error for BACK not being
545 implemented. Use gfc_logical_4_kind for BACK.
546 * simplify.c (min_max_choose): Add optional argument back_val.
547 Handle it.
548 (simplify_minmaxloc_to_scalar): Add argument back_val. Pass
549 back_val to min_max_choose.
550 (simplify_minmaxloc_to_nodim): Likewise.
551 (simplify_minmaxloc_to_array): Likewise.
552 (gfc_simplify_minmaxloc): Add argument back, handle it.
553 Pass back_val to specific simplification functions.
554 (gfc_simplify_minloc): Remove ATTRIBUTE_UNUSED from argument back,
555 pass it on to gfc_simplify_minmaxloc.
556 (gfc_simplify_maxloc): Likewise.
557 * trans-intrinsic.c (gfc_conv_intrinsic_minmaxloc): Adjust
558 comment. If BACK is true, use greater or equal (or lesser or
559 equal) insteal of greater (or lesser). Mark the condition of
560 having found a value which exceeds the limit as unlikely.
561
562 2018-05-07 Jeff Law <law@redhat.comg>
563
564 * scanner.c (preprocessor_line): Call linemap_add after a line
565 directive that changes the current filename.
566
567 2018-05-06 Andre Vehreschild <vehre@gcc.gnu.org>
568
569 PR fortran/85507
570 * dependency.c (gfc_dep_resolver): Revert looking at coarray dimension
571 introduced by r259385.
572 * trans-intrinsic.c (conv_caf_send): Always report a dependency for
573 same variables in coarray assignments.
574
575 2018-05-02 Tom de Vries <tom@codesourcery.com>
576
577 PR libgomp/82428
578 * f95-lang.c (DEF_GOACC_BUILTIN_ONLY): Define.
579
580 2018-04-24 Steven G. Kargl <kargl@gcc.gnu.org>
581
582 PR fortran/85520
583 * decl.c (gfc_match_char_spec): Check for negative length and set to 0.
584
585 2018-04-14 Andre Vehreschild <vehre@gcc.gnu.org>
586
587 PR fortran/81773
588 PR fortran/83606
589 * dependency.c (gfc_dep_resolver): Coarray indexes are to be ignored
590 during dependency computation. They define no data dependency.
591 * trans-array.c (conv_array_index_offset): The stride can not be set
592 here, prevent fail.
593 * trans-intrinsic.c (conv_caf_send): Add creation of temporary array
594 for caf_get's result and copying to the array with vectorial
595 indexing.
596
597 2018-04-14 Thomas Koenig <tkoenig@gcc.gnu.org>
598
599 PR fortran/85387
600 * frontend-passes.c (traverse_io_block): Check for start, end or
601 stride being defined by an outer implied DO loop.
602
603 2018-04-12 Thomas Koenig <tkoenig@gcc.gnu.org>
604
605 PR fortran/83064
606 PR testsuite/85346
607 * trans-stmt.c (gfc_trans_forall_loop): Use annot_expr_ivdep_kind
608 for annotation and remove dependence on -ftree-parallelize-loops.
609
610 2018-04-10 Jakub Jelinek <jakub@redhat.com>
611
612 PR fortran/85313
613 * openmp.c (resolve_omp_do): Remove bogus if (j < i) break;.
614 (resolve_oacc_nested_loops): Likewise. Formatting fix.
615
616 2018-04-09 Thomas Koenig <tkoenig@gcc.gnu.org>
617
618 PR fortran/83064
619 * trans-stmt.c (gfc_trans_forall_loop): Remove annotation for
620 parallell processing of DO CONCURRENT -ftree-parallelize-loops
621 is set.
622
623 2018-04-09 Thomas Koenig <tkoenig@gcc.gnu.org>
624
625 PR fortran/51260
626 * resolve.c (resolve_variable): Simplify cases where access to a
627 parameter array results in a single constant.
628
629 2018-04-02 Thomas Koenig <tkoenig@gcc.gnu.org>
630
631 PR fortran/85102
632 * decl.c (variable_decl): If upper or lower bounds simplify
633 to a constant, use that.
634
635 2018-03-30 Paul Thomas <pault@gcc.gnu.org>
636
637 PR fortran/84931
638 * simplify.c (gfc_convert_constant): Handle case of array
639 constructors within an array that has no iterator and improve
640 the conciseness of this section of code.
641
642 2017-03-30 Thomas Koenig <tkoenig@gcc.gnu.org>
643
644 PR fortran/85111
645 * array.c (gfc_resolve_character_array_constructor): Early
646 exit for zero-size arrays.
647 * simplify.c (simplify_transformation_to_array): Exit early
648 if the result size is zero.
649 (simplify_minmaxloc_to_array): Likewise.
650
651 2018-03-28 Mikael Morin <mikael@gcc.gnu.org>
652
653 PR fortran/69497
654 * symbol.c (gfc_symbol_done_2): Start freeing namespaces
655 from the root.
656 (gfc_free_namespace): Restore assert (revert r258839).
657
658 2018-03-28 Jakub Jelinek <jakub@redhat.com>
659
660 * gfortran.h (gfc_dt): Rename default_exp field to dec_ext.
661 * ioparm.def (IOPARM_dt_default_exp): Rename to ...
662 (IOPARM_dt_dec_ext): ... this.
663 * trans-io.c (build_dt): Adjust for default_exp renaming to
664 dec_ext and IOPARM_dt_default_exp renaming to IOPARM_dt_dec_ext.
665 * io.c (match_io): Likewise.
666
667 2018-03-27 Thomas Koenig <tkoenig@gcc.gnu.org>
668
669 PR fortran/85084
670 * frontend-passes.c (gfc_run_passes): Do not run front-end
671 optimizations if a previous error occurred.
672
673 2018-03-27 Thomas Koenig <tkoenig@gcc.gnu.org>
674 Harald Anlauf <anlauf@gmx.de>
675
676 PR fortran/85083
677 * primary.c (gfc_convert_to_structure_constructor): Check
678 conformance of argument types in structure constructor.
679
680 2018-03-26 Thomas Koenig <tkoenig@gcc.gnu.org>
681
682 PR fortran/66709
683 * io.c: Include constructor.h.
684 (resolve_tag_format): For a constant character array, concatenate
685 into a single character expression.
686
687 2018-03-25 Seth Johnson <johnsonsr@ornl.gov>
688 Dominique d'Humieres <dominiq@gcc.gnu.org>
689
690 PR fortran/84924
691 * check.c (gfc_check_c_f_pointer): Allow scalar noninteroperable
692 scalar derived type with -std=f2003 and -std=f2008.
693
694 2018-03-24 Jerry DeLisle <jvdelisle@gcc.gnu.org>
695 Dominique d'Humieres <dominiq@gcc.gnu.org>
696
697 PR fortran/69497
698 * symbol.c (gfc_free_namespace): Delete the assert and only if
699 refs count is equals zero, free the namespace. Otherwise,
700 something is halfway and other errors will resound.
701
702 2018-03-24 Thomas Koenig <tkoenig@gcc.gnu.org>
703
704 PR fortran/70068
705 * expr.c (find_substring_ref): Change types of start, end
706 and length variables to gfc_charlen_t. Set length to zero
707 for empty substring.
708
709 2018-03-24 Steven G. Kargl <kargl@gcc.gnu.org>
710
711 PR fortran/42651
712 * decl.c (check_function_name): Improved error message
713 (gfc_match_volatile, gfc_match_asynchronous) Use check_function_name.
714
715 2018-03-22 Steven G. Kargl <kargl@gcc.gnu.org>
716
717 PR fortran/84922
718 * decl.c (get_proc_name): If the MODULE prefix appears in interface
719 body, then it must appear on the contained subroutine or function.
720 While here, fix nearby mis-indented code.
721
722 2018-03-21 Thomas Koenig <tkoenig@gcc.gnu.org>
723 Harald Anlauf <anlauf@gmx.de>
724
725 PR fortran/84957
726 * trans-types.c (gfc_sym_type): Do not dereference NULL pointer.
727
728 2018-03-21 Janne Blomqvist <jb@gcc.gnu.org>
729
730 PR fortran/84615
731 * trans-expr.c (gfc_conv_procedure_call): Convert charlen to
732 gfc_charlen_type_node when calling procedure.
733
734 2018-03-20 Steven G. Kargl <kargl@gcc.gnu.org>
735
736 PR fortran/85001
737 * interface.c (symbol_rank): Remove bogus null pointer check that
738 crept in when translating a ternary operator into an if-else
739 constructor.
740
741 2018-03-19 Thomas Koenig <tkoenig@gcc.gnu.org>
742
743 PR fortran/84931
744 * simplify.c (gfc_convert_constant): Correctly handle iterators
745 for type conversion.
746
747 2018-03-18 Steven G. Kargl <kargl@gcc.gnu.org>
748
749 PR fortran/77414
750 * decl.c (get_proc_name): Check for a subroutine re-defined in
751 the contain portion of a subroutine. Change language of existing
752 error message to better describe the issue. While here fix whitespace
753 issues.
754
755 2018-03-18 Steven G. Kargl <kargl@gcc.gnu.org>
756
757 PR fortran/65453
758 * decl.c (get_proc_name): Catch clash between a procedure statement
759 and a contained subprogram
760
761 2018-03-16 Steven G. Kargl <kargl@gcc.gnu.org>
762
763 PR fortran/69395
764 * decl.c (merge_array_spec): Correct the error condition.
765
766 2018-03-15 Steven G. Kargl <kargl@gcc.gnu.org>
767
768 PR fortran/78741
769 * decl.c (get_proc_name): Check for clash of entry name with
770 subroutine name.
771
772 2018-03-15 Steven G. Kargl <kargl@gcc.gnu.org>
773
774 PR fortran/69395
775 * decl.c (merge_array_spec): Limit the merging to maximum allowed
776 dimensions, and issue error message if limit is exceeded.
777
778 2018-03-13 Steven G. Kargl <kargl@gcc.gnu.org>
779
780 * check.c (gfc_check_kill_sub): Remove check for INTEGER(4) or (8).
781 * intrinsic.c (add_functions): Remove reference to gfc_resolve_kill.
782 (add_subroutines): Remove reference to gfc_resolve_kill_sub.
783 * intrinsic.texi: Update documentation.
784 * iresolve.c (gfc_resolve_kill, gfc_resolve_kill_sub): Remove.
785 * trans-decl.c (gfc_build_intrinsic_function_decls): Add
786 gfor_fndecl_kill and gfor_fndecl_kill_sub
787 * trans-intrinsic.c (conv_intrinsic_kill, conv_intrinsic_kill_sub): new
788 functions.
789 (gfc_conv_intrinsic_function): Use conv_intrinsic_kill.
790 (gfc_conv_intrinsic_subroutine): Use conv_intrinsic_kill_sub.
791 * trans.h: Declare gfor_fndecl_kill and gfor_fndecl_kill_sub.
792
793 2018-03-11 Paul Thomas <pault@gcc.gnu.org>
794
795 PR fortran/84546
796 * trans-array.c (structure_alloc_comps): Make sure that the
797 vptr is copied and that the unlimited polymorphic _len is used
798 to compute the size to be allocated.
799 * trans-expr.c (gfc_get_class_array_ref): If unlimited, use the
800 unlimited polymorphic _len for the offset to the element.
801 (gfc_copy_class_to_class): Set the new 'unlimited' argument.
802 * trans.h : Add the boolean 'unlimited' to the prototype.
803
804 2018-03-11 Steven G. Kargl <kargl@gcc.gnu.org>
805
806 PR fortran/83939
807 * resolve.c (resolve_fl_procedure): Enforce F2018:C15100.
808
809 2018-03-11 Steven G. Kargl <kargls@gcc.gnu.org>
810
811 * check.c (gfc_check_kill): Check pid and sig are scalar.
812 (gfc_check_kill_sub): Restrict kind to 4 and 8.
813 * intrinsic.c (add_function): Sort keyword list. Add pid and sig
814 keywords for KILL. Remove redundant *back="back" in favor of the
815 original *bck="back".
816 (add_subroutines): Sort keyword list. Add pid and sig keywords
817 for KILL.
818 * intrinsic.texi: Fix documentation to consistently use pid and sig.
819 * iresolve.c (gfc_resolve_kill): Kind can only be 4 or 8. Choose the
820 correct function.
821 (gfc_resolve_rename_sub): Add comment.
822
823 2018-03-11 Thomas Koenig <tkoenig@gcc.gnu.org>
824
825 PR fortran/66128
826 * simplify.c (simplify_transformation): Return default result for
827 empty array argument.
828 (gfc_simplify_all): Remove special-case handling for zerosize.
829 (gfc_simplify_any): Likewise.
830 (gfc_simplify_count): Likewise.
831 (gfc_simplify_iall): Likewise.
832 (gfc_simplify_iany): Likewise.
833 (gfc_simplify_iparity): Likewise.
834 (gfc_simplify_minval): Likewise.
835 (gfc_simplify_maxval): Likewise.
836 (gfc_simplify_norm2): Likewise.
837 (gfc_simplify_product): Likewise.
838 (gfc_simplify_sum): Likewise.
839
840 2018-03-10 Steven G. Kargl <kargl@gcc.gnu.org>
841
842 PR fortran/84734
843 * arith.c (check_result, eval_intrinsic): If result overflows, pass
844 the expression up the chain instead of a NULL pointer.
845
846 2018-03-07 Steven G. Kargl <kargl@gcc.gnu.org>
847
848 PR fortran/64124
849 PR fortran/70409
850 * decl.c (gfc_match_char_spec): Try to reduce a charlen to a constant.
851
852 2017-03-06 Thomas Koenig <tkoenig@gcc.gnu.org>
853
854 PR fortran/84697
855 PR fortran/66128
856 * expr.c (simplify_parameter_variable): If p is a size zero array
857 and not an ARRAY_EXPR insert an empty array constructor and
858 return.
859 * gfortran.h: Add prototype for gfc_is_size_zero_array.
860 * simplify.c (is_size_zero_array): Make non-static and rename into
861 (gfc_is_size_zero_array): Check for parameter arrays of zero
862 size by comparing shape and absence of constructor.
863 (gfc_simplify_all): Use gfc_is_size_zero_array instead of
864 is_size_zero_array.
865 (gfc_simplify_count): Likewise.
866 (gfc_simplify_iall): Likewise.
867 (gfc_simplify_iany): Likewise.
868 (gfc_simplify_iparity): Likewise.
869 (gfc_simplify_minval): Likewise.
870 (gfc_simplify_maxval): Likewise.
871 (gfc_simplify_product): Likewise.
872 (gfc_simplify_sum): Likewise.
873
874 2018-03-06 Steven G. Kargl <kargl@gcc.gnu.org>
875
876 PR fortran/56667
877 * primary.c (match_sym_complex_part): Give the matcher for an implied
878 do-loop a chance to run.
879
880 2018-03-03 Harald Anlauf <anlauf@gmx.de>
881
882 PR fortran/71085
883 * trans-expr.c (gfc_apply_interface_mapping_to_expr): Do not
884 dereference NULL pointer.
885
886 2018-03-03 Steven G. Kargl <kargl@gcc.gnu.org>
887
888 PR fortran/66128
889 * simplify.c (is_size_zero_array): New function to check for size
890 zero array.
891 (gfc_simplify_all, gfc_simplify_any, gfc_simplify_count,
892 gfc_simplify_iall, gfc_simplify_iany, gfc_simplify_iparity,
893 gfc_simplify_minval, gfc_simplify_maxval, gfc_simplify_norm2,
894 gfc_simplify_product, gfc_simplify_sum): Use it, and implement
895 requirements from F2018.
896
897 2018-03-03 Steven G. Kargl <kargl@gcc.gnu.org>
898
899 PR fortran/51434
900 * simplify.c (gfc_simplify_transfer): Resolve mold.
901
902 2018-03-03 Paul Thomas <pault@gcc.gnu.org>
903
904 PR fortran/80965
905 * resolve.c (build_loc_call): Change symtree name from 'loc' to
906 '_loc'.
907
908 2018-03-01 Paul Thomas <pault@gcc.gnu.org>
909
910 PR fortran/84219
911 * target-memory.c (gfc_interpret_derived): Assert that BT_VOID
912 components are caf tokens.
913 (gfc_target_interpret_expr): Treat BT_VOID expressions as
914 integers.
915
916 2018-03-01 Paul Thomas <pault@gcc.gnu.org>
917
918 PR fortran/84538
919 * class.c (class_array_ref_detected): Remove the condition that
920 there be no reference after the array reference.
921 (find_intrinsic_vtab): Remove excess whitespace.
922 * trans-array.c (gfc_conv_scalarized_array_ref): Rename 'tmp'
923 as 'base and call build_class_array_ref earlier.
924
925 2018-02-28 Paul Thomas <pault@gcc.gnu.org>
926
927 PR fortran/83901
928 * trans-stmt.c (trans_associate_var): Make sure that the se
929 expression is a pointer type before converting it to the symbol
930 backend_decl type.
931
932 2018-02-25 Steven G. Kargl <kargl@gcc.gnu.org>
933
934 PR fortran/83633
935 * decl.c (variable_decl): Check that an explicit-shape-array with
936 nonconstant bounds is allowed.
937
938 2018-02-25 Paul Thomas <pault@gcc.gnu.org>
939
940 PR fortran/84523
941 * trans-intrinsic.c (gfc_conv_allocated): If the argument se
942 has a pre block, add it to the expression pre block.
943
944 2018-02-25 Thomas Koenig <tkoenig@gcc.gnu.org>
945
946 PR fortran/78238
947 * gfortran.h (gfc_integer_4_kind): Define.
948 * resolve.c (resolve_select_type): Make sure that the
949 kind of c->high is gfc_integer_4_kind.
950
951 2018-02-24 Steven G. Kargl <kargl@gcc.gnu.org>
952
953 PR fortran/30792
954 * decl.c (gfc_match_data): Check for invalid substring in
955 data-implied-do
956
957 2018-02-23 Steven G. Kargl <kargl@gcc.gnu.org>
958
959 * intrinsic.texi: Arguments to MATMUL cannot both be rank one.
960
961 2018-02-23 Steven G. Kargl <kargl@gcc.gnu.org>
962
963 PR fortran/84511
964 * trans-io.c (transfer_expr): Deal with C_LOC in transfer statement.
965
966 2018-02-23 Steven G. Kargl <kargl@gcc.gnu.org>
967
968 PR fortran/84346
969 * interface.c (compare_actual_formal): Issue error if keyword is
970 used in a statement function.
971
972 2018-02-23 Jerry DeLisle <jvdelisle@gcc.gnu.org>
973
974 PR fortran/84506
975 * trans-io.c (set_parameter_value_inquire): Adjust range check of
976 negative unit values for kind=8 units to the kind=4 negative limit.
977
978 2018-02-23 Paul Thomas <pault@gcc.gnu.org>
979
980 PR fortran/83149
981 * trans-types.c (gfc_sym_type): Test sym->ns->proc_name before
982 accessing its components.
983
984 2018-02-23 Paul Thomas <pault@gcc.gnu.org>
985
986 PR fortran/83149
987 * trans-decl.c (gfc_finish_var_decl): Test sym->ns->proc_name
988 before accessing its components.
989
990 2018-02-23 Paul Thomas <pault@gcc.gnu.org>
991
992 PR fortran/83148
993 * trans-const.c : Clean up some whitespace issues.
994 * trans-expr.c (gfc_conv_initializer): If an iso_c_binding
995 derived type has a kind value of zero, set it to the default
996 integer kind.
997
998 2018-02-23 Janne Blomqvist <jb@gcc.gnu.org>
999
1000 PR fortran/84519
1001 * trans-decl.c (gfc_build_builtin_function_decls): Add bool
1002 argument to stop and error stop decls.
1003 * trans-stmt.c (gfc_trans_stop): Add false value to argument
1004 lists.
1005
1006 2018-02-22 Janne Blomqvist <jb@gcc.gnu.org>
1007
1008 PR 78534
1009 PR 84509
1010 * trans-decl.c (gfc_build_builtin_function_decls): Pass
1011 gfc_int8_type node to pause_numeric, size_type_node to
1012 pause_string.
1013 * trans-stmt.c (gfc_trans_pause): Likewise.
1014
1015 2018-02-22 Janne Blomqvist <jb@gcc.gnu.org>
1016
1017 * gfortran.texi: Update Coarray API description.
1018 * trans-decl.c (gfc_build_builtin_function_decls): Use size_t for
1019 character lengths, int for exit codes.
1020 (generate_coarray_sym_init): Use size_t for character length.
1021 * trans-intrinsic.c (conv_co_collective): Likewise.
1022 * trans-stmt.c (gfc_trans_lock_unlock): Likewise.
1023 (gfc_trans_event_post_wait): Likewise.
1024 (gfc_trans_sync): Likewise.
1025 (gfc_trans_stop): Use size_t for character lengths, int for exit
1026 codes.
1027
1028 2018-02-20 Thomas Koenig <tkoenig@gcc.gnu.org>
1029
1030 PR fortran/48890
1031 PR fortran/83823
1032 * primary.c (gfc_convert_to_structure_constructor):
1033 For a constant string constructor, make sure the length
1034 is correct.
1035
1036 2018-02-19 Paul Thomas <pault@gcc.gnu.org>
1037
1038 PR fortran/83344
1039 PR fortran/83975
1040 * resolve.c (resolve_assoc_var): Rearrange the logic for the
1041 determination of the character length of associate names. If
1042 the associate name is missing a length expression or the length
1043 expression is not a constant and the target is not a variable,
1044 make the associate name allocatable and deferred length.
1045 * trans-decl.c (gfc_get_symbol_decl): Null the character length
1046 backend_decl for deferred length associate names that are not
1047 variables. Set 'length' to gfc_index_zero_node for character
1048 associate names, whose character length is a PARM_DECL.
1049
1050 2018-02-19 Thomas Koenig <tkoenig@gcc.gnu.org>
1051
1052 PR fortran/35339
1053 * frontend-passes.c (traverse_io_block): Remove workaround for
1054 PR 80945.
1055
1056 2018-02-19 Andre Vehreschild <vehre@gcc.gnu.org>
1057
1058 * gfortran.texi: Document additional src/dst_type. Fix some typos.
1059 * trans-decl.c (gfc_build_builtin_function_decls): Declare the new
1060 argument of _caf_*_by_ref () with * e { get, send, sendget }.
1061 * trans-intrinsic.c (gfc_conv_intrinsic_caf_get): Add the type of the
1062 data referenced when generating a call to caf_get_by_ref ().
1063 (conv_caf_send): Same but for caf_send_by_ref () and
1064 caf_sendget_by_ref ().
1065
1066 2018-02-18 Jerry DeLisle <jvdelisle@gcc.gnu.org>
1067
1068 PR fortran/84389
1069 * io.c (check_format): Allow FMT_COLON.
1070
1071 2018-02-18 Paul Thomas <pault@gcc.gnu.org>
1072
1073 PR fortran/80945
1074 * trans-array.c (gfc_conv_expr_descriptor): Set parmtype from
1075 the typenode in the case of deferred length characters.
1076
1077 2018-02-17 Thomas Koenig <tkoenig@gcc.gnu.org>
1078
1079 PR fortran/84270
1080 * frontend-passes (scalarized_expr): If the expression
1081 is an assumed size array, leave in the last reference
1082 and pass AR_SECTION instead of AR_FULL to gfc_resolve
1083 in order to avoid an error.
1084
1085 2018-02-17 Paul Thomas <pault@gcc.gnu.org>
1086
1087 PR fortran/84115
1088 * resolve.c (resolve_assoc_var): If a non-constant target expr.
1089 has no string length expression, make the associate variable
1090 into a deferred length, allocatable symbol.
1091 * trans-decl.c (gfc_is_reallocatable_lhs): Add and use a ptr to
1092 the symbol.
1093 * trans-stmt.c (trans_associate_var): Null and free scalar
1094 associate names that are allocatable. After assignment, remove
1095 the allocatable attribute to prevent reallocation.
1096
1097 2018-02-16 Jakub Jelinek <jakub@redhat.com>
1098
1099 PR fortran/84418
1100 * trans-openmp.c (gfc_trans_omp_clauses): For OMP_CLAUSE_LINEAR_REF
1101 kind set OMP_CLAUSE_LINEAR_STEP to TYPE_SIZE_UNIT times last_step.
1102
1103 2018-02-16 Dominique d'Humieres <dominiq@gcc.gnu.org>
1104
1105 PR fortran/84354
1106 * decl.c (gfc_get_pdt_instance): Replace '%qs' with %qs.
1107
1108 2018-02-15 Janus Weil <janus@gcc.gnu.org>
1109
1110 PR fortran/84409
1111 * interface.c (check_dtio_arg_TKR_intent): Add a check for character
1112 length.
1113
1114 2018-02-14 Janus Weil <janus@gcc.gnu.org>
1115
1116 PR fortran/84385
1117 * match.c (gfc_match_select_type): Fix check for selector in
1118 SELECT TYPE statement.
1119
1120 2018-02-13 Janus Weil <janus@gcc.gnu.org>
1121
1122 PR fortran/84313
1123 * symbol.c (check_conflict): Reject procedure pointers in common blocks.
1124
1125 2018-02-13 Alastair McKinstry <alastair.mckinstry@sceal.ie>
1126 Janne Blomqvist <jb@gcc.gnu.org>
1127
1128 * module.c (dump_module): Use lbasename to ensure that module
1129 files are reproducible.
1130
1131 2018-02-12 Janus Weil <janus@gcc.gnu.org>
1132
1133 PR fortran/84273
1134 * resolve.c (resolve_component): Fix checks of passed argument in
1135 procedure-pointer components.
1136
1137 2018-02-11 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
1138
1139 PR fortran/35299
1140 * resolve.c (resolve_formal_arglist): Update error message.
1141
1142 2018-02-11 Andre Vehreschild <vehre@gcc.gnu.org>
1143
1144 * gfortran.texi: Fix typos in documentation of caf_register ().
1145 * trans-array.c (structure_alloc_comps): Only register a component of
1146 a derived typed corray, not of an ultimate component coarray.
1147
1148 2018-02-11 Steven G. Kargl <kargl@gcc.gnu.org>
1149
1150 PR fortran/54223
1151 PR fortran/84276
1152 * interface.c (compare_actual_formal): Add in_statement_function
1153 bool parameter. Skip check of INTENT attribute for statement
1154 functions. Arguments to a statement function cannot be optional,
1155 issue error for missing argument.
1156 (gfc_procedure_use, gfc_ppc_use, gfc_arglist_matches_symbol): Use
1157 in_statement_function.
1158
1159 2018-02-11 Paul Thomas <pault@gcc.gnu.org>
1160
1161 PR fortran/84074
1162 * trans-expr.c (gfc_conv_derived_to_class): Set the use_offset
1163 flag. If the is a vector subscript or the expression is not a
1164 variable, make the descriptor one-based.
1165
1166 2018-02-10 Paul Thomas <pault@gcc.gnu.org>
1167
1168 PR fortran/84141
1169 PR fortran/84155
1170 * trans-array.c (gfc_array_init_size): Revert the change made
1171 in revision 257356 setting the dtype.
1172 * trans-types.c (gfc_get_dtype): Do not use the cached dtype.
1173 Call gfc_get_dtype_rank_type every time.
1174
1175 PR fortran/56691
1176 * trans-array.c (gfc_conv_expr_descriptor): If the source array
1177 is a descriptor type, use its offset, removing the condition
1178 that is be a class expression.
1179
1180 2018-02-07 Steven G. Kargl <kargl@gcc.gnu.org>
1181
1182 PR fortran/82994
1183 * match.c (gfc_match_deallocate): Check for NULL pointer.
1184
1185 2018-02-07 Thomas Koenig <tkoenig@gcc.gnu.org>
1186
1187 PR fortran/68560
1188 * trans-intrinsic.c (gfc_conv_intrinsic_shape): New function.
1189 (gfc_conv_intrinsic_function): Call it.
1190
1191 2018-02-07 Steven G. Kargl <kargl@gcc.gnu.org>
1192
1193 PR fortran/82049
1194 * match.c (gfc_match_type_spec): If the charlen is non-NULL, then
1195 try to resolve it. While here return early if possible.
1196
1197 2018-02-04 Paul Thomas <pault@gcc.gnu.org>
1198
1199 PR fortran/84115
1200 * trans-decl.c (gfc_get_symbol_decl): Do not finish the decl of
1201 'length' if the symbol charlen backend_decl is an indirect ref.
1202
1203 2018-02-03 Paul Thomas <pault@gcc.gnu.org>
1204
1205 PR fortran/84141
1206 PR fortran/84155
1207 * trans-array.c (gfc_array_init_size): Instead of gfc_get_dtype
1208 use gfc_get_dtype_rank_type.
1209
1210 2018-02-01 Janne Blomqvist <jb@gcc.gnu.org>
1211
1212 PR 83975
1213 PR 83344
1214 * resolve.c (resolve_assoc_var): Generate an error if
1215 target length unknown.
1216
1217 2018-02-01 Janne Blomqvist <jb@gcc.gnu.org>
1218
1219 PR fortran/83705
1220 * simplify.c (gfc_simplify_repeat): Increase limit for deferring
1221 to runtime, print a warning message.
1222
1223 2018-01-31 Jakub Jelinek <jakub@redhat.com>
1224
1225 PR fortran/84116
1226 * openmp.c (gfc_match_omp_clauses): If all the linear
1227 gfc_match_omp_variable_list calls failed, don't gfc_free_omp_namelist
1228 nor set *head = NULL. Formatting fixes.
1229
1230 2018-01-31 Paul Thomas <pault@gcc.gnu.org>
1231
1232 PR fortran/84088
1233 * trans-expr.c (gfc_conv_procedure_call): If the parm expr is
1234 an address expression passed to an assumed rank dummy, convert
1235 to an indirect reference.
1236
1237 2018-01-31 Thomas Koenig <tkoenig@gcc.gnu.org>
1238
1239 * dump-parse-tree.c (write_proc): Use sym_name (which may
1240 be sym->binding_label) instead of sym->name.
1241
1242 2018-01-31 Janne Blomqvist <jb@gcc.gnu.org>
1243
1244 * trans-const.c (gfc_conv_string_init): Use gfc_charlen_t instead
1245 of int for slen.
1246
1247 2018-01-31 Janne Blomqvist <jb@gcc.gnu.org>
1248
1249 PR fortran/78534
1250 * trans-expr.c (fill_with_spaces): Use memset instead of
1251 generating loop.
1252 (gfc_trans_string_copy): Improve opportunity to use builtins with
1253 constant lengths.
1254
1255 2018-01-30 Jakub Jelinek <jakub@redhat.com>
1256
1257 PR debug/84131
1258 * trans-array.c (gfc_get_descriptor_offsets_for_info): Set *data_off
1259 to DATA_FIELD's offset rather than OFFSET_FIELD's offset.
1260
1261 2018-01-30 Thomas Koenig <tkoenig@gcc.gnu.org>
1262
1263 PR fortran/84134
1264 * array.c (gfc_ref_dimen_size): Whitespace fixes. If stride is
1265 zero, return false.
1266
1267 2018-01-30 Thomas Koenig <tkoenig@gcc.gnu.org>
1268
1269 PR fortran/84133
1270 * frontend-passes (matmul_to_var_expr): Return early if
1271 in association list.
1272 (inline_matmul_assign): Likewise.
1273
1274 2017-01-29 Thomas Koenig <tkoenig@gcc.gnu.org>
1275
1276 PR fortran/84073
1277 * resolve.c (resolve_component): Ensure BIND(C) character
1278 components have length one.
1279 (resolve_symbol): Likewise for variables.
1280
1281 2018-01-27 Jakub Jelinek <jakub@redhat.com>
1282
1283 PR fortran/84065
1284 * decl.c (add_init_expr_to_sym): Ignore initializers for too large
1285 lengths.
1286
1287 2018-01-26 Damian Rouson <damian@sourceryinstitute.org>
1288 Alessandro Fanfarillo <fanfarillo.gcc@gmail.com>
1289 Soren Rasmussen <s.c.rasmussen@gmail.com>
1290
1291 Partial support for Fortran 2018 teams features.
1292
1293 * array.c (gfc_match_array_ref): add team attribute in coarray
1294 transfers.
1295 * check.c (gfc_check_get_team, gfc_check_team_number): add new
1296 functions for get_team and team_number.
1297 * dump-parse-tree.c (show_code_node): add new statements: form team,
1298 change team, end team, and sync team.
1299 * expr.c (gfc_find_team_co): add new function.
1300 * gfortran.h: add new statements.
1301 * intrinsic.c (add_functions): add get_team and team_number functions.
1302 * intrinsic.h: add get_team and team_number prototypes for check,
1303 simplify, and resolve.
1304 * iresolve.c (gfc_resolve_get_team, gfc_resolve_team_number): add new
1305 functions.
1306 * iso-fortran-env.def: add the team_type derived type.
1307 * match.c (gfc_match_if, gfc_match_form_team, gfc_match_team_number)
1308 (gfc_match_end_team, gfc_match_sync_team, gfc_match_change_team):
1309 add change team, end team, form team, sync team match and functions.
1310 * match.h: add new prototypes for change team, end team, form team,
1311 and sync team.
1312 * parse.c (decode_statement): add cases for change team, end team,
1313 form team, and sync team.
1314 * resolve.c: add cases for exec form team, change team, end team, and
1315 sync team.
1316 * simplify.c (gfc_simplify_get_team): add new function for get team.
1317 * st.c (gfc_free_statement): add cases exec for change team, end team,
1318 form team, sync team.
1319 * trans-decl.c (gfor_fndecl_caf_form_team)
1320 (gfor_fndecl_caf_change_team, gfor_fndecl_caf_end_team)
1321 (gfor_fndecl_caf_sync_team, gfor_fndecl_caf_get_team)
1322 (gfor_fndecl_caf_team_number): add functions and definitions.
1323 * trans-intrinsic.c (conv_caf_send, conv_intrinsic_team_number): add
1324 new function and team_type argument support.
1325 * trans-stmt.c (gfc_trans_form_team, gfc_trans_change_team)
1326 (gfc_trans_end_team, gfc_trans_sync_team): add new functions.
1327 * trans-stmt.h: add new prototypes.
1328 * trans-types.c (gfc_get_derived_type): check condition for team_type.
1329 * trans.c (trans_code): new exec cases for form team, change team, end
1330 team, and sync team.
1331 * trans.h: add new prototypes.
1332
1333 2018-01-26 Steven G. Kargl <kargl@gcc.gnu.org>
1334
1335 PR fortran/83998
1336 * simplify.c (compute_dot_product): Initialize result to INTEGER(1) 0
1337 or .false. The summation does the correct type conversion.
1338 (gfc_simplify_dot_product): Special case zero-sized arrays.
1339
1340 2018-25-01 Paul Thomas <pault@gcc.gnu.org>
1341
1342 PR fortran/37577
1343 * array.c (gfc_match_array_ref): If standard earlier than F2008
1344 it is an error if the reference dimension is greater than 7.
1345 libgfortran.h : Increase GFC_MAX_DIMENSIONS to 15. Change the
1346 dtype masks and shifts accordingly.
1347 * trans-array.c (gfc_conv_descriptor_dtype): Use the dtype
1348 type node to check the field.
1349 (gfc_conv_descriptor_dtype): Access the rank field of dtype.
1350 (duplicate_allocatable_coarray): Access the rank field of the
1351 dtype descriptor rather than the dtype itself.
1352 * trans-expr.c (get_scalar_to_descriptor_type): Store the type
1353 of 'scalar' on entry and use its TREE_TYPE if it is ARRAY_TYPE
1354 (ie. a character).
1355 (gfc_conv_procedure_call): Pass TREE_OPERAND (tmp,0) to
1356 get_scalar_to_descriptor_type if the actual expression is a
1357 constant.
1358 (gfc_trans_structure_assign): Assign the rank directly to the
1359 dtype rank field.
1360 * trans-intrinsic.c (gfc_conv_intrinsic_rank): Cast the result
1361 to default integer kind.
1362 (gfc_conv_intrinsic_sizeof): Obtain the element size from the
1363 'elem_len' field of the dtype.
1364 * trans-io.c (gfc_build_io_library_fndecls): Replace
1365 gfc_int4_type_node with dtype_type_node where necessary.
1366 (transfer_namelist_element): Use gfc_get_dtype_rank_type for
1367 scalars.
1368 * trans-types.c : Provide 'get_dtype_type_node' to acces the
1369 dtype_type_node and, if necessary, build it.
1370 The maximum size of an array element is now determined by the
1371 maximum value of size_t.
1372 Update the description of the array descriptor, including the
1373 type def for the dtype_type.
1374 (gfc_get_dtype_rank_type): Build a constructor for the dtype.
1375 Distinguish RECORD_TYPEs that are BT_DERIVED or BT_CLASS.
1376 (gfc_get_array_descriptor_base): Change the type of the dtype
1377 field to dtype_type_node.
1378 (gfc_get_array_descr_info): Get the offset to the rank field of
1379 the dtype.
1380 * trans-types.h : Add a prototype for 'get_dtype_type_node ()'.
1381 * trans.h : Define the indices of the dtype fields.
1382
1383 2018-23-01 Paul Thomas <pault@gcc.gnu.org>
1384
1385 PR fortran/83866
1386 * decl.c (gfc_match_derived_decl): If eos not matched, recover
1387 and emit error about garbage after declaration.
1388
1389 2018-23-01 Paul Thomas <pault@gcc.gnu.org>
1390
1391 PR fortran/83898
1392 * trans-stmt.c (trans_associate_var): Do not set cst_array_ctor
1393 for characters.
1394
1395 2018-01-22 Janne Blomqvist <jb@gcc.gnu.org>
1396
1397 PR 78534
1398 PR 83704
1399 * arith.c (gfc_arith_concat): Use size_t for string length.
1400 (gfc_compare_string): Likewise.
1401 (gfc_compare_with_Cstring): Likewise.
1402 * array.c (gfc_resolve_character_array_constructor): Use
1403 HOST_WIDE_INT, gfc_mpz_get_hwi.
1404 * check.c (gfc_check_fe_runtime_error): Use size_t.
1405 * data.c (create_character_initializer): Use HOST_WIDE_INT,
1406 gfc_extract_hwi.
1407 * decl.c (gfc_set_constant_character_len): Use gfc_charlen_t.
1408 (add_init_expr_to_sym): Use HOST_WIDE_INT.
1409 * expr.c (gfc_build_init_expr): Use HOST_WIDE_INT,
1410 gfc_extract_hwi.
1411 (gfc_apply_init): Likewise.
1412 * match.h (gfc_set_constant_character_len): Update prototype.
1413 * primary.c (match_string_constant): Use size_t.
1414 * resolve.c (resolve_ordinary_assign): Use HOST_WIDE_INT,
1415 gfc_mpz_get_hwi.
1416 * simplify.c (init_result_expr): Likewise.
1417 (gfc_simplify_len_trim): Use size_t.
1418 * target-memory.c (gfc_encode_character): Use size_t.
1419 (gfc_target_encode_expr): Use HOST_WIDE_INT, gfc_mpz_get_hwi.
1420 (interpret_array): Use size_t.
1421 (gfc_interpret_character): Likewise.
1422 * target-memory.h (gfc_encode_character): Update prototype.
1423 (gfc_interpret_character): Likewise.
1424 (gfc_target_interpret_expr): Likewise.
1425 * trans-const.c (gfc_build_string_const): Use size_t for length
1426 argument.
1427 (gfc_build_wide_string_const): Likewise.
1428 * trans-const.h (gfc_build_string_const): Likewise.
1429 (gfc_build_wide_string_const): Likewise.
1430
1431 2018-01-20 Steven G. Kargl <kargl@gcc.gnu.org>
1432
1433 PR fortran/83900
1434 * simplify.c (gfc_simplify_matmul): Set return type correctly.
1435
1436 2018-01-19 Steven G. Kargl <kargl@gcc.gnu.org>
1437
1438 PR fortran/83900
1439 * simplify.c (gfc_simplify_matmul): Delete bogus assertion.
1440
1441 2018-01-17 Harald Anlauf <anlauf@gmx.de>
1442
1443 PR fortran/83864
1444 * expr.c (add_init_expr_to_sym): Do not dereference NULL pointer.
1445
1446 2018-01-17 Harald Anlauf <anlauf@gmx.de>
1447
1448 PR fortran/83874
1449 * decl.c (add_init_expr_to_sym): Do not dereference NULL pointer.
1450
1451 2018-01-15 Louis Krupp <louis.krupp@zoho.com>
1452
1453 PR fortran/82257
1454 * interface.c (compare_rank): Don't try to retrieve CLASS_DATA
1455 from symbol marked unlimited polymorphic.
1456 * resolve.c (resolve_structure_cons): Likewise.
1457 * misc.c (gfc_typename): Don't dereference derived->components
1458 if it's NULL.
1459
1460 2018-01-15 Thomas Koenig <tkoenig@gcc.gnu.org>
1461
1462 PR fortran/54613
1463 * gfortran.h (gfc_check_f): Rename f4ml to f5ml.
1464 (gfc_logical_4_kind): New macro
1465 * intrinsic.h (gfc_simplify_minloc): Add a gfc_expr *argument.
1466 (gfc_simplify_maxloc): Likewise.
1467 (gfc_resolve_maxloc): Likewise.
1468 (gfc_resolve_minloc): Likewise.
1469 * check.c (gfc_check_minloc_maxloc): Add checking for "back"
1470 argument; also raise error if it is used (for now). Add it
1471 if it isn't present.
1472 * intrinsic.c (add_sym_4ml): Rename to
1473 (add_sym_5ml), adjust for extra argument.
1474 (add_functions): Add "back" constant. Adjust maxloc and minloc
1475 for back argument.
1476 * iresolve.c (gfc_resolve_maxloc): Add back argument. If back is
1477 not of gfc_logical_4_kind, convert.
1478 (gfc_resolve_minloc): Likewise.
1479 * simplify.c (gfc_simplify_minloc): Add back argument.
1480 (gfc_simplify_maxloc): Likewise.
1481 * trans-intinsic.c (gfc_conv_intrinsic_minmaxloc): Rename last
1482 argument to %VAL to ensure passing by value.
1483 (gfc_conv_intrinsic_function): Call gfc_conv_intrinsic_minmaxloc
1484 also for library calls.
1485
1486 2018-01-13 Jerry DeLisle <jvdelisle@gcc.gnu.org>
1487
1488 PR fortran/82007
1489 * resolve.c (resolve_transfer): Delete code looking for 'DT'
1490 format specifiers in format strings. Set formatted to true if a
1491 format string or format label is present.
1492 * trans-io.c (get_dtio_proc): Likewise. (transfer_expr): Fix
1493 whitespace.
1494
1495 2018-01-13 Thomas Koenig <tkoenig@gcc.gnu.org>
1496
1497 PR fortran/83744
1498 * dump-parse-tree.c (get_c_type_name): Remove extra line.
1499 Change for loop to use declaration in for loop. Handle BT_LOGICAL
1500 and BT_CHARACTER.
1501 (write_decl): Add where argument. Fix indentation. Replace
1502 assert with error message. Add typename to warning
1503 in comment.
1504 (write_type): Adjust locus to call of write_decl.
1505 (write_variable): Likewise.
1506 (write_proc): Likewise. Replace assert with error message.
1507
1508 2018-01-13 Paul Thomas <pault@gcc.gnu.org>
1509
1510 PR fortran/52162
1511 * trans-expr.c (gfc_trans_scalar_assign): Flag is_alloc_lhs if
1512 the rhs expression is neither an elemental nor a conversion
1513 function.
1514
1515 PR fortran/83622
1516 * trans-array.c (is_pointer_array): Remove unconditional return
1517 of false for -fopenmp.
1518
1519 2018-01-13 Thomas Koenig <tkoenig@gcc.gnu.org>
1520 <emsr@gcc.gnu.org>
1521
1522 PR fortran/83803
1523 * dump-parse-tree.c (write_proc): Always emit closing parenthesis
1524 for functions.
1525
1526 2018-01-10 Steven G. Kargl <kargl@gcc.gnu.org>
1527
1528 PR fortran/82367
1529 * resolve.c (resolve_allocate_expr): Check for NULL pointer.
1530
1531 2018-01-10 Steven G. Kargl <kargl@gcc.gnu.org>
1532
1533 PR fortran/83093
1534 * resolve.c (resolve_charlen): Check the type of cl->length
1535 after resolution.
1536
1537 2018-01-10 Janne Blomqvist <jb@gcc.gnu.org>
1538
1539 PR fortran/83740
1540 * trans-array.c (gfc_trans_array_ctor_element): Fix formatting.
1541
1542 2018-01-10 Janne Blomqvist <jb@gcc.gnu.org>
1543
1544 PR fortran/83740
1545 * trans-array.c (gfc_trans_array_ctor_element): Convert RHS to the
1546 LHS type when assigning.
1547
1548 2018-01-09 Steven G. Kargl <kargl@gcc.gnu.org>
1549
1550 PR fortran/83742
1551 * expr.c (gfc_is_simply_contiguous): Check for NULL pointer.
1552
1553 2018-01-08 Steven G. Kargl <kargl@gcc.gnu.org>
1554
1555 * match.c (gfc_match_allocate): Check for NULL pointer.
1556
1557 2018-01-08 Steven G. Kargl <kargl@gcc.gnu.org>
1558
1559 * expr.c (gfc_check_pointer_assign): Fix typo in comment.
1560
1561 2018-01-08 Paul Thomas <pault@gcc.gnu.org>
1562
1563 PR fortran/83611
1564 * decl.c (gfc_get_pdt_instance): If parameterized arrays have
1565 an initializer, convert the kind parameters and add to the
1566 component if the instance.
1567 * trans-array.c (structure_alloc_comps): Add 'is_pdt_type' and
1568 use it with case COPY_ALLOC_COMP. Call 'duplicate_allocatable'
1569 for parameterized arrays. Clean up typos in comments. Convert
1570 parameterized array initializers and copy into the array.
1571 * trans-expr.c (gfc_trans_scalar_assign): Do a deep copy for
1572 parameterized types.
1573 *trans-stmt.c (trans_associate_var): Deallocate associate vars
1574 as necessary, when they are PDT function results for example.
1575
1576 PR fortran/83731
1577 * trans-array.c (structure_alloc_comps): Only compare len parms
1578 when they are declared explicitly.
1579
1580 2018-01-06 Janne Blomqvist <jb@gcc.gnu.org>
1581
1582 PR fortran/50892
1583 * trans-expr.c (gfc_trans_pointer_assignment): fold_convert rhs to
1584 lhs type.
1585
1586 2018-01-05 Janne Blomqvist <jb@gcc.gnu.org>
1587
1588 PR fortran/78534
1589 PR fortran/66310
1590 * array.c (got_charlen): Use gfc_charlen_int_kind.
1591 * class.c (gfc_find_derived_vtab): Use gfc_size_kind instead of
1592 hardcoded kind.
1593 (find_intrinsic_vtab): Likewise.
1594 * decl.c (match_char_length): Use gfc_charlen_int_kind.
1595 (add_init_expr_to_sym): Use gfc_charlen_t and gfc_charlen_int_kind.
1596 (gfc_match_implicit): Use gfc_charlen_int_kind.
1597 * dump-parse-tree.c (show_char_const): Use gfc_charlen_t and size_t.
1598 (show_expr): Use HOST_WIDE_INT_PRINT_DEC.
1599 * expr.c (gfc_get_character_expr): Length parameter of type
1600 gfc_charlen_t.
1601 (gfc_get_int_expr): Value argument of type HOST_WIDE_INT.
1602 (gfc_extract_hwi): New function.
1603 (simplify_const_ref): Make string_len of type gfc_charlen_t.
1604 (gfc_simplify_expr): Use HOST_WIDE_INT for substring refs.
1605 * frontend-passes.c (optimize_trim): Use gfc_charlen_int_kind.
1606 * gfortran.h (gfc_mpz_get_hwi): New prototype.
1607 (gfc_mpz_set_hwi): Likewise.
1608 (gfc_charlen_t): New typedef.
1609 (gfc_expr): Use gfc_charlen_t for character lengths.
1610 (gfc_size_kind): New extern variable.
1611 (gfc_extract_hwi): New prototype.
1612 (gfc_get_character_expr): Use gfc_charlen_t for character length.
1613 (gfc_get_int_expr): Use HOST_WIDE_INT type for value argument.
1614 * gfortran.texi: Update description of hidden string length argument.
1615 * iresolve.c (check_charlen_present): Use gfc_charlen_int_kind.
1616 (gfc_resolve_char_achar): Likewise.
1617 (gfc_resolve_repeat): Pass string length directly without
1618 temporary, use gfc_charlen_int_kind.
1619 (gfc_resolve_transfer): Use gfc_charlen_int_kind.
1620 * match.c (select_intrinsic_set_tmp): Use HOST_WIDE_INT for charlen.
1621 * misc.c (gfc_mpz_get_hwi): New function.
1622 (gfc_mpz_set_hwi): New function.
1623 * module.c (atom_int): Change type from int to HOST_WIDE_INT.
1624 (parse_integer): Don't complain about large integers.
1625 (write_atom): Use HOST_WIDE_INT for integers.
1626 (mio_integer): Handle integer type mismatch.
1627 (mio_hwi): New function.
1628 (mio_intrinsic_op): Use HOST_WIDE_INT.
1629 (mio_array_ref): Likewise.
1630 (mio_expr): Likewise.
1631 * primary.c (match_substring): Use gfc_charlen_int_kind.
1632 * resolve.c (resolve_substring_charlen): Use gfc_charlen_int_kind.
1633 (resolve_character_operator): Likewise.
1634 (resolve_assoc_var): Likewise.
1635 (resolve_select_type): Use HOST_WIDE_INT for charlen, use snprintf.
1636 (resolve_charlen): Use mpz_sgn to determine sign.
1637 * simplify.c (gfc_simplify_repeat): Use HOST_WIDE_INT/gfc_charlen_t
1638 instead of long.
1639 * symbol.c (generate_isocbinding_symbol): Use gfc_charlen_int_kind.
1640 * target-memory.c (size_character): Length argument of type
1641 gfc_charlen_t.
1642 (gfc_encode_character): Likewise.
1643 (gfc_interpret_character): Use gfc_charlen_t.
1644 * target-memory.h (gfc_encode_character): Modify prototype.
1645 * trans-array.c (gfc_trans_array_ctor_element): Use existing type.
1646 (get_array_ctor_var_strlen): Use gfc_conv_mpz_to_tree_type.
1647 (trans_array_constructor): Use existing type.
1648 (get_array_charlen): Likewise.
1649 * trans-const.c (gfc_conv_mpz_to_tree_type): New function.
1650 * trans-const.h (gfc_conv_mpz_to_tree_type): New prototype.
1651 * trans-decl.c (gfc_trans_deferred_vars): Use existing type.
1652 (add_argument_checking): Likewise.
1653 * trans-expr.c (gfc_class_len_or_zero_get): Build const of type
1654 gfc_charlen_type_node.
1655 (gfc_conv_intrinsic_to_class): Use gfc_charlen_int_kind instead of
1656 4, fold_convert to correct type.
1657 (gfc_conv_class_to_class): Build const of type size_type_node for
1658 size.
1659 (gfc_copy_class_to_class): Likewise.
1660 (gfc_conv_string_length): Use same type in expression.
1661 (gfc_conv_substring): Likewise, use HOST_WIDE_INT for charlen.
1662 (gfc_conv_string_tmp): Make sure len is of the right type.
1663 (gfc_conv_concat_op): Use same type in expression.
1664 (gfc_conv_procedure_call): Likewise.
1665 (fill_with_spaces): Comment out memset() block due to spurious
1666 -Wstringop-overflow warnings.
1667 (gfc_trans_string_copy): Use gfc_charlen_type_node.
1668 (alloc_scalar_allocatable_for_subcomponent_assignment):
1669 fold_convert to right type.
1670 (gfc_trans_subcomponent_assign): Likewise.
1671 (trans_class_vptr_len_assignment): Build const of correct type.
1672 (gfc_trans_pointer_assignment): Likewise.
1673 (alloc_scalar_allocatable_for_assignment): fold_convert to right
1674 type in expr.
1675 (trans_class_assignment): Build const of correct type.
1676 * trans-intrinsic.c (gfc_conv_associated): Likewise.
1677 (gfc_conv_intrinsic_repeat): Do calculation in sizetype.
1678 * trans-io.c (gfc_build_io_library_fndecls): Use
1679 gfc_charlen_type_node for character lengths.
1680 (set_string): Convert to right type in assignment.
1681 * trans-stmt.c (gfc_trans_label_assign): Build const of
1682 gfc_charlen_type_node.
1683 (trans_associate_var): Likewise.
1684 (gfc_trans_character_select): Likewise.
1685 (gfc_trans_allocate): Likewise, don't typecast strlen result.
1686 (gfc_trans_deallocate): Don't typecast strlen result.
1687 * trans-types.c (gfc_size_kind): New variable.
1688 (gfc_init_types): Determine gfc_charlen_int_kind and gfc_size_kind
1689 from size_type_node.
1690 * trans-types.h: Fix comment.
1691
1692 2018-01-04 Thomas Koenig <tkoenig@gcc.gnu.org>
1693
1694 PR fortran/83683
1695 PR fortran/45689
1696 * check.c (gfc_check_eoshift): Check for string length and
1697 for conformance of boundary.
1698 * intrinsic.c (add_functions): Add gfc_simplify_eoshift.
1699 * intrinsic.h: Add prototype for gfc_simplify_eoshift.
1700 * simplify.c (gfc_simplify_eoshift): New function.
1701
1702 2018-01-03 Richard Sandiford <richard.sandiford@linaro.org>
1703 Alan Hayward <alan.hayward@arm.com>
1704 David Sherwood <david.sherwood@arm.com>
1705
1706 * trans-types.c (gfc_type_for_mode): Handle MODE_VECTOR_BOOL.
1707
1708 2018-01-03 Richard Sandiford <richard.sandiford@linaro.org>
1709 Alan Hayward <alan.hayward@arm.com>
1710 David Sherwood <david.sherwood@arm.com>
1711
1712 * trans-types.c (gfc_type_for_mode): Check valid_vector_subparts_p.
1713
1714 2018-01-03 Thomas Koenig <tkoenig@gcc.gnu.org>
1715
1716 PR fortran/83664
1717 * check.c (gfc_check_eoshift): Error for missing boundary if array
1718 is not one of the standard types.
1719
1720 2018-01-03 Jakub Jelinek <jakub@redhat.com>
1721
1722 Update copyright years.
1723
1724 * gfortranspec.c (lang_specific_driver): Update copyright notice
1725 dates.
1726 * gfc-internals.texi: Bump @copying's copyright year.
1727 * gfortran.texi: Ditto.
1728 * intrinsic.texi: Ditto.
1729 * invoke.texi: Ditto.
1730
1731 2017-01-02 Thomas Koenig <tkoenig@gcc.gnu.org>
1732
1733 PR fortran/45689
1734 * intrinsic.c (add_function): Add gfc_simplify_maxloc and
1735 gfc_simplify_minloc to maxloc and minloc, respectively.
1736 * intrinsic.h: Add prototypes for gfc_simplify_minloc
1737 and gfc_simplify_maxloc.
1738 * simplify.c (min_max_chose): Adjust prototype. Modify function
1739 to have a return value which indicates if the extremum was found.
1740 (is_constant_array_expr): Fix typo in comment.
1741 (simplify_minmaxloc_to_scalar): New function.
1742 (simplify_minmaxloc_nodim): New function.
1743 (new_array): New function.
1744 (simplify_minmaxloc_to_array): New function.
1745 (gfc_simplify_minmaxloc): New function.
1746 (simplify_minloc): New function.
1747 (simplify_maxloc): New function.
1748
1749 2018-01-02 Thomas Koenig <tkoenig@gcc.gnu.org>
1750
1751 PR fortran/45689
1752 PR fortran/83650
1753 * simplify.c (gfc_simplify_cshift): Re-implement to allow full
1754 range of arguments.
1755
1756 2018-01-01 Paul Thomas <pault@gcc.gnu.org>
1757
1758 PR fortran/83076
1759 * resolve.c (resolve_fl_derived0): Add caf_token fields for
1760 allocatable and pointer scalars, when -fcoarray selected.
1761 * trans-types.c (gfc_copy_dt_decls_ifequal): Copy the token
1762 field as well as the backend_decl.
1763 (gfc_get_derived_type): Flag GFC_FCOARRAY_LIB for module
1764 derived types that are not vtypes. Components with caf_token
1765 attribute are pvoid types. For a component requiring it, find
1766 the caf_token field and have the component token field point to
1767 its backend_decl.
1768
1769 PR fortran/83319
1770 *trans-types.c (gfc_get_array_descriptor_base): Add the token
1771 field to the descriptor even when codimen not set.
1772 \f
1773 Copyright (C) 2018 Free Software Foundation, Inc.
1774
1775 Copying and distribution of this file, with or without modification,
1776 are permitted in any medium without royalty provided the copyright
1777 notice and this notice are preserved.