]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/cp/ChangeLog
re PR c++/77907 (Add "const" to argument of constexpr constructor causes the object...
[thirdparty/gcc.git] / gcc / cp / ChangeLog
1 2016-11-23 Jakub Jelinek <jakub@redhat.com>
2
3 PR c++/77907
4 * cp-gimplify.c (cp_fold) <case CALL_EXPR>: When calling constructor
5 and maybe_constant_value returns non-CALL_EXPR, create INIT_EXPR
6 with the object on lhs and maybe_constant_value returned expr on rhs.
7
8 PR c++/71450
9 * pt.c (tsubst_copy): Return error_mark_node when mark_used
10 fails, even when complain & tf_error.
11
12 PR c++/77739
13 * cp-gimplify.c (cp_gimplify_tree) <case VEC_INIT_EXPR>: Pass
14 false as handle_invisiref_parm_p to cp_genericize_tree.
15 (struct cp_genericize_data): Add handle_invisiref_parm_p field.
16 (cp_genericize_r): Don't wrap is_invisiref_parm into references
17 if !wtd->handle_invisiref_parm_p.
18 (cp_genericize_tree): Add handle_invisiref_parm_p argument,
19 set wtd.handle_invisiref_parm_p to it.
20 (cp_genericize): Pass true as handle_invisiref_parm_p to
21 cp_genericize_tree. Formatting fix.
22
23 2016-11-21 Bernd Edlinger <bernd.edlinger@hotmail.de>
24
25 PR c++/71973
26 * decl.c (duplicate_decls): Warn when a built-in function is redefined.
27 Don't overload builtin functions with C++ functions.
28 Handle const_tm_ptr_type_node like file_ptr_node.
29 Copy the TREE_NOTHROW flag unmodified to the old decl.
30
31 2016-11-18 Jason Merrill <jason@redhat.com>
32
33 PR objc++/78418 - ICE in string tests on darwin
34 * tree.c (lvalue_kind): Guard DECL_HAS_VALUE_EXPR_P.
35
36 2016-11-18 Jakub Jelinek <jakub@redhat.com>
37
38 PR c++/77285
39 * mangle.c (mangle_tls_init_fn, mangle_tls_wrapper_fn): Call
40 check_abi_tags.
41
42 2016-11-18 Jason Merrill <jason@redhat.com>
43
44 PR c++/67631 - list-init and explicit conversions
45 * semantics.c (finish_compound_literal): Call digest_init_flags.
46 * typeck2.c (digest_init_flags): Add complain parm.
47 (store_init_value): Pass it.
48
49 2016-11-18 Richard Sandiford <richard.sandiford@arm.com>
50 Alan Hayward <alan.hayward@arm.com>
51 David Sherwood <david.sherwood@arm.com>
52
53 * class.c (finish_struct_bits): Use SET_DECL_MODE.
54 (build_base_field_1, layout_class_type, finish_struct_1): Likewise.
55 * decl.c (make_label_decl): Likewise.
56 * pt.c (tsubst_decl): Likewise.
57
58 2016-11-17 Jason Merrill <jason@redhat.com>
59
60 PR c++/78193 - inherited ctor regressions on sparc32.
61 * call.c (build_over_call): Don't set CALL_FROM_THUNK_P here.
62 (build_call_a): Set it here, and don't insert EMPTY_CLASS_EXPR.
63 (convert_like_real) [ck_rvalue]: Also pass non-addressable
64 types along directly.
65
66 2016-11-17 Paolo Carlini <paolo.carlini@oracle.com>
67
68 PR c++/55080
69 * parser.c (cp_parser_non_integral_constant_expression): Issue a
70 pedwarn instead of an error for case NIC_FLOAT.
71
72 2016-11-17 Jason Merrill <jason@redhat.com>
73
74 PR c++/78124 - list-initialization and inherited ctor
75 * name-lookup.c (do_class_using_decl): Set CLASSTYPE_NON_AGGREGATE.
76
77 PR c++/78369 - {} as default argument
78 * call.c (build_special_member_call): Handle CONSTRUCTOR.
79
80 PR c++/68377
81 * parser.c (cp_parser_fold_expression): Check TREE_NO_WARNING.
82
83 2016-11-16 Jason Merrill <jason@redhat.com>
84
85 PR c++/78373
86 * decl.c (cp_finish_decl): Don't set TREE_CONSTANT on a reference.
87 * typeck2.c (store_init_value): Likewise.
88
89 * decl.c (store_decomp_type, lookup_decomp_type): New.
90 (cp_finish_decomp): Call store_decomp_type.
91 * semantics.c (finish_decltype_type): Call lookup_decomp_type.
92 * cp-tree.h: Declare lookup_decomp_type.
93
94 2016-11-15 Jakub Jelinek <jakub@redhat.com>
95
96 * decl.c (cp_finish_decomp): For DECL_NAMESPACE_SCOPE_P decl,
97 set DECL_ASSEMBLER_NAME.
98 * parser.c (cp_parser_decomposition_declaration): Likewise
99 if returning error_mark_node.
100 * mangle.c (mangle_decomp): New function.
101 * cp-tree.h (mangle_decomp): New declaration.
102
103 2016-11-15 Jason Merrill <jason@redhat.com>
104
105 PR c++/78358
106 * semantics.c (finish_decltype_type): Strip references for a tuple
107 decomposition.
108 * cp-tree.h (DECL_DECOMPOSITION_P): False for non-variables.
109
110 * decl2.c (decl_maybe_constant_var_p): References qualify.
111 * constexpr.c (non_const_var_error): Handle references.
112 * init.c (constant_value_1): Always check decl_constant_var_p.
113 * cp-gimplify.c (cp_fold_maybe_rvalue): Don't fold references.
114 * error.c (dump_decl_name): Split out from dump_decl.
115
116 2016-11-14 Jason Merrill <jason@redhat.com>
117
118 * tree.c (bitfield_p): New.
119 * cp-tree.h: Declare it.
120 * typeck.c (cxx_sizeof_expr, cxx_alignof_expr)
121 (cp_build_addr_expr_1): Use it instead of DECL_C_BIT_FIELD.
122 * decl.c (cp_finish_decomp): Look through reference. Always
123 SET_DECL_DECOMPOSITION_P.
124 * semantics.c (finish_decltype_type): Adjust decomposition handling.
125
126 2016-11-13 Jakub Jelinek <jakub@redhat.com>
127 Jason Merrill <jason@redhat.com>
128
129 Implement P0217R3 - C++17 structured bindings
130 * cp-tree.h (struct lang_decl_base): Add decomposition_p.
131 (DECL_DECOMPOSITION_P): New
132 (enum auto_deduction_context): Add adc_decomp_type.
133 (enum cp_declarator_kind): Add cdk_decomp.
134 * constexpr.c (cxx_eval_constant_expression): Look through
135 DECL_VALUE_EXPR.
136 (potential_constant_expression_1): Likewise.
137 * decl.c (reshape_init): Preserve CONSTRUCTOR_IS_DIRECT_INIT.
138 (check_initializer): Use build_aggr_init for DECL_DECOMPOSITION_P.
139 (cp_finish_decl): Pass adc_decomp_type for decomposition.
140 (find_decomp_class_base, get_tuple_size, get_tuple_element_type)
141 (get_tuple_decomp_init, cp_finish_decomp): New.
142 (grokdeclarator): Handle decomposition.
143 * init.c (build_aggr_init): Handle decomposition array.
144 (build_vec_init): Handle initialization from { array }.
145 * name-lookup.c (add_function): Always wrap TEMPLATE_DECL in
146 OVERLOAD.
147 * parser.c (declarator_can_be_parameter_pack): Handle cdk_decomp.
148 (function_declarator_p, strip_declarator_types)
149 (cp_parser_check_declarator_template_parameters): Likewise.
150 (cp_parser_range_for, cp_convert_range_for): Handle decomposition.
151 (cp_parser_simple_declaration): Parse decomposition.
152 (cp_parser_decomposition_declaration): New.
153 * pt.c (tsubst_decomp_names): New.
154 (subst_expr) [DECL_EXPR, RANGE_FOR_STMT]: Handle decomposition.
155 (do_auto_deduction): Handle adc_decomp_type.
156 * semantics.c (finish_decltype_type): Look through DECL_VALUE_EXPR.
157 * typeck.c (is_bitfield_expr_with_lowered_type): Likewise.
158 * tree.c (lvalue_kind): Likewise.
159 (cp_build_reference_type): Handle reference collapsing.
160
161 2016-11-13 Jason Merrill <jason@redhat.com>
162
163 * call.c (build_new_method_call_1): Include template arguments in
164 error message.
165 (print_error_for_call_failure): Likewise.
166 (build_new_function_call): Pass them in.
167 * name-lookup.c (supplement_binding_1): Don't complain about a
168 conflict with an erroneous declaration.
169 * error.c (dump_decl): Fix printing of alias declaration.
170 * decl.c (make_typename_type): Call cxx_incomplete_type_error.
171 * parser.c (cp_parser_diagnose_invalid_type_name): Likewise.
172 * semantics.c (perform_koenig_lookup): Don't wrap an error in
173 TEMPLATE_ID_EXPR.
174
175 2016-11-13 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
176
177 PR c/35503
178 * parser.c (cp_parser_postfix_pexpression): Call warn_for_restrict.
179
180 2016-11-12 Jason Merrill <jason@redhat.com>
181
182 CWG 2233
183 * typeck.c (convert_arguments): Handle default arg followed by none.
184
185 * constexpr.c (potential_constant_expression_1): REALPART_EXPR and
186 IMAGPART_EXPR can be lvalues.
187
188 DR 374
189 PR c++/56840
190 * pt.c (check_specialization_namespace): Allow any enclosing
191 namespace.
192 (check_unqualified_spec_or_inst): New.
193 (check_explicit_specialization): Call it.
194 * parser.c (cp_parser_elaborated_type_specifier)
195 (cp_parser_class_head): Call it.
196
197 2016-11-10 Jason Merrill <jason@redhat.com>
198
199 PR c++/77337
200 * pt.c (tsubst_friend_function): Don't set DECL_INITIAL.
201 (instantiate_decl): It's OK to defer a constexpr function.
202 * cp-tree.h (DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION): Check
203 DECL_LANG_SPECIFIC.
204 * decl2.c (decl_defined_p): Use it. No longer static.
205 * decl.c (redeclaration_error_message): Use decl_defined_p.
206 * constexpr.c (cxx_eval_call_expression): Set input_location around
207 call to instantiate_decl.
208
209 2016-11-10 Jakub Jelinek <jakub@redhat.com>
210
211 * mangle.c (mangle_decl): Only emit -Wc++1z-compat warnings for
212 public or external symbols.
213
214 2016-11-09 Jakub Jelinek <jakub@redhat.com>
215
216 PR c++/78283
217 * mangle.c (start_mangling): Reset G.need_cxx1z_warning.
218
219 2016-11-09 Jason Merrill <jason@redhat.com>
220
221 * parser.c (cp_parser_simple_type_specifier): Allow placeholder
222 for template template parameter.
223 (cp_parser_type_id_1): Improve diagnostic.
224 * decl.c (grokdeclarator): Handle class deduction diagnostics here.
225 * pt.c (splice_late_return_type): Not here.
226 (tsubst) [TEMPLATE_TYPE_PARM]: Substitute into placeholder template.
227 (do_class_deduction): Handle non-class templates.
228
229 Implement P0127R2, Declaring non-type parameters with auto.
230 * cp-tree.h (enum auto_deduction_context): Add adc_unify.
231 * decl.c (grokdeclarator): Allow 'auto' in C++17 template non-type
232 parameter types.
233 * pt.c (do_auto_deduction): Add outer_targs parameter.
234 (convert_template_argument): Call do_auto_deduction. If adc_unify,
235 don't give up on dependent init.
236 (unify): Likewise. In C++17, walk into the type of a
237 TEMPLATE_PARM_INDEX.
238 (for_each_template_parm): Add any_fn parameter.
239 (struct pair_fn_data): Likewise.
240 (for_each_template_parm_r): Call it for any tree. In C++17, walk
241 into the type of a TEMPLATE_PARM_INDEX.
242 (zero_r, array_deduction_r, try_array_deduction): New.
243 (type_unification_real): Call try_array_deduction.
244 (get_partial_spec_bindings): Likewise.
245
246 2016-11-07 Jason Merrill <jason@redhat.com>
247
248 Implement P0012R1, Make exception specifications part of the type
249 system.
250 * cp-tree.h (enum tsubst_flags): Add tf_fndecl_type.
251 (flag_noexcept_type, ce_type): New.
252 * call.c (build_conv): Add ck_fnptr.
253 (enum conversion_kind): Change ck_tsafe to ck_fnptr.
254 (convert_like_real): Likewise.
255 (standard_conversion): Likewise. Allow function pointer
256 conversions for pointers to member functions.
257 (reference_compatible_p): Allow function pointer conversions.
258 (direct_reference_binding): Likewise.
259 (reference_binding): Reference-compatible is no longer a subset of
260 reference-related.
261 (is_subseq): Also strip ck_lvalue after next_conversion.
262 * class.c (instantiate_type): Check fnptr_conv_p.
263 (resolve_address_of_overloaded_function): Likewise.
264 * cvt.c (can_convert_tx_safety): Now static.
265 (noexcept_conv_p, fnptr_conv_p, strip_fnptr_conv): New.
266 * decl.c (flag_noexcept_type): Define.
267 (cxx_init_decl_processing): Set it.
268 (bad_specifiers): Check it.
269 (grokdeclarator) [cdk_function]: Add exception-spec to type here.
270 * lambda.c (maybe_add_lambda_conv_op): Add exception-spec to
271 returned pointer.
272 * mangle.c (struct globals): Add need_cxx1z_warning.
273 (mangle_decl): Check it.
274 (write_exception_spec): New.
275 (write_function_type): Call it.
276 (canonicalize_for_substitution): Handle exception spec.
277 (write_type): Likewise.
278 (write_encoding): Set processing_template_decl across mangling of
279 partially-instantiated type.
280 * pt.c (determine_specialization): Pass tf_fndecl_type.
281 (tsubst_decl, fn_type_unification): Likewise.
282 (tsubst): Strip tf_fndecl_type, pass it to
283 tsubst_exception_specification.
284 (convert_nontype_argument_function): Handle function pointer
285 conversion.
286 (convert_nontype_argument): Likewise.
287 (unify, for_each_template_parm_r): Walk into noexcept-specifier.
288 * rtti.c (ptr_initializer): Encode noexcept.
289 * tree.c (canonical_eh_spec): New.
290 (build_exception_variant): Use it.
291 * typeck.c (composite_pointer_type): Handle fnptr conversion.
292 (comp_except_specs): Compare canonical EH specs.
293 (structural_comptypes): Call it.
294
295 * call.c (standard_conversion): Reorganize pointer conversions.
296 * pt.c (convert_nontype_argument_function): Convert to ref here.
297 (convert_nontype_argument): Not here.
298 (convert_template_argument): Add original type to error message.
299 (RECUR_AND_CHECK_FAILURE): Remove trailing semicolon.
300 (unify): Compare function-qualifiers.
301 * typeck.c (same_type_ignoring_top_level_qualifiers_p): Use
302 cp_build_qualified_type rather than TYPE_MAIN_VARIANT.
303
304 * pt.c (push_tinst_level_loc): Add template instantiations to the
305 announce_function stream.
306
307 2016-11-04 Paolo Carlini <paolo.carlini@oracle.com>
308
309 PR c++/67980
310 * pt.c (tsubst_expr, case IF_STMT): Use fold_non_dependent_expr
311 to suppress unwanted warnings.
312
313 2016-11-03 Jason Merrill <jason@redhat.com>
314
315 PR c++/78198
316 * call.c (convert_default_arg): Look through inheriting ctors.
317
318 2016-11-03 Jakub Jelinek <jakub@redhat.com>
319 Alexandre Oliva <aoliva@redhat.com>
320 Jason Merrill <jason@redhat.com>
321
322 PR debug/28767
323 PR debug/56974
324 * tree.c (cp_check_qualified_type): Use check_base_type and
325 TYPE_QUALS comparison instead of check_qualified_type.
326 (cxx_type_hash_eq): Return false if type_memfn_rqual don't match.
327 * cp-objcp-common.c (cp_get_debug_type): New function.
328 (cp_decl_dwarf_attribute): Don't handle types here.
329 (cp_type_dwarf_attribute): New function.
330 * cp-objcp-common.h (cp_get_debug_type, cp_type_dwarf_attribute):
331 Declare.
332 (LANG_HOOKS_GET_DEBUG_TYPE, LANG_HOOKS_TYPE_DWARF_ATTRIBUTE):
333 Define.
334
335 2016-11-03 Jason Merrill <jason@redhat.com>
336
337 * tree.c (cp_check_qualified_type): Call check_base_type instead
338 of check_qualified_type.
339 (cxx_type_hash_eq): Check ref-qualifiers.
340 * typeck.c (apply_memfn_quals): No need to mess with TYPE_CANONICAL.
341
342 2016-11-01 Jason Merrill <jason@redhat.com>
343
344 Implement P0136R1, Rewording inheriting constructors.
345 * call.c (enum rejection_reason_code): Add rr_inherited_ctor.
346 (inherited_ctor_rejection): New.
347 (add_function_candidate): Reject inherited ctors for copying.
348 (enforce_access): Use strip_inheriting_ctors.
349 (print_z_candidate): Likewise. Handle rr_inherited_ctor.
350 (convert_like_real): Avoid copying inheriting ctor parameters.
351 (build_over_call): Likewise. A base ctor inheriting from vbase
352 has no parms. Sorry about varargs.
353 (joust): A local constructor beats inherited with the same convs.
354 * class.c (add_method): Handle hiding inheriting ctors.
355 (one_inherited_ctor): Handle new semantics.
356 (add_implicitly_declared_members): Pass using_decl down.
357 (build_clone): A base ctor inheriting from vbase has no parms.
358 * cp-tree.h (DECL_INHERITED_CTOR): Store this instead of the base.
359 (SET_DECL_INHERITED_CTOR): Likewise.
360 (DECL_INHERITED_CTOR_BASE): Adjust.
361 * constexpr.c: Adjust.
362 * error.c (dump_function_decl): Decorate inheriting ctors.
363 * init.c (emit_mem_initializers): Suppress access control in
364 inheriting ctor.
365 * mangle.c (write_special_name_constructor): Handle new inheriting
366 ctor mangling.
367 * method.c (strip_inheriting_ctors, inherited_ctor_binfo)
368 (ctor_omit_inherited_parms, binfo_inherited_from): New.
369 (synthesized_method_walk): Use binfo_inherited_from. Suppress
370 access control in inheriting ctor.
371 (deduce_inheriting_ctor): Deleted if ambiguous ctor inheritance.
372 (maybe_explain_implicit_delete): Explain ambigous ctor inheritance.
373 (add_one_base_init, do_build_copy_constructor): Adjust.
374 (locate_fn_flags, explain_implicit_non_constexpr): Adjust.
375 (implicitly_declare_fn): Adjust.
376 (get_inherited_ctor): Remove.
377 * name-lookup.c (do_class_using_decl): Check for indirect ctor
378 inheritance.
379 * optimize.c (cdtor_comdat_group): Adjust for new mangling.
380 (maybe_clone_body): Handle omitted parms in base clone.
381 (maybe_thunk_body): Don't thunk if base clone omits parms.
382 * pt.c (tsubst_decl): Adjust.
383 (instantiate_template_1): Suppress access control in inheriting
384 ctor.
385 (fn_type_unification): Do deduction with inherited ctor.
386 * tree.c (special_function_p): Adjust.
387
388 2016-11-01 Jakub Jelinek <jakub@redhat.com>
389
390 * cp-objcp-common.c (cp_decl_dwarf_attribute): Handle DW_AT_inline.
391
392 2016-11-01 Jason Merrill <jason@redhat.com>
393
394 * class.c (declared_access): Split out from handle_using_decl.
395
396 2016-10-31 Jakub Jelinek <jakub@redhat.com>
397
398 PR c++/78089
399 * parser.c (cp_parser_postfix_expression): Replace return statement in
400 the first switch with setting postfix_expression to the return
401 expression and break;.
402
403 PR c++/77886
404 * pt.c (tsubst_expr) <case CASE_LABEL_EXPR> Copy over
405 FALLTHROUGH_LABEL_P flag to the new LABEL_DECL.
406 (tsubst_expr) <case LABEL_EXPR>: Likewise.
407
408 2016-09-11 Le-Chun Wu <lcwu@google.com>
409 Mark Wielaard <mjw@redhat.com>
410
411 * name-lookup.c (pushdecl_maybe_friend): When emitting a
412 shadowing warning, use the code corresponding to the
413 given -Wshadow= variant.
414
415 2016-10-26 Jason Merrill <jason@redhat.com>
416
417 * class.c (add_method): Allow using-declarations to coexist.
418
419 2016-10-25 Jason Merrill <jason@redhat.com>
420
421 * constexpr.c (maybe_constant_init): Pull out TARGET_EXPR_INITIAL.
422 (cxx_eval_outermost_constant_expr): Don't return a CONSTRUCTOR
423 with CONSTRUCTOR_NO_IMPLICIT_ZERO.
424 (cxx_eval_call_expression): Clear CONSTRUCTOR_NO_IMPLICIT_ZERO.
425
426 2016-10-25 Jakub Jelinek <jakub@redhat.com>
427
428 * parser.c (cp_parser_postfix_expression): Adding missing break;.
429
430 * cp-tree.h (finish_builtin_launder): Declare.
431 * parser.c (cp_parser_postfix_expression): Handle RID_BUILTIN_LAUNDER.
432 * semantics.c (finish_builtin_launder): New function.
433 * pt.c (tsubst_copy_and_build): Handle instantiation of IFN_LAUNDER.
434 * constexpr.c (cxx_eval_internal_function): Handle IFN_LAUNDER.
435 (potential_constant_expression_1): Likewise.
436
437 2016-10-24 Jakub Jelinek <jakub@redhat.com>
438
439 * cp-objcp-common.c (cp_decl_dwarf_attribute): Handle DW_AT_reference
440 and DW_AT_rvalue_reference.
441
442 * cxx-pretty-print.c (pp_cxx_check_constraint): Use VAR_P (x)
443 instead of TREE_CODE (x) == VAR_DECL.
444 * constraint.cc (get_concept_definition): Likewise.
445 (finish_shorthand_constraint): Likewise.
446 * init.c (warn_placement_new_too_small): Likewise.
447 * cp-gimplify.c (cp_genericize_r): Likewise.
448
449 2016-10-21 Jason Merrill <jason@redhat.com>
450
451 PR c++/77656
452 * pt.c (convert_template_argument): Call convert_nontype_argument
453 on value-dependent but not type-dependent arguments.
454 (convert_nontype_argument): Handle value-dependent arguments.
455 (canonicalize_expr_argument): New.
456 (deducible_expression, unify): Skip CONVERT_EXPR.
457 * error.c (dump_template_argument): Likewise.
458 * mangle.c (write_expression): Likewise.
459
460 * ptree.c (cxx_print_xnode) [TEMPLATE_PARM_INDEX]: Dump the decl.
461
462 2016-10-21 Jakub Jelinek <jakub@redhat.com>
463
464 * cp-objcp-common.c (cp_decl_dwarf_attribute): Handle
465 DW_AT_const_expr.
466
467 2016-10-17 Jakub Jelinek <jakub@redhat.com>
468
469 * cp-objcp-common.h (cp_function_decl_explicit_p,
470 cp_function_decl_deleted_p, cp_function_decl_defaulted): Remove.
471 (cp_decl_dwarf_attribute): Declare.
472 (LANG_HOOKS_FUNCTION_DECL_EXPLICIT_P,
473 LANG_HOOKS_FUNCTION_DECL_DELETED_P,
474 LANG_HOOKS_FUNCTION_DECL_DEFAULTED): Remove.
475 (LANG_HOOKS_DECL_DWARF_ATTRIBUTE): Redefine.
476 * cp-objcp-common.c (cp_function_decl_explicit_p,
477 cp_function_decl_deleted_p, cp_function_decl_defaulted): Remove.
478 (cp_decl_dwarf_attribute): New function.
479
480 2016-10-15 Jason Merrill <jason@redhat.com>
481
482 PR c++/77945
483 * constexpr.c (maybe_simplify_trivial_copy): New.
484 (cxx_eval_store_expression): Call it.
485 * call.c (build_over_call): Use unsigned char for trivial copy.
486
487 2016-10-14 Jason Merrill <jason@redhat.com>
488
489 Implement P0017R1, C++17 aggregates with bases.
490 * class.c (build_base_field_1): Split out from...
491 (build_base_field): ...here. In C++17 mode, build a field for
492 empty bases.
493 * decl.c (xref_basetypes): In C++17 aggregates can have bases.
494 (next_initializable_field): Allow base fields in C++17.
495 * typeck2.c (process_init_constructor_record): Likewise.
496
497 2016-10-14 Jakub Jelinek <jakub@redhat.com>
498
499 DR 1511 - const volatile variables and ODR
500 * decl.c (grokvardecl): Change flags argument to type_quals,
501 add conceptp argument. Set TREE_PUBLIC for non-static volatile vars.
502 (grokdeclarator): Adjust grokvardecl caller.
503
504 2016-10-13 Martin Sebor <msebor@redhat.com>
505
506 PR c++/71912
507 * class.c (struct flexmems_t): Add members.
508 (find_flexarrays): Add arguments. Correct handling of anonymous
509 structs.
510 (diagnose_flexarrays): Adjust to issue warnings in addition to errors.
511 (check_flexarrays): Add argument.
512 (diagnose_invalid_flexarray): New functions.
513
514 2016-10-13 Jakub Jelinek <jakub@redhat.com>
515 Jason Merrill <jason@redhat.com>
516
517 Implement P0386R2 - C++17 inline variables
518 * cp-tree.h (struct lang_type): Shrink language field to 1 bit
519 from 4. Add var_declared_inline_p field. Mention 2 spare bits.
520 (DECL_VAR_DECLARED_INLINE_P): Define.
521 (SET_DECL_VAR_DECLARED_INLINE_P): Define.
522 (DECL_INLINE_VAR_P): Define.
523 (diagnose_inline_vars_for_namespace): Declare.
524 * decl.c (diagnose_inline_vars_for_namespace): New function.
525 (duplicate_decls): For static data members copy
526 DECL_DECLARED_CONSTEXPR_P.
527 (redeclaration_error_message): Handle C++17 redundant redeclaration
528 of constexpr static data member outside of class.
529 (maybe_commonize_var): Handle inline variables.
530 (check_initializer): Ignore inline variables for diagnostics.
531 Adjust diagnostic wording for C++17.
532 (make_rtl_for_nonlocal_decl): Allow in-class definition of
533 inline static data members.
534 (bad_specifiers): Don't diagnose inline on variables here.
535 (grokvardecl): Add inlinep argument, non-static const inline variables
536 are TREE_PUBLIC.
537 (check_static_variable_definition): Return early also for inline
538 variables.
539 (mark_inline_variable): New.
540 (grokdeclarator): Handle inline variables and inline static data
541 members.
542 * typeck2.c (store_init_value): Don't diagnose non-constant
543 initializers for non-constexpr inline static data members.
544 * decl2.c (vague_linkage_p): Return true for inline variables.
545 (c_parse_final_cleanups): In-class declaration of inline static
546 data members is a definition. Call diagnose_inline_vars_for_namespace
547 through walk_namespaces.
548 * pt.c (instantiate_decl): Set pattern_defined for in-class definitions
549 of inline static data members.
550
551 2016-10-13 Jason Merrill <jason@redhat.com>
552
553 * decl.c (mark_inline_variable): New.
554
555 >>>>>>> .r241142
556 2016-10-13 Thomas Preud'homme <thomas.preudhomme@arm.com>
557
558 * decl2.c: Include memmodel.h.
559 * rtti.c: Likewise.
560
561 2016-10-11 Jason Merrill <jason@redhat.com>
562
563 PR c++/77742
564 * init.c (build_new_1): Don't -Waligned-new about placement new.
565 (malloc_alignment): New. Consider MALLOC_ABI_ALIGNMENT.
566 * decl.c (cxx_init_decl_processing): New.
567
568 2016-10-10 Jason Merrill <jason@redhat.com>
569
570 PR c++/77890
571 PR c++/77912
572 * pt.c (do_class_deduction): Set cp_unevaluated_operand.
573 (tsubst) [TEMPLATE_TYPE_PARM]: Copy CLASS_PLACEHOLDER_TEMPLATE.
574
575 2016-10-08 Jason Merrill <jason@redhat.com>
576
577 * cp-gimplify.c (cp_fold): Add variable name.
578
579 * cp-gimplify.c (cp_fold): Distribute cp_truthvalue_conversion
580 into COND_EXPR.
581
582 2016-10-07 Jason Merrill <jason@redhat.com>
583
584 Further P0135 refinement.
585 * call.c (build_user_type_conversion_1): Consider conversions from
586 a single element in an initializer-list.
587 (build_temp): Undo early_elide_copy change.
588 (build_over_call): Check that we don't try to copy a TARGET_EXPR
589 in C++17 mode. Set user_conv_p here.
590 (convert_like_real): Not here.
591 (check_self_delegation): Split out from...
592 (build_special_member_call): ...here. Handle C++17 copy elision.
593 * cvt.c (early_elide_copy): Remove.
594 (ocp_convert): Undo early_elide_copy change.
595 * except.c (build_throw): Likewise.
596 * init.c (expand_default_init): Likewise.
597 * typeck.c (cp_build_modify_expr): Likewise.
598
599 2016-10-07 Nathan Sidwell <nathan@acm.org>
600
601 PR c++/64433
602 DR1658, DR1611
603 * init.c (emit_mem_initializers): Don't construct vbases of
604 abstract classes.
605 (push_base_cleanups): Don't push vbase cleanups for abstract class
606 when in C++14 mode.
607 * method.c (synthethesized_method_walk): Don't walk vbases of
608 abstract classes when in C++14 mode.
609
610 2016-10-07 Jakub Jelinek <jakub@redhat.com>
611
612 Implement LWG2296 helper intrinsic
613 * parser.c (cp_parser_postfix_expression): Handle RID_ADDRESSOF.
614 * cp-objcp-common.c (cp_common_init_ts): Handle ADDRESSOF_EXPR.
615 * constexpr.c (potential_constant_expression_1): Likewise.
616 * error.c (dump_expr): Likewise.
617 * typeck.c (cp_build_addressof): New function.
618 * cp-tree.h (cp_build_addressof): Declare.
619 * cxx-pretty-print.h (pp_cxx_addressof_expression): Declare.
620 * cp-tree.def (ADDRESSOF_EXPR): New tree code.
621 * cxx-pretty-print.c (cxx_pretty_printer::primary_expression): Handle
622 ADDRESSOF_EXPR. Add __builtin_addressof and
623 __has_unique_object_representations into syntax in function comment.
624 (pp_cxx_addressof_expression): New function.
625 * pt.c (tsubst_copy_and_build): Handle ADDRESSOF_EXPR.
626
627 2016-10-07 Bernd Edlinger <bernd.edlinger@hotmail.de>
628
629 PR c++/77700
630 * parser.c (cp_parser_base_specifier): Fix a warning.
631
632 2016-10-07 Bernd Schmidt <bschmidt@redhat.com>
633
634 PR c++/69733
635 * decl.c (grokdeclarator): Try to find the correct location for an
636 ignored qualifier.
637
638 2016-10-07 Martin Liska <mliska@suse.cz>
639
640 * lambda.c (maybe_add_lambda_conv_op): Set default value.
641
642 2016-10-06 Jason Merrill <jason@redhat.com>
643
644 * call.c (build_temp, convert_like_real): Don't re-copy
645 TARGET_EXPR. Handle packed fields.
646 (build_x_va_arg): Wrap it in a TARGET_EXPR.
647 (build_over_call): Add sanity check.
648 * cvt.c (early_elide_copy): New.
649 (ocp_convert): Use it.
650 * except.c (build_throw): Use it.
651 * init.c (get_nsdmi): Put back the TARGET_EXPR.
652 (expand_default_init): Call early_elide_copy.
653 * typeck.c (cp_build_modify_expr): Call early_elide_copy.
654
655 2016-10-06 Jakub Jelinek <jakub@redhat.com>
656
657 Implement P0258R2 - helper for C++17
658 std::has_unique_object_representations trait
659 * cp-tree.h (enum cp_trait_kind): Add
660 CPTK_HAS_UNIQUE_OBJ_REPRESENTATIONS.
661 (struct lang_type_class): Add unique_obj_representations
662 and unique_obj_representations_set bitfields.
663 (CLASSTYPE_UNIQUE_OBJ_REPRESENTATIONS,
664 CLASSTYPE_UNIQUE_OBJ_REPRESENTATIONS_SET): Define.
665 (type_has_unique_obj_representations): Declare.
666 * parser.c (cp_parser_primary_expression): Handle
667 RID_HAS_UNIQUE_OBJ_REPRESENTATIONS.
668 (cp_parser_trait_expr): Likewise. Formatting fix.
669 * semantics.c (trait_expr_value, finish_trait_expr): Handle
670 CPTK_HAS_UNIQUE_OBJ_REPRESENTATIONS.
671 * tree.c (type_has_unique_obj_representations): New function.
672 (record_has_unique_obj_representations): New function.
673 * cxx-pretty-print.c (pp_cxx_trait_expression): Handle
674 CPTK_HAS_UNIQUE_OBJ_REPRESENTATIONS.
675
676 2016-10-05 Jason Merrill <jason@redhat.com>
677
678 Implement P0135R1, Guaranteed copy elision.
679 * cvt.c (ocp_convert): Don't re-copy a TARGET_EXPR in C++17.
680
681 PR c++/54293
682 * call.c (reference_binding): Fix binding to member of temporary.
683
684 * call.c (extend_ref_init_temps): Fix TARGET_EXPR handling.
685
686 * parser.c (cp_parser_skip_to_end_of_statement): Add missing break.
687
688 * semantics.c (finish_compound_literal): Handle class placeholder.
689
690 2016-10-05 Marek Polacek <polacek@redhat.com>
691
692 Implement P0305R1, Selection statements with initializer.
693 * cp-array-notation.c (create_an_loop): Call finish_init_stmt
694 instead of finish_for_init_stmt.
695 * cp-tree.h (finish_for_init_stmt): Rename to finish_init_stmt.
696 * decl.c (poplevel): Adjust a comment.
697 * init.c (build_vec_init): Call finish_init_stmt instead of
698 finish_for_init_stmt.
699 * name-lookup.c (pushdecl_maybe_friend_1): Adjust a comment.
700 * name-lookup.h (enum scope_kind): Likewise.
701 * parser.c (cp_parser_statement): Update commentary.
702 (cp_parser_init_statement_p): New function.
703 (cp_parser_selection_statement): Parse the optional init-statement.
704 (cp_parser_for): Call finish_init_stmt instead of finish_for_init_stmt.
705 (cp_parser_c_for): Likewise.
706 (cp_convert_range_for): Call finish_init_stmt instead of finish_for_init_stmt.
707 (cp_parser_range_for_member_function): Update commentary.
708 (cp_parser_iteration_statement):
709 (cp_parser_for_init_statement): Rename to cp_parser_init_statement.
710 * pt.c (tsubst_omp_for_iterator): Update commentary.
711 (tsubst_expr): Call finish_init_stmt instead of finish_for_init_stmt.
712 * semantics.c (finish_for_init_stmt): Rename to finish_init_stmt.
713 Update commentary.
714
715 2016-10-04 Jason Merrill <jason@redhat.com>
716
717 PR c++/77852
718 * pt.c (do_class_deduction): Handle list-initialization.
719 (do_auto_deduction): Call it sooner.
720 (build_deduction_guide): Use tsubst_arg_types.
721 (rewrite_template_parm): Don't copy_type.
722
723 PR c++/77775
724 * constexpr.c (cxx_eval_component_reference): Use name matching
725 for PMFs.
726
727 Implement P0091R2, Template argument deduction for class templates.
728 * parser.c (cp_parser_simple_type_specifier): Parse class placeholder.
729 Use the location of the beginning of the type-specifier.
730 (cp_parser_init_declarator): Parse deduction guide.
731 (cp_parser_diagnose_invalid_type_name): Mention class deduction.
732 (cp_parser_type_id_1): Don't accept class placeholder as template arg.
733 * cp-tree.h (CLASS_PLACEHOLDER_TEMPLATE): New.
734 * decl.c (grokdeclarator): Check for uninitialized auto here.
735 (start_decl_1): Not here.
736 (cp_finish_decl): Or here. Don't collapse a list when doing
737 class deduction.
738 (grokfndecl): Check deduction guide scope and body.
739 * error.c (dump_decl, dump_function_decl, dump_function_name):
740 Handle deduction guides.
741 * pt.c (make_template_placeholder, do_class_deduction): New.
742 (build_deduction_guide, rewrite_template_parm): New.
743 (dguide_name, dguide_name_p, deduction_guide_p): New.
744 (do_auto_deduction): Call do_class_deduction.
745 (splice_late_return_type, is_auto): Handle class placeholders.
746 (template_parms_level_to_args): Split from template_parms_to_args.
747 (tsubst_template_parms_level): Split from tsubst_template_parms.
748 * typeck2.c (build_functional_cast): Handle class placeholder.
749
750 2016-10-04 Martin Sebor <msebor@redhat.com>
751
752 PR c++/77804
753 * init.c (warn_placement_new_too_small): Avoid assuming an array type
754 has a constant size.
755
756 2016-10-04 Jakub Jelinek <jakub@redhat.com>
757
758 PR c++/77791
759 * parser.c (cp_parser_lambda_declarator_opt): Only pedwarn
760 for C++11 on decls in the param_list. Test cxx_dialect < cxx14 before
761 the loop just once.
762
763 * cp-tree.h (enum cp_tree_index): Remove CPTI_JAVA_*,
764 CPTI_LANG_NAME_JAVA and CPTI_JCLASS.
765 (java_byte_type_node, java_short_type_node, java_int_type_node,
766 java_long_type_node, java_float_type_node, java_double_type_node,
767 java_char_type_node, java_boolean_type_node, lang_name_java,
768 jclass_node): Remove.
769 (enum languages): Remove lang_java.
770 (TYPE_FOR_JAVA): Remove.
771 (struct lang_type_class): Remove java_interface bit-field.
772 (TYPE_JAVA_INTERFACE): Remove.
773 (pragma_java_exceptions): Remove.
774 (check_java_method, build_java_class_ref): Remove prototypes.
775 * name-lookup.c (pushtag_1): Don't set TYPE_FOR_JAVA.
776 * decl2.c (acceptable_java_type, check_java_method): Remove.
777 (import_export_decl): Remove TYPE_FOR_JAVA handling.
778 (build_java_method_aliases): Remove.
779 (c_parse_final_cleanups): Don't call build_java_method_aliases.
780 (possibly_inlined_p): Don't test pragma_java_exceptions.
781 * init.c (build_new_1): Remove TYPE_FOR_JAVA handling.
782 (build_java_class_ref): Remove.
783 * pt.c (maybe_new_partial_specialization, lookup_template_class_1,
784 instantiate_class_template_1): Don't copy TYPE_FOR_JAVA.
785 * except.c (eh_type_info): Remove java type handling.
786 (decl_is_java_type, choose_personality_routine): Remove.
787 (initialize_handler_parm): Don't call choose_personality_routine.
788 (expand_start_catch_block): Don't handle java types.
789 (build_throw): Likewise.
790 * cp-lang.c (cp_eh_personality): Don't handle pragma_java_exceptions.
791 * typeck.c (structural_comptypes): Don't compare TYPE_FOR_JAVA.
792 * call.c (build_over_call): Don't handle TYPE_JAVA_INTERFACE.
793 (java_iface_lookup_fn): Remove.
794 (build_java_interface_fn_ref): Remove.
795 * tree.c (cxx_attribute_table): Remove java_interface.
796 (handle_java_interface_attribute): Remove.
797 * lex.c (pragma_java_exceptions): Remove.
798 (init_cp_pragma): Don't register GCC java_exceptions pragma.
799 (handle_pragma_java_exceptions): Remove.
800 (retrofit_lang_decl): Don't handle lang_name_java.
801 * method.c (implicitly_declare_fn): Don't handle TYPE_FOR_JAVA.
802 * error.c (language_to_string): Don't handle lang_java.
803 * decl.c (record_builtin_java_type): Remove.
804 (initialize_predefined_identifiers): Remove Java.
805 (cxx_init_decl_processing): Remove java_*_type_node.
806 (cp_finish_decl): Don't handle TYPE_FOR_JAVA.
807 (grokfndecl): Likewise.
808 (check_special_function_return_type): Likewise.
809 (grokdeclarator): Don't set TYPE_FOR_JAVA.
810 (grokparms): Don't handle TYPE_FOR_JAVA.
811 (xref_basetypes): Likewise.
812 (check_function_type): Likewise.
813 (finish_constructor_body): Likewise.
814 * mangle.c (write_builtin_type): Don't handle TYPE_FOR_JAVA
815 and java_*_type_node.
816 (write_bare_function_type): Don't handle TYPE_FOR_JAVA.
817 (write_java_integer_type_codes): Remove.
818 * class.c (add_method): Don't handle TYPE_FOR_JAVA.
819 (add_implicitly_declared_members, determine_key_method,
820 finish_struct_1): Likewise.
821 (push_lang_context): Don't handle lang_name_java.
822
823 2016-10-03 Marek Polacek <polacek@redhat.com>
824
825 Core 903
826 * typeck.c (cp_build_binary_op): Pass original operands to
827 null_ptr_cst_p, not those after the default conversions.
828
829 2016-10-03 Bernd Edlinger <bernd.edlinger@hotmail.de>
830
831 * parser.c (cp_parser_condition): Fix a warning.
832
833 2016-09-29 Jakub Jelinek <jakub@redhat.com>
834
835 Implement P0001R1 - C++17 removal of register storage class specifier
836 * decl.c (cp_finish_decl): Diagnose register storage class
837 on vars except when used in GNU global or local register variable
838 extension.
839 (grokdeclarator): Diagnose register storage class on parameters.
840 * except.c (expand_start_catch_block): Set DECL_REGISTER only
841 after cp_finish_decl call.
842
843 2016-09-29 Marek Polacek <polacek@redhat.com>
844
845 * rtti.c (involves_incomplete_p): Add fall through comment.
846
847 2016-09-28 Jakub Jelinek <jakub@redhat.com>
848
849 PR c++/77467
850 * constexpr.c (enum constexpr_switch_state): New.
851 (struct constexpr_ctx): Add css_state field.
852 (label_matches): Add CTX and STMT arguments, remove I and
853 DEFAULT_LABEL. For CASE_LABEL_EXPR assert ctx->css_state != NULL,
854 handle default labels according to css_state.
855 (cxx_eval_statement_list): Remove statement skipping, label_matches
856 and default_label handling code.
857 (cxx_eval_loop_expr): Exit after first iteration even if
858 switches (jump_target).
859 (cxx_eval_switch_expr): Set up css_state field in ctx, if default
860 label has been seen in the body, but no cases matched, evaluate
861 the body second time.
862 (cxx_eval_constant_expression): Handle stmt skipping and label_matches
863 here. Handle PREDICT_EXPR. For MODIFY_EXPR or INIT_EXPR, assert
864 statement is not skipped. For COND_EXPR during skipping, don't
865 evaluate condition, just the then block and if still skipping at the
866 end also the else block.
867 (cxx_eval_outermost_constant_expr): Adjust constexpr_ctx initializer.
868 (is_sub_constant_expr): Likewise.
869
870 2016-09-27 Jakub Jelinek <jakub@redhat.com>
871
872 Implement P0018R3, C++17 lambda capture of *this by value as [=,*this]
873 * parser.c (cp_parser_lambda_introducer): Formatting fix. Pass
874 true instead of false as by_reference_p to add_capture for 'this'.
875 Parse '*this' simple-capture.
876 * lambda.c (build_capture_proxy): Handle '*this' capture by value.
877 (add_capture): Adjust function comment. For id == this_identifier,
878 treat by_reference_p as capturing '*this' by reference, i.e. 'this'
879 by value, and !by_reference_p as capturing '*this' by value.
880 (add_default_capture): For implicit 'this' capture, always pass
881 by_reference_p true rather than false.
882
883 PR c++/77722
884 * cp-gimplify.c (cp_ubsan_maybe_instrument_return): Instrument also
885 functions that have just a STATEMENT_LIST instead of BIND_EXPR, or
886 BIND_EXPR with some statement rather than STATEMENT_LIST as body.
887
888 2016-09-26 Nathan Sidwell <nathan@acm.org>
889
890 * init.c (expand_default_init): Fix } indentation.
891 * method.c (process_subob_fn): Simplify control structure to
892 remove gotos.
893 (implicitly_declare_fn): Remove duplicated lambda ctor check.
894
895 2016-09-26 Marek Polacek <polacek@redhat.com>
896
897 PR c/7652
898 * parser.c (cp_parser_storage_class_specifier_opt): Add
899 gcc_fallthrough.
900 (cp_parser_skip_to_end_of_template_parameter_list): Likewise.
901 (cp_parser_cache_defarg): Likewise.
902 (cp_parser_omp_for_cond): Likewise.
903 * semantics.c (finish_decltype_type): Likewise.
904 * typeck.c (structural_comptypes): Likewise.
905 (cp_build_binary_op): Likewise.
906 (cp_build_modify_expr): Likewise.
907
908 2016-09-26 Marek Polacek <polacek@redhat.com>
909
910 PR c/7652
911 * constexpr.c (cxx_eval_internal_function): Handle IFN_FALLTHROUGH.
912 (potential_constant_expression_1): Likewise.
913 * constraint.cc (function_concept_check_p): Check fn for null.
914 * parser.c (cp_parser_expression_statement): Handle attribute
915 fallthrough.
916 (cp_parser_statement): Likewise.
917 (cp_parser_label_for_labeled_statement): Set FALLTHROUGH_LABEL_P on
918 labels.
919 (cp_parser_std_attribute): Handle fallthrough attribute.
920 (cp_parser_check_std_attribute): Add %< %> quotes.
921 * pt.c (tsubst_copy_and_build): Handle internal functions.
922 (instantiation_dependent_scope_ref_p): Return if the expression is
923 null.
924
925 2016-09-24 Marek Polacek <polacek@redhat.com>
926
927 PR c/77490
928 * typeck.c (cp_build_unary_op): Warn about bit not on expressions that
929 have boolean value.
930
931 2016-09-23 Jakub Jelinek <jakub@redhat.com>
932
933 Implement P0138R2, C++17 construction rules for enum class values
934 * cp-tree.h (is_direct_enum_init): Declare.
935 * decl.c (is_direct_enum_init): New function.
936 (reshape_init): Use it.
937 * typeck.c (convert_for_assignment): Likewise.
938
939 * Make-lang.in (check-c++1z): Pass RUNTESTFLAGS down to
940 make check-g++.
941
942 * constexpr.c (call_stack): Remove unnecessary
943 = vNULL initialization of file scope vec.
944
945 * name-lookup.c (store_bindings, store_class_bindings): Don't
946 initialize static local bindings_need_stored to vNULL.
947
948 * typeck2.c (process_init_constructor_record): Use
949 CONSTRUCTOR_NELTS (...) instead of
950 vec_safe_length (CONSTRUCTOR_ELTS (...)).
951 * decl.c (reshape_init_r): Likewise.
952 (check_initializer): Likewise.
953
954 2016-09-22 Paolo Carlini <paolo.carlini@oracle.com>
955
956 PR c++/71979
957 * class.c (build_base_path): Allow for lookup_base returning
958 NULL_TREE.
959
960 2016-09-21 Jason Merrill <jason@redhat.com>
961
962 Core 903
963 * call.c (null_ptr_cst_p): Check char_type_p.
964
965 2016-09-21 Jakub Jelinek <jakub@redhat.com>
966
967 PR c++/77651
968 * init.c (build_new_1): Don't suggest to use -faligned-new if
969 aligned_new_threshold is non-zero.
970 (type_has_new_extended_alignment): Change aligned_new_threshhold
971 to aligned_new_threshold.
972 * call.c (second_parm_is_size_t, aligned_allocation_fn_p,
973 aligned_deallocation_fn_p, build_op_delete_call): Likewise.
974 * decl.c (cxx_init_decl_processing): Likewise.
975
976 2016-09-20 Jakub Jelinek <jakub@redhat.com>
977
978 PR c++/77626
979 * constexpr.c (cxx_fold_indirect_ref): Don't call byte_position on
980 FIELD_DECLs with error_mark_node type. Remove useless break; after
981 return.
982
983 PR c++/77638
984 * parser.c (cp_parser_template_declaration_after_parameter): For 2
985 argument operator"" template set ok to false for
986 parm == error_mark_node.
987
988 PR c++/77637
989 * parser.c (cp_parser_std_attribute_list): Reject ... without
990 preceding attribute.
991
992 2016-09-19 Bernd Edlinger <bernd.edlinger@hotmail.de>
993
994 PR c++/77434
995 * cvt.c (cp_convert_and_check): Suppress Wint-in-bool-context here.
996
997 2016-09-16 Patrick Palka <ppalka@gcc.gnu.org>
998
999 PR c++/77639
1000 * parser.c (cp_parser_class_head): When
1001 processing_template_parmlist, don't assume that the
1002 class-head may start an explicit specialization.
1003
1004 2016-09-16 Jakub Jelinek <jakub@redhat.com>
1005
1006 PR c++/77482
1007 * error.c (dump_simple_decl): Only check DECL_DECLARED_CONCEPT_P
1008 if DECL_LANG_SPECIFIC is non-NULL. Fix up formatting.
1009
1010 PR c++/77338
1011 * constexpr.c (cxx_eval_constant_expression) <case PARM_DECL>: Only
1012 call is_really_empty_class on complete types.
1013
1014 PR c++/77375
1015 * class.c (check_bases): Set CLASSTYPE_HAS_MUTABLE if any
1016 TYPE_HAS_MUTABLE_P for any bases.
1017
1018 2016-09-16 Jason Merrill <jason@redhat.com>
1019
1020 * class.c (check_bases, set_one_vmethod_tm_attributes): Use
1021 least_bit_hwi.
1022 * decl.c (cxx_init_decl_processing): Use pow2p_hwi.
1023 * parser.c (cp_parser_cilk_simd_vectorlength): Use pow2p_hwi.
1024
1025 2016-09-14 Jakub Jelinek <jakub@redhat.com>
1026
1027 PR c++/77549
1028 * name-lookup.c (consider_binding_level): Look through TREE_LIST
1029 and OVERLOAD.
1030
1031 2016-09-14 Marek Polacek <polacek@redhat.com>
1032
1033 * typeck.c (cp_build_unary_op): Diagnose incrementing boolean
1034 expressions. Tweak an error message.
1035
1036 2016-09-14 Marek Polacek <polacek@redhat.com>
1037
1038 * cp-tree.h (cp_build_unary_op): Change nonconvert parameter type to
1039 bool.
1040 * decl2.c (one_static_initialization_or_destruction): Use true instead
1041 of 1.
1042 * init.c (build_vec_init): Use false instead of 0.
1043 * pt.c (tsubst_copy_and_build): Likewise.
1044 * semantics.c (simplify_loop_decl_cond): Likewise.
1045 * typeck.c (rationalize_conditional_expr): Likewise.
1046 (cp_build_binary_op): Use true instead of 1.
1047 (cp_build_unary_op): Change nonconvert parameter type to bool. Use true
1048 instead of 1.
1049 (build_unary_op): Change nonconvert parameter type to bool.
1050 (unary_complex_lvalue): Use false instead of 0.
1051
1052 2016-09-13 Jakub Jelinek <jakub@redhat.com>
1053
1054 Implement P0028R4, C++17 using attribute namespaces without repetition
1055 * parser.c (cp_parser_std_attribute): Add ATTR_NS argument. Diagnose
1056 non-NULL ATTR_NS with scoped attribute token. Handle non-NULL
1057 ATTR_NS with non-scoped attribute tokens. Allow named ops in
1058 identifier after ::.
1059 (cp_parser_std_attribute_list): Add ATTR_NS argument, pass it down
1060 to cp_parser_std_attribute calls.
1061 (cp_parser_std_attribute_spec): Parse optional C++17
1062 attribute-using-prefix, adjust grammar in function comment.
1063
1064 PR c++/77553
1065 * constexpr.c (cxx_fold_pointer_plus_expression): New function.
1066 (cxx_eval_binary_expression): Use it for POINTER_PLUS_EXPR.
1067 (cxx_eval_pointer_plus_expression): Remove.
1068 (cxx_eval_constant_expression) <case POINTER_PLUS_EXPR>: Don't
1069 call cxx_eval_pointer_plus_expression.
1070
1071 2016-09-13 David Malcolm <dmalcolm@redhat.com>
1072
1073 * parser.c (cp_parser_class_specifier_1): Update for renaming of
1074 add_fixit_insert to add_fixit_insert_before.
1075 (cp_parser_class_head): Likewise.
1076
1077 2016-09-12 Bernd Edlinger <bernd.edlinger@hotmail.de>
1078
1079 PR c++/77496
1080 * call.c (build_conditional_expr_1): Call warn_for_omitted_condop.
1081 * class.c (instantiate_type): Look through the SAVE_EXPR.
1082
1083 2016-09-09 Jason Merrill <jason@redhat.com>
1084
1085 Implement P0035R4, C++17 new of over-aligned types.
1086 * cp-tree.h (enum cp_tree_index): Add CPTI_ALIGN_TYPE.
1087 (align_type_node): New macro.
1088 * call.c (build_operator_new_call): Handle C++17 aligned new.
1089 (second_parm_is_size_t, build_op_delete_call): Likewise.
1090 (non_placement_deallocation_fn_p): Likewise. Rename to
1091 usual_deallocation_fn_p.
1092 (aligned_allocation_fn_p, aligned_deallocation_fn_p): New.
1093 * decl.c (cxx_init_decl_processing): Add aligned new support.
1094 * init.c (type_has_new_extended_alignment): New.
1095 (build_new_1): Handle aligned new.
1096 * tree.c (vec_copy_and_insert): New.
1097
1098 2016-09-02 Jakub Jelinek <jakub@redhat.com>
1099
1100 PR sanitizer/77396
1101 * decl2.c (do_static_initialization_or_destruction): Only
1102 call asan_dynamic_init_call if INITP is true.
1103
1104 2016-09-01 Martin Sebor <msebor@redhat.com>
1105
1106 * mangle.c: Increase buffer size to guarantee it fits the output
1107 of the formatted function regardless of its arguments.
1108
1109 2016-09-01 Marek Polacek <polacek@redhat.com>
1110
1111 PR c/7652
1112 * error.c (dump_type): Fix falls through comment.
1113 (dump_decl): Likewise.
1114 (dump_expr): Likewise.
1115
1116 2016-08-30 David Malcolm <dmalcolm@redhat.com>
1117
1118 * parser.c (cp_parser_enclosed_template_argument_list): Add fix-it
1119 hint to ">>" within nested template argument list error.
1120
1121 2016-08-30 David Malcolm <dmalcolm@redhat.com>
1122
1123 * name-lookup.c (suggest_alternatives_for): Use add_fixit_replace
1124 rather than add_fixit_misspelled_id.
1125 * parser.c (cp_parser_diagnose_invalid_type_name): Likewise.
1126
1127 2016-08-29 Jason Merrill <jason@redhat.com>
1128
1129 PR c++/77379
1130 * mangle.c (maybe_check_abi_tags): Add version parm, handle thunks.
1131 (mangle_thunk): Add thunk parameter.
1132 * method.c (finish_thunk): Pass it.
1133 * cp-tree.h: Declare it.
1134
1135 2016-08-15 Jason Merrill <jason@redhat.com>
1136
1137 Avoid calling a trivial default constructor.
1138 * class.c (default_ctor_p): New.
1139 (in_class_defaulted_default_constructor): Use it.
1140 (type_has_non_user_provided_default_constructor): Use it.
1141 * call.c (build_over_call): Handle trivial default constructor.
1142 * cp-tree.h: Declare default_ctor_p.
1143
1144 PR c++/57728
1145 * pt.c (do_type_instantiation): Don't mess with non-user-provided
1146 member functions.
1147
1148 2016-08-25 Marek Polacek <polacek@redhat.com>
1149
1150 * parser.c (cp_parser_binary_expression): Pass LHS to
1151 warn_logical_not_parentheses.
1152
1153 2016-08-18 Marek Polacek <polacek@redhat.com>
1154
1155 PR c/7652
1156 * call.c (add_builtin_candidate): Add gcc_fallthrough.
1157 * cxx-pretty-print.c (pp_cxx_unqualified_id): Likewise.
1158 * parser.c (cp_parser_skip_to_end_of_statement): Likewise.
1159 (cp_parser_cache_defarg): Likewise.
1160
1161 2016-08-12 Marek Polacek <polacek@redhat.com>
1162
1163 PR c/7652
1164 * call.c (add_builtin_candidate): Add FALLTHRU.
1165 (build_integral_nontype_arg_conv): Adjust fall through comment.
1166 (build_new_op_1): Add FALLTHRU.
1167 (convert_like_real): Adjust fall through comment.
1168 * class.c (fixed_type_or_null): Likewise.
1169 * constexpr.c (cxx_eval_constant_expression): Likewise.
1170 (potential_constant_expression_1): Likewise. Add FALLTHRU.
1171 * cp-gimplify.c (cp_gimplify_expr): Adjust fall through comment.
1172 (cp_fold): Add FALLTHRU.
1173 * cvt.c (build_expr_type_conversion): Adjust fall through comment.
1174 * cxx-pretty-print.c (pp_cxx_unqualified_id): Add FALLTHRU.
1175 (pp_cxx_qualified_id): Likewise.
1176 (cxx_pretty_printer::constant): Adjust fall through comment.
1177 (cxx_pretty_printer::primary_expression): Add FALLTHRU.
1178 (pp_cxx_pm_expression): Adjust fall through comment.
1179 (cxx_pretty_printer::expression): Add FALLTHRU.
1180 (cxx_pretty_printer::declaration_specifiers): Reformat code.
1181 (pp_cxx_type_specifier_seq): Adjust fall through comment.
1182 (pp_cxx_ptr_operator): Likewise. Add FALLTHRU.
1183 * error.c (dump_type): Adjust fall through comment.
1184 (dump_decl): Likewise.
1185 * mangle.c (write_type): Likewise.
1186 * method.c (synthesized_method_walk): Add FALLTHRU.
1187 * name-lookup.c (arg_assoc_type): Likewise.
1188 * parser.c (cp_lexer_print_token): Adjust fall through comment.
1189 (cp_parser_primary_expression): Add FALLTHRU.
1190 (cp_parser_operator): Likewise.
1191 * pt.c (find_parameter_packs_r): Likewise.
1192 (tsubst_aggr_type): Adjust fall through comment.
1193 * semantics.c (finish_omp_clauses): Add FALLTHRU.
1194 * tree.c (lvalue_kind): Likewise.
1195
1196 2016-08-12 Alexandre Oliva <aoliva@redhat.com>
1197
1198 PR debug/63240
1199 * cp-objcp-common.c (cp_function_decl_defaulted): New.
1200 (cp_function_decl_explicit_p): Const_tree-ify.
1201 (cp_function_decl_deleted_p): Likewise.
1202 * cp-objcp-common.h (cp_function_decl_defaulted): Declare.
1203 (cp_function_decl_explicit_p): Const_tree-ify.
1204 (cp_function_decl_deleted_p): Likewise.
1205 (LANG_HOOKS_FUNCTION_DECL_DEFAULTED): Redefine.
1206
1207 2016-08-11 Jakub Jelinek <jakub@redhat.com>
1208
1209 PR c++/72868
1210 * constexpr.c (label_matches): Handle case range expressions.
1211
1212 2016-08-11 Jason Merrill <jason@redhat.com>
1213
1214 PR c++/73456
1215 * logic.cc (non_atomic_constraint_p): Handle EXPR_PACK_EXPANSION.
1216
1217 2016-08-10 Jason Merrill <jason@redhat.com>
1218
1219 Implement C++17 constexpr if.
1220 * cp-tree.h (IF_STMT_CONSTEXPR_P): New.
1221 * name-lookup.c (push_to_top_level, pop_from_top_level_1): Handle it.
1222 * parser.h (struct cp_parser): Add in_discarded_stmt field.
1223 * parser.c (cp_parser_selection_statement): Handle 'if constexpr'.
1224 (cp_parser_jump_statement): Avoid deducing from a discarded return.
1225 * pt.c (tsubst_expr): Only instantiate taken branch of constexpr if.
1226 * semantics.c (begin_if_stmt): Set the binding level this_entity.
1227 (finish_if_stmt_cond): Require the condition of a
1228 constexpr if to be constant.
1229 * decl.c (level_for_constexpr_if): New.
1230 (named_label_entry): Add in_constexpr_if field.
1231 (poplevel_named_label_1): Set it.
1232 (check_goto): Check it.
1233 (check_previous_goto_1): Check level_for_constexpr_if.
1234
1235 2016-08-09 Jason Merrill <jason@redhat.com>
1236
1237 PR c++/68703
1238 * decl2.c (any_dependent_type_attributes_p): New.
1239 * pt.c (dependent_type_p_r, type_dependent_expression_p): Check it.
1240 * semantics.c (finish_id_expression): Check it.
1241 * typeck.c (finish_class_member_access_expr): Check it.
1242
1243 PR c++/71712
1244 * class.c (check_abi_tags): Don't duplicate tags for conversion ops.
1245
1246 Adjust mangling of ABI tags on class template member functions.
1247 * class.c (missing_abi_tags): New.
1248 (check_abi_tags): Don't check template. Add just_checking mode.
1249 * mangle.c (abi_flag_at_least, any_abi_below, equal_abi_tags): New.
1250 (sorted_abi_tags): Split out from write_abi_tags.
1251 (struct releasing_vec): New.
1252 (write_unqualified_name): Only look for the primary
1253 template for types. Implement backward compatibility.
1254
1255 PR c++/72849
1256 * constexpr.c (cxx_eval_constant_expression): Check
1257 COMPLETE_TYPE_P before calling is_really_empty_class.
1258 * class.c (is_really_empty_class): Don't call complete_type.
1259
1260 PR c++/56701
1261 * typeck.c (cp_build_addr_expr_1): Remove special *this handling.
1262
1263 2016-08-09 Jakub Jelinek <jakub@redhat.com>
1264
1265 PR c++/72809
1266 * rtti.c (get_pseudo_ti_index): Return TK_CLASS_TYPE for
1267 builtin aggregate types without TYPE_BINFO.
1268
1269 2016-08-08 Jason Merrill <jason@redhat.com>
1270
1271 Implement C++17 constexpr lambda.
1272 * class.c (finalize_literal_type_property): Handle lambdas.
1273 * constexpr.c (is_valid_constexpr_fn): Likewise. No longer static.
1274 (explain_invalid_constexpr_fn, cxx_eval_call_expression): Handle
1275 lambdas.
1276 (cxx_eval_constant_expression): Handle capture proxy.
1277 (var_in_constexpr_fn): Don't check for C++14.
1278 (var_in_maybe_constexpr_fn): New.
1279 (potential_constant_expression_1): Use it. Check DECL_EXPR for
1280 declarations not allowed in constexpr function. Handle
1281 STATIC_ASSERT, RANGE_FOR_STMT.
1282 * decl.c (make_rtl_for_nonlocal_decl): Use var_in_maybe_constexpr_fn.
1283 (finish_function): Set DECL_DECLARED_CONSTEXPR_P on lambda members.
1284 * lambda.c (begin_lambda_type): Set CLASSTYPE_LITERAL_P.
1285 (maybe_add_lambda_conv_op): Clear thunk CALL_EXPR location.
1286 (lambda_static_thunk_p): New.
1287 * parser.c (cp_keyword_starts_decl_specifier_p): Add RID_CONSTEXPR.
1288 (CP_PARSER_FLAGS_ONLY_MUTABLE_OR_CONSTEXPR): New enumerator.
1289 (cp_parser_decl_specifier_seq): Handle it.
1290 (cp_parser_lambda_declarator_opt): Use cp_parser_decl_specifier_seq.
1291 * pt.c (instantiate_class_template_1): Set CLASSTYPE_LITERAL_P.
1292 (tsubst_copy_and_build) [CALL_EXPR]: Propagate CALL_FROM_THUNK_P.
1293 * error.c (dump_function_decl): Check TFF_NO_TEMPLATE_BINDINGS.
1294 (dump_expr) [FUNCTION_DECL]: Pass it.
1295
1296 2016-08-08 Jason Merrill <jason@redhat.com>
1297
1298 PR c++/67131
1299 * class.c (is_really_empty_class): Call complete_type.
1300 * constexpr.c (cxx_eval_constant_expression): Check
1301 is_really_empty_class.
1302 (potential_constant_expression_1): Likewise. Check for error type.
1303
1304 2016-08-08 Jakub Jelinek <jakub@redhat.com>
1305
1306 PR c++/58706
1307 * parser.c: Include tree-iterator.h.
1308 (cp_parser_omp_for_loop_init): Move lambda DECL_EXPRs from init
1309 to FOR_BLOCK.
1310 (cp_parser_omp_for_loop): Handle non-STATEMENT_LIST FOR_BLOCK
1311 entries.
1312
1313 2016-08-06 Jonathan Wakely <jwakely@redhat.com>
1314
1315 * call.c (convert_like_real): Harmonize diagnostics for invalid
1316 reference binding.
1317
1318 2016-08-05 Martin Sebor <msebor@redhat.com>
1319
1320 * constexpr.c (cxx_eval_store_expression): Remove hyphen from
1321 the spelling of "constant-expression" in diagnostic messages
1322 for consistency.
1323 (cxx_eval_constant_expression): Same.
1324 (cxx_eval_outermost_constant_expr): Same.
1325 (potential_constant_expression_1): Same.
1326
1327 2016-08-05 Nathan Sidwell <nathan@acm.org>
1328
1329 PR c++/68724
1330 * pt.c (unify): TRAIT_EXPR is an expr.
1331
1332 2016-08-04 Paolo Carlini <paolo.carlini@oracle.com>
1333
1334 PR c++/72800
1335 * lambda.c (add_capture): Check lambda_capture_field_type return
1336 value for error_mark_node.
1337
1338 2016-08-04 Patrick Palka <ppalka@gcc.gnu.org>
1339
1340 PR c++/72759
1341 * pt.c (tsubst_qualified_id): Return error_mark_node if
1342 template_args is error_mark_node.
1343
1344 2016-08-04 Jason Merrill <jason@redhat.com>
1345
1346 PR c++/72415
1347 * pt.c (tsubst_pack_expansion): Pull a single pack expansion out
1348 of the TREE_VEC.
1349
1350 * cp-tree.h (TYPE_UNNAMED_P): Rename from TYPE_ANONYMOUS_P.
1351 (TYPE_WAS_UNNAMED): Rename from TYPE_WAS_ANONYMOUS.
1352 * class.c, decl.c, decl2.c, error.c, lambda.c, mangle.c,
1353 name-lookup.c, parser.c, pt.c, semantics.c, tree.c: Adjust.
1354
1355 PR c++/72796
1356 * typeck.c (finish_class_member_access_expr): Avoid stripping
1357 SCOPE_REF to dependent base.
1358
1359 2016-08-04 Thomas Schwinge <thomas@codesourcery.com>
1360
1361 * parser.c (cp_ensure_no_oacc_routine): Improve diagnostics.
1362 (cp_parser_late_parsing_cilk_simd_fn_info): Fix diagnostics.
1363 (cp_parser_late_parsing_oacc_routine, cp_finalize_oacc_routine):
1364 Simplify code, and improve diagnostics.
1365 (cp_parser_oacc_routine): Likewise. Move pragma context
1366 checking...
1367 (cp_parser_pragma): ... here.
1368
1369 * parser.h (struct cp_omp_declare_simd_data): New.
1370 (struct cp_parser): Use it for oacc_routine member.
1371 * parser.c (cp_ensure_no_oacc_routine, cp_parser_oacc_routine)
1372 (cp_parser_late_parsing_oacc_routine, cp_finalize_oacc_routine):
1373 Use it. Simplify code.
1374 (cp_parser_new): Initialize all members pointing to special
1375 parsing data structures.
1376 (cp_parser_cilk_simd_fn_vector_attrs): Initialize
1377 parser->cilk_simd_fn_info->clauses.
1378 (cp_parser_omp_declare_simd): Initialize
1379 parser->omp_declare_simd->clauses.
1380 (cp_parser_late_parsing_omp_declare_simd): Simplify code.
1381
1382 2016-08-04 Marek Polacek <polacek@redhat.com>
1383
1384 PR c++/70229
1385 * constexpr.c (check_constexpr_ctor_body_1): Allow typedef
1386 declarations.
1387
1388 2016-08-01 Jason Merrill <jason@redhat.com>
1389
1390 * mangle.c (mangle_decl): Warn about mangled name change even if
1391 DECL_REALLY_EXTERN.
1392
1393 * mangle.c (get_abi_tags): New.
1394 (find_substitution, write_unqualified_name, write_abi_tags)
1395 (maybe_check_abi_tags): Use it.
1396
1397 * mangle.c (mangle_decl): Fix mangled name change warning.
1398
1399 PR c++/72766
1400 * constexpr.c (cxx_eval_pointer_plus_expression): Check constancy
1401 of nelts.
1402 * cp-gimplify.c (cp_fully_fold): Only maybe_constant_value in
1403 C++11 and up.
1404
1405 2016-07-30 Martin Sebor <msebor@redhat.com>
1406
1407 PR c++/60760
1408 PR c++/71091
1409 * constexpr.c (cxx_eval_binary_expression): Reject invalid expressions
1410 involving null pointers.
1411 (cxx_eval_component_reference): Reject null pointer dereferences.
1412 (cxx_eval_indirect_ref): Reject indirecting through null pointers.
1413 (cxx_eval_constant_expression): Reject invalid expressions involving
1414 null pointers.
1415
1416 2016-07-29 Marek Polacek <polacek@redhat.com>
1417
1418 PR c/71926
1419 * semantics.c (maybe_convert_cond): Use the location of COND for the
1420 parentheses warning.
1421
1422 2016-07-29 Jason Merrill <jason@redhat.com>
1423
1424 * decl.c (build_enumerator): Tweak diagnostic.
1425
1426 PR c++/72457
1427 * init.c (expand_aggr_init_1): Only handle value-init of bases.
1428 * constexpr.c (build_data_member_initialization): Handle multiple
1429 initializers for the same field.
1430
1431 2016-07-28 Paolo Carlini <paolo.carlini@oracle.com>
1432
1433 PR c++/71665
1434 * decl.c (build_enumerator): Check the type of the enumerator before
1435 calling cxx_constant_value.
1436
1437 2016-07-27 Jason Merrill <jason@redhat.com>
1438
1439 PR c++/71747
1440 * pt.c (get_partial_spec_bindings): Replace tparms and spec_args
1441 parameters with spec_tmpl. Call push_tinst_level.
1442 (most_specialized_partial_spec): Adjust.
1443 (more_specialized_partial_spec): Adjust.
1444
1445 2016-07-25 Jason Merrill <jason@redhat.com>
1446
1447 PR c++/65970
1448 * cp-gimplify.c (genericize_cp_loop): Revert location change.
1449
1450 PR c++/71837
1451 * lambda.c (add_capture): Leave a pack expansion in a TREE_LIST.
1452 (build_lambda_object): Call build_x_compound_expr_from_list.
1453 * pt.c (tsubst) [DECLTYPE_TYPE]: Likewise.
1454
1455 PR c++/71833
1456 PR c++/54440
1457 * pt.c (coerce_template_parameter_pack): Fix logic for
1458 pack index.
1459
1460 PR c++/65970
1461 * constexpr.c (cxx_eval_loop_expr): Count iterations.
1462 * cp-gimplify.c (genericize_cp_loop): Use start_locus even for
1463 infinite loops.
1464
1465 PR c++/71972
1466 * constexpr.c (cxx_eval_array_reference): Handle looking for the
1467 value of an element we're currently modifying.
1468
1469 2016-07-24 Jason Merrill <jason@redhat.com>
1470
1471 PR c++/71515
1472 * pt.c (resolve_typename_type): Try to avoid calling
1473 currently_open_class.
1474
1475 2016-07-23 Jason Merrill <jason@redhat.com>
1476
1477 PR c++/66617
1478 * call.c (add_list_candidates): Handle VTT parm.
1479 (build_new_method_call_1): Likewise.
1480
1481 PR c++/55922
1482 PR c++/63151
1483 * init.c (expand_aggr_init_1): Handle list-initialization from {}.
1484
1485 PR c++/70709
1486 * class.c (walk_subobject_offsets): Handle 0-length array.
1487
1488 PR c++/70778
1489 * pt.c (tsubst): Also substitute into the template of a
1490 BOUND_TEMPLATE_TEMPLATE_PARM.
1491
1492 PR c++/71738
1493 * pt.c (lookup_template_class_1): Handle getting template from tsubst.
1494
1495 PR c++/71350
1496 * decl.c (reshape_init_r): Check complain for missing braces warning.
1497
1498 2016-07-22 Jason Merrill <jason@redhat.com>
1499
1500 PR c++/71576
1501 * call.c (convert_like_real): Use lvalue_kind.
1502
1503 PR c++/71748
1504 PR c++/52746
1505 * pt.c (tsubst_baselink): Call
1506 adjust_result_of_qualified_name_lookup for unqualified
1507 destructors.
1508
1509 2016-07-21 Jason Merrill <jason@redhat.com>
1510
1511 PR c++/69223
1512 * semantics.c (apply_deduced_return_type): Call
1513 complete_type_or_else before building the new RESULT_DECL.
1514
1515 PR c++/71274
1516 * decl2.c (maybe_instantiate_decl): Split out from mark_used.
1517 (decl_constant_var_p): Use it instead.
1518
1519 PR c++/71630
1520 * pt.c (instantiate_decl): Fix pattern_defined for namespace scope
1521 variable templates.
1522
1523 PR c++/71913
1524 * call.c (unsafe_copy_elision_p): It's OK to elide when
1525 initializing an unknown object.
1526
1527 * call.c (build_over_call): Check unsafe_copy_elision_p even for
1528 trivial constructors.
1529 * method.c (do_build_copy_constructor): Don't copy tail padding
1530 even in a trivial constructor.
1531
1532 2016-07-21 Jakub Jelinek <jakub@redhat.com>
1533
1534 PR c++/71728
1535 * constexpr.c (potential_constant_expression_1) <case GOTO_EXPR>:
1536 Replace assert with test, return false if the goto isn't break
1537 or continue. Formatting fix.
1538
1539 2016-07-21 Richard Biener <rguenther@suse.de>
1540
1541 * vtable-class-hierarchy.c (vtv_generate_init_routine): Set
1542 DECL_IGNORED_P.
1543
1544 2016-07-21 Jakub Jelinek <jakub@redhat.com>
1545
1546 PR c++/71941
1547 * cp-gimplify.c (cp_genericize): For nested cp_genericize calls
1548 save/restore bc_label array.
1549
1550 2016-07-21 Jason Merrill <jason@redhat.com>
1551
1552 PR c++/70781
1553 * parser.c (cp_parser_lambda_expression): Unset OK if there was an
1554 error parsing the lambda-declarator.
1555
1556 PR c++/71896
1557 * constexpr.c (cxx_eval_binary_expression): Handle comparison
1558 between lowered and unlowered PTRMEM_CST.
1559
1560 PR c++/65168
1561 * typeck.c (cp_truthvalue_conversion): Compare pointers to nullptr.
1562 Don't set c_inhibit_evaluation_warnings.
1563
1564 PR c++/71121
1565 * cp-gimplify.c (cp_fully_fold): First call maybe_constant_value.
1566
1567 2016-07-21 Andrew Sutton <andrew.n.sutton@gmail.com>
1568 Jason Merrill <jason@redhat.com>
1569
1570 Improving concepts performance and diagnostics.
1571 PR c++/67565
1572 PR c++/67579
1573 PR c++/71843
1574 * cp-tree.def (CHECK_CONSTR): New.
1575 * cp-tree.h (CHECK_CONSTR_CONCEPT): New.
1576 (CHECK_CONSTR_ARGS): New.
1577 * constraint.cc (make_predicate_constraint): Remove in favor of
1578 normalize_expression.
1579 (resolve_constraint_check): Actually return error_mark_node when
1580 resolution fails.
1581 (resolve_variable_concept_check): Perform coercion as if processing
1582 a template. Also return errors on resolution failure.
1583 (lift_*): Remove all of these functions. Don't unnecessarily inline
1584 concepts.
1585 (learn_*): Add facilities to memoize implications for subsumption
1586 during normalization.
1587 (expanding_concept): New.
1588 (expand_concept): New. Return the inlined and normalized definition
1589 of a concept when needed.
1590 (transform_*, xform_*): Rename to normalize_* to better reflect the
1591 responsibility of those functions.
1592 (normalize_template_id_expression): Check for non-boolean operands
1593 when possible. Generate check constraints instead of normal variable
1594 references.
1595 (normalize_call_expression): Report errors when resolution fails.
1596 (check_for_logical_overloads): Rewrite this check to more accurately
1597 report the error.
1598 (normalize_atom): Check for overloaded calls and invalid types before
1599 determining if the expression refers to a concept.
1600 (build_constraints): Don't cache normalized constraints or decomposed
1601 assumptions.
1602 (finish_shorthand_constraint): Return a normalized expression instead
1603 of a predicate constraint.
1604 (finish_template_introduction): Same.
1605 (placeholder_extract_concept_and_args): Rewrite this since we only
1606 ever get check constraints here.
1607 (equivalent_placeholder_constraints): Rewrite in terms of check
1608 constraints, and handle error_mark_nodes correctly.
1609 (tsubst_check_constraint, tsubst_expr_constr, tsubst_type_constr)
1610 (tsubst_implicit_conversion_constr)
1611 (tsubst_argument_deduction_constr, tsubst_exception_constr)
1612 (tsubst_parameterized_constraint, tsubst_constraint): New.
1613 (tsbust_conjunection): Replace with tsubst_logical_operator and
1614 actually generate the right kind of constraint.
1615 (tsubst_requirement_body): Reverse the order of substituted arguments
1616 so that they appear in the order written (helps diagnostics).
1617 (satisfy_check_constraint): New.
1618 (satisfy_conjunction): Simplify.
1619 (satisfy_disjunction): Same.
1620 (satisfy_constraint_1): Handle check constraints.
1621 (eval_constr): New (private) global state.
1622 (evaluating_constraints_sentinel): New. Manages eval_constr.
1623 (satisfy_constraint): Add timing variables.
1624 (satisfy_associated_constraints): Add hooks for memoization.
1625 (evaluate_function_concept): Build a check constraint instead of
1626 normalizing its definition.
1627 (evaluate_variable_concept): Same.
1628 (evaluate_constraint_expression): Normalize, but in the current
1629 declaration processing context.
1630 (evaluating_constraints_p): New.
1631 (elide_constraint_failure_p): Actually emit constraint_thresh errors.
1632 (diagnose_*): Remove artificial indentation. Add a new parameter to
1633 each that tracks the current (complete) constraint prior to any
1634 substitutions.
1635 (diagnose_expression): Removed.
1636 (diagnose_call_expression): Same.
1637 (diagnose_template_id): Same.
1638 (diagnose_template_id): New.
1639 (diagnose_logical_constraint): New.
1640 (diagnose_expression_constraint): Show the original expression.
1641 (diagnose_type_constraint): Show the original type.
1642 (diagnose_implicit_conversion_constraint): Be specific about
1643 failures, don't re-diagnose a known-to-be-failed substitutions,
1644 and manage elisions properly.
1645 (diagnose_argument_deduction_constraint): Same.
1646 (diagnose_exception_constraint): Same.
1647 (diagnose_parameterized_constraint): Same.
1648 (constraint_p): Allow EXPR_PACK_EXPANSION.
1649 * logic.cc (next_by_distance): Removed. No longer used.
1650 (any_p): Renamed from any_of.
1651 (term_entry, term_hasher): New.
1652 (term_list): Rewrite to include a hash table for quick lookup.
1653 Also, make less stateful.
1654 (proof_state): Extend to allow goals to be discharged once
1655 satisfied.
1656 (non_atomic_constraint_p): New.
1657 (any_non_atomic_constraints_p): New.
1658 (...rest...): Previous implementation completely replaced with an
1659 iterative algorithm that opportunistically prunes the search space
1660 before committing to using more memory.
1661 * parser.c: (cp_parser_type_parameter): Normalize constraints.
1662 (cp_parser_explicit_template_declaration): Same.
1663 * pt.c: (finish_template_variable): Be less redundant with this error
1664 message.
1665 (template_args_equal): No longer static.
1666 (tsubst_decl): Don't try to find specializations of variables that
1667 have already been instantiated.
1668 (build_non_dependent_expr): Avoid infinite recursion during concept
1669 expansion.
1670 (make_constrained_auto): Normalize constraints.
1671 (do_auto_deduction): When doing auto deduction from a
1672 partial-concept-id, be sure to include the explicit args checking
1673 the constraints.
1674 (constraint_sat_*): New. Memoize satisfied constraints.
1675 (concept_spec_*): New. Memoize expressions associated with a concept
1676 specialization.
1677 (constraint_memos, concept_memos): New.
1678 (lookup_constraint_satisfaction, memoize_constraint_satisfaction): New.
1679 (lookup_concept_satisfaction, memoize_concept_satisfaction): New.
1680 (get_concept_expansion, save_concept_expansion): New.
1681 (hash_subsumption_args): New.
1682 (comp_subsumption_args): New.
1683 (subsumption_*): New. Memoize parts of the subsumption relation.
1684 (lookup_subsumption_result, save_subsumption_result): New.
1685 (init_constraint_processing): Initialize memo tables.
1686 (get_constraints): Shortcut if !flag_concepts.
1687 * decl.c (grokfndecl): Normalize constraints.
1688 * error.c (dump_simple_decl): Print "concept" when appropriate.
1689 (dump_function_decl): Same.
1690 (dump_template_decl): Don't write requirements when we're not
1691 printing the header.
1692 (dump_expr): Handle fold expressions.
1693 * cxx-pretty-print.c (cxx_pretty_printer::expression): Handle
1694 fold expressions.
1695 (get_fold_operator): New.
1696 (pp_cxx_unary_left_fold_expression): New.
1697 (pp_cxx_unary_right_fold_expression): New.
1698 (pp_cxx_binary_fold_expression): New.
1699 (pp_cxx_check_constraint): New.
1700 (pp_cxx_*_constraint): Rewrite the grammar of internal constraints
1701 to make them easier to read when debugging.
1702 * search.c (accessible_p): Don't shortcut when evaluating constraints.
1703 * tree.c (cp_tree_equal): Handle CHECK_CONSTR.
1704
1705 2016-07-20 David Malcolm <dmalcolm@redhat.com>
1706
1707 PR c/70339
1708 PR c/71858
1709 * name-lookup.c: Include gcc-rich-location.h, spellcheck-tree.h,
1710 and parser.h.
1711 (suggest_alternatives_for): If no candidates are found, try
1712 lookup_name_fuzzy and report if if finds a suggestion.
1713 (consider_binding_level): New function.
1714 (lookup_name_fuzzy) New function.
1715 * parser.c: Include gcc-rich-location.h.
1716 (cp_lexer_next_token_is_decl_specifier_keyword): Move most of
1717 logic into...
1718 (cp_keyword_starts_decl_specifier_p): ...this new function.
1719 (cp_parser_diagnose_invalid_type_name): When issuing
1720 "does not name a type" errors, attempt to make a suggestion using
1721 lookup_name_fuzzy.
1722 * parser.h (cp_keyword_starts_decl_specifier_p): New prototype.
1723 * search.c (lookup_field_fuzzy_info::fuzzy_lookup_field): Reject
1724 types that are not CLASS_TYPE_P, rather than rejecting individual
1725 tree codes.
1726
1727 2016-07-20 Jakub Jelinek <jakub@redhat.com>
1728
1729 PR c++/71909
1730 * parser.c (cp_parser_save_member_function_body): Consume
1731 __transaction_relaxed or __transaction_atomic with optional
1732 attribute. Only skip catch with block if try keyword is seen.
1733
1734 PR c++/50060
1735 * constexpr.c (cxx_eval_builtin_function_call): Pass false as lval
1736 when evaluating call arguments. Use fold_builtin_call_array instead
1737 of fold_build_call_array_loc, return t if it returns NULL. Otherwise
1738 check the result with potential_constant_expression and call
1739 cxx_eval_constant_expression on it.
1740
1741 2016-07-19 Jason Merrill <jason@redhat.com>
1742
1743 PR c++/67164
1744 * pt.c (iterative_hash_template_arg, template_args_equal): Don't
1745 handle ARGUMENT_PACK_SELECT.
1746
1747 2016-07-18 Jakub Jelinek <jakub@redhat.com>
1748
1749 PR c++/70869
1750 PR c++/71054
1751 * cp-gimplify.c (cp_genericize_r): Revert the 2016-07-07 change.
1752 * tree.c (cp_walk_subtrees): For DECL_EXPR on DECL_ARTIFICIAL
1753 non-static VAR_DECL, walk the decl's DECL_INITIAL, DECL_SIZE and
1754 DECL_SIZE_UNIT.
1755
1756 PR c++/71835
1757 * call.c (build_op_call_1): Use convert_like_with_context only
1758 if cand->fn is a decl.
1759
1760 PR c++/71828
1761 * constexpr.c (cxx_eval_constant_expression) <case REALPART_EXPR>:
1762 For lval don't use cxx_eval_unary_expression and instead recurse
1763 and if needed rebuild the reference.
1764
1765 PR c++/71826
1766 * pt.c (tsubst_baselink): Only set BASELINK_OPTYPE for BASELINK_P.
1767
1768 PR c++/71822
1769 * cp-gimplify.c (cp_gimplify_expr) <case VEC_INIT_EXPR>: Recursively
1770 fold *expr_p before genericizing it.
1771
1772 PR c++/71871
1773 * typeck.c (build_x_conditional_expr): Revert the 2012-10-25 change.
1774
1775 2016-07-15 Jason Merrill <jason@redhat.com>
1776
1777 PR c++/71495
1778 * call.c (convert_like_real): Mask complain.
1779 * semantics.c (perform_koenig_lookup): Likewise.
1780
1781 PR c++/71092
1782 * constexpr.c (cxx_eval_call_expression): Fail quietly when cgraph
1783 threw away DECL_SAVED_TREE.
1784
1785 PR c++/71117
1786 Core 2189
1787 * call.c (add_template_conv_candidate): Disable if there are
1788 viable candidates.
1789
1790 PR c++/71511
1791 * typeck2.c (cxx_incomplete_type_diagnostic): Handle DECLTYPE_TYPE.
1792
1793 PR c++/71513
1794 * pt.c (tsubst_attributes): Fix loop logic.
1795
1796 PR c++/71604
1797 PR c++/54430
1798 * parser.c (cp_parser_range_for): Modify IDENTIFIER_BINDING directly.
1799 (cp_parser_simple_declaration): Diagnose type definition in
1800 for-range-declaration.
1801
1802 PR c++/71711
1803 * operators.def: Add *_FOLD_EXPR.
1804 * cp-tree.h (FOLD_EXPR_P): Parenthesize.
1805 * mangle.c (write_expression): Handle fold-expressions.
1806 * pt.c (tsubst_unary_left_fold, tsubst_binary_left_fold)
1807 (tsubst_unary_right_fold, tsubst_binary_right_fold): Handle
1808 partial instantiation.
1809
1810 PR c++/71814
1811 * mangle.c (write_expression): Handle sizeof... an argument pack.
1812
1813 PR c++/71718
1814 * pt.c (push_tinst_level_loc): Set at_eof before fatal_error.
1815
1816 PR c++/70824
1817 * init.c (constant_value_1): Don't instantiated DECL_INITIAL of
1818 artificial variables.
1819
1820 2016-07-15 Cesar Philippidis <cesar@codesourcery.com>
1821
1822 * parser.c (cp_parser_oacc_declare): Don't scan for
1823 GOMP_MAP_POINTER.
1824 * semantics.c (handle_omp_array_sections): Mark data clauses with
1825 GOMP_MAP_FORCE_{PRESENT,TO,FROM,TOFROM} as potentially having
1826 zero-length subarrays.
1827
1828 2016-07-11 Jason Merrill <jason@redhat.com>
1829
1830 * decl.c (store_parm_decls): Remove check for void parm.
1831
1832 2016-07-08 Jason Merrill <jason@redhat.com>
1833
1834 * cp-tree.h: Unpoison lvalue_p.
1835 * call.c, class.c, constexpr.c, cvt.c, init.c, lambda.c, pt.c,
1836 tree.c, typeck.c, typeck2.c: Use lvalue_p instead of
1837 real_lvalue_p.
1838
1839 * tree.c (obvalue_p): Rename from lvalue_p.
1840 (lvalue_p): Define for c-common.
1841 * call.c, cp-tree.h, cvt.c, init.c: Adjust.
1842 * typeck.c: Adjust.
1843 (cp_build_addr_expr_1): Remove obsolete code.
1844
1845 * tree.c (glvalue_p): Rename from lvalue_or_rvalue_with_address_p.
1846 * call.c, cp-tree.h, typeck.c: Adjust.
1847
1848 * lambda.c (maybe_add_lambda_conv_op): Fix null object argument.
1849
1850 P0145R2: Refining Expression Order for C++.
1851 * cp-gimplify.c (lvalue_has_side_effects): New.
1852 (cp_gimplify_expr): Implement assignment ordering.
1853 * call.c (op_is_ordered, build_over_call): Adjust for
1854 -fargs-in-order renaming to -fstrong-eval-order.
1855 * cp-gimplify.c (cp_gimplify_expr): Likewise.
1856
1857 2016-07-07 Jakub Jelinek <jakub@redhat.com>
1858 Kai Tietz <ktietz70@googlemail.com>
1859
1860 PR c++/70869
1861 PR c++/71054
1862 * cp-gimplify.c (cp_genericize_r): For DECL_EXPR for non-static
1863 artificial vars, genericize their initializers.
1864
1865 2016-07-05 David Malcolm <dmalcolm@redhat.com>
1866
1867 PR c++/62314
1868 * parser.c (cp_parser_class_specifier_1): When reporting
1869 missing semicolons, use a fixit-hint to suggest insertion
1870 of a semicolon immediately after the closing brace,
1871 offsetting the reported column accordingly.
1872
1873 2016-07-04 Jan Beulich <jbeulich@suse.com>
1874
1875 * lang-specs.h ("@c++-header"): Conditionalize "-o".
1876
1877 2016-06-29 Thomas Schwinge <thomas@codesourcery.com>
1878
1879 * parser.c (cp_parser_pragma) <PRAGMA_OMP_CANCELLATION_POINT>:
1880 Move pragma context checking into...
1881 (cp_parser_omp_cancellation_point): ... here, and improve
1882 diagnostic messages.
1883 * semantics.c (finish_omp_cancel, finish_omp_cancellation_point):
1884 Improve diagnostic messages.
1885
1886 2016-06-28 Jakub Jelinek <jakub@redhat.com>
1887
1888 * Make-lang.in: Don't cat ../stage_current if it does not exist.
1889
1890 2016-06-24 Jason Merrill <jason@redhat.com>
1891
1892 P0145R2: Refining Expression Order for C++.
1893 * typeck.c (cp_build_modify_expr): Leave COMPOUND_EXPR on LHS.
1894
1895 * tree.c (get_target_expr_sfinae): Handle bit-fields.
1896 (build_target_expr): Call mark_rvalue_use.
1897
1898 2016-06-24 Jakub Jelinek <jakub@redhat.com>
1899
1900 * call.c (magic_varargs_p): Return 3 for __builtin_*_overflow_p.
1901 (build_over_call): For magic == 3, do no conversion only on 3rd
1902 argument.
1903
1904 2016-06-23 Andi Kleen <ak@linux.intel.com>
1905
1906 * Make-lang.in: Add support for autofdo.
1907
1908 2016-06-21 Jason Merrill <jason@redhat.com>
1909
1910 * constraint.cc (constraints_satisfied_p): Keep as many levels of
1911 args as our template has levels of parms.
1912
1913 * pt.c (template_parm_outer_level, uses_outer_template_parms): New.
1914 (type_dependent_expression_p): Use uses_outer_template_parms.
1915
1916 2016-06-20 David Malcolm <dmalcolm@redhat.com>
1917
1918 * parser.c (cp_parser_string_literal): Convert non-standard
1919 concatenation error to directly use a rich_location, and
1920 use that to add the location of the first literal to the
1921 diagnostic.
1922
1923 2016-06-17 Paolo Carlini <paolo.carlini@oracle.com>
1924
1925 * decl.c (validate_constexpr_redeclaration): Change pair of errors
1926 to error + inform.
1927 * error.c (dump_function_decl): Save the constexpr specifier too.
1928
1929 2016-06-17 Jakub Jelinek <jakub@redhat.com>
1930
1931 * tree.c (builtin_valid_in_constant_expr_p): Test for
1932 DECL_BUILT_IN_CLASS equal to BUILT_IN_NORMAL instead of just
1933 DECL_BUILT_IN.
1934 (bot_manip): Likewise.
1935 * call.c (magic_varargs_p): Likewise.
1936
1937 2016-06-17 Paolo Carlini <paolo.carlini@oracle.com>
1938
1939 * decl.c (grokfndecl): Change pair of errors to error + inform.
1940
1941 2016-06-17 Jason Merrill <jason@redhat.com>
1942
1943 PR c++/71209
1944 * typeck.c (finish_class_member_access_expr): Avoid "not a base"
1945 warning when there are dependent bases.
1946
1947 2016-06-17 Jakub Jelinek <jakub@redhat.com>
1948
1949 * semantics.c (handle_omp_array_sections_1): Don't ICE when
1950 processing_template_decl when checking for bitfields and unions.
1951 Look through REFERENCE_REF_P as base of COMPONENT_REF.
1952 (finish_omp_clauses): Look through REFERENCE_REF_P even for
1953 array sections with COMPONENT_REF bases.
1954
1955 2016-06-16 Jakub Jelinek <jakub@redhat.com>
1956
1957 * parser.c (cp_parser_omp_var_list_no_open): Call
1958 convert_from_reference before cp_parser_postfix_dot_deref_expression.
1959 * semantics.c (finish_omp_clauses): Don't ICE when
1960 processing_template_decl when checking for bitfields and unions.
1961 Look through REFERENCE_REF_P as base of COMPONENT_REF.
1962
1963 2016-06-15 Paolo Carlini <paolo.carlini@oracle.com>
1964
1965 * decl.c (wrapup_globals_for_namespace): Use DECL_SOURCE_LOCATION and
1966 "%qF" in warning_at instead of "%q+F" in warning.
1967 (check_redeclaration_exception_specification): Likewise in pedwarn
1968 (and error, inform, for consistency).
1969 * call.c (joust): Likewise.
1970
1971 2016-06-15 Paolo Carlini <paolo.carlini@oracle.com>
1972
1973 PR c++/70202
1974 * decl.c (xref_basetypes): Revert r117839 changes; add fix-up
1975 code at the end of the for loop; also revert r159637 changes,
1976 add back the gcc_assert.
1977 * cp-tree.h (xref_basetypes): Adjust declaration.
1978 * parser.c (cp_parser_class_head): Adjust xref_basetypes call.
1979
1980 2016-06-14 David Malcolm <dmalcolm@redhat.com>
1981
1982 * search.c: Include spellcheck-tree.h rather than spellcheck.h.
1983
1984 2016-06-14 David Malcolm <dmalcolm@redhat.com>
1985
1986 * typeck.c: Include "gcc-rich-location.h".
1987 (finish_class_member_access_expr): Simplify fixit code by
1988 using gcc_rich_location::add_fixit_misspelled_id.
1989
1990 2016-06-14 Jason Merrill <jason@redhat.com>
1991
1992 P0145R2: Refining Expression Order for C++.
1993 * cp-tree.h (CALL_EXPR_OPERATOR_SYNTAX, CALL_EXPR_ORDERED_ARGS)
1994 (CALL_EXPR_REVERSE_ARGS): New.
1995 * call.c (build_new_op_1): Set them.
1996 (extract_call_expr, op_is_ordered): New.
1997 (build_over_call): Set CALL_EXPR_ORDERED_ARGS.
1998 * cp-gimplify.c (cp_gimplify_expr) [CALL_EXPR]: Handle new flags.
1999 * pt.c (tsubst_copy_and_build): Copy new flags.
2000 * semantics.c (simplify_aggr_init_expr): Likewise.
2001 * tree.c (build_aggr_init_expr): Likewise.
2002 (build_min_non_dep_op_overload): Likewise.
2003
2004 2016-06-14 Jakub Jelinek <jakub@redhat.com>
2005
2006 PR c++/71528
2007 * decl.c (duplicate_decls): For DECL_INITIALIZED_P non-external
2008 olddecl vars, preserve their TREE_READONLY bit.
2009
2010 PR c++/71516
2011 * decl.c (complete_vars): Handle gracefully type == error_mark_node.
2012
2013 2016-06-14 Paolo Carlini <paolo.carlini@oracle.com>
2014
2015 * typeck2.c (digest_init_r): Use EXPR_LOC_OR_LOC on init.
2016
2017 2016-06-13 Paolo Carlini <paolo.carlini@oracle.com>
2018
2019 * decl.c (grokdeclarator): Fix typo in pedwarn text.
2020
2021 2016-06-10 Thomas Schwinge <thomas@codesourcery.com>
2022
2023 PR c/71381
2024 * parser.c (cp_parser_omp_var_list_no_open) <OMP_CLAUSE__CACHE_>:
2025 Loosen checking.
2026
2027 2016-06-09 Paolo Carlini <paolo.carlini@oracle.com>
2028
2029 PR c++/71465
2030 Revert:
2031 2016-06-04 Paolo Carlini <paolo.carlini@oracle.com>
2032
2033 PR c++/70202
2034 * parser.c (cp_parser_class_head): When xref_basetypes fails and
2035 emits an error do not zero the type.
2036
2037 2016-06-08 Paolo Carlini <paolo.carlini@oracle.com>
2038
2039 * decl.c (maybe_deduce_size_from_array_init): Use
2040 DECL_SOURCE_LOCATION in error_at.
2041 (layout_var_decl): Likewise.
2042 (check_array_initializer): Likewise.
2043 (check_initializer): Likewise.
2044 (duplicate_decls, check_elaborated_type_specifier): Tidy.
2045
2046 2016-06-08 Martin Sebor <msebor@redhat.com>
2047 Jakub Jelinek <jakub@redhat.com>
2048
2049 PR c++/70507
2050 PR c/68120
2051 * constexpr.c: Include gimple-fold.h.
2052 (cxx_eval_internal_function): New function.
2053 (cxx_eval_call_expression): Call it.
2054 (potential_constant_expression_1): Handle integer arithmetic
2055 overflow built-ins.
2056 * tree.c (builtin_valid_in_constant_expr_p): Handle
2057 BUILT_IN_{ADD,SUB,MUL}_OVERFLOW_P.
2058
2059 2016-06-08 Paolo Carlini <paolo.carlini@oracle.com>
2060
2061 * pt.c (tsubst, case TYPENAME_TYPE): Don't delay checking the
2062 return value of tsubst_aggr_type for error_mark_node.
2063
2064 2016-06-08 Jakub Jelinek <jakub@redhat.com>
2065
2066 PR c++/71442
2067 * pt.c (tsubst_copy): Only set TREE_USED on DECLs.
2068
2069 2016-06-06 Jakub Jelinek <jakub@redhat.com>
2070 Patrick Palka <ppalka@gcc.gnu.org>
2071
2072 PR c++/70847
2073 PR c++/71330
2074 PR c++/71393
2075 * cp-gimplify.c (cp_fold_r): Set *walk_subtrees = 0 and return NULL
2076 right after cp_fold call if cp_fold has returned the same stmt
2077 already in some earlier cp_fold_r call.
2078 (cp_fold_function): Add pset automatic variable, pass its address
2079 to cp_walk_tree.
2080
2081 2016-06-04 Paolo Carlini <paolo.carlini@oracle.com>
2082
2083 PR c++/70202
2084 * parser.c (cp_parser_class_head): When xref_basetypes fails and
2085 emits an error do not zero the type.
2086
2087 2016-06-03 Patrick Palka <ppalka@gcc.gnu.org>
2088
2089 PR c++/27100
2090 * decl.c (duplicate_decls): Properly copy the
2091 DECL_PENDING_INLINE_P, DECL_PENDING_INLINE_INFO and
2092 DECL_SAVED_FUNCTION_DATA fields from OLDDECL to NEWDECL.
2093
2094 2016-06-03 Chung-Lin Tang <cltang@codesourcery.com>
2095
2096 * semantics.c (finish_omp_clauses): Mark OpenACC reduction
2097 arguments as addressable when async clause exists.
2098
2099 2016-06-02 Jan Hubicka <jh@suse.cz>
2100
2101 * cp-gimplify.c (genericize_continue_stmt): Force addition of
2102 predict stmt.
2103
2104 2016-06-02 Paolo Carlini <paolo.carlini@oracle.com>
2105
2106 * decl.c (xref_tag_1): Change pairs of errors to error + inform.
2107 (start_enum): Likewise.
2108 * parser.c (cp_parser_class_head): Likewise.
2109
2110 2016-06-02 Jakub Jelinek <jakub@redhat.com>
2111
2112 PR c++/71372
2113 * cp-gimplify.c (cp_fold): For INDIRECT_REF, if the folded expression
2114 is INDIRECT_REF or MEM_REF, copy over TREE_READONLY, TREE_SIDE_EFFECTS
2115 and TREE_THIS_VOLATILE flags. For ARRAY_REF and ARRAY_RANGE_REF, copy
2116 over TREE_READONLY, TREE_SIDE_EFFECTS and TREE_THIS_VOLATILE flags
2117 to the newly built tree.
2118
2119 2016-05-31 Jason Merrill <jason@redhat.com>
2120
2121 * pt.c (instantiate_decl): Avoid recalculation.
2122
2123 PR c++/60095
2124 PR c++/69515
2125 PR c++/69009
2126 * pt.c (instantiate_template_1): Don't put the partial
2127 specialization in DECL_TI_TEMPLATE.
2128 (partial_specialization_p, impartial_args): Remove.
2129 (regenerate_decl_from_template): Add args parm.
2130 (instantiate_decl): Look up the partial specialization again.
2131
2132 PR c++/71227
2133 * pt.c (check_explicit_specialization): Give better diagnostic about
2134 specializing a hidden friend.
2135
2136 2016-05-31 Paolo Carlini <paolo.carlini@oracle.com>
2137
2138 PR c++/71248
2139 * decl.c (check_static_variable_definition): Use DECL_SOURCE_LOCATION
2140 to obtain correct locations; avoid redundant diagnostics on
2141 out-of-class definitions.
2142
2143 2016-05-30 Martin Sebor <msebor@redhat.com>
2144
2145 PR c++/71306
2146 * init.c (warn_placement_new_too_small): Handle placement new arguments
2147 that are elements of arrays more carefully. Remove a pointless loop.
2148
2149 2016-05-30 Jakub Jelinek <jakub@redhat.com>
2150
2151 PR c++/71349
2152 * parser.c (cp_parser_omp_for): Don't disallow nowait clause
2153 when combined with target construct.
2154 (cp_parser_omp_parallel): Pass cclauses == NULL as last argument
2155 to cp_parser_omp_all_clauses.
2156
2157 2016-05-30 Paolo Carlini <paolo.carlini@oracle.com>
2158
2159 PR c++/71238
2160 * lex.c (unqualified_name_lookup_error): Take a location too.
2161 (unqualified_fn_lookup_error): Take a cp_expr.
2162 * cp-tree.h (unqualified_name_lookup_error,
2163 unqualified_fn_lookup_error): Adjust declarations.
2164 * semantics.c (perform_koenig_lookup): Adjust
2165 unqualified_fn_lookup_error call, pass the location of
2166 the identifier too as part of a cp_expr.
2167
2168 2016-05-30 Paolo Carlini <paolo.carlini@oracle.com>
2169
2170 PR c++/71099
2171 * parser.c (cp_parser_function_specifier_opt): Use current_class_type
2172 to improve the diagnostic about wrong uses of 'virtual'.
2173
2174 2016-05-29 Paolo Carlini <paolo.carlini@oracle.com>
2175
2176 PR c++/71105
2177 * lambda.c (maybe_add_lambda_conv_op): Early return also when
2178 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE != CPLD_NONE.
2179
2180 2016-05-28 Ville Voutilainen <ville.voutilainen@gmail.com>
2181
2182 Revert:
2183 PR c++/69855
2184 * name-lookup.c (pushdecl_maybe_friend_1): Push local function
2185 decls into the global scope after stripping template bits
2186 and setting DECL_ANTICIPATED.
2187
2188 2016-05-27 Paolo Carlini <paolo.carlini@oracle.com>
2189
2190 PR c++/60385
2191 * name-lookup.c (push_namespace): Return bool, false when pushdecl
2192 fails.
2193 * name-lookup.h (push_namespace): Adjust declaration.
2194 * parser.c (cp_parser_namespace_definition): Check push_namespace
2195 return value.
2196
2197 2016-05-27 Ville Voutilainen <ville.voutilainen@gmail.com>
2198
2199 PR c++/69855
2200 * name-lookup.c (pushdecl_maybe_friend_1): Push local function
2201 decls into the global scope after stripping template bits
2202 and setting DECL_ANTICIPATED.
2203
2204 2016-05-26 Jakub Jelinek <jakub@redhat.com>
2205
2206 * semantics.c (finish_omp_clauses) <case OMP_CLAUSE_SCHEDULE>: Warn
2207 if OMP_CLAUSE_SCHEDULE_CHUNK_EXPR is known not to be positive.
2208
2209 2016-05-26 Patrick Palka <ppalka@gcc.gnu.org>
2210
2211 PR c++/70822
2212 PR c++/70106
2213 * cp-tree.h (REF_PARENTHESIZED_P): Make this flag apply to
2214 SCOPE_REFs too.
2215 * pt.c (tsubst_qualified_id): If REF_PARENTHESIZED_P is set
2216 on the qualified_id then propagate it to the resulting
2217 expression.
2218 (do_auto_deduction): Check REF_PARENTHESIZED_P on SCOPE_REFs
2219 too.
2220 * semantics.c (force_paren_expr): If given a SCOPE_REF, just set
2221 its REF_PARENTHESIZED_P flag.
2222
2223 2016-05-25 Jason Merrill <jason@redhat.com>
2224
2225 PR c++/71173
2226 PR c++/70522
2227 * cp-tree.h (enum tag_types): Add scope_type.
2228 * parser.c (cp_parser_class_name): Use scope_type.
2229 (prefer_type_arg): Handle scope_type.
2230 (cp_parser_lookup_name): Use prefer_type_arg.
2231 * name-lookup.c (lookup_qualified_name): Change bool is_type_p to
2232 int prefer_type, use lookup_flags.
2233 * name-lookup.h: Adjust.
2234
2235 2016-05-24 Cesar Philippidis <cesar@codesourcery.com>
2236
2237 * parser.c (cp_parser_oacc_declare): Add support for
2238 GOMP_MAP_FIRSTPRIVATE_POINTER.
2239 * semantics.c (handle_omp_array_sections_1): Replace bool is_omp
2240 argument with enum c_omp_region_type ort. Don't privatize OpenACC
2241 non-static members.
2242 (handle_omp_array_sections): Replace bool is_omp argument with enum
2243 c_omp_region_type ort. Update call to handle_omp_array_sections_1.
2244 (finish_omp_clauses): Add specific errors and warning messages for
2245 OpenACC. Use firsrtprivate pointers for OpenACC subarrays. Update
2246 call to handle_omp_array_sections.
2247
2248 2016-05-24 Jason Merrill <jason@redhat.com>
2249
2250 PR c++/70584
2251 * cp-gimplify.c (cp_fold_maybe_rvalue): Loop in case cp_fold
2252 returns a decl.
2253 (cp_fold) [INDIRECT_REF]: Don't fold to an rvalue.
2254
2255 2016-05-24 Martin Sebor <msebor@redhat.com>
2256
2257 PR c++/71147
2258 * decl.c (layout_var_decl, grokdeclarator): Use complete_or_array_type_p.
2259 * pt.c (instantiate_class_template_1): Try to complete the element
2260 type of a flexible array member.
2261 (can_complete_type_without_circularity): Handle arrays of unknown bound.
2262 * typeck.c (complete_type): Also complete the type of the elements of
2263 arrays with an unspecified bound.
2264
2265 2016-05-24 Paolo Carlini <paolo.carlini@oracle.com>
2266
2267 PR c++/69872
2268 * typeck2.c (check_narrowing): Check pedwarn return value.
2269
2270 2016-05-24 Jakub Jelinek <jakub@redhat.com>
2271
2272 PR c++/71257
2273 * semantics.c (finish_omp_clauses) <case OMP_CLAUSE_LINEAR>:
2274 For OMP_CLAUSE_LINEAR_REF don't require type to be
2275 integral or pointer.
2276
2277 2016-05-24 Richard Biener <rguenther@suse.de>
2278
2279 PR middle-end/70434
2280 PR c/69504
2281 * expr.c (mark_exp_read): Handle VIEW_CONVERT_EXPR.
2282 * constexpr.c (cxx_eval_array_reference): Handle indexed
2283 vectors.
2284 * typeck.c (cp_build_array_ref): Adjust.
2285
2286 2016-05-23 Jason Merrill <jason@redhat.com>
2287
2288 PR c++/70344
2289 * constexpr.c (cxx_eval_call_expression): Check for
2290 fun == current_function_decl again.
2291
2292 PR c++/70584
2293 * cp-gimplify.c (cp_fold) [INDIRECT_REF]: Call
2294 maybe_undo_parenthesized_ref.
2295
2296 PR c++/70735
2297 * pt.c (tsubst_copy): Just return a local variable from
2298 non-template context. Don't call rest_of_decl_compilation for
2299 duplicated static locals.
2300 (tsubst_decl): Set DECL_CONTEXT of local static from another
2301 function.
2302
2303 2016-05-23 Paolo Carlini <paolo.carlini@oracle.com>
2304
2305 PR c++/70972
2306 * method.c (forward_parm): Use cp_build_reference_type.
2307
2308 2016-05-23 Paolo Carlini <paolo.carlini@oracle.com>
2309
2310 PR c++/69095
2311 * parser.c (cp_parser_initializer): Use check_for_bare_parameter_packs.
2312
2313 2016-05-23 Paolo Carlini <paolo.carlini@oracle.com>
2314
2315 * pt.c (check_for_bare_parameter_packs): Improve error message
2316 location for expressions.
2317
2318 2016-05-20 Nathan Sidwell <nathan@acm.org>
2319
2320 * constexpr.c (cxx_bind_parameters_in_call): Avoid gratuitous if
2321 ... goto.
2322 (cxx_eval_call_expression): Fix comment grammar.
2323
2324 2016-05-20 Paolo Carlini <paolo.carlini@oracle.com>
2325
2326 PR c++/70572
2327 * decl.c (cp_finish_decl): Check do_auto_deduction return value
2328 and return immediately in case of erroneous code.
2329
2330 2016-05-19 Marek Polacek <polacek@redhat.com>
2331
2332 PR c++/71075
2333 * pt.c (unify_template_argument_mismatch): Use %qE instead of %qD.
2334
2335 2016-05-19 Jason Merrill <jason@redhat.com>
2336
2337 PR c++/10200
2338 * pt.c (fn_type_unification): Add outer template args if needed.
2339 (type_unification_real): Handle getting full args.
2340
2341 2016-05-19 David Malcolm <dmalcolm@redhat.com>
2342
2343 PR c++/71184
2344 * parser.c (cp_parser_operator): For array new/delete, check that
2345 cp_parser_require returned a non-NULL token before dereferencing
2346 it.
2347
2348 2016-05-19 Bernd Edlinger <bernd.edlinger@hotmail.de>
2349
2350 * decl.c (finish_enum_value_list): Use the specified mode.
2351
2352 2016-05-18 Jason Merrill <jason@redhat.com>
2353
2354 * pt.c (value_dependent_expression_p): Tweak new cases to better
2355 match the wording in the standard.
2356
2357 2016-05-18 Paolo Carlini <paolo.carlini@oracle.com>
2358
2359 PR c++/69793
2360 * parser.c (cp_parser_template_id): Don't call cp_lexer_peek_nth_token
2361 when the previous cp_lexer_peek_token returns CPP_EOF.
2362
2363 2016-05-18 Paolo Carlini <paolo.carlini@oracle.com>
2364
2365 PR c++/70466
2366 * call.c (convert_like_real): Check that we are actually converting
2367 from an init list.
2368
2369 2016-05-16 Matthew Wahab <matthew.wahab@arm.com>
2370
2371 * decl.c (grokdeclarator): Remove errmsg and use of
2372 targetm.invalid_return_type.
2373 (grokparms): Remove errmsg and use of
2374 targetm.invalid_parameter_type.
2375
2376 2016-05-13 Jason Merrill <jason@redhat.com>
2377
2378 PR c++/10200
2379 PR c++/69753
2380 * pt.c (tsubst_decl): Use uses_template_parms.
2381 (instantiate_template_1): Handle non-dependent calls in templates.
2382 (value_dependent_expression_p): Handle BASELINK, FUNCTION_DECL.
2383 (type_dependent_expression_p): Only consider innermost template args.
2384 (dependent_template_arg_p): Check enclosing class of a template here.
2385 (dependent_template_p): Not here.
2386 (type_dependent_object_expression_p): New.
2387 * typeck.c (finish_class_member_access_expr): Use it.
2388 * parser.c (cp_parser_postfix_expression): Use it.
2389 (cp_parser_postfix_dot_deref_expression): Use it. Use comptypes
2390 to detect the current instantiation.
2391 (cp_parser_lookup_name): Really implement DR 141.
2392 * search.c (lookup_field_r): Prefer a dependent using-declaration.
2393 (any_dependent_bases_p): Split out from...
2394 * name-lookup.c (do_class_using_decl): ...here.
2395 * call.c (build_new_method_call_1): Use it.
2396 * semantics.c (finish_call_expr): 'this' doesn't make a call dependent.
2397 * tree.c (non_static_member_function_p): Remove.
2398 * typeck2.c (build_x_arrow): Use dependent_scope_p.
2399
2400 * parser.c (cp_parser_postfix_dot_deref_expression): Use
2401 complete_type_or_else for unknown_type_node, too.
2402
2403 2016-05-12 Marek Polacek <polacek@redhat.com>
2404
2405 PR c/70756
2406 * call.c (build_new_op_1): Pass LOC to cp_build_modify_expr.
2407 * cp-tree.h (cp_build_modify_expr): Update declaration.
2408 (cxx_incomplete_type_error, cxx_incomplete_type_diagnostic): New inline
2409 overloads.
2410 * cp-ubsan.c (cp_ubsan_dfs_initialize_vtbl_ptrs): Pass INPUT_LOCATION to
2411 cp_build_modify_expr.
2412 * decl2.c (set_guard): Likewise.
2413 (handle_tls_init): Likewise.
2414 * init.c (perform_member_init): Likewise.
2415 (expand_virtual_init): Likewise.
2416 (build_new_1): Likewise.
2417 (build_vec_delete_1): Likewise.
2418 (get_temp_regvar): Likewise.
2419 (build_vec_init): Likewise.
2420 * method.c (do_build_copy_assign): Likewise.
2421 (assignable_expr): Likewise.
2422 * semantics.c (finish_omp_for): Likewise.
2423 * typeck.c (cp_build_binary_op): Pass LOCATION to pointer_diff and
2424 cp_pointer_int_sum.
2425 (cp_pointer_int_sum): Add location parameter. Pass it down to
2426 pointer_int_sum.
2427 (pointer_diff): Add location parameter. Use it.
2428 (build_modify_expr): Pass location down to cp_build_modify_expr.
2429 (cp_build_modify_expr): Add location parameter. Use it.
2430 (build_x_modify_expr): Pass location down to cp_build_modify_expr.
2431 * typeck2.c (cxx_incomplete_type_diagnostic,
2432 cxx_incomplete_type_error): Add location parameter.
2433
2434 2016-05-11 Marek Polacek <polacek@redhat.com>
2435
2436 PR c++/71024
2437 * decl.c (duplicate_decls): Call diagnose_mismatched_decls.
2438
2439 2016-05-05 Jakub Jelinek <jakub@redhat.com>
2440
2441 * parser.c (cp_parser_selection_statement): For RID_SWITCH,
2442 pass if_p instead of NULL to cp_parser_implicitly_scoped_statement.
2443
2444 2016-05-04 Marek Polacek <polacek@redhat.com>
2445
2446 * parser.c (cp_parser_selection_statement): Replace OPT_Wparentheses
2447 with OPT_Wdangling_else.
2448
2449 2016-05-03 Martin Sebor <msebor@redhat.com>
2450
2451 PR c++/66561
2452 * tree.c (builtin_valid_in_constant_expr_p): Treat BUILT_IN_FILE,
2453 BUILT_IN_FUNCTION, and BUILT_IN_LINE as constant expressions.
2454
2455 2016-05-03 Marek Polacek <polacek@redhat.com>
2456
2457 PR c/70859
2458 * call.c (build_cxx_call): Pass location and vNULL down to
2459 check_builtin_function_arguments.
2460
2461 2016-05-03 Richard Biener <rguenther@suse.de>
2462
2463 * Make-lang.in (cc1plus-checksum.c): For stage-final re-use
2464 the checksum from the previous stage.
2465
2466 2016-05-02 David Malcolm <dmalcolm@redhat.com>
2467
2468 PR c++/62314
2469 * typeck.c (finish_class_member_access_expr): When
2470 giving a hint about a possibly-misspelled member name,
2471 add a fix-it replacement hint.
2472
2473 2016-05-02 Cesar Philippidis <cesar@codesourcery.com>
2474
2475 * cp-tree.h (finish_omp_clauses): Update prototype.
2476 * parser.c (cp_parser_oacc_all_clauses): Update call to
2477 finish_omp_clauses.
2478 (cp_parser_omp_all_clauses): Likewise.
2479 (cp_parser_omp_for_loop): Likewise.
2480 (cp_omp_split_clauses): Likewise.
2481 (cp_parser_oacc_cache): Likewise.
2482 (cp_parser_oacc_loop): Likewise.
2483 (cp_parser_omp_declare_target):
2484 (cp_parser_cilk_simd_all_clauses): Likewise.
2485 (cp_parser_cilk_for): Likewise.
2486 * pt.c (tsubst_omp_clauses): Replace allow_fields and declare_simd
2487 arguments with enum c_omp_region_type ort.
2488 (tsubst_omp_clauses): Update calls to finish_omp_clauses.
2489 (tsubst_omp_attribute): Update calls to tsubst_omp_clauses.
2490 (tsubst_omp_for_iterator): Update calls to finish_omp_clauses.
2491 (tsubst_expr): Update calls to tsubst_omp_clauses.
2492 * semantics.c (finish_omp_clauses): Replace bool arguments
2493 allow_fields, declare_simd, and is_cilk with bitmask ort.
2494 (finish_omp_for): Update call to finish_omp_clauses.
2495
2496 2016-05-02 David Malcolm <dmalcolm@redhat.com>
2497
2498 PR c++/62314
2499 * parser.c (cp_parser_class_head): Capture the start location;
2500 use it to emit a fix-it insertion hint when complaining
2501 about missing "template <> " in explicit specializations.
2502
2503 2016-05-02 Richard Sandiford <richard.sandiford@arm.com>
2504
2505 * init.c (build_new_1): Use shift operators instead of wi:: shifts.
2506
2507 2016-05-02 Richard Biener <rguenther@suse.de>
2508
2509 * decl.c (grokdeclarator): Properly insert a DECL_EXPR for
2510 anonymous VLAs.
2511
2512 2016-04-29 Paolo Carlini <paolo.carlini@oracle.com>
2513
2514 PR c++/66644
2515 * class.c (check_field_decl): Remove final int* parameter, change
2516 the return type to bool; fix logic in order not to reject multiple
2517 initialized fields in anonymous struct.
2518 (check_field_decls): Adjust call.
2519
2520 2016-04-29 Cesar Philippidis <cesar@codesourcery.com>
2521
2522 PR middle-end/70626
2523 * parser.c (cp_parser_oacc_loop): Don't augment mask with
2524 OACC_LOOP_CLAUSE_MASK.
2525 (cp_parser_oacc_kernels_parallel): Update call to
2526 c_oacc_split_loop_clauses.
2527
2528 2016-04-28 Jason Merrill <jason@redhat.com>
2529
2530 Implement C++17 [[nodiscard]] attribute.
2531 PR c++/38172
2532 PR c++/54379
2533 * parser.c (cp_parser_std_attribute): Handle [[nodiscard]].
2534 * tree.c (handle_nodiscard_attribute): New.
2535 (cxx_attribute_table): Add [[nodiscard]].
2536 * cvt.c (cp_get_fndecl_from_callee, cp_get_callee_fndecl): New.
2537 (maybe_warn_nodiscard): New.
2538 (convert_to_void): Call it.
2539
2540 * cvt.c (cp_get_callee): New.
2541 * constexpr.c (get_function_named_in_call): Use it.
2542 * cxx-pretty-print.c (postfix_expression): Use it.
2543 * except.c (check_noexcept_r): Use it.
2544 * method.c (check_nontriv): Use it.
2545 * tree.c (build_aggr_init_expr): Use it.
2546 * cp-tree.h: Declare it.
2547
2548 2015-04-27 Ryan Burn <contact@rnburn.com>
2549 Jeff Law <law@redhat.com>
2550
2551 PR c++/69024
2552 PR c++/68997
2553 * cp-gimplify.c (cp_gimplify_expr): Call cilk_cp_detect_spawn_and_unwrap
2554 instead of cilk_detect_spawn_and_unwrap.
2555 * cp-cilkplus.c (is_conversion_operator_function_decl_p): New.
2556 (find_spawn): New.
2557 (cilk_cp_detect_spawn_and_unwrap): New.
2558 * lambda.c: Include cp-cilkplus.h.
2559 * parser.c: Include cp-cilkplus.h.
2560 * cp-tree.h (cpp_validate_cilk_plus_loop): Move prototype into...
2561 * cp-cilkpus.h: New file.
2562
2563 2016-04-27 Nathan Sidwell <nathan@acm.org>
2564
2565 * constexpr.c (get_fundef_copy): Use the original function for
2566 non-recursive evaluations.
2567 (save_fundef_copy): Always expect a slot to be available.
2568
2569 2016-04-27 Bernd Schmidt <bschmidt@redhat.com>
2570
2571 * parser.c (cp_parser_postfix_expression): Call
2572 warn_for_memset instead of warning directly here.
2573
2574 2016-04-26 Patrick Palka <ppalka@gcc.gnu.org>
2575
2576 PR c++/70241
2577 * decl.c (build_enumerator): Set current_access_specifier when
2578 declaring an enumerator belonging to an in-class enumeration.
2579 * parser.c (cp_parser_check_access_in_redecleration): Also
2580 consider in-class enumerations.
2581
2582 2016-04-26 Marek Polacek <polacek@redhat.com>
2583
2584 PR c++/70744
2585 * call.c (build_conditional_expr_1): Call cp_stabilize_reference
2586 instead of stabilize_reference.
2587 (build_over_call): Likewise.
2588 * cp-tree.h (cp_stabilize_reference): Declare.
2589 * tree.c (cp_stabilize_reference): New function.
2590 * typeck.c (cp_build_unary_op): Call cp_stabilize_reference instead of
2591 stabilize_reference.
2592 (unary_complex_lvalue): Likewise.
2593 (cp_build_modify_expr): Likewise.
2594
2595 2016-04-26 Jakub Jelinek <jakub@redhat.com>
2596
2597 PR bootstrap/70704
2598 * pt.c (build_non_dependent_expr): Use flag_checking > 1 instead of
2599 just flag_checking.
2600
2601 2016-04-25 Jason Merrill <jason@redhat.com>
2602
2603 * tree.c (std_attribute_table): New.
2604 (init_tree): Register it.
2605
2606 2016-04-22 Jason Merrill <jason@redhat.com>
2607
2608 * parser.c (cp_parser_perform_range_for_lookup): Decay the array.
2609
2610 2016-04-21 Patrick Palka <ppalka@gcc.gnu.org>
2611
2612 * name-lookup.c (free_saved_scope): New free list of saved_scope
2613 structures.
2614 (push_to_top_level): Attempt to reuse a saved_scope struct
2615 from free_saved_scope instead of allocating a new one each time.
2616 (pop_from_top_level_1): Chain the now-unused saved_scope structure
2617 onto free_saved_scope.
2618
2619 2016-04-21 Paolo Carlini <paolo.carlini@oracle.com>
2620
2621 PR c++/70540
2622 * semantics.c (process_outer_var_ref): Unconditionally return
2623 error_mark_node when mark_used returns false.
2624
2625 2016-04-21 Marek Polacek <polacek@redhat.com>
2626
2627 PR c++/70513
2628 * parser.c (cp_parser_enum_specifier): Check and possibly error for
2629 extra qualification.
2630
2631 2016-04-20 Nathan Sidwell <nathan@acm.org>
2632
2633 PR c++/55635
2634 * init.c (build_vec_delete_1): Protect operator delete call in try
2635 finally.
2636 (build_delete): Likewise.
2637 * optimize.c (build_delete_destructor_body): Likewise.
2638
2639 2016-04-20 Ilya Verbin <ilya.verbin@intel.com>
2640
2641 PR c++/69363
2642 * cp-tree.h (finish_omp_clauses): Add new default argument.
2643 * parser.c (cp_parser_cilk_simd_all_clauses): Use finish_omp_clauses
2644 instead of c_finish_cilk_clauses.
2645 * semantics.c (finish_omp_clauses): Add new argument. Allow
2646 floating-point variables in the linear clause for Cilk Plus.
2647
2648 2016-04-20 Nathan Sidwell <nathan@acm.org>
2649
2650 * semantics.c (finish_compound_lteral): Don't wrap VECTOR_TYPEs in a
2651 TARGET_EXPR.
2652
2653 2016-04-19 Jason Merrill <jason@redhat.com>
2654
2655 PR c++/66543
2656 * expr.c (mark_exp_read): Handle NON_DEPENDENT_EXPR.
2657 * pt.c (make_pack_expansion): Call mark_exp_read.
2658 * semantics.c (finish_id_expression): Call mark_type_use in
2659 unevaluated context.
2660
2661 DR 2137
2662 * call.c (implicit_conversion): If we choose a copy constructor
2663 for list-initialization from the same type, the conversion is an
2664 exact match.
2665
2666 * constexpr.c (breaks): Handle EXIT_EXPR.
2667 (cxx_eval_loop_expr): Handle COMPOUND_EXPR body.
2668 (cxx_eval_constant_expression): Handle EXIT_EXPR, improve handling
2669 of COMPOUND_EXPR.
2670
2671 PR c++/68206
2672 PR c++/68530
2673 * constexpr.c (potential_constant_expression_1): Handle LOOP_EXPR
2674 and GOTO_EXPR.
2675
2676 * pt.c (tsubst_expr): Remove shadowing declaration.
2677 (tsubst_pack_expansion): Add assert.
2678
2679 * semantics.c (add_decl_expr): Use DECL_SOURCE_LOCATION.
2680
2681 PR c++/70522
2682 * name-lookup.c (qualified_lookup_using_namespace): Look through
2683 hidden names.
2684
2685 2016-04-18 Michael Matz <matz@suse.de>
2686
2687 * class.c (build_vtable): Use SET_DECL_ALIGN and SET_TYPE_ALIGN.
2688 (layout_class_type): Ditto.
2689 (build_base_field): Use SET_DECL_ALIGN.
2690 (fixup_attribute_variants): Use SET_TYPE_ALIGN.
2691 * decl.c (duplicate_decls): Use SET_DECL_ALIGN.
2692 (record_unknown_type): Use SET_TYPE_ALIGN.
2693 (cxx_init_decl_processing): Ditto.
2694 (copy_type_enum): Ditto.
2695 (grokfndecl): Use SET_DECL_ALIGN.
2696 (copy_type_enum): Use SET_TYPE_ALIGN.
2697 * pt.c (instantiate_class_template_1): Use SET_TYPE_ALIGN.
2698 (tsubst): Ditto.
2699 * tree.c (cp_build_qualified_type_real): Use SET_TYPE_ALIGN.
2700 * lambda.c (maybe_add_lambda_conv_op): Use SET_DECL_ALIGN.
2701 * method.c (implicitly_declare_fn): Use SET_DECL_ALIGN.
2702 * rtti.c (emit_tinfo_decl): Ditto.
2703
2704 2016-04-18 Jason Merrill <jason@redhat.com>
2705
2706 PR c++/70690
2707 PR c++/70528
2708 * class.c (type_maybe_constexpr_default_constructor): New.
2709 (type_has_constexpr_default_constructor): Revert.
2710
2711 2016-04-16 Sandra Loosemore <sandra@codesourcery.com>
2712
2713 PR target/1078
2714
2715 * tree.c (cxx_attribute_table): Remove "com_interface" entry.
2716 (handle_com_interface_attribute): Delete.
2717
2718 2016-04-15 Jason Merrill <jason@redhat.com>
2719
2720 PR c++/70685
2721 * constexpr.c (get_fundef_copy): Handle null *slot.
2722
2723 PR c++/70505
2724 * pt.c (tsubst_baselink): Give the new TEMPLATE_ID_EXPR
2725 unknown_type_node, too.
2726
2727 2016-04-15 Jason Merrill <jason@redhat.com>
2728 Nathan Sidwell <nathan@acm.org>
2729
2730 PR c++/70594
2731 * constexpr.c (constexpr_call_table): Preserve in GC.
2732 (struct fundef_copy, struct fundef_copies_table_t): Delete.
2733 (fundef_copies_table): Preserve in GC. Change to pointer to
2734 tree->tree hash.
2735 (maybe_initialize_fundef_copies_table): Adjust.
2736 (get_fundef_copy): Return a TREE_LIST. Use non-inserting search.
2737 (save_fundef_copy): Adjust for a TREE_LIST.
2738 (cxx_eval_call_expression): Adjust for a fundef_copy TREE_LIST.
2739 (fini_constexpr): New.
2740 * cp-tree.h (fini_constexpr): Declare.
2741 * decl2.c (c_parse_final_cleanups): Call fini_constexpr.
2742
2743 2016-04-15 Jakub Jelinek <jakub@redhat.com>
2744
2745 PR c/70436
2746 * parser.c (cp_parser_pragma): Add IF_P argument, pass it down
2747 where needed.
2748 (cp_parser_declaration_seq_opt, cp_parser_member_specification_opt,
2749 cp_parser_objc_interstitial_code, cp_parser_omp_declare_simd,
2750 cp_parser_oacc_routine): Adjust cp_parser_pragma callers.
2751 (cp_parser_statement): Likewise. Adjust cp_parser_cilk_for caller.
2752 (cp_parser_omp_structured_block): Add IF_P argument, pass it down to
2753 cp_parser_statement.
2754 (cp_parser_oacc_data, cp_parser_oacc_host_data, cp_parser_oacc_loop,
2755 cp_parser_oacc_kernels_parallel, cp_parser_omp_critical,
2756 cp_parser_omp_simd, cp_parser_omp_for, cp_parser_omp_master,
2757 cp_parser_omp_ordered, cp_parser_omp_parallel, cp_parser_omp_single,
2758 cp_parser_omp_task, cp_parser_omp_taskgroup, cp_parser_omp_distribute,
2759 cp_parser_omp_teams, cp_parser_omp_target_data, cp_parser_omp_target,
2760 cp_parser_omp_taskloop, cp_parser_omp_construct,
2761 cp_parser_cilk_grainsize, cp_parser_cilk_simd, cp_parser_cilk_for):
2762 Add IF_P argument, pass it down where needed.
2763 (cp_parser_omp_for_loop): Likewise. Clear IF_P if nbraces.
2764 (cp_parser_omp_sections_scope): Adjust cp_parser_omp_structured_block
2765 calls.
2766
2767 2016-04-14 Jason Merrill <jason@redhat.com>
2768
2769 PR c++/70494
2770 * decl.c (cxx_maybe_build_cleanup): Handle non-decls.
2771 * typeck2.c (split_nonconstant_init_1): Use it.
2772
2773 PR c++/70528
2774 * class.c (type_has_constexpr_default_constructor): Return true
2775 for an implicitly declared constructor.
2776
2777 PR c++/70622
2778 * parser.c (cp_parser_init_declarator): Add auto_result parm.
2779 (cp_parser_simple_declaration): Pass it.
2780 (strip_declarator_types): New.
2781
2782 PR c++/70543
2783 * pt.c (value_dependent_expression_p) [VAR_DECL]: A type-dependent
2784 initializer also makes the variable value-dependent.
2785
2786 PR c++/70648
2787 * constexpr.c (cxx_eval_store_expression): Also copy
2788 CONSTRUCTOR_NO_IMPLICIT_ZERO.
2789
2790 2016-04-14 Martin Sebor <msebor@redhat.com>
2791
2792 PR c++/69517
2793 PR c++/70019
2794 PR c++/70588
2795 * cp-tree.h, decl.c, init.c, typeck2.c: Revert.
2796
2797 2016-04-14 Jason Merrill <jason@redhat.com>
2798
2799 * call.c, decl.c, error.c, cp-tree.h, decl.c: Revert empty
2800 parameter ABI change.
2801
2802 2016-04-13 Martin Sebor <msebor@redhat.com>
2803
2804 PR c++/69517
2805 PR c++/70019
2806 PR c++/70588
2807 * cp-tree.h (throw_bad_array_length, build_vla_check): Declare new
2808 functions.
2809 * decl.c (check_initializer, cp_finish_decl): Call them.
2810 (reshape_init_r): Reject incompletely braced intializer-lists
2811 for VLAs.
2812 * init.c (throw_bad_array_length, build_vla_check)
2813 (build_vla_size_check, build_vla_init_check): Define new functions.
2814 * typeck2.c (split_nonconstant_init_1): Use variably_modified_type_p()
2815 to detect a VLA.
2816 (store_init_value): Same.
2817
2818 2016-04-13 Jason Merrill <jason@redhat.com>
2819
2820 Warn about empty parameter ABI with -Wabi=9.
2821 * call.c (empty_class_msg, mark_for_abi_warning)
2822 (warn_empty_class_abi): New.
2823 (build_call_a): Use them.
2824 * decl.c (store_parm_decls): Use mark_for_abi_warning.
2825 * error.c (pp_format_to_string): New.
2826
2827 Pass empty class parameters like C.
2828 * call.c (pass_as_empty_struct, empty_class_arg): New.
2829 (type_passed_as, build_x_va_arg): Use pass_as_empty_struct.
2830 (build_call_a): Use empty_class_arg.
2831 * cp-tree.h (CPTI_EMPTY_STRUCT, empty_struct_type): New.
2832 * decl.c (cxx_init_decl_processing): Create empty_struct_type.
2833
2834 2016-04-13 Jason Merrill <jason@redhat.com>
2835
2836 PR c++/70627
2837 * decl.c (start_enum): Don't change an existing ENUM_UNDERLYING_TYPE.
2838
2839 2016-04-13 Paolo Carlini <paolo.carlini@oracle.com>
2840
2841 PR c++/70635
2842 * pt.c (resolve_typename_type): Fix typos in infinite recursion
2843 avoidance mechanism.
2844
2845 2016-04-13 Jason Merrill <jason@redhat.com>
2846
2847 PR c++/70634
2848 * pt.c (instantiation_dependent_uneval_expression_p): Split out
2849 from instantiation_dependent_expression_p.
2850 (value_dependent_expression_p): Use it for unevaluated operands.
2851 (instantiation_dependent_r): Don't check value-dependence.
2852 (instantiation_dependent_expression_p): Check
2853 value-dependence of the expression as a whole.
2854 * cp-tree.h: Declare instantiation_dependent_uneval_expression_p.
2855 * semantics.c (finish_decltype_type): Use it.
2856
2857 * constexpr.c (potential_nondependent_constant_expression): New.
2858 (potential_nondependent_static_init_expression): New.
2859 (maybe_constant_value_1, fold_non_dependent_expr)
2860 (maybe_constant_init): Use them.
2861 * pt.c (instantiate_non_dependent_expr_sfinae)
2862 (instantiate_non_dependent_or_null, convert_nontype_argument): Use
2863 them.
2864 * cp-tree.h: Declare them.
2865
2866 2016-04-13 Jakub Jelinek <jakub@redhat.com>
2867
2868 PR c++/70594
2869 * decl.c (pop_labels_1): Removed.
2870 (note_label, sort_labels): New functions.
2871 (pop_labels): During named_labels traversal, just push the slot
2872 pointers into a vector, then qsort it by DECL_UID and only then
2873 call pop_label and chain it into BLOCK_VARS.
2874
2875 2016-04-13 Jason Merrill <jason@redhat.com>
2876
2877 PR c++/70615
2878 * cp-gimplify.c (cp_genericize_r): Expand PTRMEM_CST here.
2879 (cp_gimplify_expr): Not here.
2880
2881 2016-04-12 Patrick Palka <ppalka@gcc.gnu.org>
2882
2883 PR c++/70610
2884 * tree.c (lvalue_kind) [NON_DEPENDENT_EXPR]: Unconditionally
2885 recurse into it.
2886 * typeck.c (build_x_conditional_expr): Unconditionally remember
2887 that the result is an lvalue or xvalue.
2888
2889 2016-04-12 Jason Merrill <jason@redhat.com>
2890
2891 * class.c (is_really_empty_class): A zero-length array is empty.
2892 An unnamed bit-field doesn't make a class non-empty.
2893
2894 2016-04-12 Paolo Carlini <paolo.carlini@oracle.com>
2895
2896 PR c++/68722
2897 * parser.c (cp_parser_cache_defarg): When file ends in default
2898 argument simply return error_mark_node.
2899
2900 2016-04-12 Nathan Sidwell <nathan@acm.org>
2901
2902 PR c++/70501
2903 * constexpr.c (cxx_eval_bare_aggregate): Handle VECTOR_TYPE
2904 similarly to PMF.
2905
2906 2016-04-11 Jason Merrill <jason@redhat.com>
2907
2908 * mangle.c (decl_is_template_id): The template itself counts as a
2909 template-id.
2910
2911 2016-04-08 Patrick Palka <ppalka@gcc.gnu.org>
2912
2913 PR c++/70590
2914 PR c++/70452
2915 * constexpr.c (cxx_eval_outermost_expression): Call unshare_expr
2916 on the result if it's not a CONSTRUCTOR.
2917
2918 2016-04-07 Patrick Palka <ppalka@gcc.gnu.org>
2919
2920 PR c++/70452
2921 * constexpr.c (find_constructor): New function.
2922 (unshare_constructor): New function.
2923 (cxx_eval_call_expression): Use unshare_constructor instead of
2924 unshare_expr.
2925 (find_array_ctor_elt): Likewise.
2926 (cxx_eval_vec_init_1): Likewise.
2927 (cxx_eval_store_expression): Likewise.
2928 (cxx_eval_constant_expression): Likewise.
2929
2930 2016-04-06 Patrick Palka <ppalka@gcc.gnu.org>
2931
2932 PR c/70436
2933 * cp-tree.h (FOR_EACH_CLONE): Restructure macro to avoid
2934 potentially generating a future -Wparentheses warning in its
2935 callers.
2936
2937 2016-04-06 Jason Merrill <jason@redhat.com>
2938
2939 * class.c (check_abi_tags): Fix function template handling.
2940
2941 2016-04-05 Nathan Sidwell <nathan@acm.org>
2942
2943 PR c++/70512
2944 * class.c (fixup_may_alias): New.
2945 (fixup_attribute_variants): Call it.
2946
2947 2016-04-05 Patrick Palka <ppalka@gcc.gnu.org>
2948
2949 PR c++/70452
2950 * constexpr.c (struct fundef_copy): New struct.
2951 (struct fundef_copies_table_t): New struct.
2952 (fundef_copies_table): New static variable.
2953 (maybe_initialize_fundef_copies_table): New static function.
2954 (get_fundef_copy): New static function.
2955 (save_fundef_copy): New static function.
2956 (cxx_eval_call_expression): Use get_fundef_copy, and
2957 save_fundef_copy.
2958 (constexpr_call_table): Add "deletable" GTY marker.
2959
2960 2016-04-05 Patrick Palka <ppalka@gcc.gnu.org>
2961
2962 PR c++/70452
2963 * cp-tree.h (class cache_map): Remove.
2964 * constexpr.c (cv_cache): Change type to
2965 GTY((deletable)) hash_map<tree, tree> *.
2966 (maybe_constant_value): Adjust following the change to cv_cache.
2967 (clear_cv_cache): New static function.
2968 (clear_cv_and_fold_caches): Use it.
2969 * cp-gimplify.c (fold_cache): Change type to
2970 GTY((deletable)) hash_map<tree, tree> *.
2971 (clear_fold_cache): Adjust following the change to fold_cache.
2972 (cp_fold): Likewise.
2973
2974 2016-04-02 Martin Sebor <msebor@redhat.com>
2975
2976 PR c++/67376
2977 PR c++/70170
2978 PR c++/70172
2979 PR c++/70228
2980 * constexpr.c (diag_array_subscript): New function.
2981 (cxx_eval_array_reference): Detect out of bounds array indices.
2982
2983 2016-04-01 Jason Merrill <jason@redhat.com>
2984
2985 PR c++/70449
2986 PR c++/70344
2987 * pt.c (instantiate_decl): A function isn't fully defined if
2988 DECL_INITIAL is error_mark_node.
2989 * constexpr.c (cxx_eval_call_expression): Likewise.
2990
2991 2016-04-01 Jakub Jelinek <jakub@redhat.com>
2992 Marek Polacek <polacek@redhat.com>
2993
2994 PR c++/70488
2995 * init.c (warn_placement_new_too_small): Test whether
2996 DECL_SIZE_UNIT or TYPE_SIZE_UNIT are integers that fit into uhwi.
2997
2998 2016-04-01 Nathan Sidwell <nathan@acm.org>
2999
3000 PR c++/68475
3001 * decl.c (check_redeclaration_exception_specification): Check
3002 regardless of -fno-exceptions.
3003 * typeck2.c (merge_exception_specifiers): Relax assert by checking
3004 flag_exceptions too.
3005
3006 2016-03-31 Nathan Sidwell <nathan@acm.org>
3007
3008 * decl.c (start_preparsed_function): Remove unnecessary bracing.
3009 (finish_destructor_body): Don't emit operator delete here.
3010
3011 2016-03-31 Nathan Sidwell <nathan@acm.org>
3012
3013 PR c++/70393
3014 * constexpr.c (cxx_eval_store_expression): Keep CONSTRUCTOR
3015 elements in field order.
3016
3017 2016-03-31 Marek Polacek <polacek@redhat.com>
3018
3019 PR c/70297
3020 * decl.c (duplicate_decls): Also set TYPE_ALIGN and TYPE_USER_ALIGN.
3021
3022 2016-03-31 Richard Biener <rguenther@suse.de>
3023
3024 PR c++/70430
3025 * typeck.c (cp_build_binary_op): Fix operand order of vector
3026 conditional in truth op handling.
3027
3028 2016-03-29 Jason Merrill <jason@redhat.com>
3029
3030 PR c++/70353
3031 * decl.c (make_rtl_for_nonlocal_decl): Don't defer local statics
3032 in constexpr functions.
3033
3034 2016-03-28 Jason Merrill <jason@redhat.com>
3035
3036 PR c++/70422
3037 PR c++/64266
3038 PR c++/70353
3039 * decl.c, pt.c, constexpr.c: Revert last patch.
3040
3041 2016-03-25 Jason Merrill <jason@redhat.com>
3042 Martin Liška <mliska@suse.cz>
3043
3044 PR c++/64266
3045 PR c++/70353
3046 Core issue 1962
3047 * decl.c (cp_fname_init): Decay the initializer to pointer.
3048 (cp_make_fname_decl): Set DECL_DECLARED_CONSTEXPR_P,
3049 DECL_VALUE_EXPR, DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P.
3050 Don't call cp_finish_decl.
3051 * pt.c (tsubst_expr) [DECL_EXPR]: Set DECL_VALUE_EXPR,
3052 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P. Don't call cp_finish_decl.
3053 * constexpr.c (cxx_eval_constant_expression) [VAR_DECL]:
3054 Handle DECL_VALUE_EXPR.
3055
3056 2016-03-24 Jason Merrill <jason@redhat.com>
3057
3058 PR c++/70386
3059 * constexpr.c (cxx_eval_bare_aggregate): Handle PMFs.
3060
3061 PR c++/70323
3062 * constexpr.c (cxx_eval_call_expression): Don't cache result if
3063 *overflow_p.
3064
3065 2016-03-24 Patrick Palka <ppalka@gcc.gnu.org>
3066
3067 PR c++/62212
3068 * tree.c (build_cplus_array_type): Determine type-dependentess
3069 with uses_template_parms instead of with dependent_type_p.
3070
3071 2016-03-23 Patrick Palka <ppalka@gcc.gnu.org>
3072
3073 PR c++/70347
3074 * typeck.c (process_init_constructor_union): If the initializer
3075 is empty, use the union's NSDMI if it has one.
3076
3077 2016-03-23 Patrick Palka <ppalka@gcc.gnu.org>
3078
3079 PR c++/70332
3080 * pt.c (tsubst_copy) [PARM_DECL]: Handle the use of 'this' in an
3081 NSDMI that's part of an aggregrate initialization.
3082
3083 2016-03-23 Jakub Jelinek <jakub@redhat.com>
3084
3085 PR c++/70001
3086 * constexpr.c (cxx_eval_vec_init_1): Reuse CONSTRUCTOR initializers
3087 for 1..max even for multi-dimensional arrays. Call unshare_expr
3088 on it.
3089
3090 PR c++/70323
3091 * constexpr.c (cxx_eval_constant_expression): Diagnose overflow
3092 on TREE_OVERFLOW constants.
3093
3094 PR c++/70376
3095 * cp-gimplify.c (genericize_omp_for_stmt): Don't walk OMP_FOR_CLAUSES
3096 for OMP_TASKLOOP here.
3097 (cp_genericize_r): Handle OMP_TASKLOOP like OMP_TASK, except do call
3098 genericize_omp_for_stmt instead of cp_walk_tree on OMP_BODY.
3099
3100 2016-03-23 Alexandre Oliva <aoliva@redhat.com>
3101 Jason Merrill <jason@redhat.com>
3102 Jakub Jelinek <jakub@redhat.com>
3103
3104 PR c++/69315
3105 * cp-tree.h (defer_mark_used_calls, deferred_mark_used_calls): Remove.
3106 * decl.c (defer_mark_used_calls, deferred_mark_used_calls): Remove.
3107 (finish_function): Don't set or test them.
3108 * decl2.c (mark_used): Don't handle defer_mark_used_calls.
3109
3110 2016-03-23 Jason Merrill <jason@redhat.com>
3111
3112 PR c++/70344
3113 * constexpr.c (cxx_eval_call_expression): Catch invalid recursion.
3114
3115 2016-03-23 Marek Polacek <polacek@redhat.com>
3116
3117 PR c++/69884
3118 * pt.c (canonicalize_type_argument): Use OPT_Wignored_attributes.
3119
3120 2016-03-22 Ilya Enkovich <enkovich.gnu@gmail.com>
3121
3122 * call.c (build_conditional_expr_1): Always use original
3123 condition type for vector type checks and build.
3124
3125 2016-03-22 Patrick Palka <ppalka@gcc.gnu.org>
3126
3127 PR c++/70096
3128 * pt.c (tsubst_decl): Clear the DECL_MODE of the new decl.
3129
3130 2016-03-22 Patrick Palka <ppalka@gcc.gnu.org>
3131
3132 PR c++/70204
3133 * constexpr.c (non_const_var_error): Check
3134 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P.
3135
3136 2016-03-21 Richard Henderson <rth@redhat.com>
3137
3138 PR c++/70273
3139 * decl.c (notice_forced_label_r): New.
3140 (cp_finish_decl): Use it.
3141
3142 2016-03-21 Jason Merrill <jason@redhat.com>
3143
3144 PR c++/70285
3145 * cp-gimplify.c (cp_fold) [COND_EXPR]: Handle bit-fields.
3146
3147 2016-03-18 Jason Merrill <jason@redhat.com>
3148
3149 PR c++/70139
3150 * constexpr.c (cxx_eval_call_expression): Fix trivial copy.
3151
3152 PR c++/70147
3153 * class.c (vptr_via_virtual_p): New.
3154 (most_primary_binfo): Factor out of build_rtti_vtbl_entries.
3155 * cp-ubsan.c (cp_ubsan_dfs_initialize_vtbl_ptrs): Don't clear
3156 a vptr from any virtual base in a not-in-charge 'structor.
3157
3158 * decl.c (build_clobber_this): Factor out of
3159 start_preparsed_function and begin_destructor_body. Handle
3160 virtual bases better.
3161
3162 * class.c (build_if_in_charge): Split out from build_base_path.
3163 * init.c (expand_virtual_init, expand_default_init): Use it.
3164 * call.c (build_special_member_call): Use it.
3165
3166 2016-03-18 Jakub Jelinek <jakub@redhat.com>
3167
3168 PR c++/70267
3169 * init.c (build_new_1): Complain and return error_mark_node
3170 if alloc_fn is not _Jv_AllocObject function returning pointer.
3171
3172 2016-03-18 Patrick Palka <ppalka@gcc.gnu.org>
3173
3174 PR c++/70205
3175 * search.c (adjust_result_of_qualified_name_lookup): Don't
3176 update the BASELINK_BINFO of DECL if the second call
3177 to lookup_base fails.
3178
3179 2016-03-18 Patrick Palka <ppalka@gcc.gnu.org>
3180
3181 PR c++/70218
3182 * parser.c (cp_parser_lambda_expression): Move call to
3183 pop_deferring_access_checks ahead of the call to
3184 cp_parser_end_tentative_firewall.
3185
3186 2016-03-17 Jakub Jelinek <jakub@redhat.com>
3187
3188 PR c++/70144
3189 * cp-tree.h (magic_varargs_p): Return int instead of bool.
3190 * call.c (magic_varargs_p): Return int instead of bool, return 2 for
3191 Cilk+ reductions, otherwise 1 for magic varargs and 0 for normal
3192 varargs.
3193 (build_over_call): If magic_varargs_p == 2, call reject_gcc_builtin,
3194 if magic_varargs_p == 1, call decay_conversion
3195 instead of mark_type_use. Don't store error_mark_node arguments to
3196 argarray, instead return error_mark_node.
3197
3198 PR c++/70272
3199 * decl.c (begin_destructor_body): Don't insert clobber if
3200 is_empty_class (current_class_type).
3201
3202 2016-03-17 Marek Polacek <polacek@redhat.com>
3203
3204 PR c++/70194
3205 * typeck.c (warn_for_null_address): New function.
3206 (cp_build_binary_op): Call it.
3207
3208 2016-03-16 Jason Merrill <jason@redhat.com>
3209
3210 PR c++/70259
3211 * decl.c (start_preparsed_function): Don't clobber an empty base.
3212
3213 2016-03-16 Jakub Jelinek <jakub@redhat.com>
3214
3215 PR c++/70147
3216 * cp-ubsan.c (cp_ubsan_dfs_initialize_vtbl_ptrs): Conditionalize
3217 BINFO_VIRTUAL_P vtable clearing on current_in_charge_parm.
3218
3219 PR c++/70147
3220 * cp-ubsan.c (cp_ubsan_maybe_initialize_vtbl_ptrs): Temporarily
3221 set in_base_initializer.
3222
3223 2016-03-15 Marek Polacek <polacek@redhat.com>
3224
3225 PR c++/70209
3226 * tree.c (strip_typedefs): Call strip_typedefs again on the
3227 DECL_ORIGINAL_TYPE result.
3228
3229 2016-03-15 Jason Merrill <jason@redhat.com>
3230
3231 PR c++/70095
3232 * pt.c (instantiate_decl): Fix call to variable_template_p.
3233
3234 PR c++/70141
3235 * pt.c (for_each_template_parm_r): Always walk into TYPENAME_TYPE.
3236
3237 2016-03-14 Casey Carter <casey@carter.net>
3238 Jason Merrill <jason@redhat.com>
3239
3240 P0184R0: Generalizing the Range-Based For Loop
3241 * parser.c (cp_convert_range_for): Set the type of __end separately.
3242 (cp_parser_perform_range_for_lookup): Allow different begin/end
3243 types if they are comparable.
3244
3245 2016-03-12 Patrick Palka <ppalka@gcc.gnu.org>
3246
3247 PR c++/70106
3248 * semantics.c (force_paren_expr): Just build a PAREN_EXPR when
3249 processing_template_decl and EXPR is a SCOPE_REF.
3250
3251 2016-03-10 Patrick Palka <ppalka@gcc.gnu.org>
3252 Jakub Jelinek <jakub@redhat.com>
3253
3254 PR c++/70001
3255 * constexpr.c (cxx_eval_vec_init_1): For pre_init case, reuse
3256 return value from cxx_eval_constant_expression from earlier
3257 elements if it is valid constant initializer requiring no
3258 relocations.
3259
3260 2016-03-10 Marek Polacek <polacek@redhat.com>
3261
3262 PR c++/70153
3263 * cp-gimplify.c (cp_fold): Handle UNARY_PLUS_EXPR.
3264
3265 2016-03-09 Cesar Philippidis <cesar@codesourcery.com>
3266
3267 * parser.c (cp_parser_oacc_loop): Update cclauses and clauses
3268 when calling c_finish_omp_clauses.
3269
3270 2016-03-08 Jason Merrill <jason@redhat.com>
3271
3272 * parser.c (cp_parser_diagnose_invalid_type_name): Give helpful
3273 diagnostic for use of "concept".
3274 (cp_parser_requires_clause_opt): And "requires".
3275 (cp_parser_type_parameter, cp_parser_late_return_type_opt)
3276 (cp_parser_explicit_template_declaration): Adjust.
3277 * Make-lang.in (check-c++-all): Add "concepts" to std list.
3278
3279 P0036R0: Unary Folds and Empty Parameter Packs
3280 * pt.c (expand_empty_fold): Remove special cases for *,+,&,|.
3281
3282 2016-03-08 Jakub Jelinek <jakub@redhat.com>
3283
3284 PR c++/70135
3285 * constexpr.c (cxx_eval_loop_expr): Forget saved values of SAVE_EXPRs
3286 even after the last iteration of the loop.
3287
3288 * decl.c (duplicate_decls): Fix spelling - becuase -> because.
3289
3290 2016-03-07 Patrick Palka <ppalka@gcc.gnu.org>
3291
3292 PR c++/66786
3293 * pt.c (get_template_info): Handle PARM_DECL.
3294 (template_class_depth): Check DECL_P instead of
3295 VAR_OR_FUNCTION_DECL_P.
3296
3297 2016-03-05 Jason Merrill <jason@redhat.com>
3298
3299 PR c++/67364
3300 * constexpr.c (cxx_eval_store_expression): Replace
3301 CONSTRUCTOR_ELTS in nested CONSTRUCTORs, too.
3302
3303 2016-03-05 Patrick Palka <ppalka@gcc.gnu.org>
3304
3305 PR c++/66786
3306 * pt.c (template_class_depth): Given a lambda type, iterate
3307 into its LAMBDA_TYPE_EXTRA_SCOPE field instead of its
3308 TYPE_CONTEXT. Given a VAR_DECL, iterate into its
3309 CP_DECL_CONTEXT.
3310
3311 2016-03-04 Jason Merrill <jason@redhat.com>
3312
3313 PR c++/69203
3314 * cp-tree.h (COND_EXPR_IS_VEC_DELETE): New.
3315 * init.c (build_vec_delete_1): Set it.
3316 * constexpr.c (potential_constant_expression_1) [COND_EXPR]: Check it.
3317
3318 2016-03-04 Jakub Jelinek <jakub@redhat.com>
3319
3320 * decl.c (start_preparsed_function): Don't emit start clobber at the
3321 start of constructor clones.
3322
3323 PR c++/70035
3324 * cp-tree.h (cp_ubsan_maybe_initialize_vtbl_ptrs): New prototype.
3325 * decl.c (start_preparsed_function): Call
3326 cp_ubsan_maybe_initialize_vtbl_ptrs if needed.
3327 * cp-ubsan.c (cp_ubsan_dfs_initialize_vtbl_ptrs,
3328 cp_ubsan_maybe_initialize_vtbl_ptrs): New functions.
3329
3330 2016-03-04 Jason Merrill <jason@redhat.com>
3331
3332 PR c++/67364
3333 * constexpr.c (cxx_eval_component_reference): Further tweak.
3334
3335 * constexpr.c (struct constexpr_ctx): Add save_exprs field.
3336 (cxx_eval_loop_expr): Discard SAVE_EXPR values before looping.
3337 (cxx_eval_constant_expression) [SAVE_EXPR]: Add it to the set.
3338 (cxx_eval_outermost_constant_expr, is_sub_constant_expr): Initialize.
3339
3340 PR c++/70067
3341 * tree.c (strip_typedefs): Handle TYPENAME_TYPE lookup finding the
3342 same type.
3343
3344 2016-03-03 Jason Merrill <jason@redhat.com>
3345
3346 * method.c (synthesized_method_walk): operator= can also be constexpr.
3347
3348 * pt.c (tsubst_copy_and_build) [LAMBDA_EXPR]: Get
3349 LAMBDA_EXPR_RETURN_TYPE from the instantiated closure.
3350
3351 PR c++/67164
3352 * pt.c (copy_template_args): New.
3353 (tsubst_pack_expansion): Use it.
3354
3355 * call.c (build_aggr_conv): Use get_nsdmi.
3356
3357 PR c++/51406
3358 * typeck.c (build_static_cast_1): Avoid folding back to lvalue.
3359
3360 PR c++/67364
3361 * constexpr.c (cxx_eval_component_reference): Just return an empty
3362 CONSTRUCTOR for an empty class.
3363
3364 2016-03-01 Jason Merrill <jason@redhat.com>
3365
3366 PR c++/70036
3367 * parser.c (cp_parser_requires_clause): Call
3368 check_for_bare_parameter_packs.
3369
3370 PR c++/51489
3371 * constexpr.c (cxx_eval_binary_expression): Don't VERIFY_CONSTANT
3372 the operands.
3373
3374 PR c++/69995
3375 * constexpr.c (cxx_eval_call_expression): Unshare arg.
3376 (cxx_eval_constant_expression) [DECL_EXPR]: Unshare init.
3377 [TARGET_EXPR]: Unshare init.
3378
3379 2016-03-01 Patrick Palka <ppalka@gcc.gnu.org>
3380
3381 PR c++/68948
3382 PR c++/69961
3383 * pt.c (tsubst_baselink): Reinstate the check for an invalid
3384 constructor call.
3385
3386 2016-02-28 Jason Merrill <jason@redhat.com>
3387
3388 PR c++/69995
3389 * constexpr.c (cxx_eval_store_expression): Unshare init.
3390
3391 2016-02-26 Jason Merrill <jason@redhat.com>
3392
3393 PR c++/69958
3394 * pt.c (make_argument_pack): New.
3395 (tsubst_copy) [SIZEOF_EXPR]: Handle partial expansion.
3396 (tsubst_copy_and_build): Likewise.
3397
3398 2016-02-25 Jason Merrill <jason@redhat.com>
3399
3400 PR c++/69889
3401 * cp-tree.h (AGGR_INIT_FROM_THUNK_P): New.
3402 * tree.c (build_aggr_init_expr): Set it.
3403 * semantics.c (simplify_aggr_init_expr): Check it.
3404 * cp-gimplify.c (cp_genericize_r): Don't walk into
3405 a call/aggr_init from a thunk.
3406
3407 PR c++/69842
3408 * method.c (forward_parm): Handle parameter packs.
3409 * lambda.c (maybe_add_lambda_conv_op): Use it for them.
3410
3411 PR c++/67364
3412 * constexpr.c (cxx_eval_component_reference): Don't complain about
3413 unevaluated empty classes.
3414
3415 PR c++/68049
3416 * tree.c (strip_typedefs): Use DECL_ORIGINAL_TYPE.
3417
3418 2016-02-25 Patrick Palka <ppalka@gcc.gnu.org>
3419
3420 PR c++/69736
3421 * cp-tree.h (REF_PARENTHESIZED_P): Adjust documentation.
3422 (maybe_undo_parenthesized_ref): Declare.
3423 * semantics.c (maybe_undo_parenthesized_ref): Split out from
3424 check_return_expr.
3425 (finish_call_expr): Use it.
3426 * typeck.c (check_return_expr): Use it.
3427 * pt.c (tsubst_copy_and_build) [INDIRECT_REF]: Retain the
3428 REF_PARENTHESIZED_P flag.
3429
3430 2016-02-24 Jakub Jelinek <jakub@redhat.com>
3431
3432 PR c++/69922
3433 * class.c (build_base_path): Set TREE_NO_WARNING on the null_test.
3434 Avoid folding it.
3435 * init.c (build_vec_delete_1, build_delete): Don't fold the non-NULL
3436 tests.
3437 * cp-gimplify.c (cp_fold): For TREE_NO_WARNING comparisons with NULL,
3438 unless they are folded into INTEGER_CST, error_mark_node or some
3439 comparison with NULL, avoid folding them and use either the original
3440 comparison or non-folded comparison of folded arguments.
3441 * cp-ubsan.c (cp_ubsan_instrument_vptr): Set TREE_NO_WARNING on the
3442 comparison, don't fold the comparison right away.
3443
3444 2016-02-24 Jason Merrill <jason@redhat.com>
3445
3446 PR c++/69323
3447 * friend.c (make_friend_class): Likewise.
3448 * decl.c (lookup_and_check_tag): Diagnose invalid dependent friend.
3449
3450 2016-02-24 Jason Merrill <jason@redhat.com>
3451
3452 PR c++/69323
3453 * pt.c (instantiate_class_template_1): Set
3454 processing_template_decl before substituting friend_type.
3455
3456 016-02-24 Martin Sebor <msebor@redhat.com>
3457
3458 PR c++/69912
3459 * tree.c (build_ctor_subob_ref): Compare types' main variants
3460 instead of the types as they are.
3461
3462 2016-02-24 Jason Merrill <jason@redhat.com>
3463
3464 * decl.c (start_preparsed_function): Condition ctor clobber on
3465 flag_lifetime_dse > 1.
3466
3467 * cp-gimplify.c (cp_fold): Don't fold constexpr calls if -fno-inline.
3468
3469 2016-02-19 Jason Merrill <jason@redhat.com>
3470
3471 PR c++/69743
3472 * call.c (remaining_arguments): No longer static.
3473 * cp-tree.h: Declare it.
3474 * pt.c (more_specialized_fn): Use it.
3475
3476 2016-02-19 Jakub Jelinek <jakub@redhat.com>
3477 Bernd Edlinger <bernd.edlinger@hotmail.de>
3478
3479 * Make-lang.in: Invoke gperf with -L C++.
3480 * cfns.gperf: Remove prototypes for hash and libc_name_p
3481 inlines.
3482 * cfns.h: Regenerated.
3483 * except.c (nothrow_libfn_p): Adjust.
3484
3485 2016-02-19 Jakub Jelinek <jakub@redhat.com>
3486
3487 PR c++/69850
3488 * rtti.c (ifnonnull): Set TREE_NO_WARNING on the condition, use
3489 NE_EXPR instead of EQ_EXPR and swap last two arguments on COND_EXPR.
3490
3491 2016-02-19 Patrick Palka <ppalka@gcc.gnu.org>
3492
3493 PR c++/68948
3494 * pt.c (tsubst_baselink): Don't diagnose an invalid constructor
3495 call here.
3496 * semantics.c (finish_call_expr): Don't assume a constructor
3497 call is dependent if only the "this" pointer is dependent. When
3498 building a constructor call, always use a dummy object.
3499
3500 2016-02-19 Jakub Jelinek <jakub@redhat.com>
3501
3502 PR c++/69850
3503 * init.c (build_vec_delete_1): Set TREE_NO_WARNING on the NE_EXPR
3504 condition.
3505 * cp-gimplify.c (cp_fold): Propagate TREE_NO_WARNING from binary
3506 operators if folding preserved the binop, just with different
3507 arguments.
3508
3509 PR c++/67767
3510 * parser.c (cp_parser_std_attribute_spec_seq): Don't assume
3511 attr_spec is always single element chain, chain all the attributes
3512 properly together in the right order.
3513
3514 2016-02-18 Jason Merrill <jason@redhat.com>
3515
3516 * mangle.c (maybe_check_abi_tags): Add for_decl parm. Call
3517 mangle_decl.
3518 (mangle_decl): Call maybe_check_abi_tags for function scope.
3519 (mangle_guard_variable): Call maybe_check_abi_tags here.
3520 (write_guarded_var_name): Not here.
3521
3522 2016-02-17 Jason Merrill <jason@redhat.com>
3523
3524 PR c++/65985
3525 * constexpr.c (build_constexpr_constructor_member_initializers):
3526 Handle an additional STATEMENT_LIST.
3527
3528 PR c++/68585
3529 * constexpr.c (cxx_eval_bare_aggregate): Fix 'changed' detection.
3530
3531 PR c++/68679
3532 * decl2.c (reset_type_linkage_2): Look through member templates.
3533
3534 2016-02-17 Jakub Jelinek <jakub@redhat.com>
3535
3536 PR c++/69850
3537 * init.c (build_delete): Set TREE_NO_WARNING on ifexp.
3538
3539 2016-02-17 Jason Merrill <jason@redhat.com>
3540
3541 PR c++/69842
3542 * method.c (forward_parm): Split out from...
3543 (add_one_base_init): ...here.
3544 * lambda.c (maybe_add_lambda_conv_op): Use it.
3545
3546 2016-02-16 Jason Merrill <jason@redhat.com>
3547
3548 PR c++/10200
3549 PR c++/69753
3550 * call.c, cp-tree.h, name-lookup.c, pt.c, search.c, semantics.c,
3551 tree.c, typeck2.c: Revert earlier changes.
3552 * parser.c (cp_parser_lookup_name): Ignore namespace-scope
3553 non-type templates after -> or .
3554
3555 2016-02-16 Jakub Jelinek <jakub@redhat.com>
3556
3557 PR c/69835
3558 * typeck.c (cp_build_binary_op): Revert 2015-09-09 change.
3559
3560 2016-02-16 Jason Merrill <jason@redhat.com>
3561
3562 PR c++/69657
3563 * name-lookup.c (lookup_qualified_name): Add find_hidden parm.
3564 (set_decl_namespace): Pass it. Complain about finding a hidden friend.
3565 * name-lookup.h: Adjust.
3566
3567 2016-02-16 James Norris <jnorris@codesourcery.com>
3568
3569 * parser.c (cp_parser_oacc_data_clause_deviceptr): Remove checking.
3570 * semantics.c (finish_omp_clauses): Add deviceptr checking.
3571
3572 2016-02-15 Jakub Jelinek <jakub@redhat.com>
3573
3574 PR c++/69658
3575 * init.c (expand_default_init): Only call reshape_init
3576 in the direct-initialization from an initializer list case.
3577
3578 2016-02-15 Jason Merrill <jason@redhat.com>
3579
3580 PR c++/69753
3581 * semantics.c (finish_call_expr): Implicit 'this' does not make
3582 the call dependent.
3583 * search.c (any_dependent_bases_p): Split out...
3584 * name-lookup.c (do_class_using_decl): ...from here.
3585 * call.c (build_new_method_call_1): Don't complain about missing object
3586 if there are dependent bases. Tweak error.
3587 * tree.c (non_static_member_function_p): Remove.
3588 * pt.c (type_dependent_expression_p): A member template of a
3589 dependent type is dependent.
3590 * cp-tree.h: Adjust.
3591
3592 PR c++/68890
3593 * constexpr.c (verify_ctor_sanity): Remove CONSTRUCTOR_NELTS check.
3594
3595 2016-02-12 Patrick Palka <ppalka@gcc.gnu.org>
3596
3597 PR c++/69098
3598 * pt.c (lookup_and_finish_template_variable): New function,
3599 extracted from ...
3600 (tsubst_copy_and_build) [TEMPLATE_ID_EXPR]: ... here. Use it.
3601 (tsubst_qualified_id): Consider that EXPR might be a variable
3602 template.
3603 * typeck.c (check_template_keyword): Don't emit an error
3604 if DECL is a variable template.
3605
3606 2016-02-12 Jakub Jelinek <jakub@redhat.com>
3607
3608 * error.c: Spelling fixes - behaviour -> behavior and
3609 neighbour -> neighbor.
3610 * decl.c: Likewise.
3611 * typeck.c (cp_build_binary_op): Fix up behavior spelling in
3612 diagnostics.
3613 * init.c (build_delete): Likewise.
3614
3615 2016-02-11 Jakub Jelinek <jakub@redhat.com>
3616
3617 PR c/69768
3618 * typeck.c (cp_build_binary_op): cp_fully_fold integer_zerop
3619 arguments for -Waddress warning. Fix up formatting.
3620
3621 2016-02-11 Paolo Carlini <paolo.carlini@oracle.com>
3622
3623 PR c++/68726
3624 * pt.c (lookup_template_class_1): Check tsubst return value for
3625 error_mark_node.
3626
3627 2016-02-10 Jason Merrill <jason@redhat.com>
3628
3629 PR c++/68926
3630 * pt.c (resolve_nondeduced_context): Add complain parm.
3631 (do_auto_deduction): Pass it.
3632 * cvt.c (convert_to_void): Likewise.
3633 * decl.c (cp_finish_decl): Likewise.
3634 * init.c (build_new): Likewise.
3635 * rtti.c (get_tinfo_decl_dynamic): Likewise.
3636 * semantics.c (finish_decltype_type): Likewise.
3637 * typeck.c (decay_conversion): Likewise.
3638 * cp-tree.h: Adjust declaration.
3639 * call.c (standard_conversion): Add complain parm, pass it along.
3640 (implicit_conversion): Pass it.
3641
3642 PR c++/69657
3643 * name-lookup.c (ambiguous_decl): Call remove_hidden_names.
3644 (lookup_name_real_1): Likewise.
3645 (remove_hidden_names): Handle non-functions too.
3646
3647 PR c++/10200
3648 * parser.c (cp_parser_lookup_name): When looking for a template
3649 after . or ->, only consider class templates.
3650 (cp_parser_postfix_dot_deref_expression): Handle the current
3651 instantiation. Remember a dependent object expression.
3652 * typeck2.c (build_x_arrow): Handle the current instantiation.
3653
3654 * ptree.c (debug_tree): Implement for cp_expr.
3655
3656 2016-02-08 Patrick Palka <ppalka@gcc.gnu.org>
3657
3658 PR c++/69139
3659 * parser.c (cp_parser_simple_type_specifier): Make the check
3660 for disambiguating between an 'auto' placeholder and an implicit
3661 template parameter more robust.
3662
3663 2016-02-08 Patrick Palka <ppalka@gcc.gnu.org>
3664
3665 PR c++/69283
3666 PR c++/67835
3667 * decl2.c (mark_used): When given a TEMPLATE_DECL, return after
3668 setting its TREE_USED flag.
3669
3670 2016-02-08 Jason Merrill <jason@redhat.com>
3671
3672 PR c++/69657
3673 * name-lookup.c (do_nonmember_using_decl): Leave anticipated
3674 built-ins alone.
3675
3676 2016-02-08 Jakub Jelinek <jakub@redhat.com>
3677
3678 PR c++/59627
3679 * parser.c (cp_parser_omp_declare_reduction): Set assembler name
3680 of the DECL_OMP_DECLARE_REDUCTION_P decls.
3681
3682 2016-02-08 Marek Polacek <polacek@redhat.com>
3683
3684 PR c++/69688
3685 * constexpr.c (clear_cv_and_fold_caches): Renamed from clear_cv_cache.
3686 Call clear_fold_cache.
3687 * cp-tree.h: Adjust declaration.
3688 * decl.c (finish_enum_value_list): Call clear_cv_and_fold_caches
3689 rather than clear_cv_cache and clear_fold_cache.
3690 * typeck2.c (store_init_value): Call clear_cv_and_fold_caches.
3691
3692 2016-02-08 Jason Merrill <jason@redhat.com>
3693
3694 * cp-tree.h (CONV_FOLD, CONV_BACKEND_CONVERT): New.
3695 * cvt.c (convert): Pass CONV_BACKEND_CONVERT.
3696 (ocp_convert): Use *_maybe_fold.
3697 (cp_convert_to_pointer): Add dofold parameter.
3698 * cp-gimplify.c (cp_fold) [CONVERT_EXPR]: Call convert.
3699
3700 2016-02-05 Martin Sebor <msebor@redhat.com>
3701
3702 PR c++/69662
3703 * init.c (find_field_init): New function.
3704 (warn_placement_new_too_small): Call it. Handle one-element arrays
3705 at ends of structures special.
3706
3707 2016-02-05 Jason Merrill <jason@redhat.com>
3708
3709 PR c++/68948
3710 * semantics.c (finish_expr_stmt): If expr is error_mark_node,
3711 make sure we've seen_error().
3712
3713 2016-02-05 Patrick Palka <ppalka@gcc.gnu.org>
3714
3715 PR c++/68948
3716 * pt.c (tsubst_baselink): Diagnose an invalid constructor call
3717 if lookup_fnfields returns NULL_TREE and the name being looked
3718 up has the form A::A.
3719
3720 2016-02-04 Patrick Palka <ppalka@gcc.gnu.org>
3721
3722 * constexpr.c (cxx_eval_binary_expression): Fold equality
3723 comparisons involving PTRMEM_CSTs.
3724
3725 2016-02-04 Jakub Jelinek <jakub@redhat.com>
3726
3727 * class.c (find_flexarrays): Don't declare dom variable.
3728 (diagnose_flexarray): Likewise.
3729
3730 2016-02-02 Martain Sebor <msebor@redhat.com>
3731
3732 PR c++/69251
3733 PR c++/69253
3734 PR c++/69290
3735 PR c++/69277
3736 PR c++/69349
3737 * class.c (walk_subobject_offsets): Avoid testing the upper bound
3738 of a flexible array member for equality to null.
3739 (find_flexarrays): Remove spurious whitespace introduced in r231665.
3740 (diagnose_flexarrays): Avoid checking the upper bound of arrays.
3741 (check_flexarrays): Same.
3742 * decl.c (compute_array_index_type): Avoid special case for flexible
3743 array members.
3744 (grokdeclarator): Avoid calling compute_array_index_type for flexible
3745 array members.
3746 * error.c (dump_type_suffix): Revert changes introduced in r231665
3747 and rendered unnecessary by the changes above.
3748 * pt.c (tsubst): Same.
3749 * tree.c (build_ctor_subob_ref): Handle flexible array members.
3750 * typeck2.c (digest_init_r): Revert changes introduced in r231665.
3751 (process_init_constructor_array): Same.
3752 (process_init_constructor_record): Same.
3753
3754 2016-02-03 Patrick Palka <ppalka@gcc.gnu.org>
3755
3756 PR c++/69056
3757 * pt.c (try_one_overload): Handle comparing argument packs so
3758 that there is no conflict if we deduced more arguments of an
3759 argument pack than were explicitly specified.
3760
3761 2016-01-31 Jakub Jelinek <jakub@redhat.com>
3762 Jason Merrill <jason@redhat.com>
3763
3764 PR c++/68763
3765 * tree.c (strip_typedefs) [FUNCTION_TYPE]: Avoid building a new
3766 function type if nothing is changing.
3767
3768 2016-01-31 Jason Merrill <jason@redhat.com>
3769
3770 PR c++/69009
3771 * pt.c (partial_specialization_p, impartial_args): New.
3772 (instantiate_decl): Call impartial_args.
3773
3774 * mangle.c (maybe_check_abi_tags): New.
3775 (write_guarded_var_name): Call it.
3776 (mangle_ref_init_variable): Call check_abi_tags.
3777
3778 * pt.c (lookup_template_class_1): Don't share TYPE_ATTRIBUTES
3779 between template and instantiation.
3780
3781 2016-01-29 Jakub Jelinek <jakub@redhat.com>
3782
3783 PR debug/66869
3784 * decl.c (wrapup_globals_for_namespace): Warn about unused static
3785 function declarations.
3786
3787 2016-01-29 Marek Polacek <polacek@redhat.com>
3788
3789 PR c++/69509
3790 PR c++/69516
3791 * constexpr.c (cxx_eval_array_reference): Give the "array subscript
3792 out of bound" error earlier.
3793 * init.c (build_vec_init): Change NE_EXPR into GT_EXPR. Update the
3794 commentary.
3795
3796 2016-01-29 Patrick Palka <ppalka@gcc.gnu.org>
3797
3798 * name-lookup.c (begin_scope): After reusing a cp_binding_level
3799 structure, update free_binding_level before the structure's
3800 level_chain field gets cleared, not after.
3801
3802 2016-01-28 Jason Merrill <jason@redhat.com>
3803
3804 PR c++/67407
3805 * search.c (dfs_walk_once, dfs_walk_once_r)
3806 (dfs_walk_once_accessible_r, dfs_walk_once_accessible): Use
3807 hash_set instead of BINFO_MARKED.
3808 (dfs_unmark_r): Remove.
3809
3810 2016-01-28 Patrick Palka <ppalka@gcc.gnu.org>
3811
3812 PR c++/24208
3813 * parser.c (LEXER_DEBUGGING_ENABLED_P): New macro.
3814 (cp_lexer_debugging_p): Use it.
3815 (cp_lexer_start_debugging): Likewise.
3816 (cp_lexer_stop_debugging): Likewise.
3817
3818 2016-01-27 Marek Polacek <polacek@redhat.com>
3819
3820 PR c/68062
3821 * typeck.c (cp_build_binary_op): Promote operand to unsigned, if
3822 needed. Add -Wsign-compare warning.
3823
3824 2016-01-27 Ryan Burn <contact@rnburn.com>
3825
3826 PR cilkplus/69267
3827 * cp-gimplify.c (cilk_cp_gimplify_call_params_in_spawned_fn): Removed
3828 superfluous post_p argument in call to
3829 cilk_gimplify_call_params_in_spawned_fn.
3830
3831 2016-01-27 Marek Polacek <polacek@redhat.com>
3832
3833 PR c++/69379
3834 * constexpr.c (cxx_eval_constant_expression): Handle PTRMEM_CSTs
3835 wrapped in NOP_EXPRs.
3836
3837 2016-01-27 Martin Sebor <msebor@redhat.com>
3838
3839 PR c++/69317
3840 * mangle.c (mangle_decl): Reference the correct (saved) version
3841 of the ABI in -Wabi diagnostics.
3842
3843 2016-01-27 Marek Polacek <polacek@redhat.com>
3844
3845 PR c++/69496
3846 * constexpr.c (cxx_eval_array_reference): Evaluate the number of
3847 elements of the array.
3848
3849 2016-01-26 Jason Merrill <jason@redhat.com>
3850
3851 PR c++/68949
3852 * constexpr.c (register_constexpr_fundef): Keep the un-massaged body.
3853 (cxx_eval_call_expression): Don't look through clones.
3854 * optimize.c (maybe_clone_body): Clear DECL_SAVED_TREE of the alias.
3855 * semantics.c (expand_or_defer_fn_1): Keep DECL_SAVED_TREE of
3856 maybe-in-charge *tor.
3857
3858 2016-01-26 Jason Merrill <jason@redhat.com>
3859
3860 PR c++/68782
3861 * constexpr.c (cxx_eval_bare_aggregate): Update TREE_CONSTANT
3862 and TREE_SIDE_EFFECTS.
3863 (cxx_eval_constant_expression) [CONSTRUCTOR]: Call
3864 verify_constructor_flags.
3865
3866 2016-01-26 Jakub Jelinek <jakub@redhat.com>
3867
3868 PR c++/68357
3869 * cp-gimplify.c (cp_fold): If some operand folds to error_mark_node,
3870 return error_mark_node instead of building trees with error_mark_node
3871 operands.
3872
3873 2016-01-26 David Malcolm <dmalcolm@redhat.com>
3874
3875 PR other/69006
3876 * error.c (print_instantiation_partial_context_line): Add missing
3877 newlines from output for the t == NULL case.
3878 (print_instantiation_partial_context): Remove call to pp_newline.
3879
3880 2016-01-24 Patrick Palka <ppalka@gcc.gnu.org>
3881
3882 Revert:
3883 2016-01-18 Patrick Palka <ppalka@gcc.gnu.org>
3884
3885 PR c++/11858
3886 PR c++/24663
3887 PR c++/24664
3888 * decl.c (grokdeclarator): Don't decay array parameter type to
3889 a pointer type if it's dependent.
3890 (grokparms): Invoke strip_top_quals instead of directly invoking
3891 cp_build_qualified_type.
3892 * pt.c (decay_dependent_array_parm_type): New static function.
3893 (type_unification_real): Call decay_dependent_array_parm_type
3894 to decay a dependent array parameter type to its corresponding
3895 pointer type before unification.
3896 (more_specialized_fn): Likewise.
3897 (get_bindings): Likewise.
3898 * tree.c (cp_build_qualified_type): Trivial typofix in
3899 documentation.
3900
3901 2016-01-23 Martin Sebor <msebor@redhat.com>
3902
3903 PR c++/58109
3904 PR c++/69022
3905 * decl2.c (is_late_template_attribute): Handle dependent argument
3906 to attribute align and attribute vector_size.
3907
3908 2016-01-21 Jason Merrill <jason@redhat.com>
3909
3910 PR c++/69392
3911 * lambda.c (lambda_capture_field_type): Handle 'this' specially
3912 for init-capture, too.
3913
3914 PR c++/65687
3915 * decl.c (type_is_deprecated): Don't look into a typedef.
3916
3917 PR c++/40751
3918 PR c++/64987
3919 * decl.c (copy_type_enum): Respect TYPE_USER_ALIGN.
3920
3921 PR c++/43407
3922 * decl.c (start_enum): Add attributes parameter.
3923 * parser.c (cp_parser_enum_specifier): Pass it.
3924 * pt.c (lookup_template_class_1): Pass it.
3925 * cp-tree.h: Adjust.
3926
3927 2016-01-19 Jason Merrill <jason@redhat.com>
3928
3929 PR c++/59759
3930 * pt.c (convert_template_argument): Handle VAR_DECL properly.
3931
3932 2016-01-19 Marek Polacek <polacek@redhat.com>
3933
3934 PR c++/68586
3935 * constexpr.c (clear_cv_cache): New.
3936 * cp-gimplify.c (clear_fold_cache): New.
3937 * cp-tree.h (clear_cv_cache, clear_fold_cache): Declare.
3938 * decl.c (finish_enum_value_list): Call them.
3939
3940 PR c++/68965
3941 * pt.c (tsubst_copy): Mark elements in expanded vector as used.
3942
3943 2016-01-18 Patrick Palka <ppalka@gcc.gnu.org>
3944
3945 PR c++/11858
3946 PR c++/24663
3947 PR c++/24664
3948 * decl.c (grokdeclarator): Don't decay array parameter type to
3949 a pointer type if it's dependent.
3950 (grokparms): Invoke strip_top_quals instead of directly invoking
3951 cp_build_qualified_type.
3952 * pt.c (decay_dependent_array_parm_type): New static function.
3953 (type_unification_real): Call decay_dependent_array_parm_type
3954 to decay a dependent array parameter type to its corresponding
3955 pointer type before unification.
3956 (more_specialized_fn): Likewise.
3957 (get_bindings): Likewise.
3958 * tree.c (cp_build_qualified_type): Trivial typofix in
3959 documentation.
3960
3961 2016-01-18 Jason Merrill <jason@redhat.com>
3962
3963 * cp-gimplify.c (cp_fold) [CONSTRUCTOR]: Don't clobber the input.
3964
3965 * cp-gimplify.c (cp_fold): Remove unnecessary special cases.
3966
3967 PR c++/68767
3968 * cp-gimplify.c (cp_fold) [COND_EXPR]: Simplify. Do fold COND_EXPR.
3969 (contains_label_1, contains_label_p): Remove.
3970
3971 2016-01-16 Patrick Palka <ppalka@gcc.gnu.org>
3972
3973 PR c++/69091
3974 * pt.c (type_dependent_expression_p): For a function template
3975 specialization, a type is dependent iff any of its template
3976 arguments are.
3977
3978 2016-01-16 Patrick Palka <ppalka@gcc.gnu.org>
3979
3980 * cp-array-notation.c (cp_expand_cond_array_notations): Return
3981 error_mark_node only if find_rank failed, not if it was
3982 successful.
3983
3984 2016-01-16 Patrick Palka <ppalka@gcc.gnu.org>
3985
3986 PR c++/68936
3987 * tree.c (build_min_non_dep_call_vec): Don't retain the
3988 KOENIG_LOOKUP_P flag of the non-dependent expression that's
3989 been built.
3990 (build_min_non_dep_op_overload): Instead, do it here.
3991
3992 2016-01-15 Jakub Jelinek <jakub@redhat.com>
3993
3994 PR bootstrap/68271
3995 * parser.h (cp_token): Remove pragma_kind field. Add comment
3996 with number of unused bits.
3997 * parser.c (eof_token): Remove pragma_kind field initializer.
3998 (cp_lexer_get_preprocessor_token): Don't set pragma_kind
3999 field, don't clear CPP_PRAGMA u.value.
4000 (cp_parser_pragma_kind): New function.
4001 (cp_parser_omp_sections_scope, cp_parser_oacc_kernels_parallel,
4002 cp_parser_omp_construct, cp_parser_initial_pragma,
4003 cp_parser_pragma): Use cp_parser_pragma_kind instead of accessing
4004 pragma_kind field.
4005
4006 2016-01-15 Jason Merrill <jason@redhat.com>
4007
4008 PR c++/68847
4009 * call.c (build_cxx_call): Use fold_non_dependent_expr.
4010
4011 * typeck2.c (cxx_incomplete_type_diagnostic): Use the location of
4012 value.
4013
4014 PR c++/69257
4015 * typeck.c (decay_conversion): Don't call mark_rvalue_use for
4016 array/function-to-pointer conversion. Call
4017 complete_type_or_maybe_complain for lvalue-to-rvalue conversion.
4018 * call.c (convert_like_real): Print call context if
4019 decay_conversion errors.
4020
4021 2016-01-14 Tom de Vries <tom@codesourcery.com>
4022
4023 PR tree-optimization/68773
4024 * parser.c (cp_parser_oacc_declare, cp_parser_omp_declare_target): Don't
4025 set force_output.
4026
4027 2016-01-14 Jason Merrill <jason@redhat.com>
4028
4029 PR c++/69261
4030 * constexpr.c (find_array_ctor_elt): Handle splitting RANGE_EXPR.
4031
4032 2016-01-12 Marek Polacek <polacek@redhat.com>
4033
4034 PR c++/68979
4035 * constexpr.c (cxx_eval_check_shift_p): Use permerror rather than
4036 error_at and adjust the return value.
4037
4038 2016-01-12 Jakub Jelinek <jakub@redhat.com>
4039
4040 PR objc++/68511
4041 PR c++/69213
4042 * cp-gimplify.c (cp_gimplify_expr) <case INIT_EXPR>: Don't return
4043 GS_ERROR whenever seen_error (), only if *expr_p contains
4044 cilk spawn stmt, but cilk_detect_spawn_and_unwrap failed.
4045
4046 PR c++/66808
4047 PR c++/69000
4048 * pt.c (tsubst_decl): If not local_p, clear DECL_TEMPLATE_INFO.
4049
4050 2016-01-11 Jason Merrill <jason@redhat.com>
4051
4052 PR c++/69131
4053 * method.c (walk_field_subobs): Add dtor_from_ctor parm.
4054 (process_subob_fn): Likewise. Don't consider triviality if true.
4055 (synthesize_method_walk): Pass it.
4056
4057 2016-01-11 David Malcolm <dmalcolm@redhat.com>
4058
4059 PR c++/68795
4060 * parser.c (cp_parser_postfix_expression): Initialize
4061 close_paren_loc to UNKNOWN_LOCATION; only use it if
4062 it has been written to by
4063 cp_parser_parenthesized_expression_list.
4064 (cp_parser_parenthesized_expression_list): Document the behavior
4065 with respect to the CLOSE_PAREN_LOC param.
4066
4067 2016-01-11 Jakub Jelinek <jakub@redhat.com>
4068
4069 PR c++/69211
4070 * cp-gimplify.c (cp_fold): If COMPOUND_EXPR or MODIFY_EXPR
4071 folded operands have side-effects, but folding changed any of them,
4072 build a new tree with the folded operands instead of returning the
4073 unfolded tree.
4074
4075 2016-01-09 Marek Polacek <polacek@redhat.com>
4076
4077 PR c++/69113
4078 * decl2.c (comdat_linkage): Only set DECL_COMDAT if TREE_PUBLIC is set.
4079
4080 2016-01-09 Jakub Jelinek <jakub@redhat.com>
4081
4082 PR c++/69164
4083 * class.c (layout_class_type): Use copy_node to copy FIELD_DECLs.
4084
4085 2016-01-08 Jason Merrill <jason@redhat.com>
4086
4087 PR c++/69158
4088 * constexpr.c (cxx_fold_indirect_ref): Handle array type differing
4089 in completion.
4090
4091 2016-01-08 Marek Polacek <polacek@redhat.com>
4092
4093 PR c++/68449
4094 * constexpr.c (cxx_eval_constant_expression): Handle NULL initializer.
4095
4096 2016-01-08 Jason Merrill <jason@redhat.com>
4097
4098 * constexpr.c (cxx_eval_call_expression): Remove convert_to_void
4099 workaround.
4100
4101 PR c++/68983
4102 PR c++/67557
4103 * cvt.c (convert_to_void): Don't strip a TARGET_EXPR of
4104 TREE_ADDRESSABLE type.
4105
4106 PR c++/68983
4107 PR c++/67557
4108 * call.c (unsafe_copy_elision_p): Look through COMPOUND_EXPR.
4109
4110 2016-01-05 Nathan Sidwell <nathan@acm.org>
4111
4112 PR c++/58583
4113 * pt.c (build_non_dependent_expr): Don't try a checking fold when
4114 parsing an nsdmi.
4115
4116 2016-01-04 Jakub Jelinek <jakub@redhat.com>
4117
4118 Update copyright years.
4119 \f
4120 Copyright (C) 2016 Free Software Foundation, Inc.
4121
4122 Copying and distribution of this file, with or without modification,
4123 are permitted in any medium without royalty provided the copyright
4124 notice and this notice are preserved.