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