2018-04-09 Thomas Koenig <tkoenig@gcc.gnu.org>
[official-gcc.git] / gcc / fortran / ChangeLog
blob53792eb25d8013aa49f4fdda9d5d2302b60f3b5a
1 2018-04-09  Thomas Koenig  <tkoenig@gcc.gnu.org>
3         PR fortran/83064
4         * trans-stmt.c (gfc_trans_forall_loop): Remove annotation for
5         parallell processing of DO CONCURRENT -ftree-parallelize-loops
6         is set.
8 2018-04-09  Thomas Koenig  <tkoenig@gcc.gnu.org>
10         PR fortran/51260
11         * resolve.c (resolve_variable): Simplify cases where access to a
12         parameter array results in a single constant.
14 2018-04-02  Thomas Koenig  <tkoenig@gcc.gnu.org>
16         PR fortran/85102
17         * decl.c (variable_decl): If upper or lower bounds simplify
18         to a constant, use that.
20 2018-03-30  Paul Thomas  <pault@gcc.gnu.org>
22         PR fortran/84931
23         * simplify.c (gfc_convert_constant): Handle case of array
24         constructors within an array that has no iterator and improve
25         the conciseness of this section of code.
27 2017-03-30  Thomas Koenig  <tkoenig@gcc.gnu.org>
29         PR fortran/85111
30         * array.c (gfc_resolve_character_array_constructor): Early
31         exit for zero-size arrays.
32         * simplify.c (simplify_transformation_to_array): Exit early
33         if the result size is zero.
34         (simplify_minmaxloc_to_array): Likewise.
36 2018-03-28  Mikael Morin  <mikael@gcc.gnu.org>
38         PR fortran/69497
39         * symbol.c (gfc_symbol_done_2): Start freeing namespaces
40         from the root.
41         (gfc_free_namespace): Restore assert (revert r258839).
43 2018-03-28  Jakub Jelinek  <jakub@redhat.com>
45         * gfortran.h (gfc_dt): Rename default_exp field to dec_ext.
46         * ioparm.def (IOPARM_dt_default_exp): Rename to ...
47         (IOPARM_dt_dec_ext): ... this.
48         * trans-io.c (build_dt): Adjust for default_exp renaming to
49         dec_ext and IOPARM_dt_default_exp renaming to IOPARM_dt_dec_ext.
50         * io.c (match_io): Likewise.
52 2018-03-27  Thomas Koenig  <tkoenig@gcc.gnu.org>
54         PR fortran/85084
55         * frontend-passes.c (gfc_run_passes): Do not run front-end
56         optimizations if a previous error occurred.
58 2018-03-27  Thomas Koenig  <tkoenig@gcc.gnu.org>
59         Harald Anlauf  <anlauf@gmx.de>
61         PR fortran/85083
62         * primary.c (gfc_convert_to_structure_constructor): Check
63         conformance of argument types in structure constructor.
65 2018-03-26  Thomas Koenig  <tkoenig@gcc.gnu.org>
67         PR fortran/66709
68         * io.c: Include constructor.h.
69         (resolve_tag_format): For a constant character array, concatenate
70         into a single character expression.
72 2018-03-25  Seth Johnson <johnsonsr@ornl.gov>
73         Dominique d'Humieres  <dominiq@gcc.gnu.org>
75         PR fortran/84924
76         * check.c (gfc_check_c_f_pointer): Allow scalar noninteroperable
77         scalar derived type with -std=f2003 and -std=f2008.
79 2018-03-24  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
80             Dominique d'Humieres  <dominiq@gcc.gnu.org>
82         PR fortran/69497
83         * symbol.c (gfc_free_namespace): Delete the assert and only if
84         refs count is equals zero, free the namespace. Otherwise,
85         something is halfway and other errors will resound.
87 2018-03-24  Thomas Koenig  <tkoenig@gcc.gnu.org>
89         PR fortran/70068
90         * expr.c (find_substring_ref): Change types of start, end
91         and length variables to gfc_charlen_t. Set length to zero
92         for empty substring.
94 2018-03-24  Steven G. Kargl  <kargl@gcc.gnu.org>
96         PR fortran/42651
97         * decl.c (check_function_name): Improved error message
98         (gfc_match_volatile, gfc_match_asynchronous) Use check_function_name.
100 2018-03-22  Steven G. Kargl  <kargl@gcc.gnu.org>
102         PR fortran/84922
103         * decl.c (get_proc_name): If the MODULE prefix appears in interface
104         body, then it must appear on the contained subroutine or function.
105         While here, fix nearby mis-indented code.
107 2018-03-21  Thomas Koenig  <tkoenig@gcc.gnu.org>
108         Harald Anlauf  <anlauf@gmx.de>
110         PR fortran/84957
111         * trans-types.c (gfc_sym_type): Do not dereference NULL pointer.
113 2018-03-21  Janne Blomqvist  <jb@gcc.gnu.org>
115         PR fortran/84615
116         * trans-expr.c (gfc_conv_procedure_call): Convert charlen to
117         gfc_charlen_type_node when calling procedure.
119 2018-03-20  Steven G. Kargl  <kargl@gcc.gnu.org>
121         PR fortran/85001
122         * interface.c (symbol_rank): Remove bogus null pointer check that
123         crept in when translating a ternary operator into an if-else
124         constructor.
126 2018-03-19  Thomas Koenig  <tkoenig@gcc.gnu.org>
128         PR fortran/84931
129         * simplify.c (gfc_convert_constant): Correctly handle iterators
130         for type conversion.
132 2018-03-18  Steven G. Kargl  <kargl@gcc.gnu.org>
134         PR fortran/77414
135         * decl.c (get_proc_name):  Check for a subroutine re-defined in
136         the contain portion of a subroutine.  Change language of existing
137         error message to better describe the issue. While here fix whitespace
138         issues.
140 2018-03-18  Steven G. Kargl  <kargl@gcc.gnu.org>
142         PR fortran/65453
143         * decl.c (get_proc_name): Catch clash between a procedure statement
144         and a contained subprogram
146 2018-03-16  Steven G. Kargl  <kargl@gcc.gnu.org>
148         PR fortran/69395
149         * decl.c (merge_array_spec): Correct the error condition.
151 2018-03-15  Steven G. Kargl  <kargl@gcc.gnu.org>
153         PR fortran/78741
154         * decl.c (get_proc_name):  Check for clash of entry name with
155         subroutine name.
157 2018-03-15  Steven G. Kargl  <kargl@gcc.gnu.org>
159         PR fortran/69395
160         * decl.c (merge_array_spec): Limit the merging to maximum allowed
161         dimensions, and issue error message if limit is exceeded.
163 2018-03-13  Steven G. Kargl  <kargl@gcc.gnu.org>
165         * check.c (gfc_check_kill_sub):  Remove check for INTEGER(4) or (8).
166         * intrinsic.c (add_functions): Remove reference to gfc_resolve_kill.
167         (add_subroutines): Remove reference to gfc_resolve_kill_sub.
168         * intrinsic.texi: Update documentation.
169         * iresolve.c (gfc_resolve_kill, gfc_resolve_kill_sub): Remove.
170         * trans-decl.c (gfc_build_intrinsic_function_decls):  Add
171         gfor_fndecl_kill and gfor_fndecl_kill_sub
172         * trans-intrinsic.c (conv_intrinsic_kill, conv_intrinsic_kill_sub): new
173         functions.
174         (gfc_conv_intrinsic_function): Use conv_intrinsic_kill.
175         (gfc_conv_intrinsic_subroutine): Use conv_intrinsic_kill_sub.
176         * trans.h: Declare gfor_fndecl_kill and gfor_fndecl_kill_sub.
178 2018-03-11  Paul Thomas  <pault@gcc.gnu.org>
180         PR fortran/84546
181         * trans-array.c (structure_alloc_comps): Make sure that the
182         vptr is copied and that the unlimited polymorphic _len is used
183         to compute the size to be allocated.
184         * trans-expr.c (gfc_get_class_array_ref): If unlimited, use the
185         unlimited polymorphic _len for the offset to the element.
186         (gfc_copy_class_to_class): Set the new 'unlimited' argument.
187         * trans.h : Add the boolean 'unlimited' to the prototype.
189 2018-03-11  Steven G. Kargl  <kargl@gcc.gnu.org>
191         PR fortran/83939
192         * resolve.c (resolve_fl_procedure): Enforce F2018:C15100.
194 2018-03-11  Steven G. Kargl  <kargls@gcc.gnu.org>
196         * check.c (gfc_check_kill):  Check pid and sig are scalar.
197         (gfc_check_kill_sub): Restrict kind to 4 and 8.
198         * intrinsic.c (add_function): Sort keyword list.  Add pid and sig
199         keywords for KILL.  Remove redundant *back="back" in favor of the
200         original *bck="back".
201         (add_subroutines): Sort keyword list.  Add pid and sig keywords
202         for KILL.
203         * intrinsic.texi: Fix documentation to consistently use pid and sig.
204         * iresolve.c (gfc_resolve_kill): Kind can only be 4 or 8.  Choose the
205         correct function.
206         (gfc_resolve_rename_sub): Add comment.
208 2018-03-11  Thomas Koenig  <tkoenig@gcc.gnu.org>
210         PR fortran/66128
211         * simplify.c (simplify_transformation): Return default result for
212         empty array argument.
213         (gfc_simplify_all): Remove special-case handling for zerosize.
214         (gfc_simplify_any): Likewise.
215         (gfc_simplify_count): Likewise.
216         (gfc_simplify_iall): Likewise.
217         (gfc_simplify_iany): Likewise.
218         (gfc_simplify_iparity): Likewise.
219         (gfc_simplify_minval): Likewise.
220         (gfc_simplify_maxval): Likewise.
221         (gfc_simplify_norm2): Likewise.
222         (gfc_simplify_product): Likewise.
223         (gfc_simplify_sum): Likewise.
225 2018-03-10  Steven G. Kargl  <kargl@gcc.gnu.org>
227         PR fortran/84734
228         * arith.c (check_result, eval_intrinsic):  If result overflows, pass
229         the expression up the chain instead of a NULL pointer.
231 2018-03-07  Steven G. Kargl  <kargl@gcc.gnu.org>
233         PR fortran/64124
234         PR fortran/70409
235         * decl.c (gfc_match_char_spec): Try to reduce a charlen to a constant.
237 2017-03-06  Thomas Koenig  <tkoenig@gcc.gnu.org>
239         PR fortran/84697
240         PR fortran/66128
241         * expr.c (simplify_parameter_variable): If p is a size zero array
242         and not an ARRAY_EXPR insert an empty array constructor and
243         return.
244         * gfortran.h: Add prototype for gfc_is_size_zero_array.
245         * simplify.c (is_size_zero_array): Make non-static and rename into
246         (gfc_is_size_zero_array):  Check for parameter arrays of zero
247         size by comparing shape and absence of constructor.
248         (gfc_simplify_all): Use gfc_is_size_zero_array instead of
249         is_size_zero_array.
250         (gfc_simplify_count): Likewise.
251         (gfc_simplify_iall): Likewise.
252         (gfc_simplify_iany): Likewise.
253         (gfc_simplify_iparity): Likewise.
254         (gfc_simplify_minval): Likewise.
255         (gfc_simplify_maxval): Likewise.
256         (gfc_simplify_product): Likewise.
257         (gfc_simplify_sum): Likewise.
259 2018-03-06  Steven G. Kargl  <kargl@gcc.gnu.org>
261         PR fortran/56667
262         * primary.c (match_sym_complex_part): Give the matcher for an implied
263         do-loop a chance to run.
265 2018-03-03  Harald Anlauf  <anlauf@gmx.de>
267         PR fortran/71085
268         * trans-expr.c (gfc_apply_interface_mapping_to_expr): Do not
269         dereference NULL pointer.
271 2018-03-03  Steven G. Kargl  <kargl@gcc.gnu.org>
273         PR fortran/66128
274         * simplify.c (is_size_zero_array): New function to check for size
275         zero array.
276         (gfc_simplify_all, gfc_simplify_any, gfc_simplify_count,
277          gfc_simplify_iall, gfc_simplify_iany, gfc_simplify_iparity,
278          gfc_simplify_minval, gfc_simplify_maxval, gfc_simplify_norm2,
279          gfc_simplify_product, gfc_simplify_sum): Use it, and implement
280         requirements from F2018.
282 2018-03-03  Steven G. Kargl  <kargl@gcc.gnu.org>
284         PR fortran/51434
285         * simplify.c (gfc_simplify_transfer): Resolve mold.
287 2018-03-03  Paul Thomas  <pault@gcc.gnu.org>
289         PR fortran/80965
290         * resolve.c (build_loc_call): Change symtree name from 'loc' to
291         '_loc'.
293 2018-03-01  Paul Thomas  <pault@gcc.gnu.org>
295         PR fortran/84219
296         * target-memory.c (gfc_interpret_derived): Assert that BT_VOID
297         components are caf tokens.
298         (gfc_target_interpret_expr): Treat BT_VOID expressions as
299         integers.
301 2018-03-01  Paul Thomas  <pault@gcc.gnu.org>
303         PR fortran/84538
304         * class.c (class_array_ref_detected): Remove the condition that
305         there be no reference after the array reference.
306         (find_intrinsic_vtab): Remove excess whitespace.
307         * trans-array.c (gfc_conv_scalarized_array_ref): Rename 'tmp'
308         as 'base and call build_class_array_ref earlier.
310 2018-02-28  Paul Thomas  <pault@gcc.gnu.org>
312         PR fortran/83901
313         * trans-stmt.c (trans_associate_var): Make sure that the se
314         expression is a pointer type before converting it to the symbol
315         backend_decl type.
317 2018-02-25  Steven G. Kargl  <kargl@gcc.gnu.org>
319         PR fortran/83633
320         * decl.c (variable_decl): Check that an explicit-shape-array with
321         nonconstant bounds is allowed.
323 2018-02-25  Paul Thomas  <pault@gcc.gnu.org>
325         PR fortran/84523
326         * trans-intrinsic.c (gfc_conv_allocated): If the argument se
327         has a pre block, add it to the expression pre block.
329 2018-02-25  Thomas Koenig  <tkoenig@gcc.gnu.org>
331         PR fortran/78238
332         * gfortran.h (gfc_integer_4_kind): Define.
333         * resolve.c (resolve_select_type): Make sure that the
334         kind of c->high is gfc_integer_4_kind.
336 2018-02-24  Steven G. Kargl <kargl@gcc.gnu.org>
338         PR fortran/30792
339         * decl.c (gfc_match_data): Check for invalid substring in
340         data-implied-do
342 2018-02-23  Steven G. Kargl  <kargl@gcc.gnu.org>
344         * intrinsic.texi: Arguments to MATMUL cannot both be rank one.
346 2018-02-23  Steven G. Kargl  <kargl@gcc.gnu.org>
348         PR fortran/84511
349         * trans-io.c (transfer_expr): Deal with C_LOC in transfer statement.
351 2018-02-23  Steven G. Kargl  <kargl@gcc.gnu.org>
353         PR fortran/84346
354         * interface.c (compare_actual_formal): Issue error if keyword is
355         used in a statement function.
357 2018-02-23  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
359         PR fortran/84506
360         * trans-io.c (set_parameter_value_inquire): Adjust range check of
361         negative unit values for kind=8 units to the kind=4 negative limit.
363 2018-02-23  Paul Thomas  <pault@gcc.gnu.org>
365         PR fortran/83149
366         * trans-types.c (gfc_sym_type): Test sym->ns->proc_name before
367         accessing its components.
369 2018-02-23  Paul Thomas  <pault@gcc.gnu.org>
371         PR fortran/83149
372         * trans-decl.c (gfc_finish_var_decl): Test sym->ns->proc_name
373         before accessing its components.
375 2018-02-23  Paul Thomas  <pault@gcc.gnu.org>
377         PR fortran/83148
378         * trans-const.c : Clean up some whitespace issues.
379         * trans-expr.c (gfc_conv_initializer): If an iso_c_binding
380         derived type has a kind value of zero, set it to the default
381         integer kind.
383 2018-02-23  Janne Blomqvist  <jb@gcc.gnu.org>
385         PR fortran/84519
386         * trans-decl.c (gfc_build_builtin_function_decls): Add bool
387         argument to stop and error stop decls.
388         * trans-stmt.c (gfc_trans_stop): Add false value to argument
389         lists.
391 2018-02-22  Janne Blomqvist  <jb@gcc.gnu.org>
393         PR 78534
394         PR 84509
395         * trans-decl.c (gfc_build_builtin_function_decls): Pass
396         gfc_int8_type node to pause_numeric, size_type_node to
397         pause_string.
398         * trans-stmt.c (gfc_trans_pause): Likewise.
400 2018-02-22  Janne Blomqvist  <jb@gcc.gnu.org>
402         * gfortran.texi: Update Coarray API description.
403         * trans-decl.c (gfc_build_builtin_function_decls): Use size_t for
404         character lengths, int for exit codes.
405         (generate_coarray_sym_init): Use size_t for character length.
406         * trans-intrinsic.c (conv_co_collective): Likewise.
407         * trans-stmt.c (gfc_trans_lock_unlock): Likewise.
408         (gfc_trans_event_post_wait): Likewise.
409         (gfc_trans_sync): Likewise.
410         (gfc_trans_stop): Use size_t for character lengths, int for exit
411         codes.
413 2018-02-20  Thomas Koenig  <tkoenig@gcc.gnu.org>
415         PR fortran/48890
416         PR fortran/83823
417         * primary.c (gfc_convert_to_structure_constructor):
418         For a constant string constructor, make sure the length
419         is correct.
421 2018-02-19  Paul Thomas  <pault@gcc.gnu.org>
423         PR fortran/83344
424         PR fortran/83975
425         * resolve.c (resolve_assoc_var): Rearrange the logic for the
426         determination of the character length of associate names. If
427         the associate name is missing a length expression or the length
428         expression is not a constant and the target is not a variable,
429         make the associate name allocatable and deferred length.
430         * trans-decl.c (gfc_get_symbol_decl): Null the character length
431         backend_decl for deferred length associate names that are not
432         variables. Set 'length' to gfc_index_zero_node for character
433         associate names, whose character length is a PARM_DECL.
435 2018-02-19  Thomas Koenig  <tkoenig@gcc.gnu.org>
437         PR fortran/35339
438         * frontend-passes.c (traverse_io_block): Remove workaround for
439         PR 80945.
441 2018-02-19  Andre Vehreschild  <vehre@gcc.gnu.org>
443         * gfortran.texi: Document additional src/dst_type.  Fix some typos.
444         * trans-decl.c (gfc_build_builtin_function_decls): Declare the new
445         argument of _caf_*_by_ref () with * e { get, send, sendget }.
446         * trans-intrinsic.c (gfc_conv_intrinsic_caf_get): Add the type of the
447         data referenced when generating a call to caf_get_by_ref ().
448         (conv_caf_send): Same but for caf_send_by_ref () and
449         caf_sendget_by_ref ().
451 2018-02-18  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
453         PR fortran/84389
454         * io.c (check_format): Allow FMT_COLON.
456 2018-02-18  Paul Thomas  <pault@gcc.gnu.org>
458         PR fortran/80945
459         * trans-array.c (gfc_conv_expr_descriptor): Set parmtype from
460         the typenode in the case of deferred length characters.
462 2018-02-17  Thomas Koenig  <tkoenig@gcc.gnu.org>
464         PR fortran/84270
465         * frontend-passes (scalarized_expr):  If the expression
466         is an assumed size array, leave in the last reference
467         and pass AR_SECTION instead of AR_FULL to gfc_resolve
468         in order to avoid an error.
470 2018-02-17  Paul Thomas  <pault@gcc.gnu.org>
472         PR fortran/84115
473         * resolve.c (resolve_assoc_var): If a non-constant target expr.
474         has no string length expression, make the associate variable
475         into a deferred length, allocatable symbol.
476         * trans-decl.c (gfc_is_reallocatable_lhs): Add and use a ptr to
477         the symbol.
478         * trans-stmt.c (trans_associate_var): Null and free scalar
479         associate names that are allocatable. After assignment, remove
480         the allocatable attribute to prevent reallocation.
482 2018-02-16  Jakub Jelinek  <jakub@redhat.com>
484         PR fortran/84418
485         * trans-openmp.c (gfc_trans_omp_clauses): For OMP_CLAUSE_LINEAR_REF
486         kind set OMP_CLAUSE_LINEAR_STEP to TYPE_SIZE_UNIT times last_step.
488 2018-02-16  Dominique d'Humieres  <dominiq@gcc.gnu.org>
490         PR fortran/84354
491         * decl.c (gfc_get_pdt_instance): Replace '%qs' with %qs.
493 2018-02-15  Janus Weil  <janus@gcc.gnu.org>
495         PR fortran/84409
496         * interface.c (check_dtio_arg_TKR_intent): Add a check for character
497         length.
499 2018-02-14  Janus Weil  <janus@gcc.gnu.org>
501         PR fortran/84385
502         * match.c (gfc_match_select_type): Fix check for selector in
503         SELECT TYPE statement.
505 2018-02-13  Janus Weil  <janus@gcc.gnu.org>
507         PR fortran/84313
508         * symbol.c (check_conflict): Reject procedure pointers in common blocks.
510 2018-02-13  Alastair McKinstry  <alastair.mckinstry@sceal.ie>
511             Janne Blomqvist  <jb@gcc.gnu.org>
513         * module.c (dump_module): Use lbasename to ensure that module
514         files are reproducible.
516 2018-02-12  Janus Weil  <janus@gcc.gnu.org>
518         PR fortran/84273
519         * resolve.c (resolve_component): Fix checks of passed argument in
520         procedure-pointer components.
522 2018-02-11  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
524         PR fortran/35299
525         * resolve.c (resolve_formal_arglist): Update error message.
527 2018-02-11  Andre Vehreschild  <vehre@gcc.gnu.org>
529         * gfortran.texi: Fix typos in documentation of caf_register ().
530         * trans-array.c (structure_alloc_comps): Only register a component of
531         a derived typed corray, not of an ultimate component coarray.
533 2018-02-11  Steven G. Kargl  <kargl@gcc.gnu.org>
535         PR fortran/54223
536         PR fortran/84276
537         * interface.c (compare_actual_formal): Add in_statement_function
538         bool parameter.  Skip check of INTENT attribute for statement
539         functions.  Arguments to a statement function cannot be optional,
540         issue error for missing argument.
541         (gfc_procedure_use, gfc_ppc_use, gfc_arglist_matches_symbol): Use
542          in_statement_function.
544 2018-02-11  Paul Thomas  <pault@gcc.gnu.org>
546         PR fortran/84074
547         * trans-expr.c (gfc_conv_derived_to_class): Set the use_offset
548         flag. If the is a vector subscript or the expression is not a
549         variable, make the descriptor one-based.
551 2018-02-10  Paul Thomas  <pault@gcc.gnu.org>
553         PR fortran/84141
554         PR fortran/84155
555         * trans-array.c (gfc_array_init_size): Revert the change made
556         in revision 257356 setting the dtype.
557         * trans-types.c (gfc_get_dtype): Do not use the cached dtype.
558         Call gfc_get_dtype_rank_type every time.
560         PR fortran/56691
561         * trans-array.c (gfc_conv_expr_descriptor): If the source array
562         is a descriptor type, use its offset, removing the condition
563         that is be a class expression.
565 2018-02-07  Steven G. Kargl  <kargl@gcc.gnu.org>
567         PR fortran/82994
568         * match.c (gfc_match_deallocate): Check for NULL pointer.
570 2018-02-07  Thomas Koenig  <tkoenig@gcc.gnu.org>
572         PR fortran/68560
573         * trans-intrinsic.c (gfc_conv_intrinsic_shape): New function.
574         (gfc_conv_intrinsic_function): Call it.
576 2018-02-07  Steven G. Kargl  <kargl@gcc.gnu.org>
578         PR fortran/82049
579         * match.c (gfc_match_type_spec): If the charlen is non-NULL, then
580         try to resolve it.  While here return early if possible.
582 2018-02-04  Paul Thomas  <pault@gcc.gnu.org>
584         PR fortran/84115
585         * trans-decl.c (gfc_get_symbol_decl): Do not finish the decl of
586         'length' if the symbol charlen backend_decl is an indirect ref.
588 2018-02-03  Paul Thomas  <pault@gcc.gnu.org>
590         PR fortran/84141
591         PR fortran/84155
592         * trans-array.c (gfc_array_init_size): Instead of gfc_get_dtype
593         use gfc_get_dtype_rank_type.
595 2018-02-01  Janne Blomqvist  <jb@gcc.gnu.org>
597         PR 83975
598         PR 83344
599         * resolve.c (resolve_assoc_var): Generate an error if
600         target length unknown.
602 2018-02-01  Janne Blomqvist  <jb@gcc.gnu.org>
604         PR fortran/83705
605         * simplify.c (gfc_simplify_repeat): Increase limit for deferring
606         to runtime, print a warning message.
608 2018-01-31  Jakub Jelinek  <jakub@redhat.com>
610         PR fortran/84116
611         * openmp.c (gfc_match_omp_clauses): If all the linear
612         gfc_match_omp_variable_list calls failed, don't gfc_free_omp_namelist
613         nor set *head = NULL.  Formatting fixes.
615 2018-01-31  Paul Thomas  <pault@gcc.gnu.org>
617         PR fortran/84088
618         * trans-expr.c (gfc_conv_procedure_call): If the parm expr is
619         an address expression passed to an assumed rank dummy, convert
620         to an indirect reference.
622 2018-01-31  Thomas Koenig  <tkoenig@gcc.gnu.org>
624         * dump-parse-tree.c (write_proc): Use sym_name (which may
625         be sym->binding_label) instead of sym->name.
627 2018-01-31  Janne Blomqvist  <jb@gcc.gnu.org>
629         * trans-const.c (gfc_conv_string_init): Use gfc_charlen_t instead
630         of int for slen.
632 2018-01-31  Janne Blomqvist  <jb@gcc.gnu.org>
634         PR fortran/78534
635         * trans-expr.c (fill_with_spaces): Use memset instead of
636         generating loop.
637         (gfc_trans_string_copy): Improve opportunity to use builtins with
638         constant lengths.
640 2018-01-30  Jakub Jelinek  <jakub@redhat.com>
642         PR debug/84131
643         * trans-array.c (gfc_get_descriptor_offsets_for_info): Set *data_off
644         to DATA_FIELD's offset rather than OFFSET_FIELD's offset.
646 2018-01-30  Thomas Koenig  <tkoenig@gcc.gnu.org>
648         PR fortran/84134
649         * array.c (gfc_ref_dimen_size): Whitespace fixes.  If stride is
650         zero, return false.
652 2018-01-30  Thomas Koenig  <tkoenig@gcc.gnu.org>
654         PR fortran/84133
655         * frontend-passes (matmul_to_var_expr): Return early if
656         in association list.
657         (inline_matmul_assign): Likewise.
659 2017-01-29  Thomas Koenig  <tkoenig@gcc.gnu.org>
661         PR fortran/84073
662         * resolve.c (resolve_component): Ensure BIND(C) character
663         components have length one.
664         (resolve_symbol): Likewise for variables.
666 2018-01-27  Jakub Jelinek  <jakub@redhat.com>
668         PR fortran/84065
669         * decl.c (add_init_expr_to_sym): Ignore initializers for too large
670         lengths.
672 2018-01-26  Damian Rouson  <damian@sourceryinstitute.org>
673             Alessandro Fanfarillo  <fanfarillo.gcc@gmail.com>
674             Soren Rasmussen  <s.c.rasmussen@gmail.com>
676         Partial support for Fortran 2018 teams features.
678         * array.c (gfc_match_array_ref): add team attribute in coarray
679         transfers.
680         * check.c (gfc_check_get_team, gfc_check_team_number): add new
681         functions for get_team and team_number.
682         * dump-parse-tree.c (show_code_node): add new statements: form team,
683         change team, end team, and sync team.
684         * expr.c (gfc_find_team_co): add new function.
685         * gfortran.h: add new statements.
686         * intrinsic.c (add_functions): add get_team and team_number functions.
687         * intrinsic.h: add get_team and team_number prototypes for check,
688         simplify, and resolve.
689         * iresolve.c (gfc_resolve_get_team, gfc_resolve_team_number): add new
690         functions.
691         * iso-fortran-env.def: add the team_type derived type.
692         * match.c (gfc_match_if, gfc_match_form_team, gfc_match_team_number)
693         (gfc_match_end_team, gfc_match_sync_team, gfc_match_change_team):
694         add change team, end team, form team, sync team match and functions.
695         * match.h: add new prototypes for change team, end team, form team,
696         and sync team.
697         * parse.c (decode_statement): add cases for change team, end team,
698         form team, and sync team.
699         * resolve.c: add cases for exec form team, change team, end team, and
700         sync team.
701         * simplify.c (gfc_simplify_get_team): add new function for get team.
702         * st.c (gfc_free_statement): add cases exec for change team, end team,
703         form team, sync team.
704         * trans-decl.c (gfor_fndecl_caf_form_team)
705         (gfor_fndecl_caf_change_team, gfor_fndecl_caf_end_team)
706         (gfor_fndecl_caf_sync_team, gfor_fndecl_caf_get_team)
707         (gfor_fndecl_caf_team_number): add functions and definitions.
708         * trans-intrinsic.c (conv_caf_send, conv_intrinsic_team_number): add
709         new function and team_type argument support.
710         * trans-stmt.c (gfc_trans_form_team, gfc_trans_change_team)
711         (gfc_trans_end_team, gfc_trans_sync_team): add new functions.
712         * trans-stmt.h: add new prototypes.
713         * trans-types.c (gfc_get_derived_type): check condition for team_type.
714         * trans.c (trans_code): new exec cases for form team, change team, end
715         team, and sync team.
716         * trans.h: add new prototypes.
718 2018-01-26  Steven G. Kargl  <kargl@gcc.gnu.org>
720         PR fortran/83998
721         * simplify.c (compute_dot_product):  Initialize result to INTEGER(1) 0
722         or .false.  The summation does the correct type conversion.
723         (gfc_simplify_dot_product): Special case zero-sized arrays.
725 2018-25-01  Paul Thomas  <pault@gcc.gnu.org>
727         PR fortran/37577
728         * array.c (gfc_match_array_ref): If standard earlier than F2008
729         it is an error if the reference dimension is greater than 7.
730         libgfortran.h : Increase GFC_MAX_DIMENSIONS to 15. Change the
731         dtype masks and shifts accordingly.
732         * trans-array.c (gfc_conv_descriptor_dtype): Use the dtype
733         type node to check the field.
734         (gfc_conv_descriptor_dtype): Access the rank field of dtype.
735         (duplicate_allocatable_coarray): Access the rank field of the
736         dtype descriptor rather than the dtype itself.
737         * trans-expr.c (get_scalar_to_descriptor_type): Store the type
738         of 'scalar' on entry and use its TREE_TYPE if it is ARRAY_TYPE
739         (ie. a character).
740         (gfc_conv_procedure_call): Pass TREE_OPERAND (tmp,0) to
741         get_scalar_to_descriptor_type if the actual expression is a
742         constant.
743         (gfc_trans_structure_assign): Assign the rank directly to the
744         dtype rank field.
745         * trans-intrinsic.c (gfc_conv_intrinsic_rank): Cast the result
746         to default integer kind.
747         (gfc_conv_intrinsic_sizeof): Obtain the element size from the
748         'elem_len' field of the dtype.
749         * trans-io.c (gfc_build_io_library_fndecls): Replace
750         gfc_int4_type_node with dtype_type_node where necessary.
751         (transfer_namelist_element): Use gfc_get_dtype_rank_type for
752         scalars.
753         * trans-types.c : Provide 'get_dtype_type_node' to acces the
754         dtype_type_node and, if necessary, build it.
755         The maximum size of an array element is now determined by the
756         maximum value of size_t.
757         Update the description of the array descriptor, including the
758         type def for the dtype_type.
759         (gfc_get_dtype_rank_type): Build a constructor for the dtype.
760         Distinguish RECORD_TYPEs that are BT_DERIVED or BT_CLASS.
761         (gfc_get_array_descriptor_base): Change the type of the dtype
762         field to dtype_type_node.
763         (gfc_get_array_descr_info): Get the offset to the rank field of
764         the dtype.
765         * trans-types.h : Add a prototype for 'get_dtype_type_node ()'.
766         * trans.h : Define the indices of the dtype fields.
768 2018-23-01  Paul Thomas  <pault@gcc.gnu.org>
770         PR fortran/83866
771         * decl.c (gfc_match_derived_decl): If eos not matched, recover
772         and emit error about garbage after declaration.
774 2018-23-01  Paul Thomas  <pault@gcc.gnu.org>
776         PR fortran/83898
777         * trans-stmt.c (trans_associate_var): Do not set cst_array_ctor
778         for characters.
780 2018-01-22  Janne Blomqvist  <jb@gcc.gnu.org>
782         PR 78534
783         PR 83704
784         * arith.c (gfc_arith_concat): Use size_t for string length.
785         (gfc_compare_string): Likewise.
786         (gfc_compare_with_Cstring): Likewise.
787         * array.c (gfc_resolve_character_array_constructor): Use
788         HOST_WIDE_INT, gfc_mpz_get_hwi.
789         * check.c (gfc_check_fe_runtime_error): Use size_t.
790         * data.c (create_character_initializer): Use HOST_WIDE_INT,
791         gfc_extract_hwi.
792         * decl.c (gfc_set_constant_character_len): Use gfc_charlen_t.
793         (add_init_expr_to_sym): Use HOST_WIDE_INT.
794         * expr.c (gfc_build_init_expr): Use HOST_WIDE_INT,
795         gfc_extract_hwi.
796         (gfc_apply_init): Likewise.
797         * match.h (gfc_set_constant_character_len): Update prototype.
798         * primary.c (match_string_constant): Use size_t.
799         * resolve.c (resolve_ordinary_assign): Use HOST_WIDE_INT,
800         gfc_mpz_get_hwi.
801         * simplify.c (init_result_expr): Likewise.
802         (gfc_simplify_len_trim): Use size_t.
803         * target-memory.c (gfc_encode_character): Use size_t.
804         (gfc_target_encode_expr): Use HOST_WIDE_INT, gfc_mpz_get_hwi.
805         (interpret_array): Use size_t.
806         (gfc_interpret_character): Likewise.
807         * target-memory.h (gfc_encode_character): Update prototype.
808         (gfc_interpret_character): Likewise.
809         (gfc_target_interpret_expr): Likewise.
810         * trans-const.c (gfc_build_string_const): Use size_t for length
811         argument.
812         (gfc_build_wide_string_const): Likewise.
813         * trans-const.h (gfc_build_string_const): Likewise.
814         (gfc_build_wide_string_const): Likewise.
816 2018-01-20  Steven G. Kargl  <kargl@gcc.gnu.org>
818         PR fortran/83900
819     * simplify.c (gfc_simplify_matmul): Set return type correctly.
821 2018-01-19  Steven G. Kargl  <kargl@gcc.gnu.org>
823         PR fortran/83900
824         * simplify.c (gfc_simplify_matmul): Delete bogus assertion.
826 2018-01-17  Harald Anlauf  <anlauf@gmx.de>
828         PR fortran/83864
829         * expr.c (add_init_expr_to_sym): Do not dereference NULL pointer.
831 2018-01-17  Harald Anlauf  <anlauf@gmx.de>
833         PR fortran/83874
834         * decl.c (add_init_expr_to_sym): Do not dereference NULL pointer.
836 2018-01-15  Louis Krupp  <louis.krupp@zoho.com>
838         PR fortran/82257
839         * interface.c (compare_rank): Don't try to retrieve CLASS_DATA
840         from symbol marked unlimited polymorphic.
841         * resolve.c (resolve_structure_cons): Likewise.
842         * misc.c (gfc_typename): Don't dereference derived->components
843         if it's NULL.
845 2018-01-15  Thomas Koenig  <tkoenig@gcc.gnu.org>
847         PR fortran/54613
848         * gfortran.h (gfc_check_f): Rename f4ml to f5ml.
849         (gfc_logical_4_kind): New macro
850         * intrinsic.h (gfc_simplify_minloc): Add a gfc_expr *argument.
851         (gfc_simplify_maxloc): Likewise.
852         (gfc_resolve_maxloc): Likewise.
853         (gfc_resolve_minloc): Likewise.
854         * check.c (gfc_check_minloc_maxloc): Add checking for "back"
855         argument; also raise error if it is used (for now). Add it
856         if it isn't present.
857         * intrinsic.c (add_sym_4ml): Rename to
858         (add_sym_5ml), adjust for extra argument.
859         (add_functions): Add "back" constant. Adjust maxloc and minloc
860         for back argument.
861         * iresolve.c (gfc_resolve_maxloc): Add back argument. If back is
862         not of gfc_logical_4_kind, convert.
863         (gfc_resolve_minloc): Likewise.
864         * simplify.c (gfc_simplify_minloc): Add back argument.
865         (gfc_simplify_maxloc): Likewise.
866         * trans-intinsic.c (gfc_conv_intrinsic_minmaxloc): Rename last
867         argument to %VAL to ensure passing by value.
868         (gfc_conv_intrinsic_function): Call gfc_conv_intrinsic_minmaxloc
869         also for library calls.
871 2018-01-13  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
873         PR fortran/82007
874         * resolve.c (resolve_transfer): Delete code looking for 'DT'
875         format specifiers in format strings. Set formatted to true if a
876         format string or format label is present.
877         * trans-io.c (get_dtio_proc): Likewise. (transfer_expr): Fix
878         whitespace.
880 2018-01-13  Thomas Koenig  <tkoenig@gcc.gnu.org>
882         PR fortran/83744
883         * dump-parse-tree.c (get_c_type_name): Remove extra line.
884         Change for loop to use declaration in for loop. Handle BT_LOGICAL
885         and BT_CHARACTER.
886         (write_decl): Add where argument. Fix indentation. Replace
887         assert with error message. Add typename to warning
888         in comment.
889         (write_type): Adjust locus to call of write_decl.
890         (write_variable): Likewise.
891         (write_proc): Likewise. Replace assert with error message.
893 2018-01-13  Paul Thomas  <pault@gcc.gnu.org>
895         PR fortran/52162
896         * trans-expr.c (gfc_trans_scalar_assign): Flag is_alloc_lhs if
897         the rhs expression is neither an elemental nor a conversion
898         function.
900         PR fortran/83622
901         * trans-array.c (is_pointer_array): Remove unconditional return
902         of false for -fopenmp.
904 2018-01-13  Thomas Koenig  <tkoenig@gcc.gnu.org>
905         <emsr@gcc.gnu.org>
907         PR fortran/83803
908         * dump-parse-tree.c (write_proc): Always emit closing parenthesis
909         for functions.
911 2018-01-10  Steven G. Kargl  <kargl@gcc.gnu.org>
913         PR fortran/82367
914         * resolve.c (resolve_allocate_expr): Check for NULL pointer.
916 2018-01-10  Steven G. Kargl  <kargl@gcc.gnu.org>
918         PR fortran/83093
919         * resolve.c (resolve_charlen): Check the type of cl->length
920         after resolution.
922 2018-01-10  Janne Blomqvist  <jb@gcc.gnu.org>
924         PR fortran/83740
925         * trans-array.c (gfc_trans_array_ctor_element): Fix formatting.
927 2018-01-10  Janne Blomqvist  <jb@gcc.gnu.org>
929         PR fortran/83740
930         * trans-array.c (gfc_trans_array_ctor_element): Convert RHS to the
931         LHS type when assigning.
933 2018-01-09  Steven G. Kargl  <kargl@gcc.gnu.org>
935         PR fortran/83742
936         * expr.c (gfc_is_simply_contiguous): Check for NULL pointer.
938 2018-01-08  Steven G. Kargl  <kargl@gcc.gnu.org>
940         * match.c (gfc_match_allocate): Check for NULL pointer.
942 2018-01-08  Steven G. Kargl  <kargl@gcc.gnu.org>
944         * expr.c (gfc_check_pointer_assign): Fix typo in comment.
946 2018-01-08  Paul Thomas  <pault@gcc.gnu.org>
948         PR fortran/83611
949         * decl.c (gfc_get_pdt_instance): If parameterized arrays have
950         an initializer, convert the kind parameters and add to the
951         component if the instance.
952         * trans-array.c (structure_alloc_comps): Add 'is_pdt_type' and
953         use it with case COPY_ALLOC_COMP. Call 'duplicate_allocatable'
954         for parameterized arrays. Clean up typos in comments. Convert
955         parameterized array initializers and copy into the array.
956         * trans-expr.c (gfc_trans_scalar_assign): Do a deep copy for
957         parameterized types.
958         *trans-stmt.c (trans_associate_var): Deallocate associate vars
959         as necessary, when they are PDT function results for example.
961         PR fortran/83731
962         * trans-array.c (structure_alloc_comps): Only compare len parms
963         when they are declared explicitly.
965 2018-01-06  Janne Blomqvist  <jb@gcc.gnu.org>
967         PR fortran/50892
968         * trans-expr.c (gfc_trans_pointer_assignment): fold_convert rhs to
969         lhs type.
971 2018-01-05  Janne Blomqvist  <jb@gcc.gnu.org>
973         PR fortran/78534
974         PR fortran/66310
975         * array.c (got_charlen): Use gfc_charlen_int_kind.
976         * class.c (gfc_find_derived_vtab): Use gfc_size_kind instead of
977         hardcoded kind.
978         (find_intrinsic_vtab): Likewise.
979         * decl.c (match_char_length): Use gfc_charlen_int_kind.
980         (add_init_expr_to_sym): Use gfc_charlen_t and gfc_charlen_int_kind.
981         (gfc_match_implicit): Use gfc_charlen_int_kind.
982         * dump-parse-tree.c (show_char_const): Use gfc_charlen_t and size_t.
983         (show_expr): Use HOST_WIDE_INT_PRINT_DEC.
984         * expr.c (gfc_get_character_expr): Length parameter of type
985         gfc_charlen_t.
986         (gfc_get_int_expr): Value argument of type HOST_WIDE_INT.
987         (gfc_extract_hwi): New function.
988         (simplify_const_ref): Make string_len of type gfc_charlen_t.
989         (gfc_simplify_expr): Use HOST_WIDE_INT for substring refs.
990         * frontend-passes.c (optimize_trim): Use gfc_charlen_int_kind.
991         * gfortran.h (gfc_mpz_get_hwi): New prototype.
992         (gfc_mpz_set_hwi): Likewise.
993         (gfc_charlen_t): New typedef.
994         (gfc_expr): Use gfc_charlen_t for character lengths.
995         (gfc_size_kind): New extern variable.
996         (gfc_extract_hwi): New prototype.
997         (gfc_get_character_expr): Use gfc_charlen_t for character length.
998         (gfc_get_int_expr): Use HOST_WIDE_INT type for value argument.
999         * gfortran.texi: Update description of hidden string length argument.
1000         * iresolve.c (check_charlen_present): Use gfc_charlen_int_kind.
1001         (gfc_resolve_char_achar): Likewise.
1002         (gfc_resolve_repeat): Pass string length directly without
1003         temporary, use gfc_charlen_int_kind.
1004         (gfc_resolve_transfer): Use gfc_charlen_int_kind.
1005         * match.c (select_intrinsic_set_tmp): Use HOST_WIDE_INT for charlen.
1006         * misc.c (gfc_mpz_get_hwi): New function.
1007         (gfc_mpz_set_hwi): New function.
1008         * module.c (atom_int): Change type from int to HOST_WIDE_INT.
1009         (parse_integer): Don't complain about large integers.
1010         (write_atom): Use HOST_WIDE_INT for integers.
1011         (mio_integer): Handle integer type mismatch.
1012         (mio_hwi): New function.
1013         (mio_intrinsic_op): Use HOST_WIDE_INT.
1014         (mio_array_ref): Likewise.
1015         (mio_expr): Likewise.
1016         * primary.c (match_substring): Use gfc_charlen_int_kind.
1017         * resolve.c (resolve_substring_charlen): Use gfc_charlen_int_kind.
1018         (resolve_character_operator): Likewise.
1019         (resolve_assoc_var): Likewise.
1020         (resolve_select_type): Use HOST_WIDE_INT for charlen, use snprintf.
1021         (resolve_charlen): Use mpz_sgn to determine sign.
1022         * simplify.c (gfc_simplify_repeat): Use HOST_WIDE_INT/gfc_charlen_t
1023         instead of long.
1024         * symbol.c (generate_isocbinding_symbol): Use gfc_charlen_int_kind.
1025         * target-memory.c (size_character): Length argument of type
1026         gfc_charlen_t.
1027         (gfc_encode_character): Likewise.
1028         (gfc_interpret_character): Use gfc_charlen_t.
1029         * target-memory.h (gfc_encode_character): Modify prototype.
1030         * trans-array.c (gfc_trans_array_ctor_element): Use existing type.
1031         (get_array_ctor_var_strlen): Use gfc_conv_mpz_to_tree_type.
1032         (trans_array_constructor): Use existing type.
1033         (get_array_charlen): Likewise.
1034         * trans-const.c (gfc_conv_mpz_to_tree_type): New function.
1035         * trans-const.h (gfc_conv_mpz_to_tree_type): New prototype.
1036         * trans-decl.c (gfc_trans_deferred_vars): Use existing type.
1037         (add_argument_checking): Likewise.
1038         * trans-expr.c (gfc_class_len_or_zero_get): Build const of type
1039         gfc_charlen_type_node.
1040         (gfc_conv_intrinsic_to_class): Use gfc_charlen_int_kind instead of
1041         4, fold_convert to correct type.
1042         (gfc_conv_class_to_class): Build const of type size_type_node for
1043         size.
1044         (gfc_copy_class_to_class): Likewise.
1045         (gfc_conv_string_length): Use same type in expression.
1046         (gfc_conv_substring): Likewise, use HOST_WIDE_INT for charlen.
1047         (gfc_conv_string_tmp): Make sure len is of the right type.
1048         (gfc_conv_concat_op): Use same type in expression.
1049         (gfc_conv_procedure_call): Likewise.
1050         (fill_with_spaces): Comment out memset() block due to spurious
1051         -Wstringop-overflow warnings.
1052         (gfc_trans_string_copy): Use gfc_charlen_type_node.
1053         (alloc_scalar_allocatable_for_subcomponent_assignment):
1054         fold_convert to right type.
1055         (gfc_trans_subcomponent_assign): Likewise.
1056         (trans_class_vptr_len_assignment): Build const of correct type.
1057         (gfc_trans_pointer_assignment): Likewise.
1058         (alloc_scalar_allocatable_for_assignment): fold_convert to right
1059         type in expr.
1060         (trans_class_assignment): Build const of correct type.
1061         * trans-intrinsic.c (gfc_conv_associated): Likewise.
1062         (gfc_conv_intrinsic_repeat): Do calculation in sizetype.
1063         * trans-io.c (gfc_build_io_library_fndecls): Use
1064         gfc_charlen_type_node for character lengths.
1065         (set_string): Convert to right type in assignment.
1066         * trans-stmt.c (gfc_trans_label_assign): Build const of
1067         gfc_charlen_type_node.
1068         (trans_associate_var): Likewise.
1069         (gfc_trans_character_select): Likewise.
1070         (gfc_trans_allocate): Likewise, don't typecast strlen result.
1071         (gfc_trans_deallocate): Don't typecast strlen result.
1072         * trans-types.c (gfc_size_kind): New variable.
1073         (gfc_init_types): Determine gfc_charlen_int_kind and gfc_size_kind
1074         from size_type_node.
1075         * trans-types.h: Fix comment.
1077 2018-01-04  Thomas Koenig  <tkoenig@gcc.gnu.org>
1079         PR fortran/83683
1080         PR fortran/45689
1081         * check.c (gfc_check_eoshift): Check for string length and
1082         for conformance of boundary.
1083         * intrinsic.c (add_functions): Add gfc_simplify_eoshift.
1084         * intrinsic.h: Add prototype for gfc_simplify_eoshift.
1085         * simplify.c (gfc_simplify_eoshift): New function.
1087 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
1088             Alan Hayward  <alan.hayward@arm.com>
1089             David Sherwood  <david.sherwood@arm.com>
1091         * trans-types.c (gfc_type_for_mode): Handle MODE_VECTOR_BOOL.
1093 2018-01-03  Richard Sandiford  <richard.sandiford@linaro.org>
1094             Alan Hayward  <alan.hayward@arm.com>
1095             David Sherwood  <david.sherwood@arm.com>
1097         * trans-types.c (gfc_type_for_mode): Check valid_vector_subparts_p.
1099 2018-01-03  Thomas Koenig  <tkoenig@gcc.gnu.org>
1101         PR fortran/83664
1102         * check.c (gfc_check_eoshift): Error for missing boundary if array
1103         is not one of the standard types.
1105 2018-01-03  Jakub Jelinek  <jakub@redhat.com>
1107         Update copyright years.
1109         * gfortranspec.c (lang_specific_driver): Update copyright notice
1110         dates.
1111         * gfc-internals.texi: Bump @copying's copyright year.
1112         * gfortran.texi: Ditto.
1113         * intrinsic.texi: Ditto.
1114         * invoke.texi: Ditto.
1116 2017-01-02  Thomas Koenig  <tkoenig@gcc.gnu.org>
1118         PR fortran/45689
1119         * intrinsic.c (add_function): Add gfc_simplify_maxloc and
1120         gfc_simplify_minloc to maxloc and minloc, respectively.
1121         * intrinsic.h: Add prototypes for gfc_simplify_minloc
1122         and gfc_simplify_maxloc.
1123         * simplify.c (min_max_chose): Adjust prototype.  Modify function
1124         to have a return value which indicates if the extremum was found.
1125         (is_constant_array_expr): Fix typo in comment.
1126         (simplify_minmaxloc_to_scalar): New function.
1127         (simplify_minmaxloc_nodim): New function.
1128         (new_array): New function.
1129         (simplify_minmaxloc_to_array): New function.
1130         (gfc_simplify_minmaxloc): New function.
1131         (simplify_minloc): New function.
1132         (simplify_maxloc): New function.
1134 2018-01-02  Thomas Koenig  <tkoenig@gcc.gnu.org>
1136         PR fortran/45689
1137         PR fortran/83650
1138         * simplify.c (gfc_simplify_cshift): Re-implement to allow full
1139         range of arguments.
1141 2018-01-01  Paul Thomas  <pault@gcc.gnu.org>
1143         PR fortran/83076
1144         * resolve.c (resolve_fl_derived0): Add caf_token fields for
1145         allocatable and pointer scalars, when -fcoarray selected.
1146         * trans-types.c (gfc_copy_dt_decls_ifequal): Copy the token
1147         field as well as the backend_decl.
1148         (gfc_get_derived_type): Flag GFC_FCOARRAY_LIB for module
1149         derived types that are not vtypes. Components with caf_token
1150         attribute are pvoid types. For a component requiring it, find
1151         the caf_token field and have the component token field point to
1152         its backend_decl.
1154         PR fortran/83319
1155         *trans-types.c (gfc_get_array_descriptor_base): Add the token
1156         field to the descriptor even when codimen not set.
1158 Copyright (C) 2018 Free Software Foundation, Inc.
1160 Copying and distribution of this file, with or without modification,
1161 are permitted in any medium without royalty provided the copyright
1162 notice and this notice are preserved.