]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/cp/ChangeLog
Daily bump.
[thirdparty/gcc.git] / gcc / cp / ChangeLog
1 2023-08-29 Marek Polacek <polacek@redhat.com>
2
3 * call.cc (convert_like_internal): Show where the conversion function
4 was declared.
5 (maybe_show_nonconverting_candidate): New.
6 * cp-tree.h (maybe_show_nonconverting_candidate): Declare.
7 * typeck.cc (convert_for_assignment): Call it.
8
9 2023-08-25 Sandra Loosemore <sandra@codesourcery.com>
10
11 * cp-tree.h (cp_convert_omp_range_for): Adjust declaration.
12 * parser.cc (struct omp_for_parse_data): New.
13 (cp_parser_postfix_expression): Diagnose calls to OpenMP runtime
14 in intervening code.
15 (check_omp_intervening_code): New.
16 (cp_parser_statement_seq_opt): Special-case nested loops, blocks,
17 and other constructs for OpenMP loops.
18 (cp_parser_iteration_statement): Reject loops in intervening code.
19 (cp_parser_omp_for_loop_init): Expand comments and tweak the
20 interface slightly to better distinguish input/output parameters.
21 (cp_convert_omp_range_for): Likewise.
22 (cp_parser_omp_loop_nest): New, split from cp_parser_omp_for_loop
23 and largely rewritten. Add more comments.
24 (insert_structured_blocks): New.
25 (find_structured_blocks): New.
26 (struct sit_data, substitute_in_tree_walker, substitute_in_tree):
27 New.
28 (fixup_blocks_walker): New.
29 (cp_parser_omp_for_loop): Rewrite to use recursive descent instead
30 of a loop. Add logic to reshuffle the bits of code collected
31 during parsing so intervening code gets moved to the loop body.
32 (cp_parser_omp_loop): Remove call to finish_omp_for_block, which
33 is now redundant.
34 (cp_parser_omp_simd): Likewise.
35 (cp_parser_omp_for): Likewise.
36 (cp_parser_omp_distribute): Likewise.
37 (cp_parser_oacc_loop): Likewise.
38 (cp_parser_omp_taskloop): Likewise.
39 (cp_parser_pragma): Reject OpenMP pragmas in intervening code.
40 * parser.h (struct cp_parser): Add omp_for_parse_state field.
41 * pt.cc (tsubst_omp_for_iterator): Adjust call to
42 cp_convert_omp_range_for.
43 * semantics.cc (finish_omp_for): Try harder to preserve location
44 of loop variable init expression for use in diagnostics.
45 (struct fofb_data, finish_omp_for_block_walker): New.
46 (finish_omp_for_block): Allow variables to be bound in a BIND_EXPR
47 nested inside BIND instead of directly in BIND itself.
48
49 2023-08-25 Sandra Loosemore <sandra@codesourcery.com>
50
51 * constexpr.cc (cxx_eval_constant_expression): Handle
52 OMP_STRUCTURED_BLOCK.
53 * pt.cc (tsubst_expr): Likewise.
54
55 2023-08-25 Uros Bizjak <ubizjak@gmail.com>
56
57 * call.cc (build_conditional_expr):
58 Rename TRUE/FALSE to true/false.
59 (build_new_op): Ditto.
60
61 2023-08-22 Jason Merrill <jason@redhat.com>
62
63 * pt.cc (outer_template_args): Handle non-template argument.
64 * constraint.cc (maybe_substitute_reqs_for): Pass decl to it.
65 * cp-tree.h (outer_template_args): Adjust.
66
67 2023-08-22 Jason Merrill <jason@redhat.com>
68
69 PR c++/109751
70 * cp-tree.h (member_like_constrained_friend_p): Declare.
71 * decl.cc (member_like_constrained_friend_p): New.
72 (function_requirements_equivalent_p): Check it.
73 (duplicate_decls): Check it.
74 (grokfndecl): Check friend template constraints.
75 * mangle.cc (decl_mangling_context): Check it.
76 (write_unqualified_name): Check it.
77 * pt.cc (uses_outer_template_parms_in_constraints): Fix for friends.
78 (tsubst_friend_function): Don't check satisfaction.
79
80 2023-08-22 Tobias Burnus <tobias@codesourcery.com>
81
82 * parser.cc (cp_parser_omp_clause_defaultmap): Parse
83 'all' as category.
84
85 2023-08-15 Chung-Lin Tang <cltang@codesourcery.com>
86 Thomas Schwinge <thomas@codesourcery.com>
87
88 * parser.cc (OACC_DATA_CLAUSE_MASK): Add PRAGMA_OACC_CLAUSE_DEFAULT.
89
90 2023-08-14 gnaggnoyil <gnaggnoyil@gmail.com>
91
92 DR 2386
93 PR c++/110216
94 * decl.cc (get_tuple_size): Update implementation for DR 2386.
95
96 2023-08-14 Jason Merrill <jason@redhat.com>
97
98 * parser.cc (cp_parser_simple_type_specifier): Handle -std=c++14
99 -fconcepts.
100
101 2023-08-12 Patrick Palka <ppalka@redhat.com>
102 Jason Merrill <jason@redhat.com>
103
104 PR c++/106604
105 * decl.cc (redeclaration_error_message): Remove special handling
106 for deduction guides.
107 (grokfndecl): Give deduction guides a dummy DECL_INITIAL.
108
109 2023-08-11 Patrick Palka <ppalka@redhat.com>
110
111 PR c++/110927
112 * parser.cc (cp_parser_type_requirement): Pass
113 check_dependency_p=true instead of =false.
114
115 2023-08-11 Patrick Palka <ppalka@redhat.com>
116
117 PR c++/71954
118 * decl.cc (grokdeclarator): Pass 'dname' instead of
119 'unqualified_id' as the name when building the VAR_DECL for a
120 static data member. Call check_explicit_specialization for a
121 TEMPLATE_ID_EXPR such member.
122 * pt.cc (finish_member_template_decl): Return NULL_TREE
123 instead of 'decl' when DECL_TEMPLATE_SPECIALIZATION is not
124 set.
125
126 2023-08-11 Patrick Palka <ppalka@redhat.com>
127
128 * ptree.cc (cxx_print_decl): Check for DECL_LANG_SPECIFIC and
129 TS_DECL_COMMON only when necessary. Print DECL_TEMPLATE_INFO
130 for all decls that have it, not just VAR_DECL or FUNCTION_DECL.
131 Also print DECL_USE_TEMPLATE.
132 (cxx_print_type): Print TYPE_TEMPLATE_INFO.
133 <case BOUND_TEMPLATE_TEMPLATE_PARM>: Don't print TYPE_TI_ARGS
134 anymore.
135 <case TEMPLATE_TYPE/TEMPLATE_PARM>: Print TEMPLATE_TYPE_PARM_INDEX
136 instead of printing the index, level and original level
137 individually.
138
139 2023-08-08 Marek Polacek <polacek@redhat.com>
140
141 * parser.cc (cp_parser_postfix_expression): Adjust the call to
142 cp_parser_braced_list.
143 (cp_parser_postfix_open_square_expression): Likewise.
144 (cp_parser_new_initializer): Likewise.
145 (cp_parser_assignment_expression): Adjust the call to
146 cp_parser_initializer_clause.
147 (cp_parser_lambda_introducer): Adjust the call to cp_parser_initializer.
148 (cp_parser_range_for): Adjust the call to cp_parser_braced_list.
149 (cp_parser_jump_statement): Likewise.
150 (cp_parser_mem_initializer): Likewise.
151 (cp_parser_template_argument): Likewise.
152 (cp_parser_default_argument): Adjust the call to cp_parser_initializer.
153 (cp_parser_initializer): Handle null is_direct_init and non_constant_p
154 arguments.
155 (cp_parser_initializer_clause): Handle null non_constant_p argument.
156 (cp_parser_braced_list): Likewise.
157 (cp_parser_initializer_list): Likewise.
158 (cp_parser_member_declaration): Adjust the call to
159 cp_parser_initializer_clause and cp_parser_initializer.
160 (cp_parser_yield_expression): Adjust the call to cp_parser_braced_list.
161 (cp_parser_functional_cast): Likewise.
162 (cp_parser_late_parse_one_default_arg): Adjust the call to
163 cp_parser_initializer.
164 (cp_parser_omp_for_loop_init): Likewise.
165 (cp_parser_omp_declare_reduction_exprs): Likewise.
166
167 2023-08-08 Nathaniel Shead <nathanieloshead@gmail.com>
168
169 PR c++/100482
170 * parser.cc (cp_parser_decltype_expr): Report errors raised by
171 finish_id_expression.
172
173 2023-08-04 Tamar Christina <tamar.christina@arm.com>
174
175 * cp-tree.h (RANGE_FOR_NOVECTOR): New.
176 (cp_convert_range_for, finish_while_stmt_cond, finish_do_stmt,
177 finish_for_cond): Add novector param.
178 * init.cc (build_vec_init): Default novector to false.
179 * method.cc (build_comparison_op): Likewise.
180 * parser.cc (cp_parser_statement): Likewise.
181 (cp_parser_for, cp_parser_c_for, cp_parser_range_for,
182 cp_convert_range_for, cp_parser_iteration_statement,
183 cp_parser_omp_for_loop, cp_parser_pragma): Support novector.
184 (cp_parser_pragma_novector): New.
185 * pt.cc (tsubst_expr): Likewise.
186 * semantics.cc (finish_while_stmt_cond, finish_do_stmt,
187 finish_for_cond): Likewise.
188
189 2023-08-01 Lewis Hyatt <lhyatt@gmail.com>
190
191 * parser.cc (c_init_preprocess): New function.
192 (maybe_read_tokens_for_pragma_lex): New function.
193 (pragma_lex): Support preprocess-only mode.
194 (pragma_lex_discard_to_eol): New function.
195
196 2023-07-31 Chung-Lin Tang <cltang@codesourcery.com>
197
198 * parser.cc (cp_parser_oacc_host_data): Add checking requiring OpenACC
199 host_data construct to have an use_device clause.
200
201 2023-07-28 Ng YongXiang <yongxiangng@gmail.com>
202
203 PR c++/110057
204 PR ipa/83054
205 * init.cc (build_vec_delete_1): Devirtualize array destruction.
206
207 2023-07-27 Patrick Palka <ppalka@redhat.com>
208
209 PR c++/110197
210 * constexpr.cc (cxx_eval_array_reference): Allow synthesizing an
211 empty subobject even if CONSTRUCTOR_NO_CLEARING is set.
212 (cxx_eval_bare_aggregate): Set 'no_slot' to true more generally
213 whenever new_ctx.ctor is set to NULL_TREE by init_subob_ctx,
214 i.e. whenever initializing an subobject of empty type.
215 (cxx_eval_vec_init_1): Define 'no_slot' as above and use it
216 accordingly.
217
218 2023-07-27 Nathaniel Shead <nathanieloshead@gmail.com>
219
220 PR c++/103497
221 * pt.cc (type_uses_auto): Check inside parameter packs.
222
223 2023-07-26 Patrick Palka <ppalka@redhat.com>
224
225 PR c++/110566
226 PR c++/108179
227 * pt.cc (reduce_template_parm_level): Set DECL_TEMPLATE_INFO
228 on the DECL_TEMPLATE_RESULT of the new ttp.
229 (add_defaults_to_ttp): Make a copy of the original ttp's
230 DECL_TEMPLATE_RESULT, and update this copy's DECL_TEMPLATE_INFO
231 as well.
232 (coerce_template_template_parms): Make sure 'scope_args' has
233 the right amount of levels for the ttp argument.
234 (most_general_template): Handle template template parameters.
235 (rewrite_template_parm): Set DECL_TEMPLATE_RESULT on the
236 DECL_TEMPLATE_RESULT of the new ttp.
237
238 2023-07-26 Patrick Palka <ppalka@redhat.com>
239
240 PR c++/110566
241 PR c++/108179
242 * pt.cc (coerce_template_template_parms): Simplify by using
243 DECL_INNERMOST_TEMPLATE_PARMS and removing redundant asserts.
244 Always pass the parameters of the most general template to
245 coerce_template_parms.
246
247 2023-07-26 Patrick Palka <ppalka@redhat.com>
248
249 PR c++/110809
250 * pt.cc (unify) <case INTEGER_CST>: Generalize to handle
251 REAL_CST as well.
252
253 2023-07-26 Marek Polacek <polacek@redhat.com>
254
255 * parser.cc (cp_parser_constant_expression): Allow non_constant_p to be
256 nullptr even when allow_non_constant_p is true. Don't call
257 _rvalue_constant_expression when not necessary. Move local variable
258 declarations closer to their first use.
259 (cp_parser_static_assert): Don't pass a dummy down to
260 cp_parser_constant_expression.
261
262 2023-07-26 Jason Merrill <jason@redhat.com>
263
264 PR c++/106310
265 * parser.cc (cp_parser_template_name): Skip non-member
266 lookup after the template keyword.
267 (cp_parser_lookup_name): Pass down template_keyword_p.
268
269 2023-07-26 Nathaniel Shead <nathanieloshead@gmail.com>
270
271 PR c++/96630
272 PR c++/98675
273 PR c++/70331
274 * constexpr.cc (constexpr_global_ctx::is_outside_lifetime): New
275 function.
276 (constexpr_global_ctx::get_value): Don't return expired values.
277 (constexpr_global_ctx::get_value_ptr): Likewise.
278 (constexpr_global_ctx::remove_value): Mark value outside
279 lifetime.
280 (outside_lifetime_error): New function.
281 (cxx_eval_call_expression): No longer track save_exprs.
282 (cxx_eval_loop_expr): Likewise.
283 (cxx_eval_constant_expression): Add checks for outside lifetime
284 values. Remove local variables at end of bind exprs, and
285 temporaries after cleanup points.
286
287 2023-07-26 Nathaniel Shead <nathanieloshead@gmail.com>
288
289 PR c++/110619
290 * cp-gimplify.cc (cp_genericize_r): Transform RETURN_EXPRs to
291 not return dangling pointers.
292 * cp-tree.h (RETURN_EXPR_LOCAL_ADDR_P): New flag.
293 (check_return_expr): Add a new parameter.
294 * semantics.cc (finish_return_stmt): Set flag on RETURN_EXPR
295 when referring to dangling pointer.
296 * typeck.cc (check_return_expr): Disable transformation of
297 dangling pointers, instead pass this information to caller.
298
299 2023-07-26 Nathaniel Shead <nathanieloshead@gmail.com>
300
301 * constexpr.cc (modifying_const_object_error): Find the source
302 location of the const object's declaration.
303 (cxx_eval_constant_expression): Update input_location to the
304 location of the currently evaluated expression, if possible.
305
306 2023-07-25 Marek Polacek <polacek@redhat.com>
307
308 PR c++/108960
309 * pt.cc (lookup_and_finish_template_variable): Don't clear tf_partial
310 here.
311 (instantiate_template): Reset all complain flags except
312 tf_warning_or_error.
313
314 2023-07-25 Marek Polacek <polacek@redhat.com>
315
316 PR c++/110382
317 * constexpr.cc (cxx_eval_array_reference): Create a new constructor
318 only when we don't already have a matching one. Clear the object
319 when the type is non-scalar.
320
321 2023-07-21 Marek Polacek <polacek@redhat.com>
322
323 PR c++/110106
324 * constexpr.cc (potential_constant_expression_1): Try to complete the
325 type when !processing_template_decl.
326
327 2023-07-20 Marek Polacek <polacek@redhat.com>
328
329 PR c++/110114
330 * call.cc (implicit_conversion_1): Return early if the type isn't
331 complete.
332
333 2023-07-19 Marek Polacek <polacek@redhat.com>
334
335 PR c++/110745
336 * error.cc (dump_simple_decl): Print base class name.
337
338 2023-07-19 Marek Polacek <polacek@redhat.com>
339
340 PR c++/110064
341 * typeck2.cc (process_init_constructor_record): Don't emit
342 -Wmissing-field-initializers for empty classes.
343
344 2023-07-19 Patrick Palka <ppalka@redhat.com>
345
346 * pt.cc (type_unification_real): Test for PARM_DECL instead
347 of TEMPLATE_PARM_INDEX to distinguish a type vs non-type
348 template parameter pack.
349 (type_targs_deducible_from): Likewise.
350
351 2023-07-19 Patrick Palka <ppalka@redhat.com>
352
353 * pt.cc (tsubst_function_decl): Add defaulted 'use_spec_table'
354 flag parameter. Don't look up or insert into the specializations
355 table if 'use_spec_table' is false.
356 (tsubst_decl): Add defaulted 'use_spec_table' flag parameter.
357 Check for error_mark_node.
358 <case FUNCTION_DECL>: Pass 'use_spec_table' to
359 tsubst_function_decl.
360 <case TYPE/VAR_DECL>: Don't call coerce_template_parms.
361 Don't look up or insert into the specializations table if
362 'use_spec_table' is false. Exit earlier if the substituted
363 type is erroneous and we're not complaining, and do so for
364 alias specializations as well.
365 (instantiate_template): Pass false as 'use_spec_table'
366 to tsubst_decl. Call register_specialization afterwards.
367
368 2023-07-18 Jason Merrill <jason@redhat.com>
369
370 * constexpr.cc (cxx_eval_bit_cast): Check that the result of
371 native_interpret_aggregate doesn't need more evaluation.
372
373 2023-07-18 Patrick Palka <ppalka@redhat.com>
374
375 * call.cc (add_template_conv_candidate): Don't check for
376 non-empty 'candidates' here.
377 (build_op_call): Check it here, before we've considered any
378 conversion functions.
379
380 2023-07-18 Patrick Palka <ppalka@redhat.com>
381
382 PR c++/110535
383 * call.cc (add_conv_candidate): Check constraints.
384
385 2023-07-17 Jason Merrill <jason@redhat.com>
386
387 * constexpr.cc (cxx_eval_call_expression): Only cache
388 reduced_constant_expression_p results.
389 (reduced_constant_expression_p): Handle CONSTRUCTOR of scalar type.
390 (cxx_eval_constant_expression): Fold vectors here.
391 (cxx_eval_bare_aggregate): Not here.
392
393 2023-07-15 Patrick Palka <ppalka@redhat.com>
394
395 PR c++/110441
396 * call.cc (keep_unused_object_arg): Use cp_build_compound_expr
397 instead of building a COMPOUND_EXPR directly.
398
399 2023-07-15 Patrick Palka <ppalka@redhat.com>
400
401 PR c++/110524
402 * mangle.cc (write_expression): Handle TEMPLATE_ID_EXPR
403 whose template is already an IDENTIFIER_NODE.
404
405 2023-07-14 Nathaniel Shead <nathanieloshead@gmail.com>
406
407 * constexpr.cc (cxx_eval_constant_expression): Pass t to get_value.
408
409 2023-07-14 Jason Merrill <jason@redhat.com>
410
411 PR c++/110344
412 * constexpr.cc (cxx_eval_constant_expression): Move P2738 handling
413 after heap handling.
414 * name-lookup.cc (get_cxx_dialect_name): Add C++26.
415
416 2023-07-14 Marek Polacek <polacek@redhat.com>
417 Jason Merrill <jason@redhat.com>
418
419 PR c++/109876
420 * decl.cc (cp_finish_decl): Set TREE_CONSTANT when initializing
421 an object of empty class type.
422 * pt.cc (value_dependent_expression_p) <case VAR_DECL>: Treat a
423 constexpr-declared non-constant variable as value-dependent.
424
425 2023-07-11 Patrick Palka <ppalka@redhat.com>
426
427 PR c++/110580
428 * pt.cc (lookup_template_variable): Pass all levels of arguments
429 to coerce_template_parms, and use the parameters from the most
430 general template.
431
432 2023-07-10 Patrick Palka <ppalka@redhat.com>
433
434 PR c++/110523
435 * pt.cc (redeclare_class_template): Relax the ttp DECL_CONTEXT
436 assert, and downgrade it to a checking assert.
437
438 2023-06-30 Patrick Palka <ppalka@redhat.com>
439
440 * cp-tree.h (TEMPLATE_PARM_DESCENDANTS): Harden.
441 (TEMPLATE_TYPE_DESCENDANTS): Define.
442 (TEMPLATE_TEMPLATE_PARM_SIMPLE_P): Define.
443 * pt.cc (reduce_template_parm_level): Revert
444 r14-418-g0bc2a1dc327af9 change.
445 (process_template_parm): Set TEMPLATE_TEMPLATE_PARM_SIMPLE_P
446 appropriately.
447 (uses_outer_template_parms): Determine the outer depth of
448 a template template parm without relying on DECL_CONTEXT.
449 (tsubst) <case TEMPLATE_TEMPLATE_PARM>: Cache lowering a
450 simple template template parm. Consistently use 'code'.
451
452 2023-06-29 Patrick Palka <ppalka@redhat.com>
453
454 PR c++/110468
455 * init.cc (maybe_instantiate_nsdmi_init): Mask out all
456 tsubst flags except for tf_warning_or_error.
457
458 2023-06-29 Patrick Palka <ppalka@redhat.com>
459
460 PR c++/110463
461 * cp-gimplify.cc (cp_fold) <case CONSTRUCTOR>: Propagate
462 CONSTRUCTOR_MUTABLE_POISON.
463
464 2023-06-29 Patrick Palka <ppalka@redhat.com>
465
466 * cp-tree.h (tree_template_info::partial): New data member.
467 (TI_PARTIAL_INFO): New tree accessor.
468 (most_specialized_partial_spec): Add defaulted bool parameter.
469 * module.cc (trees_out::core_vals) <case TEMPLATE_INFO>: Stream
470 TI_PARTIAL_INFO.
471 (trees_in::core_vals) <case TEMPLATE_INFO>: Likewise.
472 * parser.cc (specialization_of): Adjust after making
473 most_specialized_partial_spec return TEMPLATE_INFO instead
474 of TREE_LIST.
475 * pt.cc (process_partial_specialization): Set TI_PARTIAL_INFO
476 of 'decl' to point back to the partial TEMPLATE_DECL. Likewise
477 (and pass rechecking=true to most_specialization_partial_spec).
478 (instantiate_class_template): Likewise.
479 (instantiate_template): Set TI_PARTIAL_INFO to the result of
480 most_specialization_partial_spec after forming a variable
481 template specialization.
482 (most_specialized_partial_spec): Add 'rechecking' parameter.
483 Exit early if the template is not primary. Use the TI_PARTIAL_INFO
484 of the corresponding TEMPLATE_INFO as a cache unless 'rechecking'
485 is true. Don't bother setting TREE_TYPE of each TREE_LIST.
486 (instantiate_decl): Adjust after making
487 most_specialized_partial_spec return TEMPLATE_INFO instead of
488 TREE_LIST.
489 * ptree.cc (cxx_print_xnode) <case TEMPLATE_INFO>: Dump
490 TI_PARTIAL_INFO.
491
492 2023-06-29 Eugene Rozenfeld <erozen@microsoft.com>
493
494 * Make-lang.in: Pass correct stage cc1plus when processing
495 profile data collected while building target libraries
496
497 2023-06-28 Patrick Palka <ppalka@redhat.com>
498
499 PR c++/89442
500 PR c++/107437
501 * cp-tree.h (lookup_template_variable): Add complain parameter.
502 * parser.cc (cp_parser_template_id): Pass tf_warning_or_error
503 to lookup_template_variable.
504 * pt.cc (lookup_template_variable): Add complain parameter.
505 Coerce template arguments here ...
506 (finish_template_variable): ... instead of here.
507 (lookup_and_finish_template_variable): Check for error_mark_node
508 result from lookup_template_variable.
509 (tsubst_copy) <case TEMPLATE_ID_EXPR>: Pass complain to
510 lookup_template_variable.
511 (instantiate_template): Use build2 instead of
512 lookup_template_variable to build a TEMPLATE_ID_EXPR
513 for most_specialized_partial_spec.
514
515 2023-06-28 Marek Polacek <polacek@redhat.com>
516
517 PR c++/110175
518 * typeck.cc (cp_build_unary_op): Check tf_warning before warning.
519
520 2023-06-28 Jason Merrill <jason@redhat.com>
521
522 PR c++/110334
523 * cp-tree.h (clone_attrs): Declare.
524 * method.cc (implicitly_declare_fn): Use it for inherited
525 constructor.
526 * optimize.cc (clone_attrs): New.
527 (maybe_clone_body): Use it.
528
529 2023-06-28 Jason Merrill <jason@redhat.com>
530
531 PR c++/110344
532 * constexpr.cc (cxx_eval_constant_expression): In C++26, allow cast
533 from void* to the type of a pointed-to object.
534
535 2023-06-23 David Malcolm <dmalcolm@redhat.com>
536
537 PR c++/110164
538 * cp-name-hint.h (maybe_suggest_missing_header): New decl.
539 * decl.cc: Define INCLUDE_MEMORY. Add include of
540 "cp/cp-name-hint.h".
541 (start_decl_1): Call maybe_suggest_missing_header.
542 * name-lookup.cc (maybe_suggest_missing_header): Remove "static".
543
544 2023-06-16 Alex Coplan <alex.coplan@arm.com>
545
546 * parser.cc (cp_parser_enum_specifier): Don't reject
547 elaborated-type-specifier with enum-base, instead emit new
548 Welaborated-enum-base warning.
549
550 2023-06-14 Jason Merrill <jason@redhat.com>
551
552 DR 2327
553 PR c++/86521
554 * call.cc (joust_maybe_elide_copy): Don't change cand.
555 (joust): Move the elided tiebreaker later.
556
557 2023-06-13 David Malcolm <dmalcolm@redhat.com>
558
559 PR c/84890
560 * name-lookup.cc (missing_std_header::~missing_std_header): Reword
561 note to avoid negative tone of "forgetting".
562
563 2023-06-13 Jason Merrill <jason@redhat.com>
564
565 * tree.cc (build_target_expr): Check TYPE_HAS_MUTABLE_P.
566
567 2023-06-12 Tobias Burnus <tobias@codesourcery.com>
568
569 * parser.cc (cp_parser_omp_clause_map): Reword error message for
570 clearness especially with 'omp target (enter/exit) data.'
571 * semantics.cc (handle_omp_array_sections): Handle
572 GOMP_MAP_{ALWAYS_,}PRESENT_{TO,TOFROM,FROM,ALLOC} enum values.
573
574 2023-06-12 Jason Merrill <jason@redhat.com>
575
576 PR c++/105838
577 * call.cc (convert_like_internal) [ck_list]: Use
578 maybe_init_list_as_array.
579 * constexpr.cc (cxx_eval_vec_init_1): Init might have
580 a different type.
581 * tree.cc (build_vec_init_elt): Likewise.
582 * init.cc (build_vec_init): Handle from_array from a
583 TARGET_EXPR. Retain TARGET_EXPR of a different type.
584
585 2023-06-11 Patrick Palka <ppalka@redhat.com>
586
587 PR c++/110122
588 * constexpr.cc (cxx_eval_call_expression): Synthesize defaulted
589 functions needed for constant evaluation.
590 (instantiate_cx_fn_r): Likewise.
591
592 2023-06-11 Patrick Palka <ppalka@redhat.com>
593
594 PR c++/110122
595 * pt.cc (lookup_template_class): Extend shortcut for looking up the
596 current class scope to consider outer class scopes too, and use
597 current_nonlambda_class_type instead of current_class_type. Only
598 call coerce_template_parms when specializing a primary template.
599
600 2023-06-10 Nathan Sidwell <nathan@acm.org>
601
602 PR c++/61663
603 * pt.cc (maybe_adjust_types_for_deduction): Implement DR976.
604
605 2023-06-09 Jason Merrill <jason@redhat.com>
606
607 PR c++/110185
608 PR c++/58487
609 * method.cc (build_comparison_op): Give retval a name.
610 * typeck.cc (check_return_expr): Fix for nameless variables.
611
612 2023-06-09 Jason Merrill <jason@redhat.com>
613
614 * parser.cc (cp_parser_simple_type_specifier): Check for auto
615 in template argument.
616 (cp_parser_template_type_arg): Remove auto checking.
617
618 2023-06-09 Jason Merrill <jason@redhat.com>
619
620 PR c++/110102
621 * call.cc (maybe_init_list_as_array): Check that the element type is
622 copyable.
623
624 2023-06-07 Jason Merrill <jason@redhat.com>
625
626 PR c++/58487
627 PR c++/53637
628 * cp-tree.h (INIT_EXPR_NRV_P): New.
629 * semantics.cc (finalize_nrv_r): Check it.
630 * name-lookup.h (decl_in_scope_p): Declare.
631 * name-lookup.cc (decl_in_scope_p): New.
632 * typeck.cc (check_return_expr): Allow non-NRV
633 returns if the NRV is no longer in scope.
634
635 2023-06-07 Jason Merrill <jason@redhat.com>
636
637 PR c++/58487
638 * typeck.cc (want_nrvo_p): New.
639 (check_return_expr): Handle -Wnrvo.
640
641 2023-06-07 Jason Merrill <jason@redhat.com>
642
643 PR c++/51571
644 PR c++/92407
645 * decl.cc (finish_function): Simplify NRV handling.
646 * except.cc (maybe_set_retval_sentinel): Also set if NRV.
647 (maybe_splice_retval_cleanup): Don't add the cleanup region
648 if we don't need it.
649 * semantics.cc (nrv_data): Add simple field.
650 (finalize_nrv): Set it.
651 (finalize_nrv_r): Check it and retval sentinel.
652 * cp-tree.h (finalize_nrv): Adjust declaration.
653 * typeck.cc (check_return_expr): Remove named_labels check.
654
655 2023-06-07 Jason Merrill <jason@redhat.com>
656
657 PR c++/92407
658 * typeck.cc (check_return_expr): Prevent NRV in the presence of
659 named labels.
660
661 2023-06-07 Jason Merrill <jason@redhat.com>
662
663 PR c++/33799
664 * except.cc (maybe_splice_retval_cleanup): Change
665 recognition of function body and try scopes.
666 * semantics.cc (do_poplevel): Call it after poplevel.
667 (at_try_scope): New.
668 * cp-tree.h (maybe_splice_retval_cleanup): Adjust.
669
670 2023-06-07 Jason Merrill <jason@redhat.com>
671
672 * semantics.cc (finalize_nrv_r): [RETURN_EXPR]: Only replace the
673 INIT_EXPR.
674
675 2023-06-06 Kwok Cheung Yeung <kcy@codesourcery.com>
676 Tobias Burnus <tobias@codesourcery.com>
677
678 * parser.cc (cp_parser_omp_clause_defaultmap,
679 cp_parser_omp_clause_map): Parse 'present'.
680 (cp_parser_omp_clause_from_to): New; parse to/from
681 clauses with optional 'present' modifier.
682 (cp_parser_omp_all_clauses): Update call.
683 (cp_parser_omp_target_data, cp_parser_omp_target_enter_data,
684 cp_parser_omp_target_exit_data): Handle new enum value for
685 'present' mapping.
686 * semantics.cc (finish_omp_target): Likewise.
687
688 2023-06-04 Jason Merrill <jason@redhat.com>
689
690 PR c++/97720
691 * cp-tree.h (enum cp_tree_index): Add CPTI_CALL_TERMINATE_FN.
692 (call_terminate_fn): New macro.
693 * cp-gimplify.cc (gimplify_must_not_throw_expr): Use it.
694 * except.cc (init_exception_processing): Set it.
695 (cp_protect_cleanup_actions): Return it.
696
697 2023-06-03 Patrick Palka <ppalka@redhat.com>
698
699 PR c++/109923
700 * pt.cc (is_specialization_of_friend): Fix overbroad check for
701 a non-template member function of a class template.
702
703 2023-06-03 Patrick Palka <ppalka@redhat.com>
704
705 * pt.cc (iterative_hash_template_arg): Don't hash
706 TEMPLATE_TEMPLATE_PARM specially.
707
708 2023-06-03 Patrick Palka <ppalka@redhat.com>
709
710 * class.cc (build_base_path): Check in_template_context instead
711 of in_template_function.
712 (resolves_to_fixed_type_p): Likewise.
713 * cp-tree.h (in_template_context): Define.
714 (in_template_function): Remove.
715 * decl.cc (cp_make_fname_decl): Check current_function_decl
716 and in_template_context instead of in_template_function.
717 * decl2.cc (mark_used): Check in_template_context instead of
718 in_template_function.
719 * pt.cc (in_template_function): Remove.
720 * semantics.cc (enforce_access): Check in_template_context
721 instead of current_template_parms directly.
722
723 2023-06-03 Patrick Palka <ppalka@redhat.com>
724
725 PR c++/70790
726 * mangle.cc (write_expression): Handle NOEXCEPT_EXPR.
727
728 2023-06-02 Jason Merrill <jason@redhat.com>
729
730 DR 2735
731 PR c++/109247
732 * call.cc (sfk_copy_or_move): New.
733 (joust): Add tiebreaker for explicit conv and copy ctor.
734
735 2023-06-02 Jason Merrill <jason@redhat.com>
736
737 PR c++/110070
738 PR c++/105838
739 * call.cc (maybe_init_list_as_array): Set DECL_MERGEABLE.
740 (convert_like_internal) [ck_list]: Set it.
741 (set_up_extended_ref_temp): Copy it.
742 * tree.cc (handle_no_unique_addr_attribute): Set it.
743
744 2023-06-01 Jason Merrill <jason@redhat.com>
745
746 * typeck2.cc (check_narrowing): Check flag_permissive.
747
748 2023-05-30 Tobias Burnus <tobias@codesourcery.com>
749
750 PR c/109999
751 * parser.cc (cp_parser_oacc_all_clauses,
752 cp_parser_omp_all_clauses): Improve error wording.
753
754 2023-05-19 Andrew Pinski <apinski@marvell.com>
755
756 PR driver/33980
757 * lang-specs.h ("@c++-header"): Add %w after
758 the --output-pch.
759 ("@c++-system-header"): Likewise.
760 ("@c++-user-header"): Likewise.
761
762 2023-05-19 Patrick Palka <ppalka@redhat.com>
763
764 * constraint.cc (normalize_concept_check): Avoid having to do
765 two norm_cache lookups. Remove unnecessary early exit for an
766 ill-formed concept definition.
767
768 2023-05-19 Patrick Palka <ppalka@redhat.com>
769
770 PR c++/97340
771 * pt.cc (lookup_and_finish_template_variable): Don't call
772 convert_from_reference.
773 (tsubst_copy_and_build) <case TEMPLATE_ID_EXPR>: Call
774 convert_from_reference on the result of
775 lookup_and_finish_template_variable.
776
777 2023-05-18 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
778
779 * call.cc (promoted_arithmetic_type_p): Use _P defines from tree.h.
780 (build_conditional_expr): Ditto.
781 (convert_like_internal): Ditto.
782 (convert_arg_to_ellipsis): Ditto.
783 (build_over_call): Ditto.
784 (compare_ics): Ditto.
785 * class.cc (is_empty_base_ref): Ditto.
786 * coroutines.cc (rewrite_param_uses): Ditto.
787 * cp-tree.h (DECL_DISCRIMINATOR_P): Ditto.
788 (ARITHMETIC_TYPE_P): Ditto.
789 * cvt.cc (ocp_convert): Ditto.
790 * cxx-pretty-print.cc (pp_cxx_template_argument_list): Ditto.
791 * decl.cc (layout_var_decl): Ditto.
792 (get_tuple_size): Ditto.
793 * error.cc (dump_simple_decl): Ditto.
794 * lambda.cc (start_lambda_scope): Ditto.
795 * mangle.cc (write_template_arg): Ditto.
796 * method.cc (spaceship_comp_cat): Ditto.
797 * module.cc (node_template_info): Ditto.
798 (trees_out::start): Ditto.
799 (trees_out::decl_node): Ditto.
800 (trees_in::read_var_def): Ditto.
801 (set_instantiating_module): Ditto.
802 * name-lookup.cc (maybe_record_mergeable_decl): Ditto.
803 (consider_decl): Ditto.
804 (maybe_add_fuzzy_decl): Ditto.
805 * pt.cc (convert_nontype_argument): Ditto.
806 * semantics.cc (handle_omp_array_sections_1): Ditto.
807 (finish_omp_clauses): Ditto.
808 (finish_omp_target_clauses_r): Ditto.
809 (is_this_parameter): Ditto.
810 * tree.cc (build_cplus_array_type): Ditto.
811 (is_this_expression): Ditto.
812 * typeck.cc (do_warn_enum_conversions): Ditto.
813 * typeck2.cc (store_init_value): Ditto.
814 (check_narrowing): Ditto.
815
816 2023-05-17 Jakub Jelinek <jakub@redhat.com>
817
818 PR c++/109868
819 * init.cc (build_zero_init_1): Don't initialize zero-width bitfields.
820 For unions only initialize the first FIELD_DECL.
821
822 2023-05-16 Marek Polacek <polacek@redhat.com>
823
824 PR c++/109774
825 * typeck.cc (check_return_expr): In a template, return only after
826 suppressing -Wdangling-reference.
827
828 2023-05-16 Patrick Palka <ppalka@redhat.com>
829
830 PR c++/109871
831 * call.cc (add_list_candidates): Check for invalid designated
832 initialization sooner and even for types that have a list
833 constructor.
834
835 2023-05-11 Patrick Palka <ppalka@redhat.com>
836
837 PR c++/109745
838 * typeck2.cc (poison_mutable_constructors): Define.
839 (store_init_value): Use it instead of setting
840 CONSTRUCTOR_MUTABLE_POISON directly.
841
842 2023-05-11 Patrick Palka <ppalka@redhat.com>
843 Jonathan Wakely <jwakely@redhat.com>
844
845 PR c++/83258
846 PR c++/80488
847 PR c++/97700
848 * pt.cc (convert_nontype_argument_function): Remove linkage
849 requirement for C++17 and later.
850 (invalid_tparm_referent_p) <case ADDR_EXPR>: Restrict
851 DECL_ARTIFICIAL rejection test to VAR_DECL.
852
853 2023-05-10 Marek Polacek <polacek@redhat.com>
854
855 PR c++/109680
856 * method.cc (build_trait_object): New.
857 (assignable_expr): Use it.
858 (ref_xes_from_temporary): Likewise.
859 (is_convertible_helper): Likewise. Check FUNC_OR_METHOD_TYPE_P.
860
861 2023-05-10 Jason Merrill <jason@redhat.com>
862
863 * call.cc (convert_like_internal): Share ck_ref_bind handling
864 between all bad conversions.
865
866 2023-05-10 Jason Merrill <jason@redhat.com>
867
868 DR 2543
869 * constexpr.cc (cxx_eval_outermost_constant_expr): Preserve
870 TARGET_EXPR flags.
871 (potential_constant_expression_1): Check TARGET_EXPR_ELIDING_P.
872 * typeck2.cc (store_init_value): Diagnose constinit sooner.
873
874 2023-05-10 Jason Merrill <jason@redhat.com>
875
876 * constexpr.cc (cxx_eval_outermost_constant_expr): Always check
877 for address of immediate fn.
878 (maybe_constant_init_1): Evaluate PTRMEM_CST.
879
880 2023-05-10 Jakub Jelinek <jakub@redhat.com>
881
882 PR c++/109756
883 * parser.cc (cp_parser_std_attribute): For unknown attributes with
884 arguments set TREE_VALUE (attribute) to error_mark_node after skipping
885 the balanced tokens.
886 (cp_parser_std_attribute_list): If ... is used after attribute without
887 arguments, diagnose it and return error_mark_node. If
888 TREE_VALUE (attribute) is error_mark_node, don't call
889 make_pack_expansion nor return early error_mark_node.
890
891 2023-05-09 Patrick Palka <ppalka@redhat.com>
892
893 PR c++/109752
894 * constraint.cc (satisfaction_cache::satisfaction_cache): In the
895 unexpected case of evaluating an atom for the first time noisily,
896 remove the cache slot that we inserted.
897
898 2023-05-09 Patrick Palka <ppalka@redhat.com>
899
900 PR c++/109761
901 * parser.cc (cp_parser_class_specifier): Don't pass a class
902 context to noexcept_override_late_checks.
903 (noexcept_override_late_checks): Remove 'type' parameter
904 and use DECL_CONTEXT of 'fndecl' instead.
905
906 2023-05-09 Jakub Jelinek <jakub@redhat.com>
907
908 PR c++/109756
909 * cp-gimplify.cc (process_stmt_assume_attribute): Diagnose pack
910 expansion of assume attribute.
911
912 2023-05-08 Patrick Palka <ppalka@redhat.com>
913
914 PR c++/106214
915 PR c++/93107
916 * pt.cc (do_auto_deduction): Move up resolve_nondeduced_context
917 calls to happen before do_class_deduction. Add some
918 error_mark_node tests.
919
920 2023-05-07 Patrick Palka <ppalka@redhat.com>
921
922 PR c++/85979
923 * cxx-pretty-print.cc (cxx_pretty_printer::unary_expression)
924 <case ALIGNOF_EXPR>: Consider ALIGNOF_EXPR_STD_P.
925 * error.cc (dump_expr) <case ALIGNOF_EXPR>: Likewise.
926
927 2023-05-07 Patrick Palka <ppalka@redhat.com>
928
929 DR 2256
930 PR c++/103091
931 * decl.cc (decl_jump_unsafe): Return bool instead of int.
932 Don't consider TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
933 (check_previous_goto_1): Simplify now that decl_jump_unsafe
934 returns bool instead of int.
935 (check_goto): Likewise.
936
937 2023-05-07 Patrick Palka <ppalka@redhat.com>
938
939 * pt.cc (instantiate_alias_template): Exit early upon
940 error from coerce_template_parms. Remove dependence test
941 guarding constraints_satisfied_p.
942
943 2023-05-07 Patrick Palka <ppalka@redhat.com>
944
945 * cp-tree.h (PLACEHOLDER_TYPE_CONSTRAINTS_INFO): Harden via
946 TEMPLATE_TYPE_PARM_CHECK.
947 (TPARMS_PRIMARY_TEMPLATE): Harden via TREE_VEC_CHECK.
948 (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL): Harden via
949 TEMPLATE_TEMPLATE_PARM_CHECK.
950 * cxx-pretty-print.cc (cxx_pretty_printer::simple_type_specifier):
951 Guard PLACEHOLDER_TYPE_CONSTRAINTS access.
952 * error.cc (dump_type) <case TEMPLATE_TYPE_PARM>: Use separate
953 variable to store CLASS_PLACEHOLDER_TEMPLATE result.
954 * pt.cc (outer_template_args): Use strip_innermost_template_args.
955 (any_type_dependent_arguments_p): Exit early if
956 !processing_template_decl. Use range-based for.
957 (any_dependent_template_arguments_p): Likewise.
958
959 2023-05-07 Patrick Palka <ppalka@redhat.com>
960
961 PR c++/98283
962 * pt.cc (tsubst_copy_and_build) <case COMPONENT_REF>: Propagate
963 REF_PARENTHESIZED_P more generally via force_paren_expr.
964 * semantics.cc (force_paren_expr): Document default argument.
965
966 2023-05-07 Patrick Palka <ppalka@redhat.com>
967
968 PR c++/109651
969 * pt.cc (coerce_template_args_for_ttp): Mention we can hit the
970 current_template_parms fallback when level-lowering a bound ttp.
971 (tsubst_template_decl): Add lambda_tparms parameter. Prefer to
972 use lambda_tparms instead of substituting DECL_TEMPLATE_PARMS.
973 (tsubst_decl) <case TEMPLATE_DECL>: Pass NULL_TREE as lambda_tparms
974 to tsubst_template_decl.
975 (tsubst_lambda_expr): For a generic lambda, substitute
976 DECL_TEMPLATE_PARMS and set current_template_parms to it
977 before substituting the function type. Pass the substituted
978 DECL_TEMPLATE_PARMS as lambda_tparms to tsubst_template_decl.
979
980 2023-05-07 Patrick Palka <ppalka@redhat.com>
981
982 PR c++/109480
983 * semantics.cc (enforce_access): Check current_template_parms
984 instead of processing_template_decl when deciding whether to
985 defer the access check.
986
987 2023-05-07 Patrick Palka <ppalka@redhat.com>
988
989 PR c++/109480
990 * constexpr.cc (potential_constant_expression_1) <case CALL_EXPR>:
991 Reorganize to call get_fns sooner. Remove special handling of
992 the object argument of a non-static member function call. Remove
993 dead store to 'fun'.
994
995 2023-05-05 Jason Merrill <jason@redhat.com>
996
997 Revert:
998 2023-04-27 Jason Merrill <jason@redhat.com>
999
1000 PR c++/61445
1001 * pt.cc (instantiate_decl): Assert !defer_ok for local
1002 class members.
1003
1004 2023-05-03 Jason Merrill <jason@redhat.com>
1005
1006 PR c++/91618
1007 PR c++/109649
1008 * friend.cc (do_friend): Don't call check_explicit_specialization if
1009 DECL_TEMPLATE_INFO is already set.
1010 * decl2.cc (check_classfn): Set DECL_TEMPLATE_INFO.
1011 * name-lookup.cc (set_decl_namespace): Likewise.
1012
1013 2023-05-03 Jakub Jelinek <jakub@redhat.com>
1014
1015 * cp-gimplify.cc (cp_fold_data): Move definition earlier.
1016 (cp_gimplify_expr): Pass address of ff_genericize | ff_mce_false
1017 constructed data rather than &pset to cp_walk_tree with cp_fold_r.
1018
1019 2023-05-03 Jason Merrill <jason@redhat.com>
1020
1021 * pt.cc (reduce_template_parm_level): Fix comparison of
1022 template template parm to cached version.
1023
1024 2023-05-02 Jason Merrill <jason@redhat.com>
1025
1026 * pt.cc (instantiate_class_template): Skip the RECORD_TYPE
1027 of a class template.
1028 (tsubst_template_decl): Clear CLASSTYPE_USE_TEMPLATE.
1029
1030 2023-05-02 Jason Merrill <jason@redhat.com>
1031
1032 * name-lookup.cc (pop_from_top_level): Don't
1033 invalidate_class_lookup_cache.
1034
1035 2023-05-02 Jason Merrill <jason@redhat.com>
1036
1037 PR c++/109678
1038 * cp-tree.h (lookup_base): Add offset parm.
1039 * constexpr.cc (cxx_fold_indirect_ref_1): Pass it.
1040 * search.cc (struct lookup_base_data_s): Add offset.
1041 (dfs_lookup_base): Handle it.
1042 (lookup_base): Pass it.
1043
1044 2023-05-02 Jason Merrill <jason@redhat.com>
1045
1046 PR c++/109678
1047 * constexpr.cc (cxx_fold_indirect_ref_1): Handle empty base first.
1048
1049 2023-05-01 Jason Merrill <jason@redhat.com>
1050
1051 PR c++/109666
1052 * name-lookup.cc (maybe_push_to_top_level)
1053 (maybe_pop_from_top_level): Split out...
1054 * pt.cc (instantiate_body): ...from here.
1055 * init.cc (maybe_instantiate_nsdmi_init): Use them.
1056 * name-lookup.h: Declare them..
1057
1058 2023-04-28 Eugene Rozenfeld <erozen@microsoft.com>
1059
1060 * Make-lang.in: Merge perf data collected when compiling cc1plus and runtime libraries
1061
1062 2023-04-27 Jason Merrill <jason@redhat.com>
1063
1064 * call.cc (print_conversion_rejection): Use iloc_sentinel.
1065
1066 2023-04-27 Jason Merrill <jason@redhat.com>
1067
1068 PR c++/61445
1069 * pt.cc (instantiate_decl): Assert !defer_ok for local
1070 class members.
1071
1072 2023-04-26 Jason Merrill <jason@redhat.com>
1073
1074 * init.cc (nsdmi_inst): Remove.
1075 (maybe_instantiate_nsdmi_init): Use DECL_INITIAL instead.
1076
1077 2023-04-26 Jason Merrill <jason@redhat.com>
1078
1079 PR c++/109241
1080 * pt.cc (instantiate_class_template): Do partially instantiate.
1081 (tsubst_expr): Do call complete_type for partial instantiations.
1082
1083 2023-04-26 Jason Merrill <jason@redhat.com>
1084
1085 PR c++/69836
1086 * pt.cc (regenerate_decl_from_template): Skip unique friends.
1087
1088 2023-04-26 Patrick Palka <ppalka@redhat.com>
1089
1090 * pt.cc (most_specialized_partial_spec): Exit early when
1091 DECL_TEMPLATE_SPECIALIZATIONS is empty. Move local variable
1092 declarations closer to their first use. Remove redundant
1093 flag_concepts test. Remove redundant forward declaration.
1094
1095 2023-04-25 Patrick Palka <ppalka@redhat.com>
1096
1097 PR c++/108975
1098 * pt.cc (value_dependent_expression_p) <case VAR_DECL>:
1099 Suppress conservative early exit for reference variables
1100 when DECL_HAS_VALUE_EXPR_P.
1101
1102 2023-04-25 Tobias Burnus <tobias@codesourcery.com>
1103
1104 * parser.cc (cp_parser_omp_scan_loop_body): Handle
1105 zero exec statements before/after 'omp scan'.
1106
1107 2023-04-24 Patrick Palka <ppalka@redhat.com>
1108
1109 * cp-tree.h (cp_expr_location): Define here.
1110 * tree.cc (cp_expr_location): Don't define here.
1111
1112 2023-04-21 Jason Merrill <jason@redhat.com>
1113
1114 PR c++/108099
1115 * decl.cc (grokdeclarator): Don't clear typedef_decl after 'unsigned
1116 typedef' pedwarn. Use c_common_signed_or_unsigned_type. Also
1117 handle 'signed typedef'.
1118
1119 2023-04-21 Patrick Palka <ppalka@redhat.com>
1120
1121 * tree.cc (cp_walk_subtrees): Avoid repeatedly dereferencing tp.
1122 <case DECLTYPE_TYPE>: Use cp_unevaluated and WALK_SUBTREE.
1123 <case ALIGNOF_EXPR etc>: Likewise.
1124
1125 2023-04-20 Patrick Palka <ppalka@redhat.com>
1126
1127 * pt.cc (tsubst) <case TEMPLATE_TYPE_PARM>: Don't recurse when
1128 level lowering a cv-qualified type template parameter. Remove
1129 recursive loop breaker in the level lowering case for constrained
1130 autos. Use the TEMPLATE_PARM_DESCENDANTS cache in this case as
1131 well.
1132
1133 2023-04-20 Patrick Palka <ppalka@redhat.com>
1134
1135 * constraint.cc (diagnose_trait_expr): Convert a TREE_VEC
1136 of arguments into a TREE_LIST for sake of pretty printing.
1137 * cxx-pretty-print.cc (pp_cxx_trait): Handle TREE_VEC
1138 instead of TREE_LIST of trailing variadic trait arguments.
1139 * method.cc (constructible_expr): Likewise.
1140 (is_xible_helper): Likewise.
1141 * parser.cc (cp_parser_trait): Represent trailing variadic trait
1142 arguments as a TREE_VEC instead of TREE_LIST.
1143 * pt.cc (value_dependent_expression_p): Handle TREE_VEC
1144 instead of TREE_LIST of trailing variadic trait arguments.
1145 * semantics.cc (finish_type_pack_element): Likewise.
1146 (check_trait_type): Likewise.
1147
1148 2023-04-20 Patrick Palka <ppalka@redhat.com>
1149
1150 * tree.cc (strip_typedefs): Move TREE_LIST handling to
1151 strip_typedefs_expr. Dispatch to strip_typedefs_expr for
1152 non-type 't'.
1153 <case TYPENAME_TYPE>: Remove manual dispatching to
1154 strip_typedefs_expr.
1155 <case TRAIT_TYPE>: Likewise.
1156 (strip_typedefs_expr): Replaces calls to strip_typedefs_expr
1157 with strip_typedefs throughout. Don't dispatch to strip_typedefs
1158 for type 't'.
1159 <case TREE_LIST>: Replace this with the better version from
1160 strip_typedefs.
1161
1162 2023-04-19 Patrick Palka <ppalka@redhat.com>
1163 Jonathan Wakely <jwakely@redhat.com>
1164
1165 PR c++/100157
1166 * cp-trait.def (TYPE_PACK_ELEMENT): Define.
1167 * cp-tree.h (finish_trait_type): Add complain parameter.
1168 * cxx-pretty-print.cc (pp_cxx_trait): Handle
1169 CPTK_TYPE_PACK_ELEMENT.
1170 * parser.cc (cp_parser_constant_expression): Document default
1171 arguments.
1172 (cp_parser_trait): Handle CPTK_TYPE_PACK_ELEMENT. Pass
1173 tf_warning_or_error to finish_trait_type.
1174 * pt.cc (tsubst) <case TRAIT_TYPE>: Handle non-type first
1175 argument. Pass complain to finish_trait_type.
1176 * semantics.cc (finish_type_pack_element): Define.
1177 (finish_trait_type): Add complain parameter. Handle
1178 CPTK_TYPE_PACK_ELEMENT.
1179 * tree.cc (strip_typedefs): Handle non-type first argument.
1180 Pass tf_warning_or_error to finish_trait_type.
1181 * typeck.cc (structural_comptypes) <case TRAIT_TYPE>: Use
1182 cp_tree_equal instead of same_type_p for the first argument.
1183
1184 2023-04-19 Patrick Palka <ppalka@redhat.com>
1185
1186 PR c++/109556
1187 * pt.cc (try_class_unification): Don't ggc_free the copy of
1188 'targs'.
1189
1190 2023-04-19 Jason Merrill <jason@redhat.com>
1191
1192 PR c++/108099
1193 * decl.cc (grokdeclarator): Keep typedef_decl for __int128_t.
1194
1195 2023-04-17 Patrick Palka <ppalka@redhat.com>
1196
1197 PR c++/109531
1198 * pt.cc (tsubst) <case BOUND_TEMPLATE_TEMPLATE_PARM>:
1199 In the level-lowering case just use lookup_template_class
1200 to rebuild the bound ttp.
1201
1202 2023-04-15 Jason Merrill <jason@redhat.com>
1203
1204 PR c++/109357
1205 * constexpr.cc (cxx_eval_constant_expression) [TARGET_EXPR]:
1206 Check for complex initializer.
1207
1208 2023-04-13 Patrick Palka <ppalka@redhat.com>
1209
1210 PR c++/109420
1211 * decl.cc (make_typename_type): Also ignore non-types during the
1212 lookup if tag_type corresponds to an elaborated-type-specifier.
1213 * pt.cc (tsubst) <case TYPENAME_TYPE>: Pass class_type or
1214 enum_type as tag_type to make_typename_type accordingly instead
1215 of always passing typename_type.
1216
1217 2023-04-13 Jason Merrill <jason@redhat.com>
1218
1219 PR c++/109277
1220 * semantics.cc (check_trait_type): Handle incomplete type directly.
1221 * typeck2.cc (cxx_incomplete_type_diagnostic): Remove assert.
1222
1223 2023-04-13 Jason Merrill <jason@redhat.com>
1224
1225 * typeck2.cc (cxx_incomplete_type_diagnostic): Return bool.
1226 * cp-tree.h (cxx_incomplete_type_diagnostic): Adjust.
1227
1228 2023-04-12 Jakub Jelinek <jakub@redhat.com>
1229
1230 * Make-lang.in (s-cp-module-version): New target.
1231 (cp/module.o): Depend on it.
1232 (MODULE_VERSION): Remove variable.
1233 (CFLAGS-cp/module.o): For -DMODULE_VERSION= argument just
1234 cat s-cp-module-version.
1235
1236 2023-04-09 Iain Sandoe <iain@sandoe.co.uk>
1237
1238 * coroutines.cc (coro_rewrite_function_body): Ensure that added
1239 bind expressions have scope blocks.
1240
1241 2023-04-04 Jason Merrill <jason@redhat.com>
1242
1243 PR c++/107484
1244 * decl2.cc (find_last_decl): Return early if DECL_USE_TEMPLATE.
1245
1246 2023-04-03 Patrick Palka <ppalka@redhat.com>
1247
1248 PR c++/109300
1249 * decl.cc (cp_finish_decl): Diagnose ordinary auto deduction
1250 with no initializer, instead of asserting.
1251
1252 2023-04-01 Patrick Palka <ppalka@redhat.com>
1253
1254 PR c++/109160
1255 * cp-tree.h (do_auto_deduction): Add defaulted tmpl parameter.
1256 * pt.cc (convert_template_argument): Pass 'in_decl' as 'tmpl' to
1257 do_auto_deduction.
1258 (tsubst_decl) <case VAR_/TYPE_DECL>: Pass 'tmpl' instead of 't' as
1259 'in_decl' to coerce_template_parms.
1260 (unify) <case TEMPLATE_PARM_INDEX>: Pass TPARMS_PRIMARY_TEMPLATE
1261 as 'tmpl' to do_auto_deduction.
1262 (do_auto_deduction): Document default arguments. Rename local
1263 variable 'tmpl' to 'ctmpl'. Use 'tmpl' to obtain a full set of
1264 template arguments for satisfaction in the adc_unify case.
1265
1266 2023-04-01 Patrick Palka <ppalka@redhat.com>
1267
1268 PR c++/53164
1269 PR c++/105848
1270 * pt.cc (invalid_tparm_referent_p): Accept ADDR_EXPR of
1271 FUNCTION_DECL.
1272 (instantiate_class_template): Call mark_template_arguments_used.
1273 (tsubst_copy_and_build) <case CALL_EXPR>: Revert r13-995 change.
1274 (mark_template_arguments_used): Define.
1275 (instantiate_body): Call mark_template_arguments_used.
1276
1277 2023-04-01 Iain Sandoe <iain@sandoe.co.uk>
1278
1279 PR c++/101118
1280 * coroutines.cc (flatten_await_stmt): Use the current count of
1281 promoted temporaries to build a unique name for the frame entries.
1282
1283 2023-03-30 Jason Merrill <jason@redhat.com>
1284
1285 PR c++/105452
1286 * search.cc (type_context_for_name_lookup): New.
1287 (accessible_p): Handle anonymous union.
1288 * init.cc (maybe_instantiate_nsdmi_init): Use
1289 type_context_for_name_lookup.
1290 * parser.cc (cp_parser_class_specifier): Likewise.
1291 * cp-tree.h (type_context_for_name_lookup): Declare.
1292
1293 2023-03-30 Jason Merrill <jason@redhat.com>
1294
1295 PR c++/105221
1296 * pt.cc (unify) [FUNCTION_TYPE]: Handle function pointer
1297 conversions.
1298
1299 2023-03-30 Jakub Jelinek <jakub@redhat.com>
1300
1301 PR c++/109319
1302 * decl2.cc (grok_array_decl): After emitting a pedwarn for
1303 -Wcomma-subscript, if processing_template_decl set orig_index_exp
1304 to compound expr from orig_index_exp_list.
1305
1306 2023-03-30 Jason Merrill <jason@redhat.com>
1307
1308 PR c++/107897
1309 PR c++/108887
1310 * decl2.cc (record_mangling): Use symtab_node::reset.
1311
1312 2023-03-30 Jakub Jelinek <jakub@redhat.com>
1313
1314 PR c++/109278
1315 * call.cc (convert_like_internal): If pedwarn for extended float
1316 type conversions doesn't report anything, avoid calling
1317 maybe_inform_about_fndecl_for_bogus_argument_init.
1318
1319 2023-03-29 Jason Merrill <jason@redhat.com>
1320
1321 PR c++/109321
1322 PR c++/109320
1323 * pt.cc (alias_ctad_tweaks): Rewrite deduced args.
1324 (type_targs_deducible_from): Handle null pack deduction.
1325
1326 2023-03-28 David Malcolm <dmalcolm@redhat.com>
1327
1328 PR c/107002
1329 * parser.cc (cp_parser_binary_expression): Update for new param of
1330 check_for_xor_used_as_pow.
1331
1332 2023-03-28 Jakub Jelinek <jakub@redhat.com>
1333
1334 PR c++/109309
1335 * contracts.cc: Include intl.h.
1336 (check_postcondition_result): Don't form diagnostics from two halves
1337 of an English message to allow translations.
1338
1339 2023-03-24 Patrick Palka <ppalka@redhat.com>
1340
1341 PR c++/106969
1342 * parser.cc (cp_parser_class_specifier): Clear current_class_ptr
1343 and current_class_ref sooner, before parsing a class definition.
1344
1345 2023-03-24 Jason Merrill <jason@redhat.com>
1346
1347 PR c++/105481
1348 * pt.cc (type_unification_real): Adjust for partial ordering.
1349
1350 2023-03-23 Jason Merrill <jason@redhat.com>
1351
1352 PR c++/105996
1353 * typeck.cc (build_ptrmemfunc): Drop 0-offset optimization
1354 and location wrappers.
1355
1356 2023-03-23 Marek Polacek <polacek@redhat.com>
1357
1358 PR c++/107532
1359 * call.cc (class_has_reference_member_p): New.
1360 (class_has_reference_member_p_r): New.
1361 (reference_like_class_p): Don't look for a specific constructor.
1362 Use a DFS walk with class_has_reference_member_p_r.
1363
1364 2023-03-23 Jason Merrill <jason@redhat.com>
1365
1366 PR c++/109241
1367 * pt.cc (find_parameter_packs_r): Handle null TREE_BINFO.
1368
1369 2023-03-22 Jason Merrill <jason@redhat.com>
1370
1371 PR c++/108390
1372 * pt.cc (unify): Use fold of build_nop instead of fold_convert.
1373
1374 2023-03-22 Jason Merrill <jason@redhat.com>
1375
1376 PR c++/108795
1377 * semantics.cc (finish_id_expression_1): Check scope before
1378 returning id_expression.
1379
1380 2023-03-22 Alex Coplan <alex.coplan@arm.com>
1381
1382 PR c++/109177
1383 * call.cc (build_over_call): Use make_temp_override to suppress
1384 both unavailable and deprecated warnings when calling
1385 build_addr_func.
1386
1387 2023-03-21 Jason Merrill <jason@redhat.com>
1388
1389 PR c++/106890
1390 * init.cc (maybe_instantiate_nsdmi_init): Don't leave
1391 current_function_decl set to a constructor.
1392
1393 2023-03-20 Marek Polacek <polacek@redhat.com>
1394
1395 PR c++/109159
1396 * call.cc (add_template_candidate_real): Add explicit decls to the
1397 set of candidates when the initializer is a braced-init-list.
1398
1399 2023-03-20 Jakub Jelinek <jakub@redhat.com>
1400
1401 PR c++/109164
1402 * cp-tree.h (var_needs_tls_wrapper): Declare.
1403 * decl2.cc (var_needs_tls_wrapper): No longer static.
1404 * decl.cc (cp_finish_decl): Clear TREE_READONLY on TLS variables
1405 for which a TLS wrapper will be needed.
1406
1407 2023-03-17 Jason Merrill <jason@redhat.com>
1408
1409 PR c++/108975
1410 * lambda.cc (prune_lambda_captures): Don't bother in a template.
1411
1412 2023-03-17 Jason Merrill <jason@redhat.com>
1413
1414 PR c++/109172
1415 * except.cc (build_throw): Check dtor access.
1416
1417 2023-03-17 Jason Merrill <jason@redhat.com>
1418
1419 PR c++/69410
1420 * friend.cc (do_friend): Handle namespace as scope argument.
1421 * decl.cc (grokdeclarator): Pass down in_namespace.
1422
1423 2023-03-16 Jason Merrill <jason@redhat.com>
1424
1425 PR c++/105809
1426 * init.cc (get_nsdmi): Split out...
1427 (maybe_instantiate_nsdmi_init): ...this function.
1428 * cp-tree.h: Declare it.
1429 * pt.cc (tsubst_expr): Use it.
1430
1431 2023-03-16 Jason Merrill <jason@redhat.com>
1432
1433 PR c++/108242
1434 * pt.cc (tsubst_expr) [TAG_DEFN]: Handle partial instantiation.
1435
1436 2023-03-16 Jason Merrill <jason@redhat.com>
1437
1438 PR c++/101869
1439 * semantics.cc (finish_qualified_id_expr): Don't try to build a
1440 pointer-to-member if the scope is an enumeration.
1441
1442 2023-03-16 Patrick Palka <ppalka@redhat.com>
1443
1444 PR c++/109030
1445 * constexpr.cc (maybe_constant_init_1): For an unevaluated
1446 non-manifestly-constant operand, don't constant evaluate
1447 and instead call fold_to_constant as in maybe_constant_value.
1448
1449 2023-03-16 Patrick Palka <ppalka@redhat.com>
1450
1451 PR c++/100288
1452 * constraint.cc (satisfaction_cache::get): Relax overly strict
1453 checking assert in the constraint recursion case.
1454
1455 2023-03-16 Jason Merrill <jason@redhat.com>
1456
1457 PR c++/105406
1458 * coroutines.cc (build_co_await): Handle lvalue 'o'.
1459
1460 2023-03-15 Jason Merrill <jason@redhat.com>
1461
1462 PR c++/103871
1463 PR c++/98056
1464 * typeck.cc (cp_build_modify_expr): Allow array initialization of
1465 DECL_ARTIFICIAL variable.
1466
1467 2023-03-15 Marek Polacek <polacek@redhat.com>
1468
1469 PR c++/107280
1470 * constexpr.cc (cxx_eval_store_expression): Strip location wrappers.
1471
1472 2023-03-15 Jason Merrill <jason@redhat.com>
1473
1474 PR c++/58538
1475 * semantics.cc (check_template_template_default_arg): Check
1476 maybe_get_template_decl_from_type_decl.
1477
1478 2023-03-15 Jason Merrill <jason@redhat.com>
1479
1480 PR c++/108179
1481 PR c++/104107
1482 PR c++/95036
1483 * pt.cc (coerce_template_template_parms): Use args from
1484 DECL_CONTEXT (arg_tmpl) instead of outer_args.
1485
1486 2023-03-15 Jason Merrill <jason@redhat.com>
1487
1488 PR c++/108179
1489 * pt.cc (coerce_template_template_parms): Take the arg and parm
1490 templates directly.
1491 (coerce_template_template_parm): Adjust.
1492 (template_template_parm_bindings_ok_p): Adjust.
1493 (convert_template_argument): Adjust.
1494
1495 2023-03-14 Patrick Palka <ppalka@redhat.com>
1496
1497 PR c++/96830
1498 * pt.cc (push_inline_template_parms_recursive): Set
1499 TEMPLATE_PARMS_CONSTRAINTS.
1500 (push_template_decl): For an out-of-line declaration, verify
1501 constraints for each enclosing template scope match those of the
1502 original template declaratation.
1503
1504 2023-03-14 Patrick Palka <ppalka@redhat.com>
1505
1506 PR c++/96830
1507 * pt.cc (redeclare_class_template): Add missing "of" in
1508 constraint mismatch diagnostic.
1509 (tsubst_friend_class): For an already declared class template,
1510 substitute and pass the friend declaration's constraints to
1511 redeclare_class_template instead of passing the existing
1512 template's constraints.
1513
1514 2023-03-14 Jason Merrill <jason@redhat.com>
1515
1516 PR c++/108468
1517 * pt.cc (unify_pack_expansion): Check that TPARMS_PRIMARY_TEMPLATE
1518 is non-null.
1519
1520 2023-03-14 Jason Merrill <jason@redhat.com>
1521
1522 PR c++/107310
1523 * cp-gimplify.cc (genericize_if_stmt): Restore folding
1524 of constant conditions.
1525
1526 2023-03-14 Jakub Jelinek <jakub@redhat.com>
1527
1528 PR c++/109096
1529 * tree.cc (record_has_unique_obj_representations): Ignore unnamed
1530 bitfields.
1531
1532 2023-03-13 Jason Merrill <jason@redhat.com>
1533
1534 PR c++/107128
1535 * parser.cc (cp_parser_set_decl_spec_type): Use
1536 redefined_builtin_type for extended_float_type_p.
1537
1538 2023-03-13 Marek Polacek <polacek@redhat.com>
1539
1540 PR c++/107532
1541 * call.cc (reference_like_class_p): Check for std::span.
1542
1543 2023-03-10 Jakub Jelinek <jakub@redhat.com>
1544
1545 PR c++/107558
1546 * decl.cc (cp_finish_decl): Don't clear TREE_READONLY on
1547 automatic non-aggregate variables just because of
1548 -fmerge-all-constants.
1549
1550 2023-03-10 Jakub Jelinek <jakub@redhat.com>
1551
1552 PR c++/109039
1553 * class.cc (end_of_class): For bit-fields, instead of computing
1554 offset as sum of byte_position (field) and DECL_SIZE_UNIT (field),
1555 compute it as sum of bit_position (field) and DECL_SIZE (field)
1556 divided by BITS_PER_UNIT rounded up.
1557
1558 2023-03-10 Jason Merrill <jason@redhat.com>
1559
1560 PR c++/108972
1561 * lambda.cc (compare_lambda_template_head): Check more
1562 for error_mark_node.
1563
1564 2023-03-10 Jason Merrill <jason@redhat.com>
1565
1566 PR c++/108566
1567 * mangle.cc (anon_aggr_naming_decl): New.
1568 (write_unqualified_name): Use it.
1569
1570 2023-03-10 Jakub Jelinek <jakub@redhat.com>
1571
1572 PR c/108079
1573 * decl.cc (poplevel): Suppress OPT_Wunused_variable warning
1574 after diagnosing it.
1575
1576 2023-03-10 Jason Merrill <jason@redhat.com>
1577
1578 PR c++/108099
1579 * decl.cc (grokdeclarator): Handle non-typedef typedef_decl.
1580
1581 2023-03-10 Jason Merrill <jason@redhat.com>
1582
1583 PR c++/108542
1584 * class.cc (instantiate_type): Strip location wrapper.
1585
1586 2023-03-09 Jason Merrill <jason@redhat.com>
1587
1588 PR c++/108773
1589 * init.cc (find_allocator_temps_r): New.
1590 (combine_allocator_temps): Replace find_allocator_temp.
1591 (build_vec_init): Adjust.
1592
1593 2023-03-09 Jason Merrill <jason@redhat.com>
1594
1595 DR 2664
1596 PR c++/102529
1597 * pt.cc (alias_ctad_tweaks): Continue after deduction failure.
1598
1599 2023-03-09 Jason Merrill <jason@redhat.com>
1600 Michael Spertus <mike@spertus.com>
1601
1602 PR c++/105841
1603 * pt.cc (corresponding_template_parameter_list): Split out...
1604 (corresponding_template_parameter): ...from here.
1605 (find_template_parameters): Factor out...
1606 (find_template_parameter_info::find_in): ...this function.
1607 (find_template_parameter_info::find_in_recursive): New.
1608 (find_template_parameter_info::found): New.
1609 (alias_ctad_tweaks): Only add parms used in the deduced args.
1610
1611 2023-03-09 Jason Merrill <jason@redhat.com>
1612
1613 * cp-trait.def (IS_DEDUCIBLE): Add space to name.
1614
1615 2023-03-09 Jason Merrill <jason@redhat.com>
1616
1617 PR c++/105841
1618 * cp-trait.def (IS_DEDUCIBLE): New.
1619 * cxx-pretty-print.cc (pp_cxx_trait): Handle non-type.
1620 * parser.cc (cp_parser_trait): Likewise.
1621 * tree.cc (cp_tree_equal): Likewise.
1622 * pt.cc (tsubst_copy_and_build): Likewise.
1623 (type_targs_deducible_from): New.
1624 (alias_ctad_tweaks): Use it.
1625 * semantics.cc (trait_expr_value): Handle CPTK_IS_DEDUCIBLE.
1626 (finish_trait_expr): Likewise.
1627 * constraint.cc (diagnose_trait_expr): Likewise.
1628 * cp-tree.h (type_targs_deducible_from): Declare.
1629
1630 2023-03-07 Jason Merrill <jason@redhat.com>
1631
1632 PR c++/108526
1633 PR c++/106651
1634 * pt.cc (tsubst_function_decl): Don't replace the closure
1635 parameter if DECL_STATIC_FUNCTION_P.
1636
1637 2023-03-07 Marek Polacek <polacek@redhat.com>
1638
1639 PR c++/107532
1640 * call.cc (reference_like_class_p): New.
1641 (do_warn_dangling_reference): Add new bool parameter. See through
1642 reference_like_class_p.
1643
1644 2023-03-07 Jakub Jelinek <jakub@redhat.com>
1645
1646 PR c++/109042
1647 * rtti.cc (emit_support_tinfo_1): Don't assert that last
1648 unemitted_tinfo_decls element is tinfo, instead pop from it only in
1649 that case.
1650 * decl2.cc (c_parse_final_cleanups): Don't call emit_tinfo_decl
1651 for unemitted_tinfO_decls which have already non-NULL DECL_INITIAL.
1652
1653 2023-03-07 Marek Polacek <polacek@redhat.com>
1654
1655 PR c++/109030
1656 * constexpr.cc (cxx_eval_call_expression): Relax assert.
1657
1658 2023-03-07 Marek Polacek <polacek@redhat.com>
1659
1660 PR c++/107939
1661 * constexpr.cc (potential_constant_expression_1) <case CALL_EXPR>: Pass
1662 'any' when recursing on a VAR_DECL and not a pointer to function.
1663
1664 2023-03-04 Jakub Jelinek <jakub@redhat.com>
1665
1666 PR c++/108702
1667 * constexpr.cc: Include toplev.h.
1668 (cxx_eval_constant_expression) <case DECL_EXPR>: When seeing a local
1669 static initialized by constant expression outside of a constexpr
1670 function which has been deferred by make_rtl_for_nonlocal_decl,
1671 call rest_of_decl_compilation on it.
1672
1673 2023-03-03 Patrick Palka <ppalka@redhat.com>
1674
1675 PR c++/108998
1676 * pt.cc (el_data::skipped_trees): New data member.
1677 (extract_locals_r): Push to skipped_trees any unevaluated
1678 contexts that we skipped over.
1679 (extract_local_specs): For the second walk, start from each
1680 tree in skipped_trees.
1681
1682 2023-03-03 Alexandre Oliva <oliva@adacore.com>
1683
1684 * typeck.cc (cp_build_binary_op): Suppress redundant warning
1685 for pfn null test in pmfn test with vbit-in-delta.
1686
1687 2023-03-02 Jakub Jelinek <jakub@redhat.com>
1688
1689 PR target/108883
1690 * cp-tree.h (enum cp_tree_index): Remove CPTI_FALLBACK_DFLOAT*_TYPE
1691 enumerators.
1692 (fallback_dfloat32_type, fallback_dfloat64_type,
1693 fallback_dfloat128_type): Remove.
1694 * rtti.cc (emit_support_tinfo_1): If not emitted already, call
1695 emit_tinfo_decl and remove from unemitted_tinfo_decls right away.
1696 (emit_support_tinfos): Move &dfloat*_type_node from fundamentals array
1697 into new fundamentals_with_fallback array. Call emit_support_tinfo_1
1698 on elements of that array too, with the difference that if
1699 the type is NULL, use a fallback REAL_TYPE for it temporarily.
1700 Drop the !targetm.decimal_float_supported_p () handling. Call
1701 targetm.emit_support_tinfos at the end.
1702 * mangle.cc (write_builtin_type): Remove references to
1703 fallback_dfloat*_type. Handle bfloat16_type_node mangling.
1704
1705 2023-03-02 Patrick Palka <ppalka@redhat.com>
1706
1707 PR c++/108243
1708 PR c++/97553
1709 * cp-gimplify.cc (cp_fully_fold): Add an internal overload that
1710 additionally takes and propagate an mce_value parameter, and
1711 define the existing public overload in terms of it.
1712 (cp_fully_fold_init): Pass mce_false to cp_fully_fold.
1713
1714 2023-03-02 Patrick Palka <ppalka@redhat.com>
1715
1716 PR c++/108243
1717 * constexpr.cc (maybe_constant_init_1): Override
1718 manifestly_const_eval to true if is_static.
1719
1720 2023-03-02 Jakub Jelinek <jakub@redhat.com>
1721
1722 PR debug/108716
1723 * cp-gimplify.cc (cp_genericize_r) <case USING_STMT>: Set
1724 DECL_SOURCE_LOCATION on IMPORTED_DECL to expression location
1725 of USING_STMT or input_location.
1726
1727 2023-03-02 Marek Polacek <polacek@redhat.com>
1728
1729 PR c++/106259
1730 * parser.cc (class_decl_loc_t::diag_mismatched_tags): If the first
1731 lookup of SPEC didn't find anything, try to look for
1732 most_general_template.
1733
1734 2023-03-02 Jakub Jelinek <jakub@redhat.com>
1735
1736 PR c++/105839
1737 * parser.cc (cp_convert_omp_range_for): Allow in assert
1738 decomp_first_name without DECL_HAS_VALUE_EXPR_P if it has
1739 error_mark_node type.
1740 (cp_finish_omp_range_for): Don't set DECL_HAS_VALUE_EXPR_P back
1741 on decls which have error_mark_node type.
1742
1743 2023-03-01 Marek Polacek <polacek@redhat.com>
1744
1745 PR c++/107574
1746 * constexpr.cc (cxx_eval_constant_expression): Emit an error when
1747 a PTRMEM_CST cannot be evaluated.
1748
1749 2023-03-01 Patrick Palka <ppalka@redhat.com>
1750
1751 * pt.cc (tsubst_scope): Define.
1752 (tsubst_decl) <case USING_DECL>: Call tsubst_scope instead of
1753 calling tsubst_scope with tf_qualifying_scope set.
1754 (tsubst_qualified_id): Call tsubst_scope instead of
1755 calling tsubst with tf_qualifying_scope set.
1756 (tsubst_copy): Immediately delegate to tsubst for all TYPE_P
1757 trees. Remove tf_qualifying_scope manipulation.
1758 <case SCOPE_REF>: Call tsubst_scope instead of calling
1759 tsubst with tf_qualifying_scope set.
1760
1761 2023-03-01 Patrick Palka <ppalka@redhat.com>
1762 Jason Merrill <jason@redhat.com>
1763
1764 PR c++/108219
1765 PR c++/108218
1766 * constexpr.cc (fold_to_constant): Define.
1767 (maybe_constant_value): Move up early exit test for unevaluated
1768 operands. Try reducing an unevaluated operand to a constant via
1769 fold_to_constant.
1770 (fold_non_dependent_expr_template): Add early exit test for
1771 CONSTANT_CLASS_P nodes. Try reducing an unevaluated operand
1772 to a constant via fold_to_constant.
1773 * cp-tree.h (fold_to_constant): Declare.
1774
1775 2023-03-01 Jakub Jelinek <jakub@redhat.com>
1776
1777 PR c++/108606
1778 * constexpr.cc (potential_constant_expression_1) <case DECL_EXPR>:
1779 Only recurse on DECL_INITIAL (tmp) if tmp is a VAR_DECL, otherwise
1780 just return true.
1781
1782 2023-02-28 Patrick Palka <ppalka@redhat.com>
1783
1784 PR c++/108848
1785 * pt.cc (finish_template_variable): Move dependence check
1786 to here from ...
1787 (lookup_and_finish_template_variable): ... here.
1788 * semantics.cc (finish_id_expression_1): Call
1789 finish_template_variable sooner, before (and regardless of) the
1790 type_dependent_expression_p test.
1791
1792 2023-02-28 Marek Polacek <polacek@redhat.com>
1793
1794 PR c++/108550
1795 * pt.cc (lookup_and_finish_template_variable): Clear tf_partial.
1796
1797 2023-02-20 Marek Polacek <polacek@redhat.com>
1798
1799 PR c++/101073
1800 * constexpr.cc (cxx_eval_call_expression): Replace shortcutting trivial
1801 constructor/op= with a checking assert.
1802
1803 2023-02-20 Marek Polacek <polacek@redhat.com>
1804
1805 PR c++/108829
1806 * pt.cc (prepend_one_capture): Set LAMBDA_CAPTURE_EXPLICIT_P.
1807 (tsubst_lambda_expr): Pass LAMBDA_CAPTURE_EXPLICIT_P to
1808 prepend_one_capture.
1809
1810 2023-02-18 Jason Merrill <jason@redhat.com>
1811
1812 DR 2518
1813 PR c++/52809
1814 PR c++/53638
1815 PR c++/87389
1816 PR c++/89741
1817 PR c++/92099
1818 PR c++/104041
1819 PR c++/104691
1820 * semantics.cc (finish_static_assert): Don't diagnose in
1821 template context.
1822
1823 2023-02-17 Patrick Palka <ppalka@redhat.com>
1824
1825 PR c++/108243
1826 PR c++/97553
1827 * cp-gimplify.cc (enum fold_flags): Define.
1828 (fold_flags_t): Declare.
1829 (cp_fold_data::genericize): Replace this data member with ...
1830 (cp_fold_data::fold_flags): ... this.
1831 (cp_fold_r): Adjust use of cp_fold_data and calls to cp_fold.
1832 (cp_fold_function): Likewise.
1833 (cp_fold_maybe_rvalue): Add an internal overload that
1834 additionally takes and propagates a fold_flags_t parameter, and
1835 define the existing public overload in terms of it.
1836 (cp_fold_rvalue): Likewise.
1837 (cp_fully_fold_init): Adjust use of cp_fold_data.
1838 (fold_cache): Replace with ...
1839 (fold_caches): ... this 2-element array of caches.
1840 (get_fold_cache): Define.
1841 (clear_fold_cache): Adjust.
1842 (cp_fold): Add fold_flags_t parameter. Use get_fold_cache.
1843 Pass flags to calls to cp_fold, cp_fold_rvalue and
1844 cp_fold_maybe_rvalue.
1845 <case CALL_EXPR>: If ff_mce_false is set, fold
1846 __builtin_is_constant_evaluated to false and pass mce_false to
1847 maybe_constant_value.
1848
1849 2023-02-17 Patrick Palka <ppalka@redhat.com>
1850
1851 * constexpr.cc (constexpr_call::manifestly_const_eval): Give
1852 it type int instead of bool.
1853 (constexpr_ctx::manifestly_const_eval): Give it type mce_value
1854 instead of bool.
1855 (cxx_eval_builtin_function_call): Adjust after making
1856 manifestly_const_eval tri-state.
1857 (cxx_eval_call_expression): Likewise.
1858 (cxx_eval_binary_expression): Likewise.
1859 (cxx_eval_conditional_expression): Likewise.
1860 (cxx_eval_constant_expression): Likewise.
1861 (cxx_eval_outermost_constant_expr): Likewise.
1862 (cxx_constant_value): Likewise.
1863 (cxx_constant_dtor): Likewise.
1864 (maybe_constant_value): Give manifestly_const_eval parameter
1865 type mce_value instead of bool and adjust accordingly.
1866 (fold_non_dependent_expr_template): Adjust call
1867 to cxx_eval_outermost_constant_expr.
1868 (fold_non_dependent_expr): Likewise.
1869 (maybe_constant_init_1): Likewise.
1870 * constraint.cc (satisfy_atom): Adjust call to
1871 maybe_constant_value.
1872 * cp-tree.h (enum class mce_value): Define.
1873 (maybe_constant_value): Adjust manifestly_const_eval parameter
1874 type and default argument.
1875 * decl.cc (compute_array_index_type_loc): Adjust call to
1876 maybe_constant_value.
1877 * pt.cc (convert_nontype_argument): Likewise.
1878
1879 2023-02-16 Patrick Palka <ppalka@redhat.com>
1880
1881 PR c++/107773
1882 * cp-tree.h (enum tsubst_flags): New flag tf_qualifying_scope.
1883 * decl.cc (make_typename_type): Use lookup_member instead of
1884 lookup_field. If tf_qualifying_scope is set, pass want_type=true
1885 instead of =false to lookup_member. Generalize format specifier
1886 in diagnostic to handle both type and non-type bindings.
1887 * pt.cc (tsubst_aggr_type_1): Clear tf_qualifying_scope. Tidy
1888 the function.
1889 (tsubst_decl) <case USING_DECL>: Set tf_qualifying_scope when
1890 substituting USING_DECL_SCOPE.
1891 (tsubst): Clear tf_qualifying_scope right away and remember if
1892 it was set. Do the same for tf_tst_ok sooner.
1893 <case TYPENAME_TYPE>: Set tf_qualifying_scope when substituting
1894 TYPE_CONTEXT. Pass tf_qualifying_scope to make_typename_type
1895 if it was set.
1896 (tsubst_qualified_id): Set tf_qualifying_scope when substituting
1897 the scope.
1898 (tsubst_copy): Clear tf_qualifying_scope and remember if it was
1899 set.
1900 <case SCOPE_REF>: Set tf_qualifying_scope when substituting the
1901 scope.
1902 <case *_TYPE>: Pass tf_qualifying_scope to tsubst if it was set.
1903 * search.cc (lookup_member): Document default argument.
1904
1905 2023-02-16 Patrick Palka <ppalka@redhat.com>
1906
1907 * cp-tree.h: Mechanically drop static from static inline
1908 functions via s/^static inline/inline/g.
1909
1910 2023-02-15 Marek Polacek <polacek@redhat.com>
1911
1912 PR c++/106675
1913 * call.cc (joust_maybe_elide_copy): Return false for ck_ambig.
1914
1915 2023-02-10 Marek Polacek <polacek@redhat.com>
1916
1917 PR c++/107079
1918 * call.cc (set_up_extended_ref_temp): Pass var to maybe_constant_init.
1919
1920 2023-02-09 Tobias Burnus <tobias@codesourcery.com>
1921
1922 * parser.cc (cp_parser_omp_allocate): Parse align
1923 clause and check for restrictions.
1924
1925 2023-02-09 Jakub Jelinek <jakub@redhat.com>
1926
1927 PR c++/108698
1928 * mangle.cc (write_expression, write_template_arg): Handle
1929 EXCESS_PRECISION_EXPR with REAL_CST operand as
1930 write_template_arg_literal on fold_convert of the REAL_CST
1931 to EXCESS_PRECISION_EXPR type.
1932
1933 2023-02-06 Patrick Palka <ppalka@redhat.com>
1934
1935 PR c++/107461
1936 * cp-tree.h (call_expr_dependent_name): Declare.
1937 * pt.cc (iterative_hash_template_arg) <case CALL_EXPR>: Use
1938 call_expr_dependent_name instead of dependent_name.
1939 * tree.cc (call_expr_dependent_name): Define.
1940 (called_fns_equal): Adjust to take two CALL_EXPRs instead of
1941 CALL_EXPR_FNs thereof. Use call_expr_dependent_name instead
1942 of dependent_name.
1943 (cp_tree_equal) <case CALL_EXPR>: Adjust call to called_fns_equal.
1944
1945 2023-02-03 Marek Polacek <polacek@redhat.com>
1946
1947 PR c++/108158
1948 * constexpr.cc (cxx_eval_array_reference): Don't replace
1949 new_ctx.object.
1950
1951 2023-02-03 Patrick Palka <ppalka@redhat.com>
1952
1953 PR c++/107461
1954 * semantics.cc (finish_call_expr): Strip ADDR_EXPR from
1955 the selected callee during overload set pruning.
1956
1957 2023-02-03 Patrick Palka <ppalka@redhat.com>
1958
1959 PR c++/96745
1960 * class.cc (check_methods): Diagnose an unviable OVERLOAD
1961 set for CLASSTYPE_DESTRUCTOR differently from an ambiguous one.
1962 Then prune the OVERLOAD to a single function.
1963 (check_bases_and_members): Handle CLASSTYPE_DESTRUCTOR being
1964 an OVERLOAD when calling deduce_noexcept_on_destructor.
1965 Document why it has to be called before check_methods.
1966
1967 2023-02-03 Patrick Palka <ppalka@redhat.com>
1968
1969 PR c++/108579
1970 * class.cc (check_methods): Swap order of constraints_satisfied_p
1971 and copy/move_fn_p tests.
1972
1973 2023-02-01 Marek Polacek <polacek@redhat.com>
1974
1975 PR c++/107755
1976 * call.cc (build_new_op): Don't call warn_logical_operator when
1977 processing a template.
1978
1979 2023-02-01 Jakub Jelinek <jakub@redhat.com>
1980
1981 PR c++/108607
1982 * constexpr.cc (cxx_eval_constant_expression): Handle OMP_*
1983 and OACC_* constructs as non-constant.
1984 (potential_constant_expression_1): Handle OMP_SCAN and OMP_SCOPE.
1985
1986 2023-02-01 Jason Merrill <jason@redhat.com>
1987
1988 * class.cc (note_name_declared_in_class): Change from permerror to
1989 -Wchanges-meaning pedwarn, forcing -pedantic-errors for most cases.
1990
1991 2023-01-31 Jason Merrill <jason@redhat.com>
1992
1993 PR c++/108559
1994 * cp-gimplify.cc (any_non_eliding_target_exprs): New.
1995 (cp_genericize_init): Check it.
1996
1997 2023-01-31 Marek Polacek <polacek@redhat.com>
1998
1999 PR c++/107593
2000 PR c++/108597
2001 * cp-tree.h (instantiation_dependent_expression_p): Don't
2002 declare here.
2003
2004 2023-01-26 Marek Polacek <polacek@redhat.com>
2005
2006 PR c++/105300
2007 * parser.cc: Remove unnecessary forward declarations.
2008 (cp_parser_string_literal): New wrapper.
2009 (cp_parser_string_literal_common): Renamed from
2010 cp_parser_string_literal. Add a bool parameter. Give an error when
2011 UDLs are not permitted.
2012 (cp_parser_userdef_string_literal): New wrapper.
2013 (finish_userdef_string_literal): Renamed from
2014 cp_parser_userdef_string_literal.
2015 (cp_parser_primary_expression): Call cp_parser_userdef_string_literal
2016 instead of cp_parser_string_literal.
2017 (cp_parser_linkage_specification): Move a variable declaration closer
2018 to its first use.
2019 (cp_parser_static_assert): Likewise.
2020 (cp_parser_operator): Call cp_parser_userdef_string_literal instead of
2021 cp_parser_string_literal.
2022 (cp_parser_asm_definition): Move a variable declaration closer to its
2023 first use.
2024 (cp_parser_asm_specification_opt): Move variable declarations closer to
2025 their first use.
2026 (cp_parser_asm_operand_list): Likewise.
2027 (cp_parser_asm_clobber_list): Likewise.
2028
2029 2023-01-26 Jakub Jelinek <jakub@redhat.com>
2030
2031 PR c++/108503
2032 * parser.cc (cp_convert_omp_range_for): If cp_finish_decomp has been
2033 called in !processing_template_decl with processing_template_decl
2034 temporarily set, clear DECL_HAS_VALUE_EXPR_P on the vars temporarily.
2035 (cp_finish_omp_range_for): And set it back again here.
2036
2037 2023-01-25 Jakub Jelinek <jakub@redhat.com>
2038
2039 PR c++/108525
2040 * mangle.cc (write_closure_type_name): Don't assume all
2041 lambda operator() fns are methods.
2042
2043 2023-01-24 Jason Merrill <jason@redhat.com>
2044
2045 PR c++/108504
2046 * parser.cc (cp_lexer_new_main): Pass C_LEX_STRING_NO_JOIN for first
2047 token, too.
2048
2049 2023-01-24 Jason Merrill <jason@redhat.com>
2050
2051 PR c++/108526
2052 * pt.cc (tsubst_function_decl): Handle static lambda.
2053
2054 2023-01-24 Jakub Jelinek <jakub@redhat.com>
2055
2056 PR c++/108474
2057 * cp-gimplify.cc (cp_fold_r): Revert 2023-01-19 changes.
2058
2059 2023-01-24 Jason Merrill <jason@redhat.com>
2060
2061 PR c++/107303
2062 PR c++/107329
2063 * cp-gimplify.cc (cp_fold_r) [TARGET_EXPR]: In case of double
2064 TARGET_EXPR, keep the outer one instead of the inner one.
2065 (maybe_replace_decl): New.
2066
2067 2023-01-23 Jason Merrill <jason@redhat.com>
2068
2069 PR c++/107267
2070 * cp-gimplify.cc (cp_gimplify_init_expr): Allow unexpected elision
2071 of trivial types.
2072
2073 2023-01-23 Marek Polacek <polacek@redhat.com>
2074
2075 PR c++/107797
2076 * cvt.cc (ocp_convert): copy_warning when creating a new
2077 COMPOUND_EXPR.
2078 * init.cc (build_new_1): Suppress -Wunused-value on
2079 compiler-generated COMPOUND_EXPRs.
2080
2081 2023-01-23 Jason Merrill <jason@redhat.com>
2082
2083 PR c++/108195
2084 * call.cc (build_user_type_conversion_1): Check whether the
2085 iterators also find a list ctor.
2086
2087 2023-01-23 Jason Merrill <jason@redhat.com>
2088
2089 PR c++/108496
2090 * decl.cc (grokdeclarator): Check whether DECL_RESULT is already
2091 set.
2092
2093 2023-01-23 Jason Merrill <jason@redhat.com>
2094
2095 PR c++/53288
2096 DR 1299
2097 * call.cc (extend_ref_init_temps_1): Handle ptrmem expression.
2098
2099 2023-01-19 Jakub Jelinek <jakub@redhat.com>
2100
2101 PR c++/108437
2102 * cp-tree.h (keep_unused_object_arg): Declare.
2103 * call.cc (keep_unused_object_arg): No longer static.
2104 * tree.cc (build_min_non_dep_op_overload): Handle ARRAY_REF
2105 with overload being static member function.
2106
2107 2023-01-19 Jakub Jelinek <jakub@redhat.com>
2108
2109 PR c++/53932
2110 * cp-gimplify.cc (cp_fold_r): During cp_fully_fold_init replace
2111 DECL_ANON_UNION_VAR_P VAR_DECLs with their corresponding
2112 DECL_VALUE_EXPR.
2113
2114 2023-01-16 Jakub Jelinek <jakub@redhat.com>
2115
2116 PR c++/105593
2117 * decl.cc (cp_finish_decl): Check warning_enabled_at
2118 at the DECL_SOURCE_LOCATION (decl) for OPT_Winit_self instead
2119 of warn_init_self.
2120
2121 2023-01-14 Jakub Jelinek <jakub@redhat.com>
2122
2123 PR c++/108365
2124 * typeck.cc (cp_build_binary_op): Use may_shorten_divmod for integral
2125 division or modulo.
2126
2127 2023-01-13 Jakub Jelinek <jakub@redhat.com>
2128
2129 PR c++/108285
2130 * cvt.cc (cp_convert_and_check): For EXCESS_PRECISION_EXPR
2131 use its operand except that for warning purposes use the original
2132 EXCESS_PRECISION_EXPR.
2133 * call.cc (convert_like_internal): Only look through
2134 EXCESS_PRECISION_EXPR when calling cp_convert, not when calling
2135 cp_convert_and_check.
2136
2137 2023-01-09 Jakub Jelinek <jakub@redhat.com>
2138
2139 PR c++/105838
2140 PR c++/108047
2141 PR c++/108266
2142 * call.cc (maybe_init_list_as_range): Always return NULL_TREE if
2143 processing_template_decl.
2144
2145 2023-01-05 Patrick Palka <ppalka@redhat.com>
2146
2147 PR c++/108275
2148 * parser.cc (cp_parser_class_head): Use dk_deferred instead of
2149 dk_no_check when parsing the class name.
2150
2151 2023-01-05 Jakub Jelinek <jakub@redhat.com>
2152
2153 PR c++/108286
2154 * semantics.cc (finish_omp_target_clauses): Ignore clauses other than
2155 OMP_CLAUSE_MAP.
2156
2157 2023-01-04 Patrick Palka <ppalka@redhat.com>
2158
2159 PR c++/108282
2160 * decl2.cc (mark_single_function): Ignore mark_used failure
2161 only in a non-SFINAE context rather than in a SFINAE one.
2162
2163 2023-01-04 Jakub Jelinek <jakub@redhat.com>
2164
2165 PR c++/108206
2166 * decl.cc (merge_default_template_args): Return false if either
2167 new_parm or old_parm are erroneous.
2168
2169 \f
2170 Copyright (C) 2023 Free Software Foundation, Inc.
2171
2172 Copying and distribution of this file, with or without modification,
2173 are permitted in any medium without royalty provided the copyright
2174 notice and this notice are preserved.