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