re PR fortran/71880 (pointer to allocatable character)
[gcc.git] / gcc / fortran / ChangeLog
1 2018-10-21 Paul Thomas <pault@gcc.gnu.org>
2
3 PR fortran/71880
4 * trans-expr.c (gfc_trans_pointer_assignment): Set the string
5 length for array valued deferred length lhs.
6
7 2018-10-18 Tobias Burnus <burnus@net-b.de>
8
9 PR fortran/87625
10 * trans-array.c (gfc_is_reallocatable_lhs): Detect allocatable
11 polymorphic arrays.
12
13 2018-10-18 Paul Thomas <pault@gcc.gnu.org>
14
15 PR fortran/58618
16 * trans-stmt.c (trans_associate_var): All strings that return
17 as pointer types can be assigned directly to the associate
18 name so remove 'attr' and the condition that uses it.
19
20 2018-10-18 Paul Thomas <pault@gcc.gnu.org>
21
22 PR fortran/58618
23 * trans-decl.c (gfc_get_symbol_decl): Deal correctly with the
24 initialization with NULL() of a deferred length pointer.
25
26 2018-10-17 Tobias Burnus <burnus@net-b.de>
27
28 PR fortran/87632
29 * resolve.c (resolve_select_type): Use correct variable.
30
31 2018-10-17 David Malcolm <dmalcolm@redhat.com>
32
33 * Make-lang.in (selftest-fortran): New.
34
35 2018-10-17 Paul Thomas <pault@gcc.gnu.org>
36
37 PR fortran/56386
38 PR fortran/58906
39 PR fortran/77385
40 PR fortran/80260
41 PR fortran/82077
42 * resolve.c (resolve_variable): Fix up expressions with array
43 associate names, where the parser did not detect that this is
44 array and there was no array part_ref in the expression.
45
46 2018-10-16 Tobias Burnus <burnus@net-b.de>
47
48 PR fortran/67125
49 * trans-array.c (gfc_array_init_size, gfc_array_allocate):
50 Rename argument e3_is_array_constr to e3_has_nodescriptor
51 and update comments.
52 * trans-stmt.c (gfc_trans_allocate): Also fix lower bound
53 to 1 for nonalloc/nonpointer func results/vars besides
54 array constructors.
55
56 2018-10-16 Tobias Burnus <burnus@net-b.de>
57
58 PR fortran/87556
59 * trans-stmt.c (form_team, change_team, sync_team):
60 Don't ignore argse.pre/argse.post.
61
62 2018-10-15 Paul Thomas <pault@gcc.gnu.org>
63 Tobias Burnus <burnus@gcc.gnu.org>
64
65 PR fortran/87566
66 * resolve.c (resolve_assoc_var): Add missing array spec for
67 class associate names.
68 (resolve_select_type): Handle case where last typed component
69 of the selector has a different type to the expression.
70 * trans-expr.c (gfc_find_and_cut_at_last_class_ref): Replace
71 call to gfc_expr_to_initialize with call to gfc_copy_expr.
72 (gfc_conv_class_to_class): Guard assignment to 'len' field
73 against case where zero constant is supplied.
74
75 2018-10-12 Tobias Burnus <burnus@net-b.de>
76
77 PR fortran/87597
78 * expr.c (gfc_simplify_expr): Avoid simplifying
79 the 'array' argument to lbound/ubound/lcobound/
80 ucobound.
81
82 2018-10-12 Tobias Burnus <burnus@net-b.de>
83
84 PR fortran/58787
85 * decl.c (get_proc_name): Return with error before
86 creating sym_tree.
87
88 2018-10-11 Tobias Burnus <burnus@net-b.de>
89
90 Revert:
91 2018-10-09 Tobias Burnus <burnus@net-b.de>
92
93 PR fortran/83522
94 * resolve.c (resolve_ref): Reject nonscalar
95 substring references.
96
97 2018-10-09 David Malcolm <dmalcolm@redhat.com>
98
99 * cpp.c (gfc_cpp_init_0): Update for renamings.
100 (cb_cpp_error): Rename to...
101 (cb_cpp_diagnostic): ...this, converting level and reason to
102 enums.
103
104 2018-10-09 Tobias Burnus <burnus@net-b.de>
105
106 PR fortran/83522
107 * resolve.c (resolve_ref): Reject nonscalar
108 substring references.
109
110 2018-10-09 Paul Thomas <pault@gcc.gnu.org>
111
112 PR fortran/87151
113 * trans-array.c (gfc_get_array_span): Deal with deferred char
114 array components having a TYPE_MAX_VALUE of zero.
115 (gfc_array_init_size): Use the hidden string length component
116 to build the descriptor dtype.
117 (gfc_array_allocate): Remove the erroneous replacement of the
118 charlen backend decl with a temporary.
119 (gfc_conv_expr_descriptor): Use the ss_info string length in
120 the case of deferred character components.
121 (gfc_alloc_allocatable_for_assignment): Actually compare the
122 string lengths for deferred characters. Make sure that kind > 1
123 is handled correctly. Set the span field of the descriptor.
124 * trans-intrinsic.c (gfc_conv_intrinsic_len): Remove the stupid
125 comment.
126
127 PR fortran/80931
128 * trans-array.c (gfc_array_allocate): Set the span field for
129 variable length character arrays.
130
131 2018-10-08 Cesar Philippidis <cesar@codesourcery.com>
132
133 * expr.c (gfc_check_pointer_assign): Demote "Assignment to
134 contiguous pointer from non-contiguous target" to a warning.
135
136 2018-10-08 Paul Thomas <pault@gcc.gnu.org>
137
138 PR fortran/86372
139 * trans-stmt.c (trans_associate_var): Character associate names
140 with variable string length do not have to be deferred length
141 for the string length to be set, if variable.
142
143 2018-10-06 Thomas Koenig <tkoenig@gcc.gnu.org>
144
145 PR fortran/86111
146 * gfortran.h (enum arith): Add ARITH_WRONGCONCAT.
147 * arith.h (gfc_arith_error): Issue error for ARITH_WRONGCONCAT.
148 (gfc_arith_concat): If the types of op1 and op2 are not
149 character of if their kinds do not match, issue ARITH_WRONGCONCAT.
150
151 2018-10-06 Paul Thomas <pault@gcc.gnu.org>
152
153 PR fortran/83999
154 * resolve.c (resolve_fl_procedure): Include class functions in
155 the test that elemental function results be scalar.
156
157 2018-10-06 Thomas Koenig <tkoenig@gcc.gnu.org>
158
159 PR fortran/84640
160 * simplify.c (gfc_simplify_cshift): Extend size of hs_ex and ss_ex
161 by one. Set extents one past the array boundaries to zero to avoid
162 warning with instrumented compiler.
163 (gfc_simplify_eoshift): Likewise, only for ss_ex.
164
165 2018-10-05 Paul Thomas <pault@gcc.gnu.org>
166
167 PR fortran/87487
168 * trans-decl.c (gfc_get_symbol_decl): Make sure that deferred
169 character length pointer initializer has the right type to fix
170 problem with deferred_character_24.f90 on big endian.
171
172 2018-10-03 Jeff Law <law@redhat.comg>
173
174 * trans-types.c (get_typenode_from_name): Moved into gcc/tree.c.
175
176 2018-10-01 Paul Thomas <pault@gcc.gnu.org>
177
178 PR fortran/65677
179 * trans-expr.c (gfc_trans_assignment_1): Set the 'identical'
180 flag in the call to gfc_check_dependency.
181
182 2018-09-30 Paul Thomas <pault@gcc.gnu.org>
183
184 PR fortran/87359
185 * trans-array.c (gfc_is_reallocatable_lhs): Correct the problem
186 introduced by r264358, which prevented components of associate
187 names from being reallocated on assignment.
188
189 2018-09-30 Paul Thomas <pault@gcc.gnu.org>
190
191 PR fortran/70752
192 PR fortran/72709
193 * trans-array.c (gfc_conv_scalarized_array_ref): If this is a
194 deferred type and the info->descriptor is present, use the
195 info->descriptor
196 (gfc_conv_array_ref): Is the se expr is a descriptor type, pass
197 it as 'decl' rather than the symbol backend_decl.
198 (gfc_array_allocate): If the se string_length is a component
199 reference, fix it and use it for the expression string length
200 if the latter is not a variable type. If it is a variable do
201 an assignment. Make use of component ref string lengths to set
202 the descriptor 'span'.
203 (gfc_conv_expr_descriptor): For pointer assignment, do not set
204 the span field if gfc_get_array_span returns zero.
205 * trans.c (get_array_span): If the upper bound a character type
206 is zero, use the descriptor span if available.
207
208 2018-09-30 Paul Thomas <pault@gcc.gnu.org>
209
210 PR fortran/70149
211 * trans-decl.c (gfc_get_symbol_decl): A deferred character
212 length pointer that is initialized needs the string length to
213 be initialized as well.
214
215 2018-09-29 Paul Thomas <pault@gcc.gnu.org>
216
217 PR fortran/65677
218 * trans-expr.c (gfc_trans_assignment_1): If there is dependency
219 fix the rse stringlength.
220
221 2018-09-25 Martin Liska <mliska@suse.cz>
222
223 PR fortran/87394
224 * decl.c (add_hidden_procptr_result): Simplify condition
225 as we are in branch witch 'case1 || case2'.
226
227 2018-09-25 Martin Liska <mliska@suse.cz>
228
229 * trans.c (remove_suffix): Remove
230 unused function.
231
232 2018-09-24 Thomas Koenig <tkoenig@gcc.gnu.org>
233
234 PR fortran/87397
235 * gfc_conv_procedure_call: Do not add clobber on INTENT(OUT)
236 for variables in an associate statement.
237
238 2018-09-24 Bernhard Reuther-Fischer <aldot@gcc.gnu.org>
239 Cesar Philippidis <cesar@codesourcery.com>
240
241 * openmp.c (resolve_oacc_loop_blocks):
242
243 2018-09-23 Thomas Koenig <tkoenig@gcc.gnu.org>
244
245 PR fortran/87397
246 * gfc_conv_procedure_call: Do not add clobber on INTENT(OUT)
247 for variables having the dimension attribute.
248
249 2018-09-23 Janne Blomqvist <jb@gcc.gnu.org>
250
251 * trans-expr.c (gfc_caf_get_image_index): Do array index
252 calculations in gfc_array_index_type.
253 * trans-intrinsic.c (conv_intrinsic_event_query): Likewise.
254 * trans-stmt.c (gfc_trans_lock_unlock): Likewise.
255 (gfc_trans_event_post_wait): Likewise.
256
257 2018-09-23 Thomas Koenig <tkoenig@gcc.gnu.org>
258
259 PR fortran/87395
260 * gfc_conv_procedure_call: Reformat comments slightly. Do not add
261 clobber on INTENT(OUT) for saved variables.
262
263 2018-09-22 Thomas Koenig <tkoenig@gcc.gnu.org>
264
265 PR fortran/41453
266 * trans.h (gfc_conv_expr_reference): Add optional argument
267 add_clobber to prototype.
268 (gfc_conv_procedure_call): Set add_clobber argument to
269 gfc_conv_procedure_reference to true for scalar, INTENT(OUT),
270 non-pointer, non-allocatable, non-dummy variables whose type
271 is neither BT_CHARACTER, BT_DERIVED or BT_CLASS, but only if
272 the procedure is not elemental.
273 * trans-expr.c (gfc_conv_procedure_reference): Add clobber
274 statement before call if add_clobber is set.
275
276 2018-09-22 Paul Thomas <pault@gcc.gnu.org>
277
278 PR fortran/85603
279 * trans-array.c (gfc_alloc_allocatable_for_assignment): Test
280 the charlen backend_decl before using the VAR_P macro.
281
282 2018-09-21 Paul Thomas <pault@gcc.gnu.org>
283
284 PR fortran/77325
285 * trans-array.c (gfc_alloc_allocatable_for_assignment): If the
286 rhs has a charlen expression, convert that and use it.
287 * trans-expr.c (gfc_trans_assignment_1): The rse.pre for the
288 assignment of deferred character array vars to a realocatable
289 lhs should not be added to the exterior block since vector
290 indices, for example, generate temporaries indexed within the
291 loop.
292
293 2018-09-21 Paul Thomas <pault@gcc.gnu.org>
294
295 PR fortran/87359
296 * trans-stmt.c (gfc_trans_allocate): Don't deallocate alloc
297 components if must_finalize is set for expr3.
298
299 2018-09-21 Andrew Stubbs <ams@codesourcery.com>
300 Kwok Cheung Yeung <kcy@codesourcery.com>
301
302 * trans-expr.c (gfc_trans_structure_assign): Ensure that the first
303 argument of a call to _gfortran_caf_register is of size_type_node.
304 * trans-intrinsic.c (conv_intrinsic_event_query): Convert computed
305 index to a size_type_node type.
306 * trans-stmt.c (gfc_trans_event_post_wait): Likewise.
307
308 2018-09-20 Allan Sandfeld Jensen <allan.jensen@qt.io>
309
310 * gfortranspec.c (lang_specific_driver): Handle -r like -nostdlib.
311
312 2018-09-20 Janus Weil <janus@gcc.gnu.org>
313
314 * gfortran.h (gfc_str_startswith): New macro.
315 * decl.c (variable_decl, gfc_match_end): Use it.
316 * iresolve.c (is_trig_resolved): Ditto.
317 * module.c (load_omp_udrs, read_module): Ditto.
318 * options.c (gfc_handle_runtime_check_option): Ditto.
319 * primary.c (match_arg_list_function): Ditto.
320 * trans-decl.c (gfc_get_symbol_decl): Ditto.
321 * trans-expr.c (gfc_conv_procedure_call): Ditto.
322 * interface.c (dtio_op): Replace strncmp by strcmp.
323 * resolve.c (resolve_actual_arglist, resolve_function): Ditto.
324 * trans-expr.c (conv_arglist_function): Ditto.
325 * trans-intrinsic.c (gfc_conv_ieee_arithmetic_function): Replace macro
326 STARTS_WITH by gfc_str_startswith.
327
328 2018-09-20 Cesar Philippidis <cesar@codesourcery.com>
329
330 * dump-parse-tree.c (show_omp_clauses): Add missing omp list_types
331 and reorder the switch cases to match the enum in gfortran.h.
332
333 2018-09-19 Paul Thomas <pault@gcc.gnu.org>
334
335 PR fortran/84109
336 * trans-expr.c (gfc_trans_assignment_1): The rse.pre for the
337 assignment of deferred character intrinsic elemental function
338 results to a realocatable lhs must not be added to the exterior
339 block if they are array valued but must go to the loop body.
340
341 2018-09-18 Thomas Koenig <tkoenig@gcc.gnu.org>
342
343 PR fortran/29550
344 * gfortran.h (gfc_expr): Add external_blas flag.
345 * frontend-passes.c (matrix_case): Add case A2TB2T.
346 (optimize_namespace): Handle flag_external_blas by
347 calling call_external_blas.
348 (get_array_inq_function): Add argument okind. If
349 it is nonzero, use it as the kind of argument
350 to be used.
351 (inline_limit_check): Remove m_case argument, add
352 limit argument instead. Remove assert about m_case.
353 Set the limit for inlining from the limit argument.
354 (matmul_lhs_realloc): Handle case A2TB2T.
355 (inline_matmul_assign): Handle inline limit for other cases with
356 two rank-two matrices. Remove no-op calls to inline_limit_check.
357 (call_external_blas): New function.
358 * trans-intrinsic.c (gfc_conv_intrinsic_funcall): Do not add
359 argument to external BLAS if external_blas is already set.
360
361 2018-09-18 Paul Thomas <pault@gcc.gnu.org>
362
363 PR fortran/87239
364 * trans-expr.c (gfc_trans_assignment_1): The rse.pre for the
365 assignment of deferred character elemental function results to
366 a realocatable lhs must not be added to the exterior block but
367 must go to the loop body.
368
369 2018-09-18 Paul Thomas <pault@gcc.gnu.org>
370
371 PR fortran/87336
372 * trans-array.c (gfc_get_array_span): Try to get the element
373 length of incomplete types. Return NULL_TREE otherwise.
374 (gfc_conv_expr_descriptor): Only set the 'span' field if the
375 above does not return NULL_TREE. Set 'span' field if possible
376 for all new descriptors.
377
378 2018-09-17 Paul Thomas <pault@gcc.gnu.org>
379
380 PR fortran/64120
381 * trans-decl.c (gfc_get_symbol_decl): Flag allocatable, scalar
382 characters with a variable length expression for deferred init.
383 (gfc_trans_deferred_vars): Perform the assignment for these
384 symbols by calling gfc_conv_string_length.
385
386 2018-09-17 Paul Thomas <pault@gcc.gnu.org>
387
388 PR fortran/85954
389 * resolve.c (resolve_assoc_var): If the target expression is a
390 deferred charlen dummy and the associate name shares the
391 charlen, generate a new one. Make sure that new charlens are in
392 the namespace list so that they get cleaned up.
393 * trans-array.c (gfc_is_reallocatable_lhs): Associate names are
394 not reallocatable.
395 * trans-decl.c (gfc_get_symbol_decl): Put deferred character
396 length dummy and result arrays on the deferred initialization
397 list so that the variable length arrays can be correctly dealt
398 with.
399 * trans-expr.c (gfc_conv_string_length): Return if 'expr' is
400 NULL rather than ICEing..
401
402 2018-09-16 Janus Weil <janus@gcc.gnu.org>
403
404 PR fortran/86484
405 PR fortran/84543
406 * match.c (gfc_match_assignment): For a polymorphic assignment,
407 make sure that the vtab for the rhs type is generated.
408
409 2018-09-16 Thomas Koenig <tkoenig@gcc.gnu.org>
410
411 PR fortran/37802
412 * frontend-passes.c (B_ERROR): New macro for matmul bounds
413 checking error messages.
414 (C_ERROR): Likewise.
415 (inline_matmul_assign): Reorganize bounds checking, use B_ERROR
416 and C_ERROR macros.
417
418 2018-09-13 Bernd Edlinger <bernd.edlinger@hotmail.de>
419
420 * trans-array.c (gfc_conv_array_initializer): Remove excess precision
421 from overlength string initializers.
422
423 2018-09-12 Paul Thomas <pault@gcc.gnu.org>
424
425 PR fortran/87284
426 * trans-expr.c (gfc_trans_class_init_assign): Access to
427 to array elements of the dynamic type requires that the array
428 reference be added to the class expression and not the _data
429 component, unlike scalar expressions.
430
431 2018-09-11 Janus Weil <janus@gcc.gnu.org>
432
433 PR fortran/87172
434 * resolve.c (resolve_fl_derived): If a type has the 'use_assoc'
435 attribute, then it was declared in another module, so there should be
436 no error that it has not been declared.
437
438 2018-09-11 Paul Thomas <pault@gcc.gnu.org>
439
440 PR fortran/87277
441 * expr.c (is_subref_array): Add the check of dimensionality for
442 class, dummy, pointer arrays.
443
444 2018-09-11 Janus Weil <janus@gcc.gnu.org>
445
446 PR fortran/86830
447 * expr.c (gfc_is_simply_contiguous): Handle type-bound procedure calls
448 with non-polymorphic objects.
449
450 2018-09-10 Janus Weil <janus@gcc.gnu.org>
451
452 PR fortran/85395
453 * decl.c (match_binding_attributes): Use correct default accessibility
454 for procedure pointer components.
455
456 2018-09-03 Jerry DeLisle <jvdelisle@gcc.gnu.org>
457
458 * simplify.c (gfc_simplify_modulo): Re-arrange code to test whether
459 'P' is zero and issue an error if it is.
460
461 2018-08-31 Paul Thomas <pault@gcc.gnu.org>
462
463 PR fortran/86328
464 PR fortran/86760
465 * trans-array.c (gfc_conv_scalarized_array_ref): Do not fix
466 info->descriptor but pass it directly to gfc_build_array_ref.
467 (gfc_conv_array_ref): Likewise for se->expr.
468 * trans.c (gfc_build_array_ref): If 'decl' is a COMPONENT_REF
469 obtain the span field directly from it.
470
471 2017-08-28 Paul Thomas <pault@gcc.gnu.org>
472
473 PR fortran/80477
474 * trans-expr.c (gfc_conv_procedure_call): Allocatable class
475 scalar results being passed to a derived type formal argument
476 are finalized if possible. Otherwise, rely on existing code for
477 deallocation. Make the deallocation of allocatable result
478 components conditional on finalization not taking place. Make
479 the freeing of data components after finalization conditional
480 on the data being NULL.
481 (gfc_trans_arrayfunc_assign): Change the gcc_assert to a
482 condition to return NULL_TREE.
483 (gfc_trans_assignment_1): If the assignment is class to class
484 and the rhs expression must be finalized but the assignment
485 is not marked as a polymorphic assignment, use the vptr copy
486 function instead of gfc_trans_scalar_assign.
487
488 PR fortran/86481
489 * trans-expr.c (gfc_conv_expr_reference): Do not add the post
490 block to the pre block if the expression is to be finalized.
491 * trans-stmt.c (gfc_trans_allocate): If the expr3 must be
492 finalized, load the post block into a finalization block and
493 add it right at the end of the allocation block.
494
495 2018-08-27 David Malcolm <dmalcolm@redhat.com>
496
497 PR 87091
498 * error.c (gfc_format_decoder): Update for conversion of
499 show_caret_p to a tri-state.
500
501 2018-08-25 Janus Weil <janus@gcc.gnu.org>
502
503 PR fortran/86545
504 * resolve.c (resolve_transfer): Correctly determine typespec for
505 generic function calls, in order to throw a proper error.
506
507 2018-08-24 Thomas Koenig <tkoenig@gcc.gnu.org>
508
509 PR fortran/86837
510 * frontend-passes.c (var_in_expr_callback): New function.
511 (var_in_expr): New function.
512 (traverse_io_block): Use var_in_expr instead of
513 gfc_check_dependency for checking if the variable depends on the
514 previous interators.
515
516 2018-08-23 Janne Blomqvist <blomqvist.janne@gmail.com>
517
518 * trans-intrinsic.c (gfc_conv_intrinsic_minmaxval): Delete
519 HONOR_SIGNED_ZEROS checks.
520
521 2018-08-23 Paul Thomas <pault@gcc.gnu.org>
522
523 PR fortran/86863
524 * resolve.c (resolve_typebound_call): If the TBP is not marked
525 as a subroutine, check the specific symbol.
526
527 2018-08-22 Thomas Koenig <tkoenig@gcc.gnu.org>
528
529 * gfortran.texi: Mention that asynchronous I/O does
530 not work on systems which lack condition variables, such
531 as AIX.
532
533 2018-08-22 Janus Weil <janus@gcc.gnu.org>
534
535 PR fortran/86935
536 * match.c (gfc_match_associate): Improve diagnostics for the ASSOCIATE
537 statement.
538
539 2018-08-22 Andrew Benson <abensonca@gmail.com>
540
541 * module.c (load_generic_interfaces): Move call to find_symbol()
542 so that only occurs if actually needed.
543
544 2018-08-22 Janus Weil <janus@gcc.gnu.org>
545
546 PR fortran/86888
547 * decl.c (gfc_match_data_decl): Allow allocatable components of
548 indirectly recursive type.
549 * resolve.c (resolve_component): Remove two errors messages ...
550 (resolve_fl_derived): ... and replace them by a new one.
551
552 2018-08-21 Janne Blomqvist <jb@gcc.gnu.org>
553
554 * trans-intrinsic.c (gfc_conv_intrinsic_minmax): Use
555 MAX_EXPR/MIN_EXPR unconditionally for real arguments.
556 * gfortran.texi (Compiler Characteristics): Document MAX/MIN
557 behavior wrt NaN.
558
559 2018-08-21 Nicolas Koenig <koenigni@gcc.gnu.org>
560 Thomas Koenig <tkoenig@gcc.gnu.org>
561
562 PR fortran/25829
563 * gfortran.texi: Add description of asynchronous I/O.
564 * trans-decl.c (gfc_finish_var_decl): Treat asynchronous variables
565 as volatile.
566 * trans-io.c (gfc_build_io_library_fndecls): Rename st_wait to
567 st_wait_async and change argument spec from ".X" to ".w".
568 (gfc_trans_wait): Pass ID argument via reference.
569
570 2018-08-16 Nathan Sidwell <nathan@acm.org>
571
572 * cpp.c (dump_macro): Use cpp_user_macro_p.
573
574 2018-08-14 Janus Weil <janus@gcc.gnu.org>
575
576 PR fortran/86116
577 * interface.c (compare_type): Remove a CLASS/TYPE check.
578 (compare_type_characteristics): New function that behaves like the old
579 'compare_type'.
580 (gfc_check_dummy_characteristics, gfc_check_result_characteristics):
581 Call 'compare_type_characteristics' instead of 'compare_type'.
582
583 2018-08-12 Paul Thomas <pault@gcc.gnu.org>
584
585 PR fortran/66679
586 * trans-intrinsic.c (gfc_conv_intrinsic_transfer): Class array
587 elements are returned as references to the data element. Get
588 the class expression by stripping back the references. Use this
589 for the element size.
590
591 2018-08-12 Paul Thomas <pault@gcc.gnu.org>
592
593 PR fortran/86906
594 * resolve.c (resolve_fl_variable_derived): Check if the derived
595 type is use associated before checking for the host association
596 error.
597
598 2018-08-10 Janus Weil <janus@gcc.gnu.org>
599
600 PR fortran/57160
601 * invoke.texi (frontend-optimize): Mention short-circuiting.
602 * options.c (gfc_post_options): Disable -ffrontend-optimize with -Og.
603 * resolve.c (resolve_operator): Warn about short-circuiting only with
604 -ffrontend-optimize.
605 * trans-expr.c (gfc_conv_expr_op): Use short-circuiting operators only
606 with -ffrontend-optimize. Without that flag, make sure that both
607 operands are evaluated.
608
609 2018-08-08 Nathan Sidwell <nathan@acm.org>
610
611 * cpp.c (cb_file_change): Use linemap_included_from.
612
613 2018-08-07 Cesar Philippidis <cesar@codesourcery.com>
614
615 * trans-stmt.h: Remove stale reference to trans-openacc.c.
616
617 2018-08-04 Janus Weil <janus@gcc.gnu.org>
618
619 PR fortran/45521
620 * interface.c (gfc_compare_interfaces): Apply additional
621 distinguishability criteria of F08 to operator interfaces.
622
623 2018-07-31 Andre Vieira <andre.simoesdiasvieira@arm.com>
624
625 Revert 'AsyncI/O patch committed'
626 2018-07-25 Nicolas Koenig <koenigni@gcc.gnu.org>
627 Thomas Koenig <tkoenig@gcc.gnu.org>
628
629 PR fortran/25829
630 * gfortran.texi: Add description of asynchronous I/O.
631 * trans-decl.c (gfc_finish_var_decl): Treat asynchronous variables
632 as volatile.
633 * trans-io.c (gfc_build_io_library_fndecls): Rename st_wait to
634 st_wait_async and change argument spec from ".X" to ".w".
635 (gfc_trans_wait): Pass ID argument via reference.
636
637 2018-07-25 Nicolas Koenig <koenigni@gcc.gnu.org>
638 Thomas Koenig <tkoenig@gcc.gnu.org>
639
640 PR fortran/25829
641 * gfortran.texi: Add description of asynchronous I/O.
642 * trans-decl.c (gfc_finish_var_decl): Treat asynchronous variables
643 as volatile.
644 * trans-io.c (gfc_build_io_library_fndecls): Rename st_wait to
645 st_wait_async and change argument spec from ".X" to ".w".
646 (gfc_trans_wait): Pass ID argument via reference.
647
648 2018-07-20 Martin Sebor <msebor@redhat.com>
649
650 PR middle-end/82063
651 * gfortran.h (gfc_handle_option): Change function argument
652 to HOST_WIDE_INT.
653 * options.c (gfc_handle_option): Same.
654
655 2018-07-20 Andrew Benson <abenson@carnegiescience.edu>
656
657 * gfortran.h (gfc_symbol): Add pointer to next derived type.
658 (gfc_dt_list, gfc_get_dt_list): Remove.
659 (gfc_namespace): Replace gfc_dt_list with gfc_symbol.
660 * parse.c (resolve_all_program_units): Replace gfc_free_dt_list() with
661 simple nullification of gfc_derived_types.
662 * resolve.c (resolve_global_procedure): Replace gfc_dt_list with
663 gfc_symbol.
664 (add_dt_to_dt_list): Change derived type linked list insertion to
665 utilize dt_next pointers in gfc_symbol.
666 * symbol.c (gfc_new_symbol, gfc_free_dt_list, gfc_symbol_done2)
667 (get_iso_c_binding_dt, generate_isocbinding_symbol): Remove
668 gfc_free_dt_list as gfc_dt_list is obsoleted. Change derived type
669 linked list search/insertion to utilize dt_next pointers in gfc_symbol.
670 * trans-types.c (gfc_get_derived_type): Change derived type linked
671 list search to utilize dt_next pointers in gfc_symbol.
672
673 2018-07-19 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
674
675 * trans-intrinsic.c: (gfc_conv_intrinsic_minmax): Emit MIN_MAX_EXPR
676 or IFN_FMIN/FMAX sequence to calculate the min/max when possible.
677
678 2018-07-18 Janus Weil <janus@gcc.gnu.org>
679 Thomas Koenig <tkoenig@gcc.gnu.org>
680
681 PR fortran/85599
682 * dump-parse-tree.c (show_attr): Add handling of implicit_pure.
683 * frontend-passes.c (do_warn_function_elimination): Do not warn for
684 pure functions.
685 * gfortran.h: Add prototypes for gfc_pure_function and
686 gfc_implicit_pure_function.
687 * gfortran.texi: Add chapter on evaluation of logical expressions.
688 * invoke.texi: Mention that -Wfunction-elimination is implied
689 by -Wextra.
690 * lang.opt: Make -Wextra imply -Wfunction-elimination.
691 * resolve.c (pure_function): Rename to gfc_pure_function.
692 (gfc_implicit_pure_function): New function.
693 (check_pure_function): Use it here.
694 (impure_function_callback): New function.
695 (resolve_operator): Call it via gfc_expr_walker.
696
697 2018-07-16 Fritz Reese <fritzoreese@gmail.com>
698
699 PR fortran/83184
700 * decl.c (match_old_style_init): Initialize locus of variable expr when
701 creating a data variable.
702 (match_clist_expr): Verify array is explicit shape/size before
703 attempting to allocate constant array constructor.
704
705 2018-07-16 Fritz Reese <fritzoreese@gmail.com>
706
707 PR fortran/86417
708 * module.c (mio_component): Set component->loc when loading from module.
709
710 2018-07-10 Jakub Jelinek <jakub@redhat.com>
711
712 PR fortran/86421
713 * module.c (omp_declare_simd_clauses): Add LINEAR with _REF, _VAL and
714 _UVAL suffixes.
715 (mio_omp_declare_simd): Save and restore ref, val and uval modifiers
716 on linear clauses. Initialize n->where to gfc_current_locus.
717
718 2018-07-05 Paul Thomas <pault@gcc.gnu.org>
719
720 PR fortran/86408
721 * resolve.c.c (resolve_contained_fntype): Reference to C418 is
722 in F2008 and not F2003.
723 (resolve_function): Ditto in error message. Also, exclude
724 deferred character length results from the error.
725
726 2018-07-05 Fritz Reese <fritzoreese@gmail.com>
727
728 PR fortran/83183
729 PR fortran/86325
730 * expr.c (class_allocatable, class_pointer, comp_allocatable,
731 comp_pointer): New helpers.
732 (component_initializer): Generate EXPR_NULL for allocatable or pointer
733 components. Do not generate initializers for components within BT_CLASS.
734 Do not assign to comp->initializer.
735 (gfc_generate_initializer): Use new helpers; move code to generate
736 EXPR_NULL for class allocatable components into component_initializer().
737
738 2018-07-04 Jerry DeLisle <jvdelisle@gcc.gnu.org>
739
740 PR fortran/82009
741 * trans-decl.c (gfc_process_block_locals): Delete assert and set
742 saved_local_decls = NULL_TREE.
743
744 2018-07-02 Richard Biener <rguenther@suse.de>
745
746 PR lto/86321
747 * trans-types.c (gfc_get_array_type_bounds): Unshare TYPE_FIELDs
748 for the distinct type copy.
749
750 2018-07-02 Paul Thomas <pault@gcc.gnu.org>
751
752 PR fortran/82969
753 PR fortran/86242
754 * trans-array.c (structure_alloc_comps): Do not explicitly copy
755 procedure pointer components.
756
757 2018-07-02 Paul Thomas <pault@gcc.gnu.org>
758
759 PR fortran/45305
760 * expr.c : Add a prototype for scalarize_intrinsic_call.
761 (gfc_simplify_expr): Use scalarize_intrinsic_call for elemental
762 intrinsic function calls.
763 (scalarize_intrinsic_call): Add 'init_flag' argument. Check if
764 the expression or any of the actual argument expressions are
765 NULL. Before calling gfc_check_init_expr, check 'init_flag'.
766 Only simplify the scalarized expressions if there are no errors
767 on the stack.
768 (gfc_check_init_expr): Set 'init_flag' true in the call to
769 scalarize_intrinsic_call.
770
771 2018-06-28 Fritz Reese <fritzoreese@gmail.com>
772
773 PR fortran/82865
774 * decl.c (gfc_match_type): Refactor and check for PDT declarations.
775
776 2018-06-28 Martin Liska <mliska@suse.cz>
777
778 * gfortranspec.c: Include opt-suggestions.h.
779
780 2018-06-25 Fritz Reese <fritzoreese@gmail.com>
781
782 PR fortran/82972
783 PR fortran/83088
784 PR fortran/85851
785 * expr.c (component_initializer): Assign init expr to c->initializer.
786 (generate_isocbinding_initializer): New.
787 (gfc_generate_initializer): Call generate_isocbinding_initializer to
788 generate initializers for c_ptr and c_funptr with -finit-derived.
789
790 2018-06-23 Jerry DeLisle <jvdelisle@gcc.gnu.org>
791
792 PR fortran/85983
793 * interface.c (check_dtio_interface1): Delete assert.
794
795 2018-06-22 Paul Thomas <pault@gcc.gnu.org>
796 Rainer Orth <ro@gcc.gnu.org>
797
798 PR fortran/86281
799 * resolve.c (resolve_contained_fntype): Check for the charlen
800 before testing the length.
801
802 2018-06-21 Paul Thomas <pault@gcc.gnu.org>
803
804 PR fortran/49630
805 * resolve.c (resolve_contained_fntype): Change standard ref.
806 from F95 to F2003: C418. Correct a spelling error in a comment.
807 It is an error for an abstract interface to have an assumed
808 character length result.
809 * trans-expr.c (gfc_conv_procedure_call): Likewise change the
810 standard reference.
811
812 2018-06-21 Paul Thomas <pault@gcc.gnu.org>
813
814 PR fortran/83118
815 * resolve.c (resolve_ordinary_assign): Force the creation of a
816 vtable for assignment of non-polymorphic expressions to an
817 unlimited polymorphic object.
818 * trans-array.c (gfc_alloc_allocatable_for_assignment): Use the
819 size of the rhs type for such assignments. Set the dtype, _len
820 and vptrs appropriately.
821 * trans-expr.c (gfc_trans_assignment): Force the use of the
822 _copy function for these assignments.
823
824 2018-06-20 Chung-Lin Tang <cltang@codesourcery.com>
825 Thomas Schwinge <thomas@codesourcery.com>
826 Cesar Philippidis <cesar@codesourcery.com>
827
828 * gfortran.h (gfc_omp_clauses): Add unsigned if_present, finalize
829 bitfields.
830 * openmp.c (enum omp_mask2): Remove OMP_CLAUSE_PRESENT_OR_*. Add
831 OMP_CLAUSE_{IF_PRESENT,FINALIZE}.
832 (gfc_match_omp_clauses): Update handling of copy, copyin, copyout,
833 create, deviceptr, present_of_*. Add support for finalize and
834 if_present.
835 (OACC_PARALLEL_CLAUSES): Remove PRESENT_OR_* clauses.
836 (OACC_KERNELS_CLAUSES): Likewise.
837 (OACC_DATA_CLAUSES): Likewise.
838 (OACC_DECLARE_CLAUSES): Likewise.
839 (OACC_UPDATE_CLAUSES): Add IF_PRESENT clause.
840 (OACC_ENTER_DATA_CLAUSES): Remove PRESENT_OR_* clauses.
841 (OACC_EXIT_DATA_CLAUSES): Add FINALIZE clause.
842 (gfc_match_oacc_declare): Update to OpenACC 2.5 semantics.
843 * trans-openmp.c (gfc_trans_omp_clauses): Add support for IF_PRESENT
844 and FINALIZE.
845
846 2018-06-18 Eric Botcazou <ebotcazou@adacore.com>
847
848 * trans-decl.c (gfc_get_fake_result_decl): Revert latest change.
849
850 2018-06-17 Eric Botcazou <ebotcazou@adacore.com>
851
852 * trans-decl.c (nonlocal_dummy_decl_pset): Delete.
853 (nonlocal_dummy_decls): Likewise.
854 (gfc_nonlocal_dummy_array_decl): Likewise.
855 (gfc_get_symbol_decl): Do not call gfc_nonlocal_dummy_array_decl.
856 (gfc_get_fake_result_decl): Do not generate a new DECL if simply
857 reusing the result of a recursive call.
858 (gfc_generate_function_code): Do not create, insert and destroy
859 nonlocal_dummy_decls.
860
861 2018-06-13 Steven G. Kargl <kargl@gcc.gnu.org>
862
863 PR fortran/86110
864 * array.c (gfc_resolve_character_array_constructor): Avoid NULL
865 pointer dereference.
866
867 2018-06-13 Cesar Philippidis <cesar@codesourcery.com>
868
869 PR fortran/85703
870 * parse.c (decode_oacc_directive): Set gfc_matching_function
871 to false.
872 (decode_omp_directive): Likewise.
873
874 2018-06-13 Cesar Philippidis <cesar@codesourcery.com>
875
876 PR fortran/85702
877 * openmp.c (gfc_match_oacc_wait): Use %C to report error location.
878
879 2018-06-12 David Malcolm <dmalcolm@redhat.com>
880
881 PR other/69968
882 * misc.c (gfc_closest_fuzzy_match): Update for renaming of
883 levenshtein_distance to get_edit_distance.
884
885 2018-06-12 Steven G. Kargl <kargl@gcc.gnu.org>
886
887 PR fortran/44491
888 * expr.c (gfc_check_assign): Select non-NULL locus.
889
890 2018-06-11 Janus Weil <janus@gcc.gnu.org>
891
892 PR fortran/45521
893 * interface.c (compare_ptr_alloc): New function.
894 (generic_correspondence): Call it.
895
896 2018-06-10 Thomas Koenig <tkoenig@gcc.gnu.org>
897
898 * gfortran.h (gfc_expr): Add no_bounds_check field.
899 * frontend-passes.c (get_array_inq_function): Set no_bounds_check
900 on function and function argument.
901 (inline_matmul_assign): Set no_bounds_check on zero expression
902 and on lhs of zero expression.
903 Also handle A1B2 case if realloc on assigment is active.
904 * trans-array.c (gfc_conv_array_ref): Don't do range checking
905 if expr has no_bounds_check set.
906 (gfc_conv_expr_descriptor): Set no_bounds_check on ss if expr
907 has it set.
908 * trans-expr.c (gfc_trans_assignment_1): Set no_bounds_check
909 on lss and lss if the corresponding expressions have it set.
910
911 2018-06-10 Dominique d'Humieres <dominiq@gcc.gnu.org>
912
913 PR fortran/79854
914 * trans-const.c: Remove include "diagnostic-core.h".
915 (gfc_conv_constant_to_tree): Replace fatal_error with gcc_unreachable.
916
917 2018-06-10 Janus Weil <janus@gcc.gnu.org>
918
919 PR fortran/85088
920 * decl.c (match_attr_spec): Synchronize the DECL_* enum values with the
921 INTENT_* values from the enum 'sym_intent'. Call 'match_intent_spec'
922 and remove a TODO note.
923 * gfortran.h: Add a comment to sym_intent.
924
925 2018-06-09 Steven G. Kargl <kargl@gcc.gnu.org>
926
927 PR fortran/38351
928 * resolve.c (resolve_operator): Provide better error message for
929 derived type entity used in an binary intrinsic numeric operator.
930
931 2018-06-09 Steven G. Kargl <kargl@gcc.gnu.org>
932
933 PR fortran/85138
934 PR fortran/85996
935 PR fortran/86051
936 * decl.c (gfc_match_char_spec): Use private namespace in attempt to
937 reduce a charlen to a constant.
938
939 2018-06-09 Steven G. Kargl <kargl@gcc.gnu.org>
940
941 PR fortran/78278
942 * data.c (gfc_assign_data_value): Re-arrange code to allow for
943 an error for double initialization of CHARACTER entities.
944
945 2018-06-09 Steven G. Kargl <kargl@gcc.gnu.org>
946
947 PR fortran/63514
948 * symbol.c (gfc_add_volatile): Enforce F2008:C1282 and F2018:C1588.
949
950 2018-06-08 Thomas Koenig <tkoenig@gcc.gnu.org>
951
952 PR fortran/85631
953 * trans.h (gfc_ss): Add field no_bounds_check.
954 * trans-array.c (gfc_conv_ss_startstride): If flag_realloc_lhs and
955 ss->no_bounds_check is set, do not use runtime checks.
956 * trans-expr.c (gfc_trans_assignment_1): Set lss->no_bounds_check
957 for reallocatable lhs.
958
959 2018-06-08 Steven G. Kargl <kargl@gcc.gnu.org>
960
961 PR fortran/86059
962 * array.c (match_array_cons_element): NULL() cannot be in an
963 array constructor.
964
965 2018-06-08 Steven G. Kargl <kargl@gcc.gnu.org>
966
967 PR fortran/78571
968 * data.c (create_character_initializer): Return early if type is
969 incompatible with CHARACTER.
970
971 2018-06-07 Steven G. Kargl <kargl@gcc.gnu.org>
972
973 PR fortran/86045
974 * simplify.c (gfc_simplify_mod): Re-arrange code to test whether
975 'P' is zero and issue an error if it is.
976
977 2018-06-06 Thomas Koenig <tkoenig@gcc.gnu.org>
978
979 PR fortran/85641
980 * frontend-passes.c (is_fe_temp): Add prototype.
981 (realloc_string_callback): Early return for frontend-generated
982 temporary.
983
984 2018-06-05 Cesar Philippidis <cesar@codesourcery.com>
985
986 PR fortran/85701
987
988 * openmp.c (gfc_resolve_oacc_declare): Error on functions and
989 subroutine data clause arguments.
990
991 2018-06-04 Steven G. Kargl <kargl@gcc.gnu.org>
992
993 PR fortran/85981
994 * resolve.c (resolve_allocate_deallocate): Check errmsg is default
995 character kind.
996
997 2018-06-03 Paul Thomas <pault@gcc.gnu.org>
998
999 PR fortran/36497
1000 * decl.c (variable_decl): Use gfc_add_type for cray pointees.
1001
1002 2018-06-01 Steven G. Kargl <kargl@gcc.gnu.org>
1003
1004 PR fortran/63570
1005 * check.c (gfc_check_random_init): New function. Check arguments of
1006 RANDOM_INIT.
1007 * gfortran.h (GFC_ISYM_RANDOM_INIT): New enum token.
1008 * intrinsic.c (add_subroutines): Add RANDOM_INIT to list of
1009 subroutines.
1010 (gfc_check_intrinsic_standard): Introduce Fortran 2018 check.
1011 * intrinsic.h: Add prototypes for gfc_check_random_init and
1012 gfc_resolve_random_init
1013 * intrinsic.texi: Document new intrinsic subprogram.
1014 * iresolve.c (gfc_resolve_random_init): Resolve routine name.
1015 * trans-decl.c: Declare gfor_fndecl_random_init
1016 * trans-intrinsic.c (conv_intrinsic_random_init): New function.
1017 Translate call to RANDOM_INIT.
1018 (gfc_conv_intrinsic_subroutine): Call it.
1019 * trans.h: Declare gfor_fndecl_random_init
1020
1021 2018-05-27 Steven G. Kargl <kargl@gcc.gnu.org>
1022
1023 * decl.c (match_data_constant): Fortran 2018 allows pointer
1024 initialization in a data statement.
1025
1026 2018-05-25 Janus Weil <janus@gcc.gnu.org>
1027
1028 PR fortran/85839
1029 * match.c (gfc_match_block_data): Call gfc_notify_std to warn about
1030 an obsolescent feature in Fortran 2018.
1031 (gfc_match_equivalence): Ditto.
1032 * resolve.c (resolve_common_blocks): Ditto.
1033 (gfc_resolve_forall): Ditto.
1034 * symbol.c (gfc_define_st_label): Ditto.
1035
1036 2018-05-24 Steven G. Kargl <kargl@gcc.gnu.org>
1037
1038 PR fortran/85543
1039 * resolve.c (update_current_proc_array_outer_dependency): Avoid NULL
1040 pointer dereference.
1041
1042 2018-05-24 Steven G. Kargl <kargl@gcc.gnu.org>
1043
1044 PR fortran/85780
1045 * resolve.c (resolve_fl_procedure): Avoid NULL dereference.
1046
1047 2018-05-24 Steven G. Kargl <kargl@gcc.gnu.org>
1048
1049 PR fortran/85779
1050 * decl.c (gfc_match_derived_decl): Fix NULL point dereference.
1051
1052 2018-05-24 Steven G. Kargl <kargl@gcc.gnu.org>
1053
1054 PR fortran/85895
1055 * resolve.c (resolve_sync): Resolve expression before checking for
1056 an error.
1057
1058 2018-05-22 Janus Weil <janus@gcc.gnu.org>
1059
1060 PR fortran/85841
1061 * libgfortran.h: Remove the macros GFC_STD_F2008_TS and
1062 GFC_STD_OPT_F08TS.
1063 * error.c (notify_std_msg): Remove GFC_STD_F2008_TS.
1064 * options.c (set_default_std_flags): Ditto.
1065 (gfc_handle_option): Make -std=f2008ts an alias for -std=f2018.
1066 * array.c (gfc_match_array_spec): Replace GFC_STD_F2008_TS by
1067 GFC_STD_F2018.
1068 * check.c (gfc_check_atomic, gfc_check_event_query,
1069 gfc_check_c_f_pointer, gfc_check_c_f_procpointer, gfc_check_c_funloc,
1070 gfc_check_c_loc, gfc_check_num_images, gfc_check_this_image): Ditto.
1071 * decl.c (gfc_verify_c_interop_param, gfc_match_decl_type_spec): Ditto.
1072 * intrinsic.c (add_functions, add_subroutines,
1073 gfc_check_intrinsic_standard): Ditto.
1074 * iso-c-binding.def: Ditto.
1075 * iso-fortran-env.def: Ditto.
1076 * match.c (gfc_match_event_post, gfc_match_event_wait,
1077 gfc_match_fail_image, gfc_match_form_team, gfc_match_change_team,
1078 gfc_match_end_team, gfc_match_sync_team): Ditto.
1079 * gfortran.texi: Remove mention of -std=f2008ts.
1080 Move TSs into F2018 section.
1081 * invoke.texi: Update documentation of -std=f2008ts.
1082
1083 2018-05-21 Janus Weil <janus@gcc.gnu.org>
1084
1085 PR fortran/85841
1086 * libgfortran.h: New macros GFC_STD_OPT_*.
1087 * error.c (notify_std_msg): New function.
1088 (gfc_notify_std): Adjust such that it can handle combinations of
1089 GFC_STD_* flags in the 'std' argument, not just a single one.
1090 * match.c (match_arithmetic_if, gfc_match_if): Reject arithmetic if
1091 in Fortran 2018.
1092 (gfc_match_stopcode): Use GFC_STD_OPT_* macros.
1093 * options.c (set_default_std_flags): Warn for F2018 deleted features
1094 by default.
1095 (gfc_handle_option): F2018 deleted features are allowed in earlier
1096 standards.
1097 * symbol.c (gfc_define_st_label, gfc_reference_st_label): Reject
1098 nonblock do constructs in Fortran 2018.
1099
1100 2018-05-20 Paul Thomas <pault@gcc.gnu.org>
1101
1102 PR fortran/80657
1103 * resolve.c (flag_fn_result_spec): Use the 'sym' argument to
1104 test for self refs to the function result in the character len
1105 expression. If a self reference is found, emit an error and
1106 return true.
1107 (resolve_fntype): Use the function symbol in the calls to the
1108 above.
1109
1110 2018-05-20 Paul Thomas <pault@gcc.gnu.org>
1111
1112 PR fortran/49636
1113 * trans-array.c (gfc_get_array_span): Renamed from
1114 'get_array_span'.
1115 (gfc_conv_expr_descriptor): Change references to above.
1116 * trans-array.h : Add prototype for 'gfc_get_array_span'.
1117 * trans-intrinsic.c (gfc_conv_associated): Add pre and post
1118 blocks for 'arg1'.
1119 * trans-stmt.c (trans_associate_var): If the associate name is
1120 a subref array pointer, use gfc_get_array_span for the span.
1121
1122 2018-05-20 Paul Thomas <pault@gcc.gnu.org>
1123
1124 PR fortran/82275
1125 * match.c (gfc_match_type_spec): Go through the array ref and
1126 decrement 'rank' for every dimension that is an element.
1127
1128 2018-05-19 Paul Thomas <pault@gcc.gnu.org>
1129
1130 PR fortran/82923
1131 PR fortran/66694
1132 PR fortran/82617
1133 * trans-array.c (gfc_alloc_allocatable_for_assignment): Set the
1134 charlen backend_decl of the rhs expr to ss->info->string_length
1135 so that the value in the current scope is used.
1136
1137 2018-05-13 Steven G. Kargl <kargl@gcc.gnu.org>
1138
1139 PR fortran/63529
1140 * gfortran.texi: Clarify documentation for Cray pointer and
1141 assumed-sized array.
1142
1143 2018-05-13 Paul Thomas <pault@gcc.gnu.org>
1144
1145 PR fortran/85742
1146 * trans-types.c (gfc_get_dtype_rank_type): Reorder evaluation
1147 of 'size'. If the element type is a pointer use the size of the
1148 TREE_TYPE of the type, unless it is VOID_TYPE. In this latter
1149 case, set the size to zero.
1150
1151 2018-05-13 Steven G. Kargl <kargl@gcc.gnu.org>
1152
1153 * gfortran.h: Remove prototype.
1154 * symbol.c (gfc_new_undo_checkpoint): Remove unused function.
1155
1156 2018-05-11 Steven G. Kargl <kargl@gcc.gnu.org>
1157
1158 PR fortran/85542
1159 * expr.c (check_inquiry): Avoid NULL pointer dereference.
1160
1161 2018-05-10 Steven G. Kargl <kargl@gcc.gnu.org>
1162
1163 PR fortran/85687
1164 * check.c (gfc_check_rank): Check that the argument is a data object.
1165
1166 2018-05-10 Steven G. Kargl <kargl@gcc.gnu.org>
1167
1168 PR fortran/85521
1169 * array.c (gfc_resolve_character_array_constructor): Substrings
1170 with upper bound smaller than lower bound are zero length strings.
1171
1172 2018-05-10 Steven G. Kargl <kargl@gcc.gnu.org>
1173
1174 PR fortran/70870
1175 * data.c (gfc_assign_data_value): Check that a data object does
1176 not also have default initialization.
1177
1178 2018-05-10 Marek Polacek <polacek@redhat.com>
1179
1180 PR fortran/85735
1181 * options.c (gfc_post_options): Set main_input_filename.
1182
1183 2018-05-10 Thomas Koenig <tkoenig@gcc.gnu.org>
1184
1185 PR fortran/54613
1186 * intrinsic.texi: Document BACK for MINLOC and MAXLOC.
1187
1188 2018-05-10 Paul Thomas <pault@gcc.gnu.org>
1189
1190 PR fortran/68846
1191 PR fortran/70864
1192 * resolve.c (get_temp_from_expr): The temporary must not have
1193 dummy or intent attributes.
1194
1195 2018-05-08 Thomas Koenig <tkoenig@gcc.gnu.org>
1196
1197 PR fortran/54613
1198 * check.c (gfc_check_minmaxloc): Remove error for BACK not being
1199 implemented. Use gfc_logical_4_kind for BACK.
1200 * simplify.c (min_max_choose): Add optional argument back_val.
1201 Handle it.
1202 (simplify_minmaxloc_to_scalar): Add argument back_val. Pass
1203 back_val to min_max_choose.
1204 (simplify_minmaxloc_to_nodim): Likewise.
1205 (simplify_minmaxloc_to_array): Likewise.
1206 (gfc_simplify_minmaxloc): Add argument back, handle it.
1207 Pass back_val to specific simplification functions.
1208 (gfc_simplify_minloc): Remove ATTRIBUTE_UNUSED from argument back,
1209 pass it on to gfc_simplify_minmaxloc.
1210 (gfc_simplify_maxloc): Likewise.
1211 * trans-intrinsic.c (gfc_conv_intrinsic_minmaxloc): Adjust
1212 comment. If BACK is true, use greater or equal (or lesser or
1213 equal) insteal of greater (or lesser). Mark the condition of
1214 having found a value which exceeds the limit as unlikely.
1215
1216 2018-05-07 Jeff Law <law@redhat.comg>
1217
1218 * scanner.c (preprocessor_line): Call linemap_add after a line
1219 directive that changes the current filename.
1220
1221 2018-05-06 Andre Vehreschild <vehre@gcc.gnu.org>
1222
1223 PR fortran/85507
1224 * dependency.c (gfc_dep_resolver): Revert looking at coarray dimension
1225 introduced by r259385.
1226 * trans-intrinsic.c (conv_caf_send): Always report a dependency for
1227 same variables in coarray assignments.
1228
1229 2018-05-02 Tom de Vries <tom@codesourcery.com>
1230
1231 PR libgomp/82428
1232 * f95-lang.c (DEF_GOACC_BUILTIN_ONLY): Define.
1233
1234 2018-04-24 Steven G. Kargl <kargl@gcc.gnu.org>
1235
1236 PR fortran/85520
1237 * decl.c (gfc_match_char_spec): Check for negative length and set to 0.
1238
1239 2018-04-14 Andre Vehreschild <vehre@gcc.gnu.org>
1240
1241 PR fortran/81773
1242 PR fortran/83606
1243 * dependency.c (gfc_dep_resolver): Coarray indexes are to be ignored
1244 during dependency computation. They define no data dependency.
1245 * trans-array.c (conv_array_index_offset): The stride can not be set
1246 here, prevent fail.
1247 * trans-intrinsic.c (conv_caf_send): Add creation of temporary array
1248 for caf_get's result and copying to the array with vectorial
1249 indexing.
1250
1251 2018-04-14 Thomas Koenig <tkoenig@gcc.gnu.org>
1252
1253 PR fortran/85387
1254 * frontend-passes.c (traverse_io_block): Check for start, end or
1255 stride being defined by an outer implied DO loop.
1256
1257 2018-04-12 Thomas Koenig <tkoenig@gcc.gnu.org>
1258
1259 PR fortran/83064
1260 PR testsuite/85346
1261 * trans-stmt.c (gfc_trans_forall_loop): Use annot_expr_ivdep_kind
1262 for annotation and remove dependence on -ftree-parallelize-loops.
1263
1264 2018-04-10 Jakub Jelinek <jakub@redhat.com>
1265
1266 PR fortran/85313
1267 * openmp.c (resolve_omp_do): Remove bogus if (j < i) break;.
1268 (resolve_oacc_nested_loops): Likewise. Formatting fix.
1269
1270 2018-04-09 Thomas Koenig <tkoenig@gcc.gnu.org>
1271
1272 PR fortran/83064
1273 * trans-stmt.c (gfc_trans_forall_loop): Remove annotation for
1274 parallell processing of DO CONCURRENT -ftree-parallelize-loops
1275 is set.
1276
1277 2018-04-09 Thomas Koenig <tkoenig@gcc.gnu.org>
1278
1279 PR fortran/51260
1280 * resolve.c (resolve_variable): Simplify cases where access to a
1281 parameter array results in a single constant.
1282
1283 2018-04-02 Thomas Koenig <tkoenig@gcc.gnu.org>
1284
1285 PR fortran/85102
1286 * decl.c (variable_decl): If upper or lower bounds simplify
1287 to a constant, use that.
1288
1289 2018-03-30 Paul Thomas <pault@gcc.gnu.org>
1290
1291 PR fortran/84931
1292 * simplify.c (gfc_convert_constant): Handle case of array
1293 constructors within an array that has no iterator and improve
1294 the conciseness of this section of code.
1295
1296 2017-03-30 Thomas Koenig <tkoenig@gcc.gnu.org>
1297
1298 PR fortran/85111
1299 * array.c (gfc_resolve_character_array_constructor): Early
1300 exit for zero-size arrays.
1301 * simplify.c (simplify_transformation_to_array): Exit early
1302 if the result size is zero.
1303 (simplify_minmaxloc_to_array): Likewise.
1304
1305 2018-03-28 Mikael Morin <mikael@gcc.gnu.org>
1306
1307 PR fortran/69497
1308 * symbol.c (gfc_symbol_done_2): Start freeing namespaces
1309 from the root.
1310 (gfc_free_namespace): Restore assert (revert r258839).
1311
1312 2018-03-28 Jakub Jelinek <jakub@redhat.com>
1313
1314 * gfortran.h (gfc_dt): Rename default_exp field to dec_ext.
1315 * ioparm.def (IOPARM_dt_default_exp): Rename to ...
1316 (IOPARM_dt_dec_ext): ... this.
1317 * trans-io.c (build_dt): Adjust for default_exp renaming to
1318 dec_ext and IOPARM_dt_default_exp renaming to IOPARM_dt_dec_ext.
1319 * io.c (match_io): Likewise.
1320
1321 2018-03-27 Thomas Koenig <tkoenig@gcc.gnu.org>
1322
1323 PR fortran/85084
1324 * frontend-passes.c (gfc_run_passes): Do not run front-end
1325 optimizations if a previous error occurred.
1326
1327 2018-03-27 Thomas Koenig <tkoenig@gcc.gnu.org>
1328 Harald Anlauf <anlauf@gmx.de>
1329
1330 PR fortran/85083
1331 * primary.c (gfc_convert_to_structure_constructor): Check
1332 conformance of argument types in structure constructor.
1333
1334 2018-03-26 Thomas Koenig <tkoenig@gcc.gnu.org>
1335
1336 PR fortran/66709
1337 * io.c: Include constructor.h.
1338 (resolve_tag_format): For a constant character array, concatenate
1339 into a single character expression.
1340
1341 2018-03-25 Seth Johnson <johnsonsr@ornl.gov>
1342 Dominique d'Humieres <dominiq@gcc.gnu.org>
1343
1344 PR fortran/84924
1345 * check.c (gfc_check_c_f_pointer): Allow scalar noninteroperable
1346 scalar derived type with -std=f2003 and -std=f2008.
1347
1348 2018-03-24 Jerry DeLisle <jvdelisle@gcc.gnu.org>
1349 Dominique d'Humieres <dominiq@gcc.gnu.org>
1350
1351 PR fortran/69497
1352 * symbol.c (gfc_free_namespace): Delete the assert and only if
1353 refs count is equals zero, free the namespace. Otherwise,
1354 something is halfway and other errors will resound.
1355
1356 2018-03-24 Thomas Koenig <tkoenig@gcc.gnu.org>
1357
1358 PR fortran/70068
1359 * expr.c (find_substring_ref): Change types of start, end
1360 and length variables to gfc_charlen_t. Set length to zero
1361 for empty substring.
1362
1363 2018-03-24 Steven G. Kargl <kargl@gcc.gnu.org>
1364
1365 PR fortran/42651
1366 * decl.c (check_function_name): Improved error message
1367 (gfc_match_volatile, gfc_match_asynchronous) Use check_function_name.
1368
1369 2018-03-22 Steven G. Kargl <kargl@gcc.gnu.org>
1370
1371 PR fortran/84922
1372 * decl.c (get_proc_name): If the MODULE prefix appears in interface
1373 body, then it must appear on the contained subroutine or function.
1374 While here, fix nearby mis-indented code.
1375
1376 2018-03-21 Thomas Koenig <tkoenig@gcc.gnu.org>
1377 Harald Anlauf <anlauf@gmx.de>
1378
1379 PR fortran/84957
1380 * trans-types.c (gfc_sym_type): Do not dereference NULL pointer.
1381
1382 2018-03-21 Janne Blomqvist <jb@gcc.gnu.org>
1383
1384 PR fortran/84615
1385 * trans-expr.c (gfc_conv_procedure_call): Convert charlen to
1386 gfc_charlen_type_node when calling procedure.
1387
1388 2018-03-20 Steven G. Kargl <kargl@gcc.gnu.org>
1389
1390 PR fortran/85001
1391 * interface.c (symbol_rank): Remove bogus null pointer check that
1392 crept in when translating a ternary operator into an if-else
1393 constructor.
1394
1395 2018-03-19 Thomas Koenig <tkoenig@gcc.gnu.org>
1396
1397 PR fortran/84931
1398 * simplify.c (gfc_convert_constant): Correctly handle iterators
1399 for type conversion.
1400
1401 2018-03-18 Steven G. Kargl <kargl@gcc.gnu.org>
1402
1403 PR fortran/77414
1404 * decl.c (get_proc_name): Check for a subroutine re-defined in
1405 the contain portion of a subroutine. Change language of existing
1406 error message to better describe the issue. While here fix whitespace
1407 issues.
1408
1409 2018-03-18 Steven G. Kargl <kargl@gcc.gnu.org>
1410
1411 PR fortran/65453
1412 * decl.c (get_proc_name): Catch clash between a procedure statement
1413 and a contained subprogram
1414
1415 2018-03-16 Steven G. Kargl <kargl@gcc.gnu.org>
1416
1417 PR fortran/69395
1418 * decl.c (merge_array_spec): Correct the error condition.
1419
1420 2018-03-15 Steven G. Kargl <kargl@gcc.gnu.org>
1421
1422 PR fortran/78741
1423 * decl.c (get_proc_name): Check for clash of entry name with
1424 subroutine name.
1425
1426 2018-03-15 Steven G. Kargl <kargl@gcc.gnu.org>
1427
1428 PR fortran/69395
1429 * decl.c (merge_array_spec): Limit the merging to maximum allowed
1430 dimensions, and issue error message if limit is exceeded.
1431
1432 2018-03-13 Steven G. Kargl <kargl@gcc.gnu.org>
1433
1434 * check.c (gfc_check_kill_sub): Remove check for INTEGER(4) or (8).
1435 * intrinsic.c (add_functions): Remove reference to gfc_resolve_kill.
1436 (add_subroutines): Remove reference to gfc_resolve_kill_sub.
1437 * intrinsic.texi: Update documentation.
1438 * iresolve.c (gfc_resolve_kill, gfc_resolve_kill_sub): Remove.
1439 * trans-decl.c (gfc_build_intrinsic_function_decls): Add
1440 gfor_fndecl_kill and gfor_fndecl_kill_sub
1441 * trans-intrinsic.c (conv_intrinsic_kill, conv_intrinsic_kill_sub): new
1442 functions.
1443 (gfc_conv_intrinsic_function): Use conv_intrinsic_kill.
1444 (gfc_conv_intrinsic_subroutine): Use conv_intrinsic_kill_sub.
1445 * trans.h: Declare gfor_fndecl_kill and gfor_fndecl_kill_sub.
1446
1447 2018-03-11 Paul Thomas <pault@gcc.gnu.org>
1448
1449 PR fortran/84546
1450 * trans-array.c (structure_alloc_comps): Make sure that the
1451 vptr is copied and that the unlimited polymorphic _len is used
1452 to compute the size to be allocated.
1453 * trans-expr.c (gfc_get_class_array_ref): If unlimited, use the
1454 unlimited polymorphic _len for the offset to the element.
1455 (gfc_copy_class_to_class): Set the new 'unlimited' argument.
1456 * trans.h : Add the boolean 'unlimited' to the prototype.
1457
1458 2018-03-11 Steven G. Kargl <kargl@gcc.gnu.org>
1459
1460 PR fortran/83939
1461 * resolve.c (resolve_fl_procedure): Enforce F2018:C15100.
1462
1463 2018-03-11 Steven G. Kargl <kargls@gcc.gnu.org>
1464
1465 * check.c (gfc_check_kill): Check pid and sig are scalar.
1466 (gfc_check_kill_sub): Restrict kind to 4 and 8.
1467 * intrinsic.c (add_function): Sort keyword list. Add pid and sig
1468 keywords for KILL. Remove redundant *back="back" in favor of the
1469 original *bck="back".
1470 (add_subroutines): Sort keyword list. Add pid and sig keywords
1471 for KILL.
1472 * intrinsic.texi: Fix documentation to consistently use pid and sig.
1473 * iresolve.c (gfc_resolve_kill): Kind can only be 4 or 8. Choose the
1474 correct function.
1475 (gfc_resolve_rename_sub): Add comment.
1476
1477 2018-03-11 Thomas Koenig <tkoenig@gcc.gnu.org>
1478
1479 PR fortran/66128
1480 * simplify.c (simplify_transformation): Return default result for
1481 empty array argument.
1482 (gfc_simplify_all): Remove special-case handling for zerosize.
1483 (gfc_simplify_any): Likewise.
1484 (gfc_simplify_count): Likewise.
1485 (gfc_simplify_iall): Likewise.
1486 (gfc_simplify_iany): Likewise.
1487 (gfc_simplify_iparity): Likewise.
1488 (gfc_simplify_minval): Likewise.
1489 (gfc_simplify_maxval): Likewise.
1490 (gfc_simplify_norm2): Likewise.
1491 (gfc_simplify_product): Likewise.
1492 (gfc_simplify_sum): Likewise.
1493
1494 2018-03-10 Steven G. Kargl <kargl@gcc.gnu.org>
1495
1496 PR fortran/84734
1497 * arith.c (check_result, eval_intrinsic): If result overflows, pass
1498 the expression up the chain instead of a NULL pointer.
1499
1500 2018-03-07 Steven G. Kargl <kargl@gcc.gnu.org>
1501
1502 PR fortran/64124
1503 PR fortran/70409
1504 * decl.c (gfc_match_char_spec): Try to reduce a charlen to a constant.
1505
1506 2017-03-06 Thomas Koenig <tkoenig@gcc.gnu.org>
1507
1508 PR fortran/84697
1509 PR fortran/66128
1510 * expr.c (simplify_parameter_variable): If p is a size zero array
1511 and not an ARRAY_EXPR insert an empty array constructor and
1512 return.
1513 * gfortran.h: Add prototype for gfc_is_size_zero_array.
1514 * simplify.c (is_size_zero_array): Make non-static and rename into
1515 (gfc_is_size_zero_array): Check for parameter arrays of zero
1516 size by comparing shape and absence of constructor.
1517 (gfc_simplify_all): Use gfc_is_size_zero_array instead of
1518 is_size_zero_array.
1519 (gfc_simplify_count): Likewise.
1520 (gfc_simplify_iall): Likewise.
1521 (gfc_simplify_iany): Likewise.
1522 (gfc_simplify_iparity): Likewise.
1523 (gfc_simplify_minval): Likewise.
1524 (gfc_simplify_maxval): Likewise.
1525 (gfc_simplify_product): Likewise.
1526 (gfc_simplify_sum): Likewise.
1527
1528 2018-03-06 Steven G. Kargl <kargl@gcc.gnu.org>
1529
1530 PR fortran/56667
1531 * primary.c (match_sym_complex_part): Give the matcher for an implied
1532 do-loop a chance to run.
1533
1534 2018-03-03 Harald Anlauf <anlauf@gmx.de>
1535
1536 PR fortran/71085
1537 * trans-expr.c (gfc_apply_interface_mapping_to_expr): Do not
1538 dereference NULL pointer.
1539
1540 2018-03-03 Steven G. Kargl <kargl@gcc.gnu.org>
1541
1542 PR fortran/66128
1543 * simplify.c (is_size_zero_array): New function to check for size
1544 zero array.
1545 (gfc_simplify_all, gfc_simplify_any, gfc_simplify_count,
1546 gfc_simplify_iall, gfc_simplify_iany, gfc_simplify_iparity,
1547 gfc_simplify_minval, gfc_simplify_maxval, gfc_simplify_norm2,
1548 gfc_simplify_product, gfc_simplify_sum): Use it, and implement
1549 requirements from F2018.
1550
1551 2018-03-03 Steven G. Kargl <kargl@gcc.gnu.org>
1552
1553 PR fortran/51434
1554 * simplify.c (gfc_simplify_transfer): Resolve mold.
1555
1556 2018-03-03 Paul Thomas <pault@gcc.gnu.org>
1557
1558 PR fortran/80965
1559 * resolve.c (build_loc_call): Change symtree name from 'loc' to
1560 '_loc'.
1561
1562 2018-03-01 Paul Thomas <pault@gcc.gnu.org>
1563
1564 PR fortran/84219
1565 * target-memory.c (gfc_interpret_derived): Assert that BT_VOID
1566 components are caf tokens.
1567 (gfc_target_interpret_expr): Treat BT_VOID expressions as
1568 integers.
1569
1570 2018-03-01 Paul Thomas <pault@gcc.gnu.org>
1571
1572 PR fortran/84538
1573 * class.c (class_array_ref_detected): Remove the condition that
1574 there be no reference after the array reference.
1575 (find_intrinsic_vtab): Remove excess whitespace.
1576 * trans-array.c (gfc_conv_scalarized_array_ref): Rename 'tmp'
1577 as 'base and call build_class_array_ref earlier.
1578
1579 2018-02-28 Paul Thomas <pault@gcc.gnu.org>
1580
1581 PR fortran/83901
1582 * trans-stmt.c (trans_associate_var): Make sure that the se
1583 expression is a pointer type before converting it to the symbol
1584 backend_decl type.
1585
1586 2018-02-25 Steven G. Kargl <kargl@gcc.gnu.org>
1587
1588 PR fortran/83633
1589 * decl.c (variable_decl): Check that an explicit-shape-array with
1590 nonconstant bounds is allowed.
1591
1592 2018-02-25 Paul Thomas <pault@gcc.gnu.org>
1593
1594 PR fortran/84523
1595 * trans-intrinsic.c (gfc_conv_allocated): If the argument se
1596 has a pre block, add it to the expression pre block.
1597
1598 2018-02-25 Thomas Koenig <tkoenig@gcc.gnu.org>
1599
1600 PR fortran/78238
1601 * gfortran.h (gfc_integer_4_kind): Define.
1602 * resolve.c (resolve_select_type): Make sure that the
1603 kind of c->high is gfc_integer_4_kind.
1604
1605 2018-02-24 Steven G. Kargl <kargl@gcc.gnu.org>
1606
1607 PR fortran/30792
1608 * decl.c (gfc_match_data): Check for invalid substring in
1609 data-implied-do
1610
1611 2018-02-23 Steven G. Kargl <kargl@gcc.gnu.org>
1612
1613 * intrinsic.texi: Arguments to MATMUL cannot both be rank one.
1614
1615 2018-02-23 Steven G. Kargl <kargl@gcc.gnu.org>
1616
1617 PR fortran/84511
1618 * trans-io.c (transfer_expr): Deal with C_LOC in transfer statement.
1619
1620 2018-02-23 Steven G. Kargl <kargl@gcc.gnu.org>
1621
1622 PR fortran/84346
1623 * interface.c (compare_actual_formal): Issue error if keyword is
1624 used in a statement function.
1625
1626 2018-02-23 Jerry DeLisle <jvdelisle@gcc.gnu.org>
1627
1628 PR fortran/84506
1629 * trans-io.c (set_parameter_value_inquire): Adjust range check of
1630 negative unit values for kind=8 units to the kind=4 negative limit.
1631
1632 2018-02-23 Paul Thomas <pault@gcc.gnu.org>
1633
1634 PR fortran/83149
1635 * trans-types.c (gfc_sym_type): Test sym->ns->proc_name before
1636 accessing its components.
1637
1638 2018-02-23 Paul Thomas <pault@gcc.gnu.org>
1639
1640 PR fortran/83149
1641 * trans-decl.c (gfc_finish_var_decl): Test sym->ns->proc_name
1642 before accessing its components.
1643
1644 2018-02-23 Paul Thomas <pault@gcc.gnu.org>
1645
1646 PR fortran/83148
1647 * trans-const.c : Clean up some whitespace issues.
1648 * trans-expr.c (gfc_conv_initializer): If an iso_c_binding
1649 derived type has a kind value of zero, set it to the default
1650 integer kind.
1651
1652 2018-02-23 Janne Blomqvist <jb@gcc.gnu.org>
1653
1654 PR fortran/84519
1655 * trans-decl.c (gfc_build_builtin_function_decls): Add bool
1656 argument to stop and error stop decls.
1657 * trans-stmt.c (gfc_trans_stop): Add false value to argument
1658 lists.
1659
1660 2018-02-22 Janne Blomqvist <jb@gcc.gnu.org>
1661
1662 PR 78534
1663 PR 84509
1664 * trans-decl.c (gfc_build_builtin_function_decls): Pass
1665 gfc_int8_type node to pause_numeric, size_type_node to
1666 pause_string.
1667 * trans-stmt.c (gfc_trans_pause): Likewise.
1668
1669 2018-02-22 Janne Blomqvist <jb@gcc.gnu.org>
1670
1671 * gfortran.texi: Update Coarray API description.
1672 * trans-decl.c (gfc_build_builtin_function_decls): Use size_t for
1673 character lengths, int for exit codes.
1674 (generate_coarray_sym_init): Use size_t for character length.
1675 * trans-intrinsic.c (conv_co_collective): Likewise.
1676 * trans-stmt.c (gfc_trans_lock_unlock): Likewise.
1677 (gfc_trans_event_post_wait): Likewise.
1678 (gfc_trans_sync): Likewise.
1679 (gfc_trans_stop): Use size_t for character lengths, int for exit
1680 codes.
1681
1682 2018-02-20 Thomas Koenig <tkoenig@gcc.gnu.org>
1683
1684 PR fortran/48890
1685 PR fortran/83823
1686 * primary.c (gfc_convert_to_structure_constructor):
1687 For a constant string constructor, make sure the length
1688 is correct.
1689
1690 2018-02-19 Paul Thomas <pault@gcc.gnu.org>
1691
1692 PR fortran/83344
1693 PR fortran/83975
1694 * resolve.c (resolve_assoc_var): Rearrange the logic for the
1695 determination of the character length of associate names. If
1696 the associate name is missing a length expression or the length
1697 expression is not a constant and the target is not a variable,
1698 make the associate name allocatable and deferred length.
1699 * trans-decl.c (gfc_get_symbol_decl): Null the character length
1700 backend_decl for deferred length associate names that are not
1701 variables. Set 'length' to gfc_index_zero_node for character
1702 associate names, whose character length is a PARM_DECL.
1703
1704 2018-02-19 Thomas Koenig <tkoenig@gcc.gnu.org>
1705
1706 PR fortran/35339
1707 * frontend-passes.c (traverse_io_block): Remove workaround for
1708 PR 80945.
1709
1710 2018-02-19 Andre Vehreschild <vehre@gcc.gnu.org>
1711
1712 * gfortran.texi: Document additional src/dst_type. Fix some typos.
1713 * trans-decl.c (gfc_build_builtin_function_decls): Declare the new
1714 argument of _caf_*_by_ref () with * e { get, send, sendget }.
1715 * trans-intrinsic.c (gfc_conv_intrinsic_caf_get): Add the type of the
1716 data referenced when generating a call to caf_get_by_ref ().
1717 (conv_caf_send): Same but for caf_send_by_ref () and
1718 caf_sendget_by_ref ().
1719
1720 2018-02-18 Jerry DeLisle <jvdelisle@gcc.gnu.org>
1721
1722 PR fortran/84389
1723 * io.c (check_format): Allow FMT_COLON.
1724
1725 2018-02-18 Paul Thomas <pault@gcc.gnu.org>
1726
1727 PR fortran/80945
1728 * trans-array.c (gfc_conv_expr_descriptor): Set parmtype from
1729 the typenode in the case of deferred length characters.
1730
1731 2018-02-17 Thomas Koenig <tkoenig@gcc.gnu.org>
1732
1733 PR fortran/84270
1734 * frontend-passes (scalarized_expr): If the expression
1735 is an assumed size array, leave in the last reference
1736 and pass AR_SECTION instead of AR_FULL to gfc_resolve
1737 in order to avoid an error.
1738
1739 2018-02-17 Paul Thomas <pault@gcc.gnu.org>
1740
1741 PR fortran/84115
1742 * resolve.c (resolve_assoc_var): If a non-constant target expr.
1743 has no string length expression, make the associate variable
1744 into a deferred length, allocatable symbol.
1745 * trans-decl.c (gfc_is_reallocatable_lhs): Add and use a ptr to
1746 the symbol.
1747 * trans-stmt.c (trans_associate_var): Null and free scalar
1748 associate names that are allocatable. After assignment, remove
1749 the allocatable attribute to prevent reallocation.
1750
1751 2018-02-16 Jakub Jelinek <jakub@redhat.com>
1752
1753 PR fortran/84418
1754 * trans-openmp.c (gfc_trans_omp_clauses): For OMP_CLAUSE_LINEAR_REF
1755 kind set OMP_CLAUSE_LINEAR_STEP to TYPE_SIZE_UNIT times last_step.
1756
1757 2018-02-16 Dominique d'Humieres <dominiq@gcc.gnu.org>
1758
1759 PR fortran/84354
1760 * decl.c (gfc_get_pdt_instance): Replace '%qs' with %qs.
1761
1762 2018-02-15 Janus Weil <janus@gcc.gnu.org>
1763
1764 PR fortran/84409
1765 * interface.c (check_dtio_arg_TKR_intent): Add a check for character
1766 length.
1767
1768 2018-02-14 Janus Weil <janus@gcc.gnu.org>
1769
1770 PR fortran/84385
1771 * match.c (gfc_match_select_type): Fix check for selector in
1772 SELECT TYPE statement.
1773
1774 2018-02-13 Janus Weil <janus@gcc.gnu.org>
1775
1776 PR fortran/84313
1777 * symbol.c (check_conflict): Reject procedure pointers in common blocks.
1778
1779 2018-02-13 Alastair McKinstry <alastair.mckinstry@sceal.ie>
1780 Janne Blomqvist <jb@gcc.gnu.org>
1781
1782 * module.c (dump_module): Use lbasename to ensure that module
1783 files are reproducible.
1784
1785 2018-02-12 Janus Weil <janus@gcc.gnu.org>
1786
1787 PR fortran/84273
1788 * resolve.c (resolve_component): Fix checks of passed argument in
1789 procedure-pointer components.
1790
1791 2018-02-11 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
1792
1793 PR fortran/35299
1794 * resolve.c (resolve_formal_arglist): Update error message.
1795
1796 2018-02-11 Andre Vehreschild <vehre@gcc.gnu.org>
1797
1798 * gfortran.texi: Fix typos in documentation of caf_register ().
1799 * trans-array.c (structure_alloc_comps): Only register a component of
1800 a derived typed corray, not of an ultimate component coarray.
1801
1802 2018-02-11 Steven G. Kargl <kargl@gcc.gnu.org>
1803
1804 PR fortran/54223
1805 PR fortran/84276
1806 * interface.c (compare_actual_formal): Add in_statement_function
1807 bool parameter. Skip check of INTENT attribute for statement
1808 functions. Arguments to a statement function cannot be optional,
1809 issue error for missing argument.
1810 (gfc_procedure_use, gfc_ppc_use, gfc_arglist_matches_symbol): Use
1811 in_statement_function.
1812
1813 2018-02-11 Paul Thomas <pault@gcc.gnu.org>
1814
1815 PR fortran/84074
1816 * trans-expr.c (gfc_conv_derived_to_class): Set the use_offset
1817 flag. If the is a vector subscript or the expression is not a
1818 variable, make the descriptor one-based.
1819
1820 2018-02-10 Paul Thomas <pault@gcc.gnu.org>
1821
1822 PR fortran/84141
1823 PR fortran/84155
1824 * trans-array.c (gfc_array_init_size): Revert the change made
1825 in revision 257356 setting the dtype.
1826 * trans-types.c (gfc_get_dtype): Do not use the cached dtype.
1827 Call gfc_get_dtype_rank_type every time.
1828
1829 PR fortran/56691
1830 * trans-array.c (gfc_conv_expr_descriptor): If the source array
1831 is a descriptor type, use its offset, removing the condition
1832 that is be a class expression.
1833
1834 2018-02-07 Steven G. Kargl <kargl@gcc.gnu.org>
1835
1836 PR fortran/82994
1837 * match.c (gfc_match_deallocate): Check for NULL pointer.
1838
1839 2018-02-07 Thomas Koenig <tkoenig@gcc.gnu.org>
1840
1841 PR fortran/68560
1842 * trans-intrinsic.c (gfc_conv_intrinsic_shape): New function.
1843 (gfc_conv_intrinsic_function): Call it.
1844
1845 2018-02-07 Steven G. Kargl <kargl@gcc.gnu.org>
1846
1847 PR fortran/82049
1848 * match.c (gfc_match_type_spec): If the charlen is non-NULL, then
1849 try to resolve it. While here return early if possible.
1850
1851 2018-02-04 Paul Thomas <pault@gcc.gnu.org>
1852
1853 PR fortran/84115
1854 * trans-decl.c (gfc_get_symbol_decl): Do not finish the decl of
1855 'length' if the symbol charlen backend_decl is an indirect ref.
1856
1857 2018-02-03 Paul Thomas <pault@gcc.gnu.org>
1858
1859 PR fortran/84141
1860 PR fortran/84155
1861 * trans-array.c (gfc_array_init_size): Instead of gfc_get_dtype
1862 use gfc_get_dtype_rank_type.
1863
1864 2018-02-01 Janne Blomqvist <jb@gcc.gnu.org>
1865
1866 PR 83975
1867 PR 83344
1868 * resolve.c (resolve_assoc_var): Generate an error if
1869 target length unknown.
1870
1871 2018-02-01 Janne Blomqvist <jb@gcc.gnu.org>
1872
1873 PR fortran/83705
1874 * simplify.c (gfc_simplify_repeat): Increase limit for deferring
1875 to runtime, print a warning message.
1876
1877 2018-01-31 Jakub Jelinek <jakub@redhat.com>
1878
1879 PR fortran/84116
1880 * openmp.c (gfc_match_omp_clauses): If all the linear
1881 gfc_match_omp_variable_list calls failed, don't gfc_free_omp_namelist
1882 nor set *head = NULL. Formatting fixes.
1883
1884 2018-01-31 Paul Thomas <pault@gcc.gnu.org>
1885
1886 PR fortran/84088
1887 * trans-expr.c (gfc_conv_procedure_call): If the parm expr is
1888 an address expression passed to an assumed rank dummy, convert
1889 to an indirect reference.
1890
1891 2018-01-31 Thomas Koenig <tkoenig@gcc.gnu.org>
1892
1893 * dump-parse-tree.c (write_proc): Use sym_name (which may
1894 be sym->binding_label) instead of sym->name.
1895
1896 2018-01-31 Janne Blomqvist <jb@gcc.gnu.org>
1897
1898 * trans-const.c (gfc_conv_string_init): Use gfc_charlen_t instead
1899 of int for slen.
1900
1901 2018-01-31 Janne Blomqvist <jb@gcc.gnu.org>
1902
1903 PR fortran/78534
1904 * trans-expr.c (fill_with_spaces): Use memset instead of
1905 generating loop.
1906 (gfc_trans_string_copy): Improve opportunity to use builtins with
1907 constant lengths.
1908
1909 2018-01-30 Jakub Jelinek <jakub@redhat.com>
1910
1911 PR debug/84131
1912 * trans-array.c (gfc_get_descriptor_offsets_for_info): Set *data_off
1913 to DATA_FIELD's offset rather than OFFSET_FIELD's offset.
1914
1915 2018-01-30 Thomas Koenig <tkoenig@gcc.gnu.org>
1916
1917 PR fortran/84134
1918 * array.c (gfc_ref_dimen_size): Whitespace fixes. If stride is
1919 zero, return false.
1920
1921 2018-01-30 Thomas Koenig <tkoenig@gcc.gnu.org>
1922
1923 PR fortran/84133
1924 * frontend-passes (matmul_to_var_expr): Return early if
1925 in association list.
1926 (inline_matmul_assign): Likewise.
1927
1928 2017-01-29 Thomas Koenig <tkoenig@gcc.gnu.org>
1929
1930 PR fortran/84073
1931 * resolve.c (resolve_component): Ensure BIND(C) character
1932 components have length one.
1933 (resolve_symbol): Likewise for variables.
1934
1935 2018-01-27 Jakub Jelinek <jakub@redhat.com>
1936
1937 PR fortran/84065
1938 * decl.c (add_init_expr_to_sym): Ignore initializers for too large
1939 lengths.
1940
1941 2018-01-26 Damian Rouson <damian@sourceryinstitute.org>
1942 Alessandro Fanfarillo <fanfarillo.gcc@gmail.com>
1943 Soren Rasmussen <s.c.rasmussen@gmail.com>
1944
1945 Partial support for Fortran 2018 teams features.
1946
1947 * array.c (gfc_match_array_ref): add team attribute in coarray
1948 transfers.
1949 * check.c (gfc_check_get_team, gfc_check_team_number): add new
1950 functions for get_team and team_number.
1951 * dump-parse-tree.c (show_code_node): add new statements: form team,
1952 change team, end team, and sync team.
1953 * expr.c (gfc_find_team_co): add new function.
1954 * gfortran.h: add new statements.
1955 * intrinsic.c (add_functions): add get_team and team_number functions.
1956 * intrinsic.h: add get_team and team_number prototypes for check,
1957 simplify, and resolve.
1958 * iresolve.c (gfc_resolve_get_team, gfc_resolve_team_number): add new
1959 functions.
1960 * iso-fortran-env.def: add the team_type derived type.
1961 * match.c (gfc_match_if, gfc_match_form_team, gfc_match_team_number)
1962 (gfc_match_end_team, gfc_match_sync_team, gfc_match_change_team):
1963 add change team, end team, form team, sync team match and functions.
1964 * match.h: add new prototypes for change team, end team, form team,
1965 and sync team.
1966 * parse.c (decode_statement): add cases for change team, end team,
1967 form team, and sync team.
1968 * resolve.c: add cases for exec form team, change team, end team, and
1969 sync team.
1970 * simplify.c (gfc_simplify_get_team): add new function for get team.
1971 * st.c (gfc_free_statement): add cases exec for change team, end team,
1972 form team, sync team.
1973 * trans-decl.c (gfor_fndecl_caf_form_team)
1974 (gfor_fndecl_caf_change_team, gfor_fndecl_caf_end_team)
1975 (gfor_fndecl_caf_sync_team, gfor_fndecl_caf_get_team)
1976 (gfor_fndecl_caf_team_number): add functions and definitions.
1977 * trans-intrinsic.c (conv_caf_send, conv_intrinsic_team_number): add
1978 new function and team_type argument support.
1979 * trans-stmt.c (gfc_trans_form_team, gfc_trans_change_team)
1980 (gfc_trans_end_team, gfc_trans_sync_team): add new functions.
1981 * trans-stmt.h: add new prototypes.
1982 * trans-types.c (gfc_get_derived_type): check condition for team_type.
1983 * trans.c (trans_code): new exec cases for form team, change team, end
1984 team, and sync team.
1985 * trans.h: add new prototypes.
1986
1987 2018-01-26 Steven G. Kargl <kargl@gcc.gnu.org>
1988
1989 PR fortran/83998
1990 * simplify.c (compute_dot_product): Initialize result to INTEGER(1) 0
1991 or .false. The summation does the correct type conversion.
1992 (gfc_simplify_dot_product): Special case zero-sized arrays.
1993
1994 2018-25-01 Paul Thomas <pault@gcc.gnu.org>
1995
1996 PR fortran/37577
1997 * array.c (gfc_match_array_ref): If standard earlier than F2008
1998 it is an error if the reference dimension is greater than 7.
1999 libgfortran.h : Increase GFC_MAX_DIMENSIONS to 15. Change the
2000 dtype masks and shifts accordingly.
2001 * trans-array.c (gfc_conv_descriptor_dtype): Use the dtype
2002 type node to check the field.
2003 (gfc_conv_descriptor_dtype): Access the rank field of dtype.
2004 (duplicate_allocatable_coarray): Access the rank field of the
2005 dtype descriptor rather than the dtype itself.
2006 * trans-expr.c (get_scalar_to_descriptor_type): Store the type
2007 of 'scalar' on entry and use its TREE_TYPE if it is ARRAY_TYPE
2008 (ie. a character).
2009 (gfc_conv_procedure_call): Pass TREE_OPERAND (tmp,0) to
2010 get_scalar_to_descriptor_type if the actual expression is a
2011 constant.
2012 (gfc_trans_structure_assign): Assign the rank directly to the
2013 dtype rank field.
2014 * trans-intrinsic.c (gfc_conv_intrinsic_rank): Cast the result
2015 to default integer kind.
2016 (gfc_conv_intrinsic_sizeof): Obtain the element size from the
2017 'elem_len' field of the dtype.
2018 * trans-io.c (gfc_build_io_library_fndecls): Replace
2019 gfc_int4_type_node with dtype_type_node where necessary.
2020 (transfer_namelist_element): Use gfc_get_dtype_rank_type for
2021 scalars.
2022 * trans-types.c : Provide 'get_dtype_type_node' to acces the
2023 dtype_type_node and, if necessary, build it.
2024 The maximum size of an array element is now determined by the
2025 maximum value of size_t.
2026 Update the description of the array descriptor, including the
2027 type def for the dtype_type.
2028 (gfc_get_dtype_rank_type): Build a constructor for the dtype.
2029 Distinguish RECORD_TYPEs that are BT_DERIVED or BT_CLASS.
2030 (gfc_get_array_descriptor_base): Change the type of the dtype
2031 field to dtype_type_node.
2032 (gfc_get_array_descr_info): Get the offset to the rank field of
2033 the dtype.
2034 * trans-types.h : Add a prototype for 'get_dtype_type_node ()'.
2035 * trans.h : Define the indices of the dtype fields.
2036
2037 2018-23-01 Paul Thomas <pault@gcc.gnu.org>
2038
2039 PR fortran/83866
2040 * decl.c (gfc_match_derived_decl): If eos not matched, recover
2041 and emit error about garbage after declaration.
2042
2043 2018-23-01 Paul Thomas <pault@gcc.gnu.org>
2044
2045 PR fortran/83898
2046 * trans-stmt.c (trans_associate_var): Do not set cst_array_ctor
2047 for characters.
2048
2049 2018-01-22 Janne Blomqvist <jb@gcc.gnu.org>
2050
2051 PR 78534
2052 PR 83704
2053 * arith.c (gfc_arith_concat): Use size_t for string length.
2054 (gfc_compare_string): Likewise.
2055 (gfc_compare_with_Cstring): Likewise.
2056 * array.c (gfc_resolve_character_array_constructor): Use
2057 HOST_WIDE_INT, gfc_mpz_get_hwi.
2058 * check.c (gfc_check_fe_runtime_error): Use size_t.
2059 * data.c (create_character_initializer): Use HOST_WIDE_INT,
2060 gfc_extract_hwi.
2061 * decl.c (gfc_set_constant_character_len): Use gfc_charlen_t.
2062 (add_init_expr_to_sym): Use HOST_WIDE_INT.
2063 * expr.c (gfc_build_init_expr): Use HOST_WIDE_INT,
2064 gfc_extract_hwi.
2065 (gfc_apply_init): Likewise.
2066 * match.h (gfc_set_constant_character_len): Update prototype.
2067 * primary.c (match_string_constant): Use size_t.
2068 * resolve.c (resolve_ordinary_assign): Use HOST_WIDE_INT,
2069 gfc_mpz_get_hwi.
2070 * simplify.c (init_result_expr): Likewise.
2071 (gfc_simplify_len_trim): Use size_t.
2072 * target-memory.c (gfc_encode_character): Use size_t.
2073 (gfc_target_encode_expr): Use HOST_WIDE_INT, gfc_mpz_get_hwi.
2074 (interpret_array): Use size_t.
2075 (gfc_interpret_character): Likewise.
2076 * target-memory.h (gfc_encode_character): Update prototype.
2077 (gfc_interpret_character): Likewise.
2078 (gfc_target_interpret_expr): Likewise.
2079 * trans-const.c (gfc_build_string_const): Use size_t for length
2080 argument.
2081 (gfc_build_wide_string_const): Likewise.
2082 * trans-const.h (gfc_build_string_const): Likewise.
2083 (gfc_build_wide_string_const): Likewise.
2084
2085 2018-01-20 Steven G. Kargl <kargl@gcc.gnu.org>
2086
2087 PR fortran/83900
2088 * simplify.c (gfc_simplify_matmul): Set return type correctly.
2089
2090 2018-01-19 Steven G. Kargl <kargl@gcc.gnu.org>
2091
2092 PR fortran/83900
2093 * simplify.c (gfc_simplify_matmul): Delete bogus assertion.
2094
2095 2018-01-17 Harald Anlauf <anlauf@gmx.de>
2096
2097 PR fortran/83864
2098 * expr.c (add_init_expr_to_sym): Do not dereference NULL pointer.
2099
2100 2018-01-17 Harald Anlauf <anlauf@gmx.de>
2101
2102 PR fortran/83874
2103 * decl.c (add_init_expr_to_sym): Do not dereference NULL pointer.
2104
2105 2018-01-15 Louis Krupp <louis.krupp@zoho.com>
2106
2107 PR fortran/82257
2108 * interface.c (compare_rank): Don't try to retrieve CLASS_DATA
2109 from symbol marked unlimited polymorphic.
2110 * resolve.c (resolve_structure_cons): Likewise.
2111 * misc.c (gfc_typename): Don't dereference derived->components
2112 if it's NULL.
2113
2114 2018-01-15 Thomas Koenig <tkoenig@gcc.gnu.org>
2115
2116 PR fortran/54613
2117 * gfortran.h (gfc_check_f): Rename f4ml to f5ml.
2118 (gfc_logical_4_kind): New macro
2119 * intrinsic.h (gfc_simplify_minloc): Add a gfc_expr *argument.
2120 (gfc_simplify_maxloc): Likewise.
2121 (gfc_resolve_maxloc): Likewise.
2122 (gfc_resolve_minloc): Likewise.
2123 * check.c (gfc_check_minloc_maxloc): Add checking for "back"
2124 argument; also raise error if it is used (for now). Add it
2125 if it isn't present.
2126 * intrinsic.c (add_sym_4ml): Rename to
2127 (add_sym_5ml), adjust for extra argument.
2128 (add_functions): Add "back" constant. Adjust maxloc and minloc
2129 for back argument.
2130 * iresolve.c (gfc_resolve_maxloc): Add back argument. If back is
2131 not of gfc_logical_4_kind, convert.
2132 (gfc_resolve_minloc): Likewise.
2133 * simplify.c (gfc_simplify_minloc): Add back argument.
2134 (gfc_simplify_maxloc): Likewise.
2135 * trans-intinsic.c (gfc_conv_intrinsic_minmaxloc): Rename last
2136 argument to %VAL to ensure passing by value.
2137 (gfc_conv_intrinsic_function): Call gfc_conv_intrinsic_minmaxloc
2138 also for library calls.
2139
2140 2018-01-13 Jerry DeLisle <jvdelisle@gcc.gnu.org>
2141
2142 PR fortran/82007
2143 * resolve.c (resolve_transfer): Delete code looking for 'DT'
2144 format specifiers in format strings. Set formatted to true if a
2145 format string or format label is present.
2146 * trans-io.c (get_dtio_proc): Likewise. (transfer_expr): Fix
2147 whitespace.
2148
2149 2018-01-13 Thomas Koenig <tkoenig@gcc.gnu.org>
2150
2151 PR fortran/83744
2152 * dump-parse-tree.c (get_c_type_name): Remove extra line.
2153 Change for loop to use declaration in for loop. Handle BT_LOGICAL
2154 and BT_CHARACTER.
2155 (write_decl): Add where argument. Fix indentation. Replace
2156 assert with error message. Add typename to warning
2157 in comment.
2158 (write_type): Adjust locus to call of write_decl.
2159 (write_variable): Likewise.
2160 (write_proc): Likewise. Replace assert with error message.
2161
2162 2018-01-13 Paul Thomas <pault@gcc.gnu.org>
2163
2164 PR fortran/52162
2165 * trans-expr.c (gfc_trans_scalar_assign): Flag is_alloc_lhs if
2166 the rhs expression is neither an elemental nor a conversion
2167 function.
2168
2169 PR fortran/83622
2170 * trans-array.c (is_pointer_array): Remove unconditional return
2171 of false for -fopenmp.
2172
2173 2018-01-13 Thomas Koenig <tkoenig@gcc.gnu.org>
2174 <emsr@gcc.gnu.org>
2175
2176 PR fortran/83803
2177 * dump-parse-tree.c (write_proc): Always emit closing parenthesis
2178 for functions.
2179
2180 2018-01-10 Steven G. Kargl <kargl@gcc.gnu.org>
2181
2182 PR fortran/82367
2183 * resolve.c (resolve_allocate_expr): Check for NULL pointer.
2184
2185 2018-01-10 Steven G. Kargl <kargl@gcc.gnu.org>
2186
2187 PR fortran/83093
2188 * resolve.c (resolve_charlen): Check the type of cl->length
2189 after resolution.
2190
2191 2018-01-10 Janne Blomqvist <jb@gcc.gnu.org>
2192
2193 PR fortran/83740
2194 * trans-array.c (gfc_trans_array_ctor_element): Fix formatting.
2195
2196 2018-01-10 Janne Blomqvist <jb@gcc.gnu.org>
2197
2198 PR fortran/83740
2199 * trans-array.c (gfc_trans_array_ctor_element): Convert RHS to the
2200 LHS type when assigning.
2201
2202 2018-01-09 Steven G. Kargl <kargl@gcc.gnu.org>
2203
2204 PR fortran/83742
2205 * expr.c (gfc_is_simply_contiguous): Check for NULL pointer.
2206
2207 2018-01-08 Steven G. Kargl <kargl@gcc.gnu.org>
2208
2209 * match.c (gfc_match_allocate): Check for NULL pointer.
2210
2211 2018-01-08 Steven G. Kargl <kargl@gcc.gnu.org>
2212
2213 * expr.c (gfc_check_pointer_assign): Fix typo in comment.
2214
2215 2018-01-08 Paul Thomas <pault@gcc.gnu.org>
2216
2217 PR fortran/83611
2218 * decl.c (gfc_get_pdt_instance): If parameterized arrays have
2219 an initializer, convert the kind parameters and add to the
2220 component if the instance.
2221 * trans-array.c (structure_alloc_comps): Add 'is_pdt_type' and
2222 use it with case COPY_ALLOC_COMP. Call 'duplicate_allocatable'
2223 for parameterized arrays. Clean up typos in comments. Convert
2224 parameterized array initializers and copy into the array.
2225 * trans-expr.c (gfc_trans_scalar_assign): Do a deep copy for
2226 parameterized types.
2227 *trans-stmt.c (trans_associate_var): Deallocate associate vars
2228 as necessary, when they are PDT function results for example.
2229
2230 PR fortran/83731
2231 * trans-array.c (structure_alloc_comps): Only compare len parms
2232 when they are declared explicitly.
2233
2234 2018-01-06 Janne Blomqvist <jb@gcc.gnu.org>
2235
2236 PR fortran/50892
2237 * trans-expr.c (gfc_trans_pointer_assignment): fold_convert rhs to
2238 lhs type.
2239
2240 2018-01-05 Janne Blomqvist <jb@gcc.gnu.org>
2241
2242 PR fortran/78534
2243 PR fortran/66310
2244 * array.c (got_charlen): Use gfc_charlen_int_kind.
2245 * class.c (gfc_find_derived_vtab): Use gfc_size_kind instead of
2246 hardcoded kind.
2247 (find_intrinsic_vtab): Likewise.
2248 * decl.c (match_char_length): Use gfc_charlen_int_kind.
2249 (add_init_expr_to_sym): Use gfc_charlen_t and gfc_charlen_int_kind.
2250 (gfc_match_implicit): Use gfc_charlen_int_kind.
2251 * dump-parse-tree.c (show_char_const): Use gfc_charlen_t and size_t.
2252 (show_expr): Use HOST_WIDE_INT_PRINT_DEC.
2253 * expr.c (gfc_get_character_expr): Length parameter of type
2254 gfc_charlen_t.
2255 (gfc_get_int_expr): Value argument of type HOST_WIDE_INT.
2256 (gfc_extract_hwi): New function.
2257 (simplify_const_ref): Make string_len of type gfc_charlen_t.
2258 (gfc_simplify_expr): Use HOST_WIDE_INT for substring refs.
2259 * frontend-passes.c (optimize_trim): Use gfc_charlen_int_kind.
2260 * gfortran.h (gfc_mpz_get_hwi): New prototype.
2261 (gfc_mpz_set_hwi): Likewise.
2262 (gfc_charlen_t): New typedef.
2263 (gfc_expr): Use gfc_charlen_t for character lengths.
2264 (gfc_size_kind): New extern variable.
2265 (gfc_extract_hwi): New prototype.
2266 (gfc_get_character_expr): Use gfc_charlen_t for character length.
2267 (gfc_get_int_expr): Use HOST_WIDE_INT type for value argument.
2268 * gfortran.texi: Update description of hidden string length argument.
2269 * iresolve.c (check_charlen_present): Use gfc_charlen_int_kind.
2270 (gfc_resolve_char_achar): Likewise.
2271 (gfc_resolve_repeat): Pass string length directly without
2272 temporary, use gfc_charlen_int_kind.
2273 (gfc_resolve_transfer): Use gfc_charlen_int_kind.
2274 * match.c (select_intrinsic_set_tmp): Use HOST_WIDE_INT for charlen.
2275 * misc.c (gfc_mpz_get_hwi): New function.
2276 (gfc_mpz_set_hwi): New function.
2277 * module.c (atom_int): Change type from int to HOST_WIDE_INT.
2278 (parse_integer): Don't complain about large integers.
2279 (write_atom): Use HOST_WIDE_INT for integers.
2280 (mio_integer): Handle integer type mismatch.
2281 (mio_hwi): New function.
2282 (mio_intrinsic_op): Use HOST_WIDE_INT.
2283 (mio_array_ref): Likewise.
2284 (mio_expr): Likewise.
2285 * primary.c (match_substring): Use gfc_charlen_int_kind.
2286 * resolve.c (resolve_substring_charlen): Use gfc_charlen_int_kind.
2287 (resolve_character_operator): Likewise.
2288 (resolve_assoc_var): Likewise.
2289 (resolve_select_type): Use HOST_WIDE_INT for charlen, use snprintf.
2290 (resolve_charlen): Use mpz_sgn to determine sign.
2291 * simplify.c (gfc_simplify_repeat): Use HOST_WIDE_INT/gfc_charlen_t
2292 instead of long.
2293 * symbol.c (generate_isocbinding_symbol): Use gfc_charlen_int_kind.
2294 * target-memory.c (size_character): Length argument of type
2295 gfc_charlen_t.
2296 (gfc_encode_character): Likewise.
2297 (gfc_interpret_character): Use gfc_charlen_t.
2298 * target-memory.h (gfc_encode_character): Modify prototype.
2299 * trans-array.c (gfc_trans_array_ctor_element): Use existing type.
2300 (get_array_ctor_var_strlen): Use gfc_conv_mpz_to_tree_type.
2301 (trans_array_constructor): Use existing type.
2302 (get_array_charlen): Likewise.
2303 * trans-const.c (gfc_conv_mpz_to_tree_type): New function.
2304 * trans-const.h (gfc_conv_mpz_to_tree_type): New prototype.
2305 * trans-decl.c (gfc_trans_deferred_vars): Use existing type.
2306 (add_argument_checking): Likewise.
2307 * trans-expr.c (gfc_class_len_or_zero_get): Build const of type
2308 gfc_charlen_type_node.
2309 (gfc_conv_intrinsic_to_class): Use gfc_charlen_int_kind instead of
2310 4, fold_convert to correct type.
2311 (gfc_conv_class_to_class): Build const of type size_type_node for
2312 size.
2313 (gfc_copy_class_to_class): Likewise.
2314 (gfc_conv_string_length): Use same type in expression.
2315 (gfc_conv_substring): Likewise, use HOST_WIDE_INT for charlen.
2316 (gfc_conv_string_tmp): Make sure len is of the right type.
2317 (gfc_conv_concat_op): Use same type in expression.
2318 (gfc_conv_procedure_call): Likewise.
2319 (fill_with_spaces): Comment out memset() block due to spurious
2320 -Wstringop-overflow warnings.
2321 (gfc_trans_string_copy): Use gfc_charlen_type_node.
2322 (alloc_scalar_allocatable_for_subcomponent_assignment):
2323 fold_convert to right type.
2324 (gfc_trans_subcomponent_assign): Likewise.
2325 (trans_class_vptr_len_assignment): Build const of correct type.
2326 (gfc_trans_pointer_assignment): Likewise.
2327 (alloc_scalar_allocatable_for_assignment): fold_convert to right
2328 type in expr.
2329 (trans_class_assignment): Build const of correct type.
2330 * trans-intrinsic.c (gfc_conv_associated): Likewise.
2331 (gfc_conv_intrinsic_repeat): Do calculation in sizetype.
2332 * trans-io.c (gfc_build_io_library_fndecls): Use
2333 gfc_charlen_type_node for character lengths.
2334 (set_string): Convert to right type in assignment.
2335 * trans-stmt.c (gfc_trans_label_assign): Build const of
2336 gfc_charlen_type_node.
2337 (trans_associate_var): Likewise.
2338 (gfc_trans_character_select): Likewise.
2339 (gfc_trans_allocate): Likewise, don't typecast strlen result.
2340 (gfc_trans_deallocate): Don't typecast strlen result.
2341 * trans-types.c (gfc_size_kind): New variable.
2342 (gfc_init_types): Determine gfc_charlen_int_kind and gfc_size_kind
2343 from size_type_node.
2344 * trans-types.h: Fix comment.
2345
2346 2018-01-04 Thomas Koenig <tkoenig@gcc.gnu.org>
2347
2348 PR fortran/83683
2349 PR fortran/45689
2350 * check.c (gfc_check_eoshift): Check for string length and
2351 for conformance of boundary.
2352 * intrinsic.c (add_functions): Add gfc_simplify_eoshift.
2353 * intrinsic.h: Add prototype for gfc_simplify_eoshift.
2354 * simplify.c (gfc_simplify_eoshift): New function.
2355
2356 2018-01-03 Richard Sandiford <richard.sandiford@linaro.org>
2357 Alan Hayward <alan.hayward@arm.com>
2358 David Sherwood <david.sherwood@arm.com>
2359
2360 * trans-types.c (gfc_type_for_mode): Handle MODE_VECTOR_BOOL.
2361
2362 2018-01-03 Richard Sandiford <richard.sandiford@linaro.org>
2363 Alan Hayward <alan.hayward@arm.com>
2364 David Sherwood <david.sherwood@arm.com>
2365
2366 * trans-types.c (gfc_type_for_mode): Check valid_vector_subparts_p.
2367
2368 2018-01-03 Thomas Koenig <tkoenig@gcc.gnu.org>
2369
2370 PR fortran/83664
2371 * check.c (gfc_check_eoshift): Error for missing boundary if array
2372 is not one of the standard types.
2373
2374 2018-01-03 Jakub Jelinek <jakub@redhat.com>
2375
2376 Update copyright years.
2377
2378 * gfortranspec.c (lang_specific_driver): Update copyright notice
2379 dates.
2380 * gfc-internals.texi: Bump @copying's copyright year.
2381 * gfortran.texi: Ditto.
2382 * intrinsic.texi: Ditto.
2383 * invoke.texi: Ditto.
2384
2385 2017-01-02 Thomas Koenig <tkoenig@gcc.gnu.org>
2386
2387 PR fortran/45689
2388 * intrinsic.c (add_function): Add gfc_simplify_maxloc and
2389 gfc_simplify_minloc to maxloc and minloc, respectively.
2390 * intrinsic.h: Add prototypes for gfc_simplify_minloc
2391 and gfc_simplify_maxloc.
2392 * simplify.c (min_max_chose): Adjust prototype. Modify function
2393 to have a return value which indicates if the extremum was found.
2394 (is_constant_array_expr): Fix typo in comment.
2395 (simplify_minmaxloc_to_scalar): New function.
2396 (simplify_minmaxloc_nodim): New function.
2397 (new_array): New function.
2398 (simplify_minmaxloc_to_array): New function.
2399 (gfc_simplify_minmaxloc): New function.
2400 (simplify_minloc): New function.
2401 (simplify_maxloc): New function.
2402
2403 2018-01-02 Thomas Koenig <tkoenig@gcc.gnu.org>
2404
2405 PR fortran/45689
2406 PR fortran/83650
2407 * simplify.c (gfc_simplify_cshift): Re-implement to allow full
2408 range of arguments.
2409
2410 2018-01-01 Paul Thomas <pault@gcc.gnu.org>
2411
2412 PR fortran/83076
2413 * resolve.c (resolve_fl_derived0): Add caf_token fields for
2414 allocatable and pointer scalars, when -fcoarray selected.
2415 * trans-types.c (gfc_copy_dt_decls_ifequal): Copy the token
2416 field as well as the backend_decl.
2417 (gfc_get_derived_type): Flag GFC_FCOARRAY_LIB for module
2418 derived types that are not vtypes. Components with caf_token
2419 attribute are pvoid types. For a component requiring it, find
2420 the caf_token field and have the component token field point to
2421 its backend_decl.
2422
2423 PR fortran/83319
2424 *trans-types.c (gfc_get_array_descriptor_base): Add the token
2425 field to the descriptor even when codimen not set.
2426 \f
2427 Copyright (C) 2018 Free Software Foundation, Inc.
2428
2429 Copying and distribution of this file, with or without modification,
2430 are permitted in any medium without royalty provided the copyright
2431 notice and this notice are preserved.