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