]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/cp/ChangeLog
2019-04-03 qing zhao <qing.zhao@oracle.com>
[thirdparty/gcc.git] / gcc / cp / ChangeLog
CommitLineData
589c66eb 12019-04-03 Jason Merrill <jason@redhat.com>
2
3 PR c++/89917 - ICE with lambda in variadic mem-init.
4 * pt.c (make_pack_expansion): Change type_pack_expansion_p to false.
5
0ccdb705 62019-04-01 Jason Merrill <jason@redhat.com>
7
8 PR c++/86946 - ICE with function call in template argument.
9 DR 1321
10 * pt.c (iterative_hash_template_arg) [CALL_EXPR]: Use
11 dependent_name.
12
00bc562a 132019-04-01 Paolo Carlini <paolo.carlini@oracle.com>
14
15 PR c++/62207
16 * pt.c (tsubst_copy): Deal with lookup_name not returing a variable.
17
cf13db0c 182019-03-31 Marek Polacek <polacek@redhat.com>
19
20 PR c++/89852 - ICE with C++11 functional cast with { }.
21 * constexpr.c (fold_non_dependent_expr_template): New static function
22 broken out of...
23 (fold_non_dependent_expr): ...here.
24 (fold_non_dependent_init): New function.
25 * cp-tree.h (fold_non_dependent_init): Declare.
26 * typeck2.c (massage_init_elt): Call fold_non_dependent_init instead
27 of fold_non_dependent_expr. Don't call maybe_constant_init.
28
439021c1 292019-03-30 Jason Merrill <jason@redhat.com>
30
31 PR c++/89744 - ICE with specialization of member class template.
32 * pt.c (lookup_template_class_1): If the partial instantiation is
33 explicitly specialized, adjust.
34 (maybe_process_partial_specialization): Also adjust
35 CLASSTYPE_TI_ARGS.
36
9a6cce24 372019-03-29 Jakub Jelinek <jakub@redhat.com>
38
39 PR sanitizer/89869
40 * typeck.c: Include gimplify.h.
41 (cp_build_modify_expr) <case COND_EXPR>: Unshare rhs before using it
42 for second time. Formatting fixes.
43
8e98407e 442019-03-29 Marek Polacek <polacek@redhat.com>
45
46 PR c++/89876 - ICE with deprecated conversion.
47 * call.c (convert_like_real): Only give warnings with tf_warning.
48
fcec39e1 492019-03-28 Marek Polacek <polacek@redhat.com>
50
facf139f 51 PR c++/89612 - ICE with member friend template with noexcept.
52 * pt.c (maybe_instantiate_noexcept): For function templates, use their
53 template result (function decl). Don't set up local specializations.
54 Temporarily turn on processing_template_decl. Update the template type
55 too.
56
fcec39e1 57 PR c++/89836 - bool constant expression and explicit conversions.
58 * call.c (build_converted_constant_expr_internal): New function,
59 renamed from...
60 (build_converted_constant_expr): ...this. New.
61 (build_converted_constant_bool_expr): New.
62 * cp-tree.h (build_converted_constant_bool_expr): Declare.
63 * decl.c (build_explicit_specifier): Call
64 build_converted_constant_bool_expr.
65
ad6978a6 662019-03-28 Jakub Jelinek <jakub@redhat.com>
67
68 PR c++/89785
69 * constexpr.c (struct check_for_return_continue_data): New type.
70 (check_for_return_continue): New function.
71 (potential_constant_expression_1) <case SWITCH_STMT>: Walk
72 SWITCH_STMT_BODY to find RETURN_EXPRs or CONTINUE_STMTs not nested
73 in loop bodies and set *jump_target to that if found.
74
64e9a5e0 752019-03-27 Jason Merrill <jason@redhat.com>
76
7fe010eb 77 PR c++/89831 - error with qualified-id in const member function.
78 * semantics.c (finish_non_static_data_member): Use object cv-quals
79 in scoped case, too.
80
8d96c4f0 81 PR c++/89421 - ICE with lambda in template parameter list.
64e9a5e0 82 * parser.c (cp_parser_lambda_expression): Also reject a lambda in a
83 template parameter list before C++20.
84 * pt.c (type_dependent_expression_p): True for LAMBDA_EXPR.
85 * semantics.c (begin_class_definition): Restore error about defining
86 non-lambda class in template parm list.
87
460e6a8c 882019-03-26 Jason Merrill <jason@redhat.com>
89
a6cd883f 90 PR c++/86932 - missed SFINAE with empty pack.
91 * pt.c (coerce_template_parms): Don't add an empty pack if
92 tf_partial.
93 (fn_type_unification): Pass tf_partial to coerce_template_parms.
94
460e6a8c 95 PR c++/86429 - constexpr variable in lambda.
96 PR c++/82643
97 PR c++/87327
98 * constexpr.c (cxx_eval_constant_expression): In a lambda function,
99 try evaluating the captured variable directly.
100
024a645d 1012019-03-26 Jakub Jelinek <jakub@redhat.com>
102
103 PR c++/89796
104 * semantics.c (finish_omp_atomic): Add warning_sentinel for
105 -Wunused-value around finish_expr_stmt call.
106
ac557922 1072019-03-25 Paolo Carlini <paolo.carlini@oracle.com>
108
109 PR c++/84661
110 PR c++/85013
111 * parser.c (cp_parser_binary_expression): Don't call cp_fully_fold
112 to undo the disabling of warnings.
113
93877af7 1142019-03-25 Jason Merrill <jason@redhat.com>
115
116 PR c++/87748 - substitution failure error with decltype.
117 * pt.c (most_specialized_partial_spec): Clear
118 processing_template_decl.
119
1de8eb3e 1202019-03-25 Marek Polacek <polacek@redhat.com>
121
751baf9c 122 PR c++/89214 - ICE when initializing aggregates with bases.
123 * typeck2.c (digest_init_r): Warn about object slicing instead of
124 crashing.
125
1de8eb3e 126 PR c++/89705 - ICE with reference binding with conversion function.
127 * call.c (reference_binding): If the result of the conversion function
128 is a prvalue of non-class type, use the cv-unqualified type.
129
37682124 1302019-03-25 Nathan Sidwell <nathan@acm.org>
131
132 * lambda.c (maybe_add_lambda_conv_op): Don't add to comdat group.
133
84f13b2f 1342019-03-22 Jakub Jelinek <jakub@redhat.com>
135
8815602b 136 PR c++/60702
137 * cp-tree.h (get_tls_wrapper_fn): Remove declaration.
138 (maybe_get_tls_wrapper_call): Declare.
139 * decl2.c (get_tls_wrapper_fn): Make static.
140 (maybe_get_tls_wrapper_call): New function.
141 * typeck.c (build_class_member_access_expr): Handle accesses to TLS
142 variables.
143 * semantics.c (finish_qualified_id_expr): Likewise.
144 (finish_id_expression_1): Use maybe_get_tls_wrapper_call.
145 * pt.c (tsubst_copy_and_build): Likewise.
146
84f13b2f 147 PR c++/87481
148 * constexpr.c (struct constexpr_ctx): Add constexpr_ops_count member.
149 (cxx_eval_constant_expression): When not skipping, not constant class
150 or location wrapper, increment *ctx->constexpr_ops_count and if it is
151 above constexpr_loop_nest_limit, diagnose failure.
152 (cxx_eval_outermost_constant_expr): Add constexpr_ops_count and
153 initialize ctx.constexpr_ops_count to its address.
154 (is_sub_constant_expr): Likewise.
155
654b4632 1562019-03-21 Jakub Jelinek <jakub@redhat.com>
157
f03d9a13 158 PR c++/71446
159 * call.c (filed_in_pset): Change pset from hash_set<tree> * to
160 hash_set<tree, true> &, adjust uses accordingly.
161 (build_aggr_conv): Change pset from hash_set<tree> *
162 to hash_set<tree, true>. Replace goto fail; with return NULL;,
163 adjust pset uses.
164
654b4632 165 PR c++/89767
166 * parser.c (cp_parser_lambda_introducer): Add ids and first_capture_id
167 variables, check for duplicates in this function.
168 * lambda.c (add_capture): Don't check for duplicates nor use
169 IDENTIFIER_MARKED.
170 (register_capture_members): Don't clear IDENTIFIER_MARKED here.
171
e6c0a0e8 1722019-03-21 Paolo Carlini <paolo.carlini@oracle.com>
173
174 PR c++/89571
175 * method.c (after_nsdmi_defaulted_late_checks): Avoid passing
176 error_mark_node to comp_except_specs.
177
0f86e901 1782019-03-20 Jason Merrill <jason@redhat.com>
179
180 PR c++/87480 - decltype of member access in default template arg
181 * pt.c (type_unification_real): Accept a dependent result in
182 template context.
183
dc0cf270 1842019-03-19 Martin Sebor <msebor@redhat.com>
185
186 PR tree-optimization/89688
187 * typeck2.c (store_init_value): Call braced_lists_to_string for more
188 kinds of initializers.
189
640c769f 1902019-03-18 Jason Merrill <jason@redhat.com>
191
56c3aeaa 192 PR c++/89630 - ICE with dependent using-decl as template arg.
193 * tree.c (cp_tree_equal): Always return false for USING_DECL.
194
c821b0ef 195 PR c++/89761 - ICE with sizeof... in pack expansion.
196 * pt.c (argument_pack_element_is_expansion_p): Handle
197 ARGUMENT_PACK_SELECT.
198
4273f124 199 PR c++/89640 - GNU attributes on lambda.
200 * parser.c (cp_parser_lambda_declarator_opt): Allow GNU attributes.
201
640c769f 202 PR c++/89682 - wrong access error in default argument.
203 * pt.c (tsubst_default_argument): Don't defer access checks.
204
24c67877 2052019-03-18 Paolo Carlini <paolo.carlini@oracle.com>
206
207 PR c++/85014
208 * semantics.c (finish_non_static_data_member): Check return value
209 of context_for_name_lookup and immediately return error_mark_node
210 if isn't a type.
211
ce139b21 2122019-03-17 Jason Merrill <jason@redhat.com>
213
214 PR c++/89571 - ICE with ill-formed noexcept on constructor.
215 * pt.c (maybe_instantiate_noexcept): Only return false if defaulted.
216 (regenerate_decl_from_template): Use it for noexcept-specs.
217
773c8785 2182019-03-14 Jason Merrill <jason@redhat.com>
219
220 * parser.c (cp_parser_decl_specifier_seq): Support C++20
221 concept-definition syntax without 'bool'.
222
d0782a7e 2232019-03-14 Jakub Jelinek <jakub@redhat.com>
224
c17b0b28 225 PR c++/89512
226 * semantics.c (finish_qualified_id_expr): Reject variable templates.
227
d0782a7e 228 PR c++/89652
229 * constexpr.c (struct constexpr_ctx): Change save_exprs type from
230 hash_set<tree> to vec<tree>.
231 (cxx_eval_call_expression): Adjust for save_exprs being a vec instead
232 of hash_set.
233 (cxx_eval_loop_expr): Likewise. Truncate the vector after each
234 removal of SAVE_EXPRs from values.
235 (cxx_eval_constant_expression) <case SAVE_EXPR>: Call safe_push
236 method on save_exprs instead of add.
237
d28a979f 2382019-03-13 Jason Merrill <jason@redhat.com>
239
240 PR c++/86521 - C++17 copy elision in initialization by constructor.
241 * call.c (joust_maybe_elide_copy): New.
242 (joust): Call it.
243
e214ee76 2442019-03-13 Marek Polacek <polacek@redhat.com>
245
246 PR c++/88979 - further P0634 fix for constructors.
247 * parser.c (cp_parser_decl_specifier_seq): Pass flags to
248 cp_parser_constructor_declarator_p.
249 (cp_parser_direct_declarator): Allow missing typename for constructor
250 parameters.
251 (cp_parser_constructor_declarator_p): Add FLAGS parameter. Pass it to
252 cp_parser_type_specifier.
253
3c78ad42 254 PR c++/89686 - mixing init-capture and simple-capture in lambda.
255 * parser.c (cp_parser_lambda_introducer): Give error when combining
256 init-capture and simple-capture.
257
8b953246 258 PR c++/89660 - bogus error with -Wredundant-move.
259 * typeck.c (maybe_warn_pessimizing_move): Only accept (T &) &arg
260 as the std::move's argument. Don't call convert_for_initialization
261 when warn_redundant_move isn't on.
262
4ca87658 2632019-03-11 Jason Merrill <jason@redhat.com>
264
265 PR c++/86521 - wrong overload resolution with ref-qualifiers.
266 * call.c (build_user_type_conversion_1): Don't use a conversion to a
267 reference of the wrong rvalueness for direct binding.
268
f2a60d44 2692019-03-11 Martin Liska <mliska@suse.cz>
270
271 * cvt.c (build_expr_type_conversion): Wrap apostrophes
272 in gcc internal format with %'.
273 * decl.c (check_no_redeclaration_friend_default_args): Likewise.
274 (grokfndecl): Likewise.
275 * name-lookup.c (do_pushtag): Likewise.
276 * pt.c (unify_parameter_deduction_failure): Likewise.
277 (unify_template_deduction_failure): Likewise.
278
2f6d557f 2792019-03-11 Martin Liska <mliska@suse.cz>
280
281 * call.c (convert_arg_to_ellipsis): Wrap an option name
282 in a string format message and fix GNU coding style.
283 (build_over_call): Likewise.
284 * class.c (check_field_decl): Likewise.
285 (layout_nonempty_base_or_field): Likewise.
286 * constexpr.c (cxx_eval_loop_expr): Likewise.
287 * cvt.c (type_promotes_to): Likewise.
288 * decl.c (cxx_init_decl_processing): Likewise.
289 (mark_inline_variable): Likewise.
290 (grokdeclarator): Likewise.
291 * decl2.c (record_mangling): Likewise.
292 * error.c (maybe_warn_cpp0x): Likewise.
293 * except.c (doing_eh): Likewise.
294 * mangle.c (maybe_check_abi_tags): Likewise.
295 * parser.c (cp_parser_diagnose_invalid_type_name): Likewise.
296 (cp_parser_userdef_numeric_literal): Likewise.
297 (cp_parser_primary_expression): Likewise.
298 (cp_parser_unqualified_id): Likewise.
299 (cp_parser_pseudo_destructor_name): Likewise.
300 (cp_parser_builtin_offsetof): Likewise.
301 (cp_parser_lambda_expression): Likewise.
302 (cp_parser_lambda_introducer): Likewise.
303 (cp_parser_lambda_declarator_opt): Likewise.
304 (cp_parser_selection_statement): Likewise.
305 (cp_parser_init_statement): Likewise.
306 (cp_parser_decomposition_declaration): Likewise.
307 (cp_parser_function_specifier_opt): Likewise.
308 (cp_parser_static_assert): Likewise.
309 (cp_parser_simple_type_specifier): Likewise.
310 (cp_parser_namespace_definition): Likewise.
311 (cp_parser_using_declaration): Likewise.
312 (cp_parser_ctor_initializer_opt_and_function_body): Likewise.
313 (cp_parser_initializer_list): Likewise.
314 (cp_parser_type_parameter_key): Likewise.
315 (cp_parser_member_declaration): Likewise.
316 (cp_parser_try_block): Likewise.
317 (cp_parser_std_attribute_spec): Likewise.
318 (cp_parser_requires_clause_opt): Likewise.
319 * pt.c (check_template_variable): Likewise.
320 (check_default_tmpl_args): Likewise.
321 (push_tinst_level_loc): Likewise.
322 (instantiate_pending_templates): Likewise.
323 (invalid_nontype_parm_type_p): Likewise.
324 * repo.c (get_base_filename): Likewise.
325 * rtti.c (typeid_ok_p): Likewise.
326 (build_dynamic_cast_1): Likewise.
327 * tree.c (maybe_warn_parm_abi): Likewise.
328
29005d9c 3292019-03-08 Jakub Jelinek <jakub@redhat.com>
330
000969f9 331 PR other/80058
332 * parser.c (cp_parser_template_declaration_after_parameters): Avoid
333 one space before " at the end of line and another after " on another
334 line in a string literal.
335
94a62c5a 336 PR tree-optimization/89550
337 * semantics.c (maybe_convert_cond): Only set TREE_NO_WARNING if
338 warning_at returned true.
339 * decl2.c (c_parse_final_cleanups): Likewise.
340 * typeck.c (convert_for_assignment): Likewise.
341 * decl.c (finish_function): Likewise.
342
222c113b 343 PR c++/89585
344 * parser.c (cp_parser_asm_definition): Just warn instead of error
345 on volatile qualifier outside of function body.
346
92651efb 347 PR c++/89599
348 * constexpr.c (potential_constant_expression_1): Reject
349 REINTERPRET_CAST_P NOP_EXPRs.
350
29005d9c 351 PR c++/89622
352 * call.c (joust): Call print_z_candidate only if pedwarn returned
353 true.
354
bddb19c4 3552019-03-07 Jason Merrill <jason@redhat.com>
356
84982f0e 357 PR c++/88123 - lambda and using-directive.
358 * name-lookup.c (op_unqualified_lookup)
359 (maybe_save_operator_binding, discard_operator_bindings)
360 (push_operator_bindings): New.
361 * typeck.c (build_x_binary_op, build_x_unary_op): Call
362 maybe_save_operator_binding.
363 * decl.c (start_preparsed_function): Call push_operator_bindings.
364 * tree.c (cp_free_lang_data): Call discard_operator_bindings.
365
bddb19c4 366 PR c++/88820 - ICE with CTAD and member template used in DMI.
367 * pt.c (do_class_deduction): Handle parm used as its own arg.
368
02a7fc59 3692019-03-07 Jakub Jelinek <jakub@redhat.com>
370
371 PR c++/89585
372 * parser.c (cp_parser_asm_definition): Parse asm qualifiers even
373 at toplevel, but diagnose them.
374
bc17f5fd 3752019-03-06 Jason Merrill <jason@redhat.com>
376
377 PR c++/89381 - implicit copy and using-declaration.
378 * class.c (classtype_has_move_assign_or_move_ctor_p): Don't consider
379 op= brought in by a using-declaration.
380
aa49bda0 3812019-03-06 Jakub Jelinek <jakub@redhat.com>
382
383 PR c++/87148
384 * init.c (build_value_init_noctor): Ignore flexible array members.
385
02daf5d2 3862019-03-06 Jason Merrill <jason@redhat.com>
387
388 PR c++/89576 - if constexpr of lambda capture.
389 * semantics.c (maybe_convert_cond): Do convert a non-dependent
390 condition in a template.
391 * typeck.c (condition_conversion): Handle being called in a
392 template.
393
55d0cc00 3942019-03-06 Marek Polacek <polacek@redhat.com>
395
396 PR c++/87378 - bogus -Wredundant-move warning.
397 * typeck.c (maybe_warn_pessimizing_move): See if the maybe-rvalue
398 overload resolution would actually succeed.
399
cd5a9ed1 4002019-03-05 Jason Merrill <jason@redhat.com>
401
402 * class.c (is_really_empty_class): Add ignore_vptr parm.
403 (trivial_default_constructor_is_constexpr): Pass it.
404 * call.c (build_over_call): Pass it.
405 * constexpr.c (cxx_eval_constant_expression): Pass it instead of
406 checking TYPE_POLYMORPHIC_P.
407 (cxx_eval_component_reference, potential_constant_expression_1):
408 Pass it.
409 * cp-gimplify.c (simple_empty_class_p): Pass it.
410 * init.c (expand_aggr_init_1): Pass it.
411
1751c288 4122019-03-04 Paolo Carlini <paolo.carlini@oracle.com>
413
414 PR c++/84605
415 * parser.c (cp_parser_class_head): Reject TYPE_BEING_DEFINED too.
416
10599713 4172019-03-04 Jakub Jelinek <jakub@redhat.com>
418
419 PR c++/71446
420 * call.c (field_in_pset): New function.
421 (build_aggr_conv): Handle CONSTRUCTOR_IS_DESIGNATED_INIT correctly.
422
73e3d2ee 4232019-03-02 Jakub Jelinek <jakub@redhat.com>
424
425 PR c++/71446
426 * cp-tree.h (CONSTRUCTOR_IS_DESIGNATED_INIT): Define.
427 * parser.c (cp_parser_braced_list): Adjust cp_parser_initializer_list
428 caller, set CONSTRUCTOR_IS_DESIGNATED_INIT.
429 (cp_parser_initializer_list): Add designated parameter, set *designated
430 to a bool whether any designators were parsed.
431 * decl.c (reshape_init): Copy over CONSTRUCTOR_IS_DESIGNATED_INIT if
432 needed.
433 * pt.c (tsubst_copy_and_build): Likewise.
434 * call.c (implicit_conversion): If CONSTRUCTOR_IS_DESIGNATED_INIT,
435 don't call build_list_conv, nor build_complex_conv, nor attempt to
436 convert a single element initializer to scalar.
437
f409a882 4382019-03-01 Marek Polacek <polacek@redhat.com>
439
ae8e3cb6 440 PR c++/89537 - missing location for error with non-static member fn.
441 * call.c (resolve_args): Use EXPR_LOCATION.
442 * typeck.c (build_class_member_access_expr): Use input_location.
443
f409a882 444 PR c++/89532 - ICE with incomplete type in decltype.
445 * semantics.c (finish_compound_literal): Return error_mark_node
446 if digest_init_flags returns error_mark_node.
447
b279a142 4482019-03-01 Jakub Jelinek <jakub@redhat.com>
449
450 Implement P1002R1, Try-catch blocks in constexpr functions
451 PR c++/89513
452 * parser.c (cp_parser_ctor_initializer_opt_and_function_body):
453 Diagnose constexpr ctor or function with function-try-block with
454 pedwarn for c++17 and earlier. Formatting fix.
455 (cp_parser_try_block): Use pedwarn instead of error and only for
456 c++17 and earlier when try block appears in constexpr function.
457 * constexpr.c (build_constexpr_constructor_member_initializers):
458 Handle TRY_BLOCK here instead of erroring on it.
459
c7110ca7 4602019-02-28 Jason Merrill <jason@redhat.com>
461
bb019931 462 PR c++/88183 - ICE with .* fold-expression.
463 * pt.c (fold_expression) [DOTSTAR_EXPR]: Remove special handling.
464
9b4cf3ba 465 PR c++/86969 - ICE with constexpr if and recursive generic lambdas.
466 * class.c, lambda.c, pt.c: Revert earlier change.
467 * lambda.c (add_capture): Don't special-case capture of dependent
468 VLA.
469
c7110ca7 470 * name-lookup.c (print_binding_level): Print this_entity.
471
90c2137c 4722019-02-27 Marek Polacek <polacek@redhat.com>
473
474 PR c++/88857 - ICE with value-initialization of argument in template.
475 * call.c (convert_like_real): Don't call build_value_init in template.
476
9ecd4044 4772019-02-27 Jason Merrill <jason@redhat.com>
478
479 PR c++/86969 - ICE with constexpr if and recursive generic lambdas.
480 * semantics.c (process_outer_var_ref): Do capture dependent vars.
481 * class.c (finish_struct): Only add TAG_DEFN if T is in
482 current_function_decl.
483 * lambda.c (vla_capture_type): Force the capture type out into the
484 lambda's enclosing function.
485 (add_capture): Pass in the lambda.
486 * pt.c (tsubst_lambda_expr): complete_type a VLA capture type.
487
7304edd1 4882019-02-27 Marek Polacek <polacek@redhat.com>
489
490 PR c++/89511 - ICE with using-declaration and unscoped enumerator.
491 * parser.c (cp_parser_using_declaration): For an unscoped enum
492 only use its context if it's not a function declaration.
493
c9f30cbb 4942019-02-27 Paolo Carlini <paolo.carlini@oracle.com>
495
496 PR c++/89488
497 * method.c (process_subob_fn): When maybe_instantiate_noexcept
498 returns false don't call merge_exception_specifiers.
499
5002019-02-27 Paolo Carlini <paolo.carlini@oracle.com>
501
502 PR c++/88987
503 * parser.c (cp_parser_noexcept_specification_opt): Return NULL_TREE
504 for a non-constant parsed expression.
505
a165fd90 5062019-02-26 Jakub Jelinek <jakub@redhat.com>
507
508 PR c++/89481
509 * constexpr.c (cxx_eval_store_expression): When changing active union
510 member, set no_zero_init.
511
c005651d 5122019-02-23 Marek Polacek <polacek@redhat.com>
513
514 PR c++/88294 - ICE with non-constant noexcept-specifier.
515 * pt.c (maybe_instantiate_noexcept): Set up the list of local
516 specializations. Set current_class_{ptr,ref}.
517
689cc9b6 5182019-02-22 David Malcolm <dmalcolm@redhat.com>
519
520 PR c++/89390
521 * parser.c (cp_parser_unqualified_id): Capture and use locations
522 for destructors.
523
e7652833 5242019-02-22 Marek Polacek <polacek@redhat.com>
525
526 PR c++/89420 - ICE with CAST_EXPR in explicit-specifier.
527 * decl.c (build_explicit_specifier): Don't check
528 processing_template_decl. Call instantiation_dependent_expression_p
529 instead of value_dependent_expression_p. Call
530 instantiate_non_dependent_expr_sfinae before
531 build_converted_constant_expr instead of calling
532 instantiate_non_dependent_expr after it. Add
533 processing_template_decl_sentinel.
534
51391c1d 5352019-02-22 Thomas Schwinge <thomas@codesourcery.com>
536
537 * parser.c (cp_parser_oacc_simple_clause): Remove parser formal
538 parameter, move loc formal parameter to the front. Adjust all
539 users.
540 (cp_parser_oacc_shape_clause): Add loc formal parameter. Adjust
541 all users.
542
b6700c1a 5432019-02-21 Jason Merrill <jason@redhat.com>
544
532cca3f 545 PR c++/87685 - generic lambda 'this' capture error.
546 * lambda.c (lambda_expr_this_capture): Change add_capture_p to int.
547 (maybe_generic_this_capture): Pass -1.
548
a7ea8f96 549 PR c++/88394 - ICE with VLA init-capture.
550 * lambda.c (is_normal_capture_proxy): Check DECL_CAPTURED_VARIABLE.
551
e2d4b8be 552 PR c++/88869 - C++17 ICE with CTAD and explicit specialization.
553 * pt.c (do_class_deduction): Don't include explicit specialization
554 args in outer_args.
555
b6700c1a 556 PR c++/89422 - ICE with -g and lambda in default arg in template.
557 * pt.c (tsubst_function_decl): SET_DECL_FRIEND_CONTEXT sooner.
558
147a31b6 5592019-02-21 Jason Merrill <jason@redhat.com>
560
561 PR c++/88419 - C++17 ICE with class template arg deduction.
562 * pt.c (make_template_placeholder): Set TYPE_CANONICAL after
563 CLASS_PLACEHOLDER_TEMPLATE.
564
02d7a132 5652019-02-21 Jakub Jelinek <jakub@redhat.com>
566
567 PR c++/89285
568 * constexpr.c (struct constexpr_fundef): Add parms and result members.
569 (retrieve_constexpr_fundef): Adjust for the above change.
570 (register_constexpr_fundef): Save constexpr body with copy_fn,
571 temporarily set DECL_CONTEXT on DECL_RESULT before that.
572 (get_fundef_copy): Change FUN argument to FUNDEF with
573 constexpr_fundef * type, grab body and parms/result out of
574 constexpr_fundef struct and temporarily change it for copy_fn calls
575 too.
576 (cxx_eval_builtin_function_call): For __builtin_FUNCTION temporarily
577 adjust current_function_decl from ctx->call context. Test
578 !potential_constant_expression instead of !is_constant_expression.
579 (cxx_bind_parameters_in_call): Grab parameters from new_call. Undo
580 convert_for_arg_passing changes for TREE_ADDRESSABLE type passing.
581 (cxx_eval_call_expression): Adjust get_fundef_copy caller.
582 (cxx_eval_conditional_expression): For IF_STMT, allow then or else
583 operands to be NULL.
584 (label_matches): Handle BREAK_STMT and CONTINUE_STMT.
585 (cxx_eval_loop_expr): Add support for FOR_STMT, WHILE_STMT and DO_STMT.
586 (cxx_eval_switch_expr): Add support for SWITCH_STMT.
587 (cxx_eval_constant_expression): Handle IF_STMT, FOR_STMT, WHILE_STMT,
588 DO_STMT, CONTINUE_STMT, SWITCH_STMT, BREAK_STMT and CONTINUE_STMT.
589 For SIZEOF_EXPR, recurse on the result of fold_sizeof_expr. Ignore
590 DECL_EXPR with USING_DECL operand.
591 * lambda.c (maybe_add_lambda_conv_op): Build thisarg using
592 build_int_cst to make it a valid constant expression.
593
dcd8f919 5942019-02-20 Jason Merrill <jason@redhat.com>
595
596 PR c++/88690 - C++17 ICE with empty base in aggregate.
597 * typeck2.c (process_init_constructor_record): Skip trivial
598 initialization of an empty base.
599
309e5f71 6002019-02-21 Richard Biener <rguenther@suse.de>
601
602 PR middle-end/89392
603 * vtable-class-hierarchy.c (vtv_generate_init_routine): Do not
604 make symtab process new functions here.
605
4e60ed29 6062019-02-20 Jason Merrill <jason@redhat.com>
607
608 PR c++/87921 - wrong error with inline static data member.
609 * decl2.c (finish_static_data_member_decl): Don't set DECL_IN_AGGR_P
610 for a non-template inline variable. Do nothing for an
611 already-instantiated variable.
612 (c_parse_final_cleanups): Check DECL_IN_AGGR_P without
613 DECL_INLINE_VAR_P.
614 * decl.c (check_initializer): Likewise.
615 (make_rtl_for_nonlocal_decl): Likewise.
616 * pt.c (instantiate_decl): Likewise.
617 * typeck2.c (store_init_value): Likewise.
618
b47245f1 6192019-02-20 Jakub Jelinek <jakub@redhat.com>
620
0c3f2aa9 621 PR c++/89403
622 * decl2.c (c_parse_final_cleanups): Move TREE_ASM_WRITTEN setting
623 for flag_syntax_only from here...
624 * semantics.c (expand_or_defer_fn_1): ... here.
625
02dc6028 626 PR c++/89405
627 * decl.c (maybe_commonize_var): When clearing TREE_PUBLIC and
628 DECL_COMMON, set DECL_INTERFACE_KNOWN.
629
b47245f1 630 PR c++/89336
631 * constexpr.c (cxx_eval_store_expression): Diagnose changing of active
632 union member for -std=c++17 and earlier.
633
af48cea2 6342019-02-19 Jason Merrill <jason@redhat.com>
635
636 PR c++/87513 - 'sorry' mangling PMF template-id.
637 * mangle.c (write_expression): Handle SCOPE_REF to BASELINK.
638
fd8a4665 6392019-02-19 Jason Merrill <jason@redhat.com>
640
641 PR c++/88380 - wrong-code with flexible array and NSDMI.
642 * typeck2.c (process_init_constructor_record): Skip flexarrays.
643
53ceddc9 6442019-02-20 will wray <wjwray@gmail.com>
645
646 PR c++/88572 - wrong handling of braces on scalar init.
647 * decl.c (reshape_init_r): Allow braces around scalar initializer
648 within aggregate init. Reject double braced-init of scalar
649 variable.
650
ab0fbe16 6512019-02-20 Paolo Carlini <paolo.carlini@oracle.com>
652
653 PR c++/84536
654 * pt.c (tsubst_init): Diagnose an initializer expanding to an
655 empty list of expressions; tweak wrt dependent types.
656 (regenerate_decl_from_template): For VAR_DECLs call tsubst_init
657 instead of tsubst_expr.
658
ce7f22f1 6592019-02-19 Jason Merrill <jason@redhat.com>
660
661 PR c++/88368 - wrong 'use of deleted function'
662 * method.c (walk_field_subobs): Remember errors from get_nsdmi.
663 (get_defaulted_eh_spec): Call push_tinst_level.
664 * pt.c (maybe_instantiate_noexcept): Keep error_mark_node.
665 * typeck2.c (merge_exception_specifiers): Handle error_mark_node.
666
d572a4c3 6672019-02-19 Chung-Lin Tang <cltang@codesourcery.com>
668
669 PR c/87924
670 * parser.c (cp_parser_oacc_clause_wait): Add representation of wait
671 clause without argument as 'wait (GOMP_ASYNC_NOVAL)', adjust comments.
672
31358ed0 6732019-02-19 Jakub Jelinek <jakub@redhat.com>
674
5ebe5c44 675 PR c++/89387
676 * lambda.c (maybe_generic_this_capture): Don't check
677 DECL_NONSTATIC_MEMBER_FUNCTION_P on USING_DECLs.
678
fcea8c4d 679 PR c++/89391
680 * typeck.c (build_reinterpret_cast_1): Don't handle void to
681 && conversion go through build_target_expr_with_type.
682
31358ed0 683 PR c++/89390
684 * error.c (qualified_name_lookup_error): Only call
685 suggest_alternative_in_scoped_enum if name is IDENTIFIER_NODE.
686
25694c85 6872019-02-19 Tom Honermann <tom@honermann.net>
688
689 * name-lookup.c (get_std_name_hint): Added u8string as a name hint.
690
a1e1b603 6912019-02-18 Jason Merrill <jason@redhat.com>
692
6aaacaf1 693 PR c++/89336 - multiple stores in constexpr stmt.
694 * constexpr.c (cxx_eval_store_expression): Preevaluate scalar or
695 assigned value.
696
f6347d1a 697 * pt.c (check_explicit_specialization): If the declarator is a
698 template-id, only check whether the arguments are dependent.
699
a1e1b603 700 Improve duplicate [[likely]] diagnostic.
701 * parser.c (cp_parser_statement): Make attrs_loc a range. Pass it
702 to process_stmt_hotness_attribute.
703 * cp-gimplify.c (process_stmt_hotness_attribute): Take attrs_loc.
704 (genericize_if_stmt): Use likely/unlikely instead of predictor_name.
705
33e6651d 7062019-02-17 Marek Polacek <polacek@redhat.com>
707
708 PR c++/89217 - ICE with list-initialization in range-based for loop.
709 * constexpr.c (unshare_constructor): No longer static.
710 * cp-tree.h (unshare_constructor): Declare.
711 * semantics.c (finish_compound_literal): When dealing with a
712 non-dependent expression in a template, return the original
713 expression. Pass LOOKUP_NO_NARROWING to digest_init_flags.
714
3a860627 7152019-02-13 Marek Polacek <polacek@redhat.com>
716
717 PR c++/89297 - ICE with OVERLOAD in template.
718 * semantics.c (finish_compound_literal): Call
719 instantiate_non_dependent_expr_sfinae.
720
601c59dd 7212019-02-13 Alexandre Oliva <aoliva@redhat.com>
722
40563cf7 723 PR c++/86379
724 * cp-tree.h (USING_DECL_SCOPE): Use result rather than type.
725 * name-lookup.c (strip_using_decl): Use USING_DECL_SCOPE.
726 * search.c (protected_accessible_p): Follow USING_DECL_DECLS.
727 (shared_member_p): Likewise.
728 (lookup_member): Likewise.
729 * decl.c (grok_special_member_properties): Skip USING_DECLs.
730 * semantics.c (finish_omp_declare_simd_methods): Likewise.
731 (finish_qualified_id_expr): Do not call shared_member_p with
732 a dependent expr.
733
601c59dd 734 PR c++/87322
735 * pt.c (tsubst_lambda_expr): Avoid duplicate tsubsting.
736 Move cp_evaluated resetting before signature tsubsting.
737 (gen_elem_of_pack_expansion_instantiation): Separate local
738 specializations per index.
739
f2da1a76 7402019-02-13 David Malcolm <dmalcolm@redhat.com>
741
742 PR c++/89036
743 * class.c (add_method): Drop destructor assertion.
744
64bd49fa 7452019-02-13 Paolo Carlini <paolo.carlini@oracle.com>
746
747 PR c++/88986
748 * decl.c (make_typename_type): Allow for TYPE_PACK_EXPANSION as
749 context (the first argument).
750 * pt.c (tsubst, case TYPENAME_TYPE): Handle TYPE_PACK_EXPANSION
751 as context.
752
c8e19553 7532019-02-12 Jason Merrill <jason@redhat.com>
754
755 PR c++/89144 - link error with constexpr initializer_list.
756 * call.c (convert_like_real) [ck_list]: Don't allocate a temporary
757 array for an empty list.
758 * typeck2.c (store_init_value): Don't use cxx_constant_init in a
759 template.
760
33fe677e 7612019-02-11 Jason Merrill <jason@redhat.com>
762
763 PR c++/89241 - ICE with __func__ in lambda in template.
764 * pt.c (enclosing_instantiation_of): Also check
765 instantiated_lambda_fn_p for the template context.
766
44263306 7672019-02-11 Marek Polacek <polacek@redhat.com>
768
769 PR c++/89212 - ICE converting nullptr to pointer-to-member-function.
770 * pt.c (tsubst_copy_and_build) <case CONSTRUCTOR>: Return early for
771 null member pointer value.
772
61b94553 7732019-02-11 Jakub Jelinek <jakub@redhat.com>
774
775 PR c++/88977
776 * pt.c (convert_nontype_argument): Pass true as manifestly_const_eval
777 to maybe_constant_value calls.
778
b10193f4 7792019-02-11 Marek Polacek <polacek@redhat.com>
780
781 * typeck2.c (digest_init_r): Remove commented code.
782
08acf739 7832019-02-11 Martin Sebor <msebor@redhat.com>
784
785 PR c++/87996
786 * decl.c (compute_array_index_type_loc): Preserve signed sizes
787 for diagnostics. Call valid_array_size_p instead of error.
788 * init.c (build_new_1): Compute size for diagnostic. Call
789 invalid_array_size_error
790 (build_new): Call valid_array_size_p instead of error.
791
939d44f3 7922019-02-07 Alexandre Oliva <aoliva@redhat.com>
793
794 PR c++/86218
795 * call.c (compare_ics): Deal with ck_aggr in either cs.
796
c92ab8d4 7972019-02-06 David Malcolm <dmalcolm@redhat.com>
798
799 PR c++/71302
800 * call.c (get_location_for_expr_unwinding_for_system_header): New
801 function.
802 (conversion_null_warnings): Use it when getting locations for
803 EXPR, effectively adding a call to
804 get_location_for_expr_unwinding_for_system_header for
805 -Wconversion-null and making use of EXPR_LOCATION for
806 -Wzero-as-null-pointer-constant.
807
b5a6b127 8082019-02-05 Jakub Jelinek <jakub@redhat.com>
809
810 PR c++/89187
811 * optimize.c (maybe_thunk_body): Clear TREE_ADDRESSABLE on
812 PARM_DECLs of the thunk.
813 * lambda.c (maybe_add_lambda_conv_op): Likewise.
814
74ce2ebb 8152019-02-05 Marek Polacek <polacek@redhat.com>
816
817 PR c++/89158 - by-value capture of constexpr variable broken.
818 * call.c (convert_like_real) <case ck_user>: Call mark_exp_read
819 instead of mark_rvalue_use.
820
9ca54fa1 8212019-02-05 Alexandre Oliva <aoliva@redhat.com>
822
823 PR c++/87770
824 * pt.c (instantiates_primary_template_p): New.
825 (type_dependent_expression_p): Use it.
826
c758dd5a 8272019-02-01 Jason Merrill <jason@redhat.com>
828
829 PR c++/88761 - ICE with reference capture of constant.
830 * lambda.c (mark_const_cap_r): Do walk subtrees of DECL_EXPR for
831 non-proxy decls.
832
bdb43276 8332019-02-01 Marek Polacek <polacek@redhat.com>
834
835 PR c++/88325 - ICE with invalid out-of-line template member definition.
836 * parser.c (cp_parser_class_name): Don't call make_typename_type
837 for overloads.
838
5ab8180e 8392019-02-01 Jakub Jelinek <jakub@redhat.com>
840
841 PR c++/87175
842 * parser.c (cp_parser_gnu_attributes_opt): Set ok to false
843 if require_open failed.
844
c8f861a0 8452019-01-31 Marek Polacek <polacek@redhat.com>
846
847 PR c++/89083, c++/80864 - ICE with list initialization in template.
848 * constexpr.c (adjust_temp_type): Use copy_node and change the type
849 instead of using build_constructor.
850 * decl.c (reshape_init_r): Don't reshape a digested initializer.
851 Return the initializer for COMPOUND_LITERAL_P.
852
f1329be6 853 PR c++/88983 - ICE with switch in constexpr function.
854 * constexpr.c (cxx_eval_switch_expr): Use SWITCH_COND and SWITCH_BODY.
855 (cxx_eval_constant_expression) <case COND_EXPR>: Don't look for the
856 label in the else branch if we found it in the then branch.
857
8c28f0ef 8582019-01-30 Jason Merrill <jason@redhat.com>
859
860 PR c++/88752 - ICE with lambda and constexpr if.
861 * cp-tree.h (LAMBDA_EXPR_INSTANTIATED): New.
862 * pt.c (tsubst_lambda_expr): Set it.
863 (instantiated_lambda_fn_p): Check it.
864 (enclosing_instantiation_of): Use it.
865
abb9ae66 8662019-01-31 Jakub Jelinek <jakub@redhat.com>
867
868 PR libstdc++/88170
869 * cxx-pretty-print.c (pp_cxx_enumeration_constant): Print always as
870 a C cast in pp_c_flag_gnu_v3 mode.
871
9b0e9786 8722019-01-30 Jakub Jelinek <jakub@redhat.com>
873
874 PR c++/88988
875 * lambda.c (is_capture_proxy): Don't return true for
876 DECL_OMP_PRIVATIZED_MEMBER artificial vars.
877
7066144a 8782019-01-30 Marek Polacek <polacek@redhat.com>
879
880 PR c++/89119 - ICE with value-initialization in template.
881 * pt.c (tsubst_copy_and_build): Handle RANGE_EXPR.
882
64e3499e 8832019-01-29 Jason Merrill <jason@redhat.com>
884
885 PR c++/86943 - wrong code converting lambda to function pointer.
886 * lambda.c (maybe_add_lambda_conv_op): Use a template-id in the
887 call. Only forward parms for decltype.
888 * pt.c (tsubst_copy_and_build) [CALL_EXPR]: Handle CALL_FROM_THUNK_P
889 specially.
890 * typeck.c (check_return_expr): Don't mess with a thunk call.
891
107cba11 8922019-01-28 Jason Merrill <jason@redhat.com>
893
894 PR c++/89089 - ICE with [[no_unique_address]].
895 PR c++/88865 - wrong layout with [[no_unique_address]].
896 * class.c (check_field_decls): A potentially-overlapping field makes
897 the class non-layout-POD, but not non-empty.
898 (end_of_class): Always consider empty data members.
899 (layout_class_type): Set DECL_SIZE for empty fields.
900
44da2a17 9012019-01-28 Marek Polacek <polacek@redhat.com>
902
903 PR c++/88358 - name wrongly treated as type.
904 * parser.c (cp_parser_direct_declarator): Don't assume a qualified-id
905 in parameter-list is a type if the function's declarator-id is not
906 qualified.
907
1d41b42f 9082019-01-27 Marek Polacek <polacek@redhat.com>
909
b7feeace 910 PR c++/88815 - narrowing conversion lost in decltype.
911 PR c++/78244 - narrowing conversion in template not detected.
912 * cp-tree.h (CONSTRUCTOR_IS_DEPENDENT): New.
913 * pt.c (instantiation_dependent_r): Consider a CONSTRUCTOR with
914 CONSTRUCTOR_IS_DEPENDENT instantiation-dependent.
915 * semantics.c (finish_compound_literal): When the compound literal
916 isn't instantiation-dependent and the type isn't type-dependent,
917 fall back to the normal processing. Set CONSTRUCTOR_IS_DEPENDENT.
918
1d41b42f 919 PR c++/89024 - ICE with incomplete enum type.
920 * call.c (standard_conversion): When converting an
921 ARITHMETIC_TYPE_P to an incomplete type, return NULL.
922
837ddebd 9232019-01-25 Paolo Carlini <paolo.carlini@oracle.com>
924
925 PR c++/88969
926 * call.c (build_op_delete_call): Implement 7.6.2.5/(10.1).
927 * decl2.c (coerce_delete_type): Use build_pointer_type instead
928 of TYPE_POINTER_TO.
929
8c89c5fc 9302019-01-24 Jason Merrill <jason@redhat.com>
931
932 PR c++/89001 - mangling of reference temporaries
933 * cp-tree.h (struct saved_scope): Add ref_temp_count.
934 (current_ref_temp_count): New macro.
935 * mangle.c (mangle_ref_init_variable): Use it.
936 * typeck2.c (store_init_value): Clear it.
937 * call.c (make_temporary_var_for_ref_to_temp): Copy public and
938 comdat.
939
b5e76680 9402019-01-24 Jakub Jelinek <jakub@redhat.com>
941
942 PR c++/88976
943 * semantics.c (finish_omp_cancel): Diagnose more than one if
944 on #pragma omp cancel with different modifiers. Use
945 maybe_convert_cond when not in template or build_x_binary_op
946 otherwise.
947
dffbcba8 9482019-01-23 Marek Polacek <polacek@redhat.com>
949
950 PR c++/88757 - qualified name treated wrongly as type.
951 * parser.c (cp_parser_direct_declarator): Don't treat qualified-ids
952 in parameter-list as types if name lookup for declarator-id didn't
953 find one or more function templates.
954
1f03c410 9552019-01-23 Jakub Jelinek <jakub@redhat.com>
956
8090d51c 957 PR c/44715
958 * cp-gimplify.c (genericize_cp_loop): Call begin_bc_block only
959 after genericizing cond and incr expressions.
960
1f03c410 961 PR c++/88984
962 * cp-gimplify.c (genericize_switch_stmt): Move cond genericization
963 before the begin_bc_block call.
964
48c03f15 9652019-01-21 Jason Merrill <jason@redhat.com>
966
967 PR c++/87893 - constexpr ctor ICE on ARM.
968 PR c++/88293 - ICE with comma expression.
969 * constexpr.c (initialized_type): Don't shortcut non-void type.
970 Handle COMPOUND_EXPR.
971 (cxx_eval_outermost_constant_expr): Return early for void type.
972
99bf4b63 9732019-01-21 Jakub Jelinek <jakub@redhat.com>
974
77fe9474 975 PR c++/88949
976 * optimize.c (cxx_copy_decl): New function.
977 (clone_body): Use it instead of copy_decl_no_change.
978
99bf4b63 979 PR sanitizer/88901
980 * typeck.c (cp_build_binary_op): Don't instrument
981 SANITIZE_POINTER_COMPARE if processing_template_decl.
982 (pointer_diff): Similarly for SANITIZE_POINTER_SUBTRACT.
983
ecd2d842 9842019-01-18 Jason Merrill <jason@redhat.com>
985
986 PR c++/88875 - error with explicit list constructor.
987 * call.c (reference_binding): Don't modify EXPR. Set
988 need_temporary_p on the ck_user conversion for a temporary.
989 (convert_like_real): Check it.
990
6d4e8a95 9912019-01-18 H.J. Lu <hongjiu.lu@intel.com>
992
993 PR c/51628
994 PR c/88664
995 * call.c (convert_for_arg_passing): Upate the
996 warn_for_address_or_pointer_of_packed_member call.
997 * typeck.c (convert_for_assignment): Likewise.
998
9d3c4130 9992019-01-17 Jason Merrill <jason@redhat.com>
1000
bc9c0483 1001 PR c++/86205 - ICE with ?: of throw and template-id.
1002 * pt.c (resolve_nondeduced_context_or_error): Split out from...
1003 * typeck.c (decay_conversion): ...here.
1004 * call.c (build_conditional_expr_1): Use it.
1005
9d3c4130 1006 PR c++/86740, ICE with constexpr if and nested generic lambdas.
1007 * tree.c (cp_walk_subtrees): Handle LAMBDA_EXPR.
1008
0f910e62 10092019-01-17 Paolo Carlini <paolo.carlini@oracle.com>
1010
1011 * decl.c (grokdeclarator): Use typespec_loc in error messages
1012 about 'auto' and trailing return type.
1013
098cc8f0 10142019-01-17 David Malcolm <dmalcolm@redhat.com>
1015
1016 PR c++/88699
1017 * class.c (add_method): Don't use DECL_DESTRUCTOR_P on
1018 USING_DECLs.
1019
a395125a 10202019-01-17 Nathan Sidwell <nathan@acm.org>
1021
1022 PR c++/86610
1023 * semantics.c (process_outer_var_ref): Only skip dependent types
1024 in templates.
1025
5461905d 10262019-01-17 Alexandre Oliva <aoliva@redhat.com>
1027
c5f929a4 1028 PR c++/87768
1029 * cp-tree.h (saved_scope): Add suppress_location_wrappers.
1030 * name-lookup.c (do_push_to_top_level): Save and reset it.
1031 (do_pop_from_top_level): Restore it.
1032
f97941b7 1033 PR c++/86648
1034 * pt.c (make_template_placeholder): Use auto_identifier.
1035 (is_auto): Drop CLASS_PLACEHOLDER_TEMPLATE test.
1036 * error.c (dump_type): Handle template placeholders.
1037 * cxx-pretty-print.c (pp_cx_unqualified_id): Likewise.
1038
5461905d 1039 PR c++/88146
1040 * cvt.c (convert_to_void): Handle all cdtor calls as if
1041 returning void.
1042
b92cc3ed 10432019-01-16 Paolo Carlini <paolo.carlini@oracle.com>
1044
1045 * decl.c (grokdeclarator): Use locations[ds_storage_class] in
1046 error messages about ill-formed uses of mutable.
1047
9fc2172c 10482019-01-16 Marek Polacek <polacek@redhat.com>
1049
1050 PR c++/78244 - narrowing conversion in template not detected.
1051 * call.c (perform_implicit_conversion_flags): Set
1052 IMPLICIT_CONV_EXPR_BRACED_INIT.
1053 * cp-tree.h (IMPLICIT_CONV_EXPR_BRACED_INIT): New.
1054 * pt.c (tsubst_copy_and_build): Use it.
1055
727d210b 10562019-01-15 David Malcolm <dmalcolm@redhat.com>
1057
1058 PR c++/88795
1059 * pt.c (build_deduction_guide): Bail out if tsubst_arg_types
1060 fails.
1061
39a51021 10622019-01-15 Paolo Carlini <paolo.carlini@oracle.com>
1063
1064 * decl.c (start_decl): Improve error location.
1065 * decl2.c (grokfield): Likewise.
1066
10672019-01-15 Paolo Carlini <paolo.carlini@oracle.com>
1068
1069 * decl.c (grokdeclarator): Move further up the location_t loc
1070 declaration and use the location when building a TYPE_DECL for
1071 a typedef name.
1072 * decl2.c (grokbitfield): Use DECL_SOURCE_LOCATION in the error
1073 about an ill-formed bit-field as typedef.
1074
affca1c8 10752019-01-14 Marek Polacek <polacek@redhat.com>
1076
1077 PR c++/88830 - ICE with abstract class.
1078 * decl2.c (maybe_emit_vtables): Check CLASSTYPE_LAZY_DESTRUCTOR.
1079 Fix formatting.
1080
9f8a8956 1081 PR c++/88825 - ICE with bogus function return type deduction.
1082 * typeck.c (can_do_nrvo_p): Check error_mark_node.
1083
82362779 10842019-01-14 Tom Honermann <tom@honermann.net>
1085
1086 Implement P0482R5, char8_t: A type for UTF-8 characters and strings
1087 * cvt.c (type_promotes_to): Handle char8_t promotion.
1088 * decl.c (grokdeclarator): Handle invalid type specifier
1089 combinations involving char8_t.
1090 * lex.c (init_reswords): Add char8_t as a reserved word.
1091 * mangle.c (write_builtin_type): Add name mangling for char8_t (Du).
1092 * parser.c (cp_keyword_starts_decl_specifier_p)
1093 (cp_parser_simple_type_specifier): Recognize char8_t as a simple
1094 type specifier.
1095 (cp_parser_string_literal): Use char8_array_type_node for the type
1096 of CPP_UTF8STRING.
1097 (cp_parser_set_decl_spec_type): Tolerate char8_t typedefs in system
1098 headers.
1099 * rtti.c (emit_support_tinfos): type_info support for char8_t.
1100 * tree.c (char_type_p): Recognize char8_t as a character type.
1101 * typeck.c (string_conv_p): Handle conversions of u8 string
1102 literals of char8_t type.
1103 (check_literal_operator_args): Handle UDLs with u8 string literals
1104 of char8_t type.
1105 * typeck2.c (ordinary_char_type_p): New.
1106 (digest_init_r): Disallow initializing a char array with a u8 string
1107 literal.
1108
bf4eb32b 11092019-01-14 Martin Liska <mliska@suse.cz>
1110
1111 PR gcov-profile/88263
1112 * decl2.c (get_tls_wrapper_fn): Use DECL_SOURCE_LOCATION
1113 as location of the TLS wrapper.
1114
2fa582a9 11152019-01-12 Paolo Carlini <paolo.carlini@oracle.com>
1116
1117 * decl.c (cp_finish_decl): Improve error location.
1118 * decl2.c (grokfield): Likewise, improve two locations.
1119
0b5957b9 11202019-01-11 Marek Polacek <polacek@redhat.com>
1121
1122 PR c++/88692, c++/87882 - -Wredundant-move false positive with *this.
1123 * typeck.c (maybe_warn_pessimizing_move): Return if ARG isn't
1124 ADDR_EXPR.
1125
d07c152b 11262019-01-11 Jason Merrill <jason@redhat.com>
1127
1128 PR c++/88312 - pack expansion of decltype.
1129 * pt.c (instantiation_dependent_r): A template non-type parameter
1130 pack is instantiation-dependent.
1131
0c2ebbc4 11322019-01-11 Jason Merrill <jason@redhat.com>
1133
1134 PR c++/88613 - ICE with use of const var in lambda.
1135 * expr.c (mark_use): Fix location wrapper handling.
1136 * cp-gimplify.c (cp_fold_maybe_rvalue): Call mark_rvalue_use.
1137
1b2f170e 11382019-01-11 Tobias Burnus <burnus@net-b.de>
1139
1140 PR C++/88114
1141 * decl2.c (maybe_emit_vtables): If needed, generate code for
1142 the destructor of an abstract class.
1143 (mark_used): Update comment for older function-name change.
1144
b385e516 11452019-01-11 Paolo Carlini <paolo.carlini@oracle.com>
1146
1147 * decl.c (start_decl): Improve error location.
1148 (grokdeclarator): Likewise, improve two locations.
1149
f4d3c071 11502019-01-09 Sandra Loosemore <sandra@codesourcery.com>
1151
1152 PR other/16615
1153
1154 * cp-tree.h: Mechanically replace "can not" with "cannot".
1155 * parser.c: Likewise.
1156 * pt.c: Likewise.
1157
7cc45975 11582019-01-08 Paolo Carlini <paolo.carlini@oracle.com>
1159
1160 * decl.c (grok_reference_init): Improve error location.
1161 (grokdeclarator): Likewise, improve two locations.
1162
90e20c9c 11632019-01-08 Marek Polacek <polacek@redhat.com>
1164
91902bb4 1165 PR c++/88538 - braced-init-list in template-argument-list.
1166 * parser.c (cp_parser_template_argument): Handle braced-init-list when
1167 in C++20.
1168
90e20c9c 1169 PR c++/88548 - this accepted in static member functions.
1170 * parser.c (cp_debug_parser): Adjust printing of
1171 local_variables_forbidden_p.
1172 (cp_parser_new): Set local_variables_forbidden_p to 0 rather than false.
1173 (cp_parser_primary_expression): When checking
1174 local_variables_forbidden_p, use THIS_FORBIDDEN or
1175 LOCAL_VARS_FORBIDDEN.
1176 (cp_parser_lambda_body): Update the type of
1177 local_variables_forbidden_p. Set it to 0 rather than false.
1178 (cp_parser_condition): Adjust call to cp_parser_declarator.
1179 (cp_parser_explicit_instantiation): Likewise.
1180 (cp_parser_init_declarator): Likewise.
1181 (cp_parser_declarator): New parameter. Use it.
1182 (cp_parser_direct_declarator): New parameter. Use it to set
1183 local_variables_forbidden_p. Adjust call to cp_parser_declarator.
1184 (cp_parser_type_id_1): Adjust call to cp_parser_declarator.
1185 (cp_parser_parameter_declaration): Likewise.
1186 (cp_parser_default_argument): Update the type of
1187 local_variables_forbidden_p. Set it to LOCAL_VARS_AND_THIS_FORBIDDEN
1188 rather than true.
1189 (cp_parser_member_declaration): Tell cp_parser_declarator if we saw
1190 'static' or 'friend'.
1191 (cp_parser_exception_declaration): Adjust call to cp_parser_declarator.
1192 (cp_parser_late_parsing_default_args): Update the type of
1193 local_variables_forbidden_p. Set it to LOCAL_VARS_AND_THIS_FORBIDDEN
1194 rather than true.
1195 (cp_parser_cache_defarg): Adjust call to cp_parser_declarator.
1196 (cp_parser_objc_class_ivars): Likewise.
1197 (cp_parser_objc_struct_declaration): Likewise.
1198 (cp_parser_omp_for_loop_init): Likewise.
1199 * parser.h (cp_parser): Change the type of local_variables_forbidden_p
1200 to unsigned char.
1201 (LOCAL_VARS_FORBIDDEN, LOCAL_VARS_AND_THIS_FORBIDDEN, THIS_FORBIDDEN):
1202 Define.
1203
8f7d5246 12042019-01-08 Paolo Carlini <paolo.carlini@oracle.com>
1205
1206 * decl.c (start_decl): Improve permerror location.
1207
6e5908c9 12082019-01-08 Jonathan Wakely <jwakely@redhat.com>
1209 Jakub Jelinek <jakub@redhat.com>
1210
1211 PR c++/88554
1212 * decl.c (finish_function): For -Wreturn-type don't add a return *this;
1213 fixit hint if current_class_ref is NULL. Use a single if instead of
1214 two nested ones.
1215
2318c037 12162019-01-07 Paolo Carlini <paolo.carlini@oracle.com>
1217
1218 * decl.c (start_decl): Improve two error_at locations.
1219 (expand_static_init): Likewise.
1220
677576f7 12212019-01-07 Marek Polacek <polacek@redhat.com>
1222
1223 PR c++/88741 - wrong error with initializer-string.
1224 * decl.c (cp_complete_array_type): Strip any location wrappers.
1225
c38103e8 12262019-01-07 Bernd Edlinger <bernd.edlinger@hotmail.de>
1227
1228 PR c++/88261
1229 PR c++/69338
1230 PR c++/69696
1231 PR c++/69697
1232 * cp-tree.h (LOOKUP_ALLOW_FLEXARRAY_INIT): New flag value.
1233 * typeck2.c (digest_init_r): Raise an error for non-static
1234 initialization of a flexible array member.
1235 (process_init_constructor, massage_init_elt,
1236 process_init_constructor_array, process_init_constructor_record,
1237 process_init_constructor_union, process_init_constructor): Add the
1238 flags parameter and pass it thru.
1239 (store_init_value): Pass LOOKUP_ALLOW_FLEXARRAY_INIT parameter to
1240 digest_init_flags for static decls.
1241
59409f09 12422019-01-07 Jakub Jelinek <jakub@redhat.com>
1243
1244 PR c++/85052
1245 * cp-tree.h (cp_build_vec_convert): Declare.
1246 * parser.c (cp_parser_postfix_expression): Parse
1247 __builtin_convertvector.
1248 * constexpr.c: Include fold-const-call.h.
1249 (cxx_eval_internal_function): Handle IFN_VEC_CONVERT.
1250 (potential_constant_expression_1): Likewise.
1251 * semantics.c (cp_build_vec_convert): New function.
1252 * pt.c (tsubst_copy_and_build): Handle CALL_EXPR to
1253 IFN_VEC_CONVERT.
1254
0627c5c9 12552019-01-03 Jakub Jelinek <jakub@redhat.com>
1256
1257 PR c++/88636
1258 * decl.c (builtin_function_1): Return result of pushdecl_top_level
1259 or pushdecl rather than decl.
1260
f9f7d90c 12612019-01-03 Paolo Carlini <paolo.carlini@oracle.com>
1262
1263 * tree.c (handle_nodiscard_attribute): Improve warning location.
1264
37fb9cf6 12652019-01-02 Marek Polacek <polacek@redhat.com>
1266
1267 PR c++/88612 - ICE with -Waddress-of-packed-member.
1268 * call.c (convert_for_arg_passing): Only give warnings with tf_warning.
1269 * typeck.c (convert_for_assignment): Likewise.
1270
6080dd2f 1271 PR c++/88631 - CTAD failing for value-initialization.
1272 * typeck2.c (build_functional_cast): Try deducing the template
1273 arguments even if there are no arguments to deduce from.
1274
fbd26352 12752019-01-01 Jakub Jelinek <jakub@redhat.com>
ca29c574 1276
8e8f6434 1277 Update copyright years.
7dfbd804 1278\f
fbd26352 1279Copyright (C) 2019 Free Software Foundation, Inc.
7dfbd804 1280
1281Copying and distribution of this file, with or without modification,
1282are permitted in any medium without royalty provided the copyright
1283notice and this notice are preserved.