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