re PR c/7652 (-Wswitch-break : Warn if a switch case falls through)
[gcc.git] / gcc / cp / ChangeLog
1 2016-08-12 Marek Polacek <polacek@redhat.com>
2
3 PR c/7652
4 * call.c (add_builtin_candidate): Add FALLTHRU.
5 (build_integral_nontype_arg_conv): Adjust fall through comment.
6 (build_new_op_1): Add FALLTHRU.
7 (convert_like_real): Adjust fall through comment.
8 * class.c (fixed_type_or_null): Likewise.
9 * constexpr.c (cxx_eval_constant_expression): Likewise.
10 (potential_constant_expression_1): Likewise. Add FALLTHRU.
11 * cp-gimplify.c (cp_gimplify_expr): Adjust fall through comment.
12 (cp_fold): Add FALLTHRU.
13 * cvt.c (build_expr_type_conversion): Adjust fall through comment.
14 * cxx-pretty-print.c (pp_cxx_unqualified_id): Add FALLTHRU.
15 (pp_cxx_qualified_id): Likewise.
16 (cxx_pretty_printer::constant): Adjust fall through comment.
17 (cxx_pretty_printer::primary_expression): Add FALLTHRU.
18 (pp_cxx_pm_expression): Adjust fall through comment.
19 (cxx_pretty_printer::expression): Add FALLTHRU.
20 (cxx_pretty_printer::declaration_specifiers): Reformat code.
21 (pp_cxx_type_specifier_seq): Adjust fall through comment.
22 (pp_cxx_ptr_operator): Likewise. Add FALLTHRU.
23 * error.c (dump_type): Adjust fall through comment.
24 (dump_decl): Likewise.
25 * mangle.c (write_type): Likewise.
26 * method.c (synthesized_method_walk): Add FALLTHRU.
27 * name-lookup.c (arg_assoc_type): Likewise.
28 * parser.c (cp_lexer_print_token): Adjust fall through comment.
29 (cp_parser_primary_expression): Add FALLTHRU.
30 (cp_parser_operator): Likewise.
31 * pt.c (find_parameter_packs_r): Likewise.
32 (tsubst_aggr_type): Adjust fall through comment.
33 * semantics.c (finish_omp_clauses): Add FALLTHRU.
34 * tree.c (lvalue_kind): Likewise.
35
36 2016-08-12 Alexandre Oliva <aoliva@redhat.com>
37
38 PR debug/63240
39 * cp-objcp-common.c (cp_function_decl_defaulted): New.
40 (cp_function_decl_explicit_p): Const_tree-ify.
41 (cp_function_decl_deleted_p): Likewise.
42 * cp-objcp-common.h (cp_function_decl_defaulted): Declare.
43 (cp_function_decl_explicit_p): Const_tree-ify.
44 (cp_function_decl_deleted_p): Likewise.
45 (LANG_HOOKS_FUNCTION_DECL_DEFAULTED): Redefine.
46
47 2016-08-11 Jakub Jelinek <jakub@redhat.com>
48
49 PR c++/72868
50 * constexpr.c (label_matches): Handle case range expressions.
51
52 2016-08-11 Jason Merrill <jason@redhat.com>
53
54 PR c++/73456
55 * logic.cc (non_atomic_constraint_p): Handle EXPR_PACK_EXPANSION.
56
57 2016-08-10 Jason Merrill <jason@redhat.com>
58
59 Implement C++17 constexpr if.
60 * cp-tree.h (IF_STMT_CONSTEXPR_P): New.
61 * name-lookup.c (push_to_top_level, pop_from_top_level_1): Handle it.
62 * parser.h (struct cp_parser): Add in_discarded_stmt field.
63 * parser.c (cp_parser_selection_statement): Handle 'if constexpr'.
64 (cp_parser_jump_statement): Avoid deducing from a discarded return.
65 * pt.c (tsubst_expr): Only instantiate taken branch of constexpr if.
66 * semantics.c (begin_if_stmt): Set the binding level this_entity.
67 (finish_if_stmt_cond): Require the condition of a
68 constexpr if to be constant.
69 * decl.c (level_for_constexpr_if): New.
70 (named_label_entry): Add in_constexpr_if field.
71 (poplevel_named_label_1): Set it.
72 (check_goto): Check it.
73 (check_previous_goto_1): Check level_for_constexpr_if.
74
75 2016-08-09 Jason Merrill <jason@redhat.com>
76
77 PR c++/68703
78 * decl2.c (any_dependent_type_attributes_p): New.
79 * pt.c (dependent_type_p_r, type_dependent_expression_p): Check it.
80 * semantics.c (finish_id_expression): Check it.
81 * typeck.c (finish_class_member_access_expr): Check it.
82
83 PR c++/71712
84 * class.c (check_abi_tags): Don't duplicate tags for conversion ops.
85
86 Adjust mangling of ABI tags on class template member functions.
87 * class.c (missing_abi_tags): New.
88 (check_abi_tags): Don't check template. Add just_checking mode.
89 * mangle.c (abi_flag_at_least, any_abi_below, equal_abi_tags): New.
90 (sorted_abi_tags): Split out from write_abi_tags.
91 (struct releasing_vec): New.
92 (write_unqualified_name): Only look for the primary
93 template for types. Implement backward compatibility.
94
95 PR c++/72849
96 * constexpr.c (cxx_eval_constant_expression): Check
97 COMPLETE_TYPE_P before calling is_really_empty_class.
98 * class.c (is_really_empty_class): Don't call complete_type.
99
100 PR c++/56701
101 * typeck.c (cp_build_addr_expr_1): Remove special *this handling.
102
103 2016-08-09 Jakub Jelinek <jakub@redhat.com>
104
105 PR c++/72809
106 * rtti.c (get_pseudo_ti_index): Return TK_CLASS_TYPE for
107 builtin aggregate types without TYPE_BINFO.
108
109 2016-08-08 Jason Merrill <jason@redhat.com>
110
111 Implement C++17 constexpr lambda.
112 * class.c (finalize_literal_type_property): Handle lambdas.
113 * constexpr.c (is_valid_constexpr_fn): Likewise. No longer static.
114 (explain_invalid_constexpr_fn, cxx_eval_call_expression): Handle
115 lambdas.
116 (cxx_eval_constant_expression): Handle capture proxy.
117 (var_in_constexpr_fn): Don't check for C++14.
118 (var_in_maybe_constexpr_fn): New.
119 (potential_constant_expression_1): Use it. Check DECL_EXPR for
120 declarations not allowed in constexpr function. Handle
121 STATIC_ASSERT, RANGE_FOR_STMT.
122 * decl.c (make_rtl_for_nonlocal_decl): Use var_in_maybe_constexpr_fn.
123 (finish_function): Set DECL_DECLARED_CONSTEXPR_P on lambda members.
124 * lambda.c (begin_lambda_type): Set CLASSTYPE_LITERAL_P.
125 (maybe_add_lambda_conv_op): Clear thunk CALL_EXPR location.
126 (lambda_static_thunk_p): New.
127 * parser.c (cp_keyword_starts_decl_specifier_p): Add RID_CONSTEXPR.
128 (CP_PARSER_FLAGS_ONLY_MUTABLE_OR_CONSTEXPR): New enumerator.
129 (cp_parser_decl_specifier_seq): Handle it.
130 (cp_parser_lambda_declarator_opt): Use cp_parser_decl_specifier_seq.
131 * pt.c (instantiate_class_template_1): Set CLASSTYPE_LITERAL_P.
132 (tsubst_copy_and_build) [CALL_EXPR]: Propagate CALL_FROM_THUNK_P.
133 * error.c (dump_function_decl): Check TFF_NO_TEMPLATE_BINDINGS.
134 (dump_expr) [FUNCTION_DECL]: Pass it.
135
136 2016-08-08 Jason Merrill <jason@redhat.com>
137
138 PR c++/67131
139 * class.c (is_really_empty_class): Call complete_type.
140 * constexpr.c (cxx_eval_constant_expression): Check
141 is_really_empty_class.
142 (potential_constant_expression_1): Likewise. Check for error type.
143
144 2016-08-08 Jakub Jelinek <jakub@redhat.com>
145
146 PR c++/58706
147 * parser.c: Include tree-iterator.h.
148 (cp_parser_omp_for_loop_init): Move lambda DECL_EXPRs from init
149 to FOR_BLOCK.
150 (cp_parser_omp_for_loop): Handle non-STATEMENT_LIST FOR_BLOCK
151 entries.
152
153 2016-08-06 Jonathan Wakely <jwakely@redhat.com>
154
155 * call.c (convert_like_real): Harmonize diagnostics for invalid
156 reference binding.
157
158 2016-08-05 Martin Sebor <msebor@redhat.com>
159
160 * constexpr.c (cxx_eval_store_expression): Remove hyphen from
161 the spelling of "constant-expression" in diagnostic messages
162 for consistency.
163 (cxx_eval_constant_expression): Same.
164 (cxx_eval_outermost_constant_expr): Same.
165 (potential_constant_expression_1): Same.
166
167 2016-08-05 Nathan Sidwell <nathan@acm.org>
168
169 PR c++/68724
170 * pt.c (unify): TRAIT_EXPR is an expr.
171
172 2016-08-04 Paolo Carlini <paolo.carlini@oracle.com>
173
174 PR c++/72800
175 * lambda.c (add_capture): Check lambda_capture_field_type return
176 value for error_mark_node.
177
178 2016-08-04 Patrick Palka <ppalka@gcc.gnu.org>
179
180 PR c++/72759
181 * pt.c (tsubst_qualified_id): Return error_mark_node if
182 template_args is error_mark_node.
183
184 2016-08-04 Jason Merrill <jason@redhat.com>
185
186 PR c++/72415
187 * pt.c (tsubst_pack_expansion): Pull a single pack expansion out
188 of the TREE_VEC.
189
190 * cp-tree.h (TYPE_UNNAMED_P): Rename from TYPE_ANONYMOUS_P.
191 (TYPE_WAS_UNNAMED): Rename from TYPE_WAS_ANONYMOUS.
192 * class.c, decl.c, decl2.c, error.c, lambda.c, mangle.c,
193 name-lookup.c, parser.c, pt.c, semantics.c, tree.c: Adjust.
194
195 PR c++/72796
196 * typeck.c (finish_class_member_access_expr): Avoid stripping
197 SCOPE_REF to dependent base.
198
199 2016-08-04 Thomas Schwinge <thomas@codesourcery.com>
200
201 * parser.c (cp_ensure_no_oacc_routine): Improve diagnostics.
202 (cp_parser_late_parsing_cilk_simd_fn_info): Fix diagnostics.
203 (cp_parser_late_parsing_oacc_routine, cp_finalize_oacc_routine):
204 Simplify code, and improve diagnostics.
205 (cp_parser_oacc_routine): Likewise. Move pragma context
206 checking...
207 (cp_parser_pragma): ... here.
208
209 * parser.h (struct cp_omp_declare_simd_data): New.
210 (struct cp_parser): Use it for oacc_routine member.
211 * parser.c (cp_ensure_no_oacc_routine, cp_parser_oacc_routine)
212 (cp_parser_late_parsing_oacc_routine, cp_finalize_oacc_routine):
213 Use it. Simplify code.
214 (cp_parser_new): Initialize all members pointing to special
215 parsing data structures.
216 (cp_parser_cilk_simd_fn_vector_attrs): Initialize
217 parser->cilk_simd_fn_info->clauses.
218 (cp_parser_omp_declare_simd): Initialize
219 parser->omp_declare_simd->clauses.
220 (cp_parser_late_parsing_omp_declare_simd): Simplify code.
221
222 2016-08-04 Marek Polacek <polacek@redhat.com>
223
224 PR c++/70229
225 * constexpr.c (check_constexpr_ctor_body_1): Allow typedef
226 declarations.
227
228 2016-08-01 Jason Merrill <jason@redhat.com>
229
230 * mangle.c (mangle_decl): Warn about mangled name change even if
231 DECL_REALLY_EXTERN.
232
233 * mangle.c (get_abi_tags): New.
234 (find_substitution, write_unqualified_name, write_abi_tags)
235 (maybe_check_abi_tags): Use it.
236
237 * mangle.c (mangle_decl): Fix mangled name change warning.
238
239 PR c++/72766
240 * constexpr.c (cxx_eval_pointer_plus_expression): Check constancy
241 of nelts.
242 * cp-gimplify.c (cp_fully_fold): Only maybe_constant_value in
243 C++11 and up.
244
245 2016-07-30 Martin Sebor <msebor@redhat.com>
246
247 PR c++/60760
248 PR c++/71091
249 * constexpr.c (cxx_eval_binary_expression): Reject invalid expressions
250 involving null pointers.
251 (cxx_eval_component_reference): Reject null pointer dereferences.
252 (cxx_eval_indirect_ref): Reject indirecting through null pointers.
253 (cxx_eval_constant_expression): Reject invalid expressions involving
254 null pointers.
255
256 2016-07-29 Marek Polacek <polacek@redhat.com>
257
258 PR c/71926
259 * semantics.c (maybe_convert_cond): Use the location of COND for the
260 parentheses warning.
261
262 2016-07-29 Jason Merrill <jason@redhat.com>
263
264 * decl.c (build_enumerator): Tweak diagnostic.
265
266 PR c++/72457
267 * init.c (expand_aggr_init_1): Only handle value-init of bases.
268 * constexpr.c (build_data_member_initialization): Handle multiple
269 initializers for the same field.
270
271 2016-07-28 Paolo Carlini <paolo.carlini@oracle.com>
272
273 PR c++/71665
274 * decl.c (build_enumerator): Check the type of the enumerator before
275 calling cxx_constant_value.
276
277 2016-07-27 Jason Merrill <jason@redhat.com>
278
279 PR c++/71747
280 * pt.c (get_partial_spec_bindings): Replace tparms and spec_args
281 parameters with spec_tmpl. Call push_tinst_level.
282 (most_specialized_partial_spec): Adjust.
283 (more_specialized_partial_spec): Adjust.
284
285 2016-07-25 Jason Merrill <jason@redhat.com>
286
287 PR c++/65970
288 * cp-gimplify.c (genericize_cp_loop): Revert location change.
289
290 PR c++/71837
291 * lambda.c (add_capture): Leave a pack expansion in a TREE_LIST.
292 (build_lambda_object): Call build_x_compound_expr_from_list.
293 * pt.c (tsubst) [DECLTYPE_TYPE]: Likewise.
294
295 PR c++/71833
296 PR c++/54440
297 * pt.c (coerce_template_parameter_pack): Fix logic for
298 pack index.
299
300 PR c++/65970
301 * constexpr.c (cxx_eval_loop_expr): Count iterations.
302 * cp-gimplify.c (genericize_cp_loop): Use start_locus even for
303 infinite loops.
304
305 PR c++/71972
306 * constexpr.c (cxx_eval_array_reference): Handle looking for the
307 value of an element we're currently modifying.
308
309 2016-07-24 Jason Merrill <jason@redhat.com>
310
311 PR c++/71515
312 * pt.c (resolve_typename_type): Try to avoid calling
313 currently_open_class.
314
315 2016-07-23 Jason Merrill <jason@redhat.com>
316
317 PR c++/66617
318 * call.c (add_list_candidates): Handle VTT parm.
319 (build_new_method_call_1): Likewise.
320
321 PR c++/55922
322 PR c++/63151
323 * init.c (expand_aggr_init_1): Handle list-initialization from {}.
324
325 PR c++/70709
326 * class.c (walk_subobject_offsets): Handle 0-length array.
327
328 PR c++/70778
329 * pt.c (tsubst): Also substitute into the template of a
330 BOUND_TEMPLATE_TEMPLATE_PARM.
331
332 PR c++/71738
333 * pt.c (lookup_template_class_1): Handle getting template from tsubst.
334
335 PR c++/71350
336 * decl.c (reshape_init_r): Check complain for missing braces warning.
337
338 2016-07-22 Jason Merrill <jason@redhat.com>
339
340 PR c++/71576
341 * call.c (convert_like_real): Use lvalue_kind.
342
343 PR c++/71748
344 PR c++/52746
345 * pt.c (tsubst_baselink): Call
346 adjust_result_of_qualified_name_lookup for unqualified
347 destructors.
348
349 2016-07-21 Jason Merrill <jason@redhat.com>
350
351 PR c++/69223
352 * semantics.c (apply_deduced_return_type): Call
353 complete_type_or_else before building the new RESULT_DECL.
354
355 PR c++/71274
356 * decl2.c (maybe_instantiate_decl): Split out from mark_used.
357 (decl_constant_var_p): Use it instead.
358
359 PR c++/71630
360 * pt.c (instantiate_decl): Fix pattern_defined for namespace scope
361 variable templates.
362
363 PR c++/71913
364 * call.c (unsafe_copy_elision_p): It's OK to elide when
365 initializing an unknown object.
366
367 * call.c (build_over_call): Check unsafe_copy_elision_p even for
368 trivial constructors.
369 * method.c (do_build_copy_constructor): Don't copy tail padding
370 even in a trivial constructor.
371
372 2016-07-21 Jakub Jelinek <jakub@redhat.com>
373
374 PR c++/71728
375 * constexpr.c (potential_constant_expression_1) <case GOTO_EXPR>:
376 Replace assert with test, return false if the goto isn't break
377 or continue. Formatting fix.
378
379 2016-07-21 Richard Biener <rguenther@suse.de>
380
381 * vtable-class-hierarchy.c (vtv_generate_init_routine): Set
382 DECL_IGNORED_P.
383
384 2016-07-21 Jakub Jelinek <jakub@redhat.com>
385
386 PR c++/71941
387 * cp-gimplify.c (cp_genericize): For nested cp_genericize calls
388 save/restore bc_label array.
389
390 2016-07-21 Jason Merrill <jason@redhat.com>
391
392 PR c++/70781
393 * parser.c (cp_parser_lambda_expression): Unset OK if there was an
394 error parsing the lambda-declarator.
395
396 PR c++/71896
397 * constexpr.c (cxx_eval_binary_expression): Handle comparison
398 between lowered and unlowered PTRMEM_CST.
399
400 PR c++/65168
401 * typeck.c (cp_truthvalue_conversion): Compare pointers to nullptr.
402 Don't set c_inhibit_evaluation_warnings.
403
404 PR c++/71121
405 * cp-gimplify.c (cp_fully_fold): First call maybe_constant_value.
406
407 2016-07-21 Andrew Sutton <andrew.n.sutton@gmail.com>
408 Jason Merrill <jason@redhat.com>
409
410 Improving concepts performance and diagnostics.
411 PR c++/67565
412 PR c++/67579
413 PR c++/71843
414 * cp-tree.def (CHECK_CONSTR): New.
415 * cp-tree.h (CHECK_CONSTR_CONCEPT): New.
416 (CHECK_CONSTR_ARGS): New.
417 * constraint.cc (make_predicate_constraint): Remove in favor of
418 normalize_expression.
419 (resolve_constraint_check): Actually return error_mark_node when
420 resolution fails.
421 (resolve_variable_concept_check): Perform coercion as if processing
422 a template. Also return errors on resolution failure.
423 (lift_*): Remove all of these functions. Don't unnecessarily inline
424 concepts.
425 (learn_*): Add facilities to memoize implications for subsumption
426 during normalization.
427 (expanding_concept): New.
428 (expand_concept): New. Return the inlined and normalized definition
429 of a concept when needed.
430 (transform_*, xform_*): Rename to normalize_* to better reflect the
431 responsibility of those functions.
432 (normalize_template_id_expression): Check for non-boolean operands
433 when possible. Generate check constraints instead of normal variable
434 references.
435 (normalize_call_expression): Report errors when resolution fails.
436 (check_for_logical_overloads): Rewrite this check to more accurately
437 report the error.
438 (normalize_atom): Check for overloaded calls and invalid types before
439 determining if the expression refers to a concept.
440 (build_constraints): Don't cache normalized constraints or decomposed
441 assumptions.
442 (finish_shorthand_constraint): Return a normalized expression instead
443 of a predicate constraint.
444 (finish_template_introduction): Same.
445 (placeholder_extract_concept_and_args): Rewrite this since we only
446 ever get check constraints here.
447 (equivalent_placeholder_constraints): Rewrite in terms of check
448 constraints, and handle error_mark_nodes correctly.
449 (tsubst_check_constraint, tsubst_expr_constr, tsubst_type_constr)
450 (tsubst_implicit_conversion_constr)
451 (tsubst_argument_deduction_constr, tsubst_exception_constr)
452 (tsubst_parameterized_constraint, tsubst_constraint): New.
453 (tsbust_conjunection): Replace with tsubst_logical_operator and
454 actually generate the right kind of constraint.
455 (tsubst_requirement_body): Reverse the order of substituted arguments
456 so that they appear in the order written (helps diagnostics).
457 (satisfy_check_constraint): New.
458 (satisfy_conjunction): Simplify.
459 (satisfy_disjunction): Same.
460 (satisfy_constraint_1): Handle check constraints.
461 (eval_constr): New (private) global state.
462 (evaluating_constraints_sentinel): New. Manages eval_constr.
463 (satisfy_constraint): Add timing variables.
464 (satisfy_associated_constraints): Add hooks for memoization.
465 (evaluate_function_concept): Build a check constraint instead of
466 normalizing its definition.
467 (evaluate_variable_concept): Same.
468 (evaluate_constraint_expression): Normalize, but in the current
469 declaration processing context.
470 (evaluating_constraints_p): New.
471 (elide_constraint_failure_p): Actually emit constraint_thresh errors.
472 (diagnose_*): Remove artificial indentation. Add a new parameter to
473 each that tracks the current (complete) constraint prior to any
474 substitutions.
475 (diagnose_expression): Removed.
476 (diagnose_call_expression): Same.
477 (diagnose_template_id): Same.
478 (diagnose_template_id): New.
479 (diagnose_logical_constraint): New.
480 (diagnose_expression_constraint): Show the original expression.
481 (diagnose_type_constraint): Show the original type.
482 (diagnose_implicit_conversion_constraint): Be specific about
483 failures, don't re-diagnose a known-to-be-failed substitutions,
484 and manage elisions properly.
485 (diagnose_argument_deduction_constraint): Same.
486 (diagnose_exception_constraint): Same.
487 (diagnose_parameterized_constraint): Same.
488 (constraint_p): Allow EXPR_PACK_EXPANSION.
489 * logic.cc (next_by_distance): Removed. No longer used.
490 (any_p): Renamed from any_of.
491 (term_entry, term_hasher): New.
492 (term_list): Rewrite to include a hash table for quick lookup.
493 Also, make less stateful.
494 (proof_state): Extend to allow goals to be discharged once
495 satisfied.
496 (non_atomic_constraint_p): New.
497 (any_non_atomic_constraints_p): New.
498 (...rest...): Previous implementation completely replaced with an
499 iterative algorithm that opportunistically prunes the search space
500 before committing to using more memory.
501 * parser.c: (cp_parser_type_parameter): Normalize constraints.
502 (cp_parser_explicit_template_declaration): Same.
503 * pt.c: (finish_template_variable): Be less redundant with this error
504 message.
505 (template_args_equal): No longer static.
506 (tsubst_decl): Don't try to find specializations of variables that
507 have already been instantiated.
508 (build_non_dependent_expr): Avoid infinite recursion during concept
509 expansion.
510 (make_constrained_auto): Normalize constraints.
511 (do_auto_deduction): When doing auto deduction from a
512 partial-concept-id, be sure to include the explicit args checking
513 the constraints.
514 (constraint_sat_*): New. Memoize satisfied constraints.
515 (concept_spec_*): New. Memoize expressions associated with a concept
516 specialization.
517 (constraint_memos, concept_memos): New.
518 (lookup_constraint_satisfaction, memoize_constraint_satisfaction): New.
519 (lookup_concept_satisfaction, memoize_concept_satisfaction): New.
520 (get_concept_expansion, save_concept_expansion): New.
521 (hash_subsumption_args): New.
522 (comp_subsumption_args): New.
523 (subsumption_*): New. Memoize parts of the subsumption relation.
524 (lookup_subsumption_result, save_subsumption_result): New.
525 (init_constraint_processing): Initialize memo tables.
526 (get_constraints): Shortcut if !flag_concepts.
527 * decl.c (grokfndecl): Normalize constraints.
528 * error.c (dump_simple_decl): Print "concept" when appropriate.
529 (dump_function_decl): Same.
530 (dump_template_decl): Don't write requirements when we're not
531 printing the header.
532 (dump_expr): Handle fold expressions.
533 * cxx-pretty-print.c (cxx_pretty_printer::expression): Handle
534 fold expressions.
535 (get_fold_operator): New.
536 (pp_cxx_unary_left_fold_expression): New.
537 (pp_cxx_unary_right_fold_expression): New.
538 (pp_cxx_binary_fold_expression): New.
539 (pp_cxx_check_constraint): New.
540 (pp_cxx_*_constraint): Rewrite the grammar of internal constraints
541 to make them easier to read when debugging.
542 * search.c (accessible_p): Don't shortcut when evaluating constraints.
543 * tree.c (cp_tree_equal): Handle CHECK_CONSTR.
544
545 2016-07-20 David Malcolm <dmalcolm@redhat.com>
546
547 PR c/70339
548 PR c/71858
549 * name-lookup.c: Include gcc-rich-location.h, spellcheck-tree.h,
550 and parser.h.
551 (suggest_alternatives_for): If no candidates are found, try
552 lookup_name_fuzzy and report if if finds a suggestion.
553 (consider_binding_level): New function.
554 (lookup_name_fuzzy) New function.
555 * parser.c: Include gcc-rich-location.h.
556 (cp_lexer_next_token_is_decl_specifier_keyword): Move most of
557 logic into...
558 (cp_keyword_starts_decl_specifier_p): ...this new function.
559 (cp_parser_diagnose_invalid_type_name): When issuing
560 "does not name a type" errors, attempt to make a suggestion using
561 lookup_name_fuzzy.
562 * parser.h (cp_keyword_starts_decl_specifier_p): New prototype.
563 * search.c (lookup_field_fuzzy_info::fuzzy_lookup_field): Reject
564 types that are not CLASS_TYPE_P, rather than rejecting individual
565 tree codes.
566
567 2016-07-20 Jakub Jelinek <jakub@redhat.com>
568
569 PR c++/71909
570 * parser.c (cp_parser_save_member_function_body): Consume
571 __transaction_relaxed or __transaction_atomic with optional
572 attribute. Only skip catch with block if try keyword is seen.
573
574 PR c++/50060
575 * constexpr.c (cxx_eval_builtin_function_call): Pass false as lval
576 when evaluating call arguments. Use fold_builtin_call_array instead
577 of fold_build_call_array_loc, return t if it returns NULL. Otherwise
578 check the result with potential_constant_expression and call
579 cxx_eval_constant_expression on it.
580
581 2016-07-19 Jason Merrill <jason@redhat.com>
582
583 PR c++/67164
584 * pt.c (iterative_hash_template_arg, template_args_equal): Don't
585 handle ARGUMENT_PACK_SELECT.
586
587 2016-07-18 Jakub Jelinek <jakub@redhat.com>
588
589 PR c++/70869
590 PR c++/71054
591 * cp-gimplify.c (cp_genericize_r): Revert the 2016-07-07 change.
592 * tree.c (cp_walk_subtrees): For DECL_EXPR on DECL_ARTIFICIAL
593 non-static VAR_DECL, walk the decl's DECL_INITIAL, DECL_SIZE and
594 DECL_SIZE_UNIT.
595
596 PR c++/71835
597 * call.c (build_op_call_1): Use convert_like_with_context only
598 if cand->fn is a decl.
599
600 PR c++/71828
601 * constexpr.c (cxx_eval_constant_expression) <case REALPART_EXPR>:
602 For lval don't use cxx_eval_unary_expression and instead recurse
603 and if needed rebuild the reference.
604
605 PR c++/71826
606 * pt.c (tsubst_baselink): Only set BASELINK_OPTYPE for BASELINK_P.
607
608 PR c++/71822
609 * cp-gimplify.c (cp_gimplify_expr) <case VEC_INIT_EXPR>: Recursively
610 fold *expr_p before genericizing it.
611
612 PR c++/71871
613 * typeck.c (build_x_conditional_expr): Revert the 2012-10-25 change.
614
615 2016-07-15 Jason Merrill <jason@redhat.com>
616
617 PR c++/71495
618 * call.c (convert_like_real): Mask complain.
619 * semantics.c (perform_koenig_lookup): Likewise.
620
621 PR c++/71092
622 * constexpr.c (cxx_eval_call_expression): Fail quietly when cgraph
623 threw away DECL_SAVED_TREE.
624
625 PR c++/71117
626 Core 2189
627 * call.c (add_template_conv_candidate): Disable if there are
628 viable candidates.
629
630 PR c++/71511
631 * typeck2.c (cxx_incomplete_type_diagnostic): Handle DECLTYPE_TYPE.
632
633 PR c++/71513
634 * pt.c (tsubst_attributes): Fix loop logic.
635
636 PR c++/71604
637 PR c++/54430
638 * parser.c (cp_parser_range_for): Modify IDENTIFIER_BINDING directly.
639 (cp_parser_simple_declaration): Diagnose type definition in
640 for-range-declaration.
641
642 PR c++/71711
643 * operators.def: Add *_FOLD_EXPR.
644 * cp-tree.h (FOLD_EXPR_P): Parenthesize.
645 * mangle.c (write_expression): Handle fold-expressions.
646 * pt.c (tsubst_unary_left_fold, tsubst_binary_left_fold)
647 (tsubst_unary_right_fold, tsubst_binary_right_fold): Handle
648 partial instantiation.
649
650 PR c++/71814
651 * mangle.c (write_expression): Handle sizeof... an argument pack.
652
653 PR c++/71718
654 * pt.c (push_tinst_level_loc): Set at_eof before fatal_error.
655
656 PR c++/70824
657 * init.c (constant_value_1): Don't instantiated DECL_INITIAL of
658 artificial variables.
659
660 2016-07-15 Cesar Philippidis <cesar@codesourcery.com>
661
662 * parser.c (cp_parser_oacc_declare): Don't scan for
663 GOMP_MAP_POINTER.
664 * semantics.c (handle_omp_array_sections): Mark data clauses with
665 GOMP_MAP_FORCE_{PRESENT,TO,FROM,TOFROM} as potentially having
666 zero-length subarrays.
667
668 2016-07-11 Jason Merrill <jason@redhat.com>
669
670 * decl.c (store_parm_decls): Remove check for void parm.
671
672 2016-07-08 Jason Merrill <jason@redhat.com>
673
674 * cp-tree.h: Unpoison lvalue_p.
675 * call.c, class.c, constexpr.c, cvt.c, init.c, lambda.c, pt.c,
676 tree.c, typeck.c, typeck2.c: Use lvalue_p instead of
677 real_lvalue_p.
678
679 * tree.c (obvalue_p): Rename from lvalue_p.
680 (lvalue_p): Define for c-common.
681 * call.c, cp-tree.h, cvt.c, init.c: Adjust.
682 * typeck.c: Adjust.
683 (cp_build_addr_expr_1): Remove obsolete code.
684
685 * tree.c (glvalue_p): Rename from lvalue_or_rvalue_with_address_p.
686 * call.c, cp-tree.h, typeck.c: Adjust.
687
688 * lambda.c (maybe_add_lambda_conv_op): Fix null object argument.
689
690 P0145R2: Refining Expression Order for C++.
691 * cp-gimplify.c (lvalue_has_side_effects): New.
692 (cp_gimplify_expr): Implement assignment ordering.
693 * call.c (op_is_ordered, build_over_call): Adjust for
694 -fargs-in-order renaming to -fstrong-eval-order.
695 * cp-gimplify.c (cp_gimplify_expr): Likewise.
696
697 2016-07-07 Jakub Jelinek <jakub@redhat.com>
698 Kai Tietz <ktietz70@googlemail.com>
699
700 PR c++/70869
701 PR c++/71054
702 * cp-gimplify.c (cp_genericize_r): For DECL_EXPR for non-static
703 artificial vars, genericize their initializers.
704
705 2016-07-05 David Malcolm <dmalcolm@redhat.com>
706
707 PR c++/62314
708 * parser.c (cp_parser_class_specifier_1): When reporting
709 missing semicolons, use a fixit-hint to suggest insertion
710 of a semicolon immediately after the closing brace,
711 offsetting the reported column accordingly.
712
713 2016-07-04 Jan Beulich <jbeulich@suse.com>
714
715 * lang-specs.h ("@c++-header"): Conditionalize "-o".
716
717 2016-06-29 Thomas Schwinge <thomas@codesourcery.com>
718
719 * parser.c (cp_parser_pragma) <PRAGMA_OMP_CANCELLATION_POINT>:
720 Move pragma context checking into...
721 (cp_parser_omp_cancellation_point): ... here, and improve
722 diagnostic messages.
723 * semantics.c (finish_omp_cancel, finish_omp_cancellation_point):
724 Improve diagnostic messages.
725
726 2016-06-28 Jakub Jelinek <jakub@redhat.com>
727
728 * Make-lang.in: Don't cat ../stage_current if it does not exist.
729
730 2016-06-24 Jason Merrill <jason@redhat.com>
731
732 P0145R2: Refining Expression Order for C++.
733 * typeck.c (cp_build_modify_expr): Leave COMPOUND_EXPR on LHS.
734
735 * tree.c (get_target_expr_sfinae): Handle bit-fields.
736 (build_target_expr): Call mark_rvalue_use.
737
738 2016-06-24 Jakub Jelinek <jakub@redhat.com>
739
740 * call.c (magic_varargs_p): Return 3 for __builtin_*_overflow_p.
741 (build_over_call): For magic == 3, do no conversion only on 3rd
742 argument.
743
744 2016-06-23 Andi Kleen <ak@linux.intel.com>
745
746 * Make-lang.in: Add support for autofdo.
747
748 2016-06-21 Jason Merrill <jason@redhat.com>
749
750 * constraint.cc (constraints_satisfied_p): Keep as many levels of
751 args as our template has levels of parms.
752
753 * pt.c (template_parm_outer_level, uses_outer_template_parms): New.
754 (type_dependent_expression_p): Use uses_outer_template_parms.
755
756 2016-06-20 David Malcolm <dmalcolm@redhat.com>
757
758 * parser.c (cp_parser_string_literal): Convert non-standard
759 concatenation error to directly use a rich_location, and
760 use that to add the location of the first literal to the
761 diagnostic.
762
763 2016-06-17 Paolo Carlini <paolo.carlini@oracle.com>
764
765 * decl.c (validate_constexpr_redeclaration): Change pair of errors
766 to error + inform.
767 * error.c (dump_function_decl): Save the constexpr specifier too.
768
769 2016-06-17 Jakub Jelinek <jakub@redhat.com>
770
771 * tree.c (builtin_valid_in_constant_expr_p): Test for
772 DECL_BUILT_IN_CLASS equal to BUILT_IN_NORMAL instead of just
773 DECL_BUILT_IN.
774 (bot_manip): Likewise.
775 * call.c (magic_varargs_p): Likewise.
776
777 2016-06-17 Paolo Carlini <paolo.carlini@oracle.com>
778
779 * decl.c (grokfndecl): Change pair of errors to error + inform.
780
781 2016-06-17 Jason Merrill <jason@redhat.com>
782
783 PR c++/71209
784 * typeck.c (finish_class_member_access_expr): Avoid "not a base"
785 warning when there are dependent bases.
786
787 2016-06-17 Jakub Jelinek <jakub@redhat.com>
788
789 * semantics.c (handle_omp_array_sections_1): Don't ICE when
790 processing_template_decl when checking for bitfields and unions.
791 Look through REFERENCE_REF_P as base of COMPONENT_REF.
792 (finish_omp_clauses): Look through REFERENCE_REF_P even for
793 array sections with COMPONENT_REF bases.
794
795 2016-06-16 Jakub Jelinek <jakub@redhat.com>
796
797 * parser.c (cp_parser_omp_var_list_no_open): Call
798 convert_from_reference before cp_parser_postfix_dot_deref_expression.
799 * semantics.c (finish_omp_clauses): Don't ICE when
800 processing_template_decl when checking for bitfields and unions.
801 Look through REFERENCE_REF_P as base of COMPONENT_REF.
802
803 2016-06-15 Paolo Carlini <paolo.carlini@oracle.com>
804
805 * decl.c (wrapup_globals_for_namespace): Use DECL_SOURCE_LOCATION and
806 "%qF" in warning_at instead of "%q+F" in warning.
807 (check_redeclaration_exception_specification): Likewise in pedwarn
808 (and error, inform, for consistency).
809 * call.c (joust): Likewise.
810
811 2016-06-15 Paolo Carlini <paolo.carlini@oracle.com>
812
813 PR c++/70202
814 * decl.c (xref_basetypes): Revert r117839 changes; add fix-up
815 code at the end of the for loop; also revert r159637 changes,
816 add back the gcc_assert.
817 * cp-tree.h (xref_basetypes): Adjust declaration.
818 * parser.c (cp_parser_class_head): Adjust xref_basetypes call.
819
820 2016-06-14 David Malcolm <dmalcolm@redhat.com>
821
822 * search.c: Include spellcheck-tree.h rather than spellcheck.h.
823
824 2016-06-14 David Malcolm <dmalcolm@redhat.com>
825
826 * typeck.c: Include "gcc-rich-location.h".
827 (finish_class_member_access_expr): Simplify fixit code by
828 using gcc_rich_location::add_fixit_misspelled_id.
829
830 2016-06-14 Jason Merrill <jason@redhat.com>
831
832 P0145R2: Refining Expression Order for C++.
833 * cp-tree.h (CALL_EXPR_OPERATOR_SYNTAX, CALL_EXPR_ORDERED_ARGS)
834 (CALL_EXPR_REVERSE_ARGS): New.
835 * call.c (build_new_op_1): Set them.
836 (extract_call_expr, op_is_ordered): New.
837 (build_over_call): Set CALL_EXPR_ORDERED_ARGS.
838 * cp-gimplify.c (cp_gimplify_expr) [CALL_EXPR]: Handle new flags.
839 * pt.c (tsubst_copy_and_build): Copy new flags.
840 * semantics.c (simplify_aggr_init_expr): Likewise.
841 * tree.c (build_aggr_init_expr): Likewise.
842 (build_min_non_dep_op_overload): Likewise.
843
844 2016-06-14 Jakub Jelinek <jakub@redhat.com>
845
846 PR c++/71528
847 * decl.c (duplicate_decls): For DECL_INITIALIZED_P non-external
848 olddecl vars, preserve their TREE_READONLY bit.
849
850 PR c++/71516
851 * decl.c (complete_vars): Handle gracefully type == error_mark_node.
852
853 2016-06-14 Paolo Carlini <paolo.carlini@oracle.com>
854
855 * typeck2.c (digest_init_r): Use EXPR_LOC_OR_LOC on init.
856
857 2016-06-13 Paolo Carlini <paolo.carlini@oracle.com>
858
859 * decl.c (grokdeclarator): Fix typo in pedwarn text.
860
861 2016-06-10 Thomas Schwinge <thomas@codesourcery.com>
862
863 PR c/71381
864 * parser.c (cp_parser_omp_var_list_no_open) <OMP_CLAUSE__CACHE_>:
865 Loosen checking.
866
867 2016-06-09 Paolo Carlini <paolo.carlini@oracle.com>
868
869 PR c++/71465
870 Revert:
871 2016-06-04 Paolo Carlini <paolo.carlini@oracle.com>
872
873 PR c++/70202
874 * parser.c (cp_parser_class_head): When xref_basetypes fails and
875 emits an error do not zero the type.
876
877 2016-06-08 Paolo Carlini <paolo.carlini@oracle.com>
878
879 * decl.c (maybe_deduce_size_from_array_init): Use
880 DECL_SOURCE_LOCATION in error_at.
881 (layout_var_decl): Likewise.
882 (check_array_initializer): Likewise.
883 (check_initializer): Likewise.
884 (duplicate_decls, check_elaborated_type_specifier): Tidy.
885
886 2016-06-08 Martin Sebor <msebor@redhat.com>
887 Jakub Jelinek <jakub@redhat.com>
888
889 PR c++/70507
890 PR c/68120
891 * constexpr.c: Include gimple-fold.h.
892 (cxx_eval_internal_function): New function.
893 (cxx_eval_call_expression): Call it.
894 (potential_constant_expression_1): Handle integer arithmetic
895 overflow built-ins.
896 * tree.c (builtin_valid_in_constant_expr_p): Handle
897 BUILT_IN_{ADD,SUB,MUL}_OVERFLOW_P.
898
899 2016-06-08 Paolo Carlini <paolo.carlini@oracle.com>
900
901 * pt.c (tsubst, case TYPENAME_TYPE): Don't delay checking the
902 return value of tsubst_aggr_type for error_mark_node.
903
904 2016-06-08 Jakub Jelinek <jakub@redhat.com>
905
906 PR c++/71442
907 * pt.c (tsubst_copy): Only set TREE_USED on DECLs.
908
909 2016-06-06 Jakub Jelinek <jakub@redhat.com>
910 Patrick Palka <ppalka@gcc.gnu.org>
911
912 PR c++/70847
913 PR c++/71330
914 PR c++/71393
915 * cp-gimplify.c (cp_fold_r): Set *walk_subtrees = 0 and return NULL
916 right after cp_fold call if cp_fold has returned the same stmt
917 already in some earlier cp_fold_r call.
918 (cp_fold_function): Add pset automatic variable, pass its address
919 to cp_walk_tree.
920
921 2016-06-04 Paolo Carlini <paolo.carlini@oracle.com>
922
923 PR c++/70202
924 * parser.c (cp_parser_class_head): When xref_basetypes fails and
925 emits an error do not zero the type.
926
927 2016-06-03 Patrick Palka <ppalka@gcc.gnu.org>
928
929 PR c++/27100
930 * decl.c (duplicate_decls): Properly copy the
931 DECL_PENDING_INLINE_P, DECL_PENDING_INLINE_INFO and
932 DECL_SAVED_FUNCTION_DATA fields from OLDDECL to NEWDECL.
933
934 2016-06-03 Chung-Lin Tang <cltang@codesourcery.com>
935
936 * semantics.c (finish_omp_clauses): Mark OpenACC reduction
937 arguments as addressable when async clause exists.
938
939 2016-06-02 Jan Hubicka <jh@suse.cz>
940
941 * cp-gimplify.c (genericize_continue_stmt): Force addition of
942 predict stmt.
943
944 2016-06-02 Paolo Carlini <paolo.carlini@oracle.com>
945
946 * decl.c (xref_tag_1): Change pairs of errors to error + inform.
947 (start_enum): Likewise.
948 * parser.c (cp_parser_class_head): Likewise.
949
950 2016-06-02 Jakub Jelinek <jakub@redhat.com>
951
952 PR c++/71372
953 * cp-gimplify.c (cp_fold): For INDIRECT_REF, if the folded expression
954 is INDIRECT_REF or MEM_REF, copy over TREE_READONLY, TREE_SIDE_EFFECTS
955 and TREE_THIS_VOLATILE flags. For ARRAY_REF and ARRAY_RANGE_REF, copy
956 over TREE_READONLY, TREE_SIDE_EFFECTS and TREE_THIS_VOLATILE flags
957 to the newly built tree.
958
959 2016-05-31 Jason Merrill <jason@redhat.com>
960
961 * pt.c (instantiate_decl): Avoid recalculation.
962
963 PR c++/60095
964 PR c++/69515
965 PR c++/69009
966 * pt.c (instantiate_template_1): Don't put the partial
967 specialization in DECL_TI_TEMPLATE.
968 (partial_specialization_p, impartial_args): Remove.
969 (regenerate_decl_from_template): Add args parm.
970 (instantiate_decl): Look up the partial specialization again.
971
972 PR c++/71227
973 * pt.c (check_explicit_specialization): Give better diagnostic about
974 specializing a hidden friend.
975
976 2016-05-31 Paolo Carlini <paolo.carlini@oracle.com>
977
978 PR c++/71248
979 * decl.c (check_static_variable_definition): Use DECL_SOURCE_LOCATION
980 to obtain correct locations; avoid redundant diagnostics on
981 out-of-class definitions.
982
983 2016-05-30 Martin Sebor <msebor@redhat.com>
984
985 PR c++/71306
986 * init.c (warn_placement_new_too_small): Handle placement new arguments
987 that are elements of arrays more carefully. Remove a pointless loop.
988
989 2016-05-30 Jakub Jelinek <jakub@redhat.com>
990
991 PR c++/71349
992 * parser.c (cp_parser_omp_for): Don't disallow nowait clause
993 when combined with target construct.
994 (cp_parser_omp_parallel): Pass cclauses == NULL as last argument
995 to cp_parser_omp_all_clauses.
996
997 2016-05-30 Paolo Carlini <paolo.carlini@oracle.com>
998
999 PR c++/71238
1000 * lex.c (unqualified_name_lookup_error): Take a location too.
1001 (unqualified_fn_lookup_error): Take a cp_expr.
1002 * cp-tree.h (unqualified_name_lookup_error,
1003 unqualified_fn_lookup_error): Adjust declarations.
1004 * semantics.c (perform_koenig_lookup): Adjust
1005 unqualified_fn_lookup_error call, pass the location of
1006 the identifier too as part of a cp_expr.
1007
1008 2016-05-30 Paolo Carlini <paolo.carlini@oracle.com>
1009
1010 PR c++/71099
1011 * parser.c (cp_parser_function_specifier_opt): Use current_class_type
1012 to improve the diagnostic about wrong uses of 'virtual'.
1013
1014 2016-05-29 Paolo Carlini <paolo.carlini@oracle.com>
1015
1016 PR c++/71105
1017 * lambda.c (maybe_add_lambda_conv_op): Early return also when
1018 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE != CPLD_NONE.
1019
1020 2016-05-28 Ville Voutilainen <ville.voutilainen@gmail.com>
1021
1022 Revert:
1023 PR c++/69855
1024 * name-lookup.c (pushdecl_maybe_friend_1): Push local function
1025 decls into the global scope after stripping template bits
1026 and setting DECL_ANTICIPATED.
1027
1028 2016-05-27 Paolo Carlini <paolo.carlini@oracle.com>
1029
1030 PR c++/60385
1031 * name-lookup.c (push_namespace): Return bool, false when pushdecl
1032 fails.
1033 * name-lookup.h (push_namespace): Adjust declaration.
1034 * parser.c (cp_parser_namespace_definition): Check push_namespace
1035 return value.
1036
1037 2016-05-27 Ville Voutilainen <ville.voutilainen@gmail.com>
1038
1039 PR c++/69855
1040 * name-lookup.c (pushdecl_maybe_friend_1): Push local function
1041 decls into the global scope after stripping template bits
1042 and setting DECL_ANTICIPATED.
1043
1044 2016-05-26 Jakub Jelinek <jakub@redhat.com>
1045
1046 * semantics.c (finish_omp_clauses) <case OMP_CLAUSE_SCHEDULE>: Warn
1047 if OMP_CLAUSE_SCHEDULE_CHUNK_EXPR is known not to be positive.
1048
1049 2016-05-26 Patrick Palka <ppalka@gcc.gnu.org>
1050
1051 PR c++/70822
1052 PR c++/70106
1053 * cp-tree.h (REF_PARENTHESIZED_P): Make this flag apply to
1054 SCOPE_REFs too.
1055 * pt.c (tsubst_qualified_id): If REF_PARENTHESIZED_P is set
1056 on the qualified_id then propagate it to the resulting
1057 expression.
1058 (do_auto_deduction): Check REF_PARENTHESIZED_P on SCOPE_REFs
1059 too.
1060 * semantics.c (force_paren_expr): If given a SCOPE_REF, just set
1061 its REF_PARENTHESIZED_P flag.
1062
1063 2016-05-25 Jason Merrill <jason@redhat.com>
1064
1065 PR c++/71173
1066 PR c++/70522
1067 * cp-tree.h (enum tag_types): Add scope_type.
1068 * parser.c (cp_parser_class_name): Use scope_type.
1069 (prefer_type_arg): Handle scope_type.
1070 (cp_parser_lookup_name): Use prefer_type_arg.
1071 * name-lookup.c (lookup_qualified_name): Change bool is_type_p to
1072 int prefer_type, use lookup_flags.
1073 * name-lookup.h: Adjust.
1074
1075 2016-05-24 Cesar Philippidis <cesar@codesourcery.com>
1076
1077 * parser.c (cp_parser_oacc_declare): Add support for
1078 GOMP_MAP_FIRSTPRIVATE_POINTER.
1079 * semantics.c (handle_omp_array_sections_1): Replace bool is_omp
1080 argument with enum c_omp_region_type ort. Don't privatize OpenACC
1081 non-static members.
1082 (handle_omp_array_sections): Replace bool is_omp argument with enum
1083 c_omp_region_type ort. Update call to handle_omp_array_sections_1.
1084 (finish_omp_clauses): Add specific errors and warning messages for
1085 OpenACC. Use firsrtprivate pointers for OpenACC subarrays. Update
1086 call to handle_omp_array_sections.
1087
1088 2016-05-24 Jason Merrill <jason@redhat.com>
1089
1090 PR c++/70584
1091 * cp-gimplify.c (cp_fold_maybe_rvalue): Loop in case cp_fold
1092 returns a decl.
1093 (cp_fold) [INDIRECT_REF]: Don't fold to an rvalue.
1094
1095 2016-05-24 Martin Sebor <msebor@redhat.com>
1096
1097 PR c++/71147
1098 * decl.c (layout_var_decl, grokdeclarator): Use complete_or_array_type_p.
1099 * pt.c (instantiate_class_template_1): Try to complete the element
1100 type of a flexible array member.
1101 (can_complete_type_without_circularity): Handle arrays of unknown bound.
1102 * typeck.c (complete_type): Also complete the type of the elements of
1103 arrays with an unspecified bound.
1104
1105 2016-05-24 Paolo Carlini <paolo.carlini@oracle.com>
1106
1107 PR c++/69872
1108 * typeck2.c (check_narrowing): Check pedwarn return value.
1109
1110 2016-05-24 Jakub Jelinek <jakub@redhat.com>
1111
1112 PR c++/71257
1113 * semantics.c (finish_omp_clauses) <case OMP_CLAUSE_LINEAR>:
1114 For OMP_CLAUSE_LINEAR_REF don't require type to be
1115 integral or pointer.
1116
1117 2016-05-24 Richard Biener <rguenther@suse.de>
1118
1119 PR middle-end/70434
1120 PR c/69504
1121 * expr.c (mark_exp_read): Handle VIEW_CONVERT_EXPR.
1122 * constexpr.c (cxx_eval_array_reference): Handle indexed
1123 vectors.
1124 * typeck.c (cp_build_array_ref): Adjust.
1125
1126 2016-05-23 Jason Merrill <jason@redhat.com>
1127
1128 PR c++/70344
1129 * constexpr.c (cxx_eval_call_expression): Check for
1130 fun == current_function_decl again.
1131
1132 PR c++/70584
1133 * cp-gimplify.c (cp_fold) [INDIRECT_REF]: Call
1134 maybe_undo_parenthesized_ref.
1135
1136 PR c++/70735
1137 * pt.c (tsubst_copy): Just return a local variable from
1138 non-template context. Don't call rest_of_decl_compilation for
1139 duplicated static locals.
1140 (tsubst_decl): Set DECL_CONTEXT of local static from another
1141 function.
1142
1143 2016-05-23 Paolo Carlini <paolo.carlini@oracle.com>
1144
1145 PR c++/70972
1146 * method.c (forward_parm): Use cp_build_reference_type.
1147
1148 2016-05-23 Paolo Carlini <paolo.carlini@oracle.com>
1149
1150 PR c++/69095
1151 * parser.c (cp_parser_initializer): Use check_for_bare_parameter_packs.
1152
1153 2016-05-23 Paolo Carlini <paolo.carlini@oracle.com>
1154
1155 * pt.c (check_for_bare_parameter_packs): Improve error message
1156 location for expressions.
1157
1158 2016-05-20 Nathan Sidwell <nathan@acm.org>
1159
1160 * constexpr.c (cxx_bind_parameters_in_call): Avoid gratuitous if
1161 ... goto.
1162 (cxx_eval_call_expression): Fix comment grammar.
1163
1164 2016-05-20 Paolo Carlini <paolo.carlini@oracle.com>
1165
1166 PR c++/70572
1167 * decl.c (cp_finish_decl): Check do_auto_deduction return value
1168 and return immediately in case of erroneous code.
1169
1170 2016-05-19 Marek Polacek <polacek@redhat.com>
1171
1172 PR c++/71075
1173 * pt.c (unify_template_argument_mismatch): Use %qE instead of %qD.
1174
1175 2016-05-19 Jason Merrill <jason@redhat.com>
1176
1177 PR c++/10200
1178 * pt.c (fn_type_unification): Add outer template args if needed.
1179 (type_unification_real): Handle getting full args.
1180
1181 2016-05-19 David Malcolm <dmalcolm@redhat.com>
1182
1183 PR c++/71184
1184 * parser.c (cp_parser_operator): For array new/delete, check that
1185 cp_parser_require returned a non-NULL token before dereferencing
1186 it.
1187
1188 2016-05-19 Bernd Edlinger <bernd.edlinger@hotmail.de>
1189
1190 * decl.c (finish_enum_value_list): Use the specified mode.
1191
1192 2016-05-18 Jason Merrill <jason@redhat.com>
1193
1194 * pt.c (value_dependent_expression_p): Tweak new cases to better
1195 match the wording in the standard.
1196
1197 2016-05-18 Paolo Carlini <paolo.carlini@oracle.com>
1198
1199 PR c++/69793
1200 * parser.c (cp_parser_template_id): Don't call cp_lexer_peek_nth_token
1201 when the previous cp_lexer_peek_token returns CPP_EOF.
1202
1203 2016-05-18 Paolo Carlini <paolo.carlini@oracle.com>
1204
1205 PR c++/70466
1206 * call.c (convert_like_real): Check that we are actually converting
1207 from an init list.
1208
1209 2016-05-16 Matthew Wahab <matthew.wahab@arm.com>
1210
1211 * decl.c (grokdeclarator): Remove errmsg and use of
1212 targetm.invalid_return_type.
1213 (grokparms): Remove errmsg and use of
1214 targetm.invalid_parameter_type.
1215
1216 2016-05-13 Jason Merrill <jason@redhat.com>
1217
1218 PR c++/10200
1219 PR c++/69753
1220 * pt.c (tsubst_decl): Use uses_template_parms.
1221 (instantiate_template_1): Handle non-dependent calls in templates.
1222 (value_dependent_expression_p): Handle BASELINK, FUNCTION_DECL.
1223 (type_dependent_expression_p): Only consider innermost template args.
1224 (dependent_template_arg_p): Check enclosing class of a template here.
1225 (dependent_template_p): Not here.
1226 (type_dependent_object_expression_p): New.
1227 * typeck.c (finish_class_member_access_expr): Use it.
1228 * parser.c (cp_parser_postfix_expression): Use it.
1229 (cp_parser_postfix_dot_deref_expression): Use it. Use comptypes
1230 to detect the current instantiation.
1231 (cp_parser_lookup_name): Really implement DR 141.
1232 * search.c (lookup_field_r): Prefer a dependent using-declaration.
1233 (any_dependent_bases_p): Split out from...
1234 * name-lookup.c (do_class_using_decl): ...here.
1235 * call.c (build_new_method_call_1): Use it.
1236 * semantics.c (finish_call_expr): 'this' doesn't make a call dependent.
1237 * tree.c (non_static_member_function_p): Remove.
1238 * typeck2.c (build_x_arrow): Use dependent_scope_p.
1239
1240 * parser.c (cp_parser_postfix_dot_deref_expression): Use
1241 complete_type_or_else for unknown_type_node, too.
1242
1243 2016-05-12 Marek Polacek <polacek@redhat.com>
1244
1245 PR c/70756
1246 * call.c (build_new_op_1): Pass LOC to cp_build_modify_expr.
1247 * cp-tree.h (cp_build_modify_expr): Update declaration.
1248 (cxx_incomplete_type_error, cxx_incomplete_type_diagnostic): New inline
1249 overloads.
1250 * cp-ubsan.c (cp_ubsan_dfs_initialize_vtbl_ptrs): Pass INPUT_LOCATION to
1251 cp_build_modify_expr.
1252 * decl2.c (set_guard): Likewise.
1253 (handle_tls_init): Likewise.
1254 * init.c (perform_member_init): Likewise.
1255 (expand_virtual_init): Likewise.
1256 (build_new_1): Likewise.
1257 (build_vec_delete_1): Likewise.
1258 (get_temp_regvar): Likewise.
1259 (build_vec_init): Likewise.
1260 * method.c (do_build_copy_assign): Likewise.
1261 (assignable_expr): Likewise.
1262 * semantics.c (finish_omp_for): Likewise.
1263 * typeck.c (cp_build_binary_op): Pass LOCATION to pointer_diff and
1264 cp_pointer_int_sum.
1265 (cp_pointer_int_sum): Add location parameter. Pass it down to
1266 pointer_int_sum.
1267 (pointer_diff): Add location parameter. Use it.
1268 (build_modify_expr): Pass location down to cp_build_modify_expr.
1269 (cp_build_modify_expr): Add location parameter. Use it.
1270 (build_x_modify_expr): Pass location down to cp_build_modify_expr.
1271 * typeck2.c (cxx_incomplete_type_diagnostic,
1272 cxx_incomplete_type_error): Add location parameter.
1273
1274 2016-05-11 Marek Polacek <polacek@redhat.com>
1275
1276 PR c++/71024
1277 * decl.c (duplicate_decls): Call diagnose_mismatched_decls.
1278
1279 2016-05-05 Jakub Jelinek <jakub@redhat.com>
1280
1281 * parser.c (cp_parser_selection_statement): For RID_SWITCH,
1282 pass if_p instead of NULL to cp_parser_implicitly_scoped_statement.
1283
1284 2016-05-04 Marek Polacek <polacek@redhat.com>
1285
1286 * parser.c (cp_parser_selection_statement): Replace OPT_Wparentheses
1287 with OPT_Wdangling_else.
1288
1289 2016-05-03 Martin Sebor <msebor@redhat.com>
1290
1291 PR c++/66561
1292 * tree.c (builtin_valid_in_constant_expr_p): Treat BUILT_IN_FILE,
1293 BUILT_IN_FUNCTION, and BUILT_IN_LINE as constant expressions.
1294
1295 2016-05-03 Marek Polacek <polacek@redhat.com>
1296
1297 PR c/70859
1298 * call.c (build_cxx_call): Pass location and vNULL down to
1299 check_builtin_function_arguments.
1300
1301 2016-05-03 Richard Biener <rguenther@suse.de>
1302
1303 * Make-lang.in (cc1plus-checksum.c): For stage-final re-use
1304 the checksum from the previous stage.
1305
1306 2016-05-02 David Malcolm <dmalcolm@redhat.com>
1307
1308 PR c++/62314
1309 * typeck.c (finish_class_member_access_expr): When
1310 giving a hint about a possibly-misspelled member name,
1311 add a fix-it replacement hint.
1312
1313 2016-05-02 Cesar Philippidis <cesar@codesourcery.com>
1314
1315 * cp-tree.h (finish_omp_clauses): Update prototype.
1316 * parser.c (cp_parser_oacc_all_clauses): Update call to
1317 finish_omp_clauses.
1318 (cp_parser_omp_all_clauses): Likewise.
1319 (cp_parser_omp_for_loop): Likewise.
1320 (cp_omp_split_clauses): Likewise.
1321 (cp_parser_oacc_cache): Likewise.
1322 (cp_parser_oacc_loop): Likewise.
1323 (cp_parser_omp_declare_target):
1324 (cp_parser_cilk_simd_all_clauses): Likewise.
1325 (cp_parser_cilk_for): Likewise.
1326 * pt.c (tsubst_omp_clauses): Replace allow_fields and declare_simd
1327 arguments with enum c_omp_region_type ort.
1328 (tsubst_omp_clauses): Update calls to finish_omp_clauses.
1329 (tsubst_omp_attribute): Update calls to tsubst_omp_clauses.
1330 (tsubst_omp_for_iterator): Update calls to finish_omp_clauses.
1331 (tsubst_expr): Update calls to tsubst_omp_clauses.
1332 * semantics.c (finish_omp_clauses): Replace bool arguments
1333 allow_fields, declare_simd, and is_cilk with bitmask ort.
1334 (finish_omp_for): Update call to finish_omp_clauses.
1335
1336 2016-05-02 David Malcolm <dmalcolm@redhat.com>
1337
1338 PR c++/62314
1339 * parser.c (cp_parser_class_head): Capture the start location;
1340 use it to emit a fix-it insertion hint when complaining
1341 about missing "template <> " in explicit specializations.
1342
1343 2016-05-02 Richard Sandiford <richard.sandiford@arm.com>
1344
1345 * init.c (build_new_1): Use shift operators instead of wi:: shifts.
1346
1347 2016-05-02 Richard Biener <rguenther@suse.de>
1348
1349 * decl.c (grokdeclarator): Properly insert a DECL_EXPR for
1350 anonymous VLAs.
1351
1352 2016-04-29 Paolo Carlini <paolo.carlini@oracle.com>
1353
1354 PR c++/66644
1355 * class.c (check_field_decl): Remove final int* parameter, change
1356 the return type to bool; fix logic in order not to reject multiple
1357 initialized fields in anonymous struct.
1358 (check_field_decls): Adjust call.
1359
1360 2016-04-29 Cesar Philippidis <cesar@codesourcery.com>
1361
1362 PR middle-end/70626
1363 * parser.c (cp_parser_oacc_loop): Don't augment mask with
1364 OACC_LOOP_CLAUSE_MASK.
1365 (cp_parser_oacc_kernels_parallel): Update call to
1366 c_oacc_split_loop_clauses.
1367
1368 2016-04-28 Jason Merrill <jason@redhat.com>
1369
1370 Implement C++17 [[nodiscard]] attribute.
1371 PR c++/38172
1372 PR c++/54379
1373 * parser.c (cp_parser_std_attribute): Handle [[nodiscard]].
1374 * tree.c (handle_nodiscard_attribute): New.
1375 (cxx_attribute_table): Add [[nodiscard]].
1376 * cvt.c (cp_get_fndecl_from_callee, cp_get_callee_fndecl): New.
1377 (maybe_warn_nodiscard): New.
1378 (convert_to_void): Call it.
1379
1380 * cvt.c (cp_get_callee): New.
1381 * constexpr.c (get_function_named_in_call): Use it.
1382 * cxx-pretty-print.c (postfix_expression): Use it.
1383 * except.c (check_noexcept_r): Use it.
1384 * method.c (check_nontriv): Use it.
1385 * tree.c (build_aggr_init_expr): Use it.
1386 * cp-tree.h: Declare it.
1387
1388 2015-04-27 Ryan Burn <contact@rnburn.com>
1389 Jeff Law <law@redhat.com>
1390
1391 PR c++/69024
1392 PR c++/68997
1393 * cp-gimplify.c (cp_gimplify_expr): Call cilk_cp_detect_spawn_and_unwrap
1394 instead of cilk_detect_spawn_and_unwrap.
1395 * cp-cilkplus.c (is_conversion_operator_function_decl_p): New.
1396 (find_spawn): New.
1397 (cilk_cp_detect_spawn_and_unwrap): New.
1398 * lambda.c: Include cp-cilkplus.h.
1399 * parser.c: Include cp-cilkplus.h.
1400 * cp-tree.h (cpp_validate_cilk_plus_loop): Move prototype into...
1401 * cp-cilkpus.h: New file.
1402
1403 2016-04-27 Nathan Sidwell <nathan@acm.org>
1404
1405 * constexpr.c (get_fundef_copy): Use the original function for
1406 non-recursive evaluations.
1407 (save_fundef_copy): Always expect a slot to be available.
1408
1409 2016-04-27 Bernd Schmidt <bschmidt@redhat.com>
1410
1411 * parser.c (cp_parser_postfix_expression): Call
1412 warn_for_memset instead of warning directly here.
1413
1414 2016-04-26 Patrick Palka <ppalka@gcc.gnu.org>
1415
1416 PR c++/70241
1417 * decl.c (build_enumerator): Set current_access_specifier when
1418 declaring an enumerator belonging to an in-class enumeration.
1419 * parser.c (cp_parser_check_access_in_redecleration): Also
1420 consider in-class enumerations.
1421
1422 2016-04-26 Marek Polacek <polacek@redhat.com>
1423
1424 PR c++/70744
1425 * call.c (build_conditional_expr_1): Call cp_stabilize_reference
1426 instead of stabilize_reference.
1427 (build_over_call): Likewise.
1428 * cp-tree.h (cp_stabilize_reference): Declare.
1429 * tree.c (cp_stabilize_reference): New function.
1430 * typeck.c (cp_build_unary_op): Call cp_stabilize_reference instead of
1431 stabilize_reference.
1432 (unary_complex_lvalue): Likewise.
1433 (cp_build_modify_expr): Likewise.
1434
1435 2016-04-26 Jakub Jelinek <jakub@redhat.com>
1436
1437 PR bootstrap/70704
1438 * pt.c (build_non_dependent_expr): Use flag_checking > 1 instead of
1439 just flag_checking.
1440
1441 2016-04-25 Jason Merrill <jason@redhat.com>
1442
1443 * tree.c (std_attribute_table): New.
1444 (init_tree): Register it.
1445
1446 2016-04-22 Jason Merrill <jason@redhat.com>
1447
1448 * parser.c (cp_parser_perform_range_for_lookup): Decay the array.
1449
1450 2016-04-21 Patrick Palka <ppalka@gcc.gnu.org>
1451
1452 * name-lookup.c (free_saved_scope): New free list of saved_scope
1453 structures.
1454 (push_to_top_level): Attempt to reuse a saved_scope struct
1455 from free_saved_scope instead of allocating a new one each time.
1456 (pop_from_top_level_1): Chain the now-unused saved_scope structure
1457 onto free_saved_scope.
1458
1459 2016-04-21 Paolo Carlini <paolo.carlini@oracle.com>
1460
1461 PR c++/70540
1462 * semantics.c (process_outer_var_ref): Unconditionally return
1463 error_mark_node when mark_used returns false.
1464
1465 2016-04-21 Marek Polacek <polacek@redhat.com>
1466
1467 PR c++/70513
1468 * parser.c (cp_parser_enum_specifier): Check and possibly error for
1469 extra qualification.
1470
1471 2016-04-20 Nathan Sidwell <nathan@acm.org>
1472
1473 PR c++/55635
1474 * init.c (build_vec_delete_1): Protect operator delete call in try
1475 finally.
1476 (build_delete): Likewise.
1477 * optimize.c (build_delete_destructor_body): Likewise.
1478
1479 2016-04-20 Ilya Verbin <ilya.verbin@intel.com>
1480
1481 PR c++/69363
1482 * cp-tree.h (finish_omp_clauses): Add new default argument.
1483 * parser.c (cp_parser_cilk_simd_all_clauses): Use finish_omp_clauses
1484 instead of c_finish_cilk_clauses.
1485 * semantics.c (finish_omp_clauses): Add new argument. Allow
1486 floating-point variables in the linear clause for Cilk Plus.
1487
1488 2016-04-20 Nathan Sidwell <nathan@acm.org>
1489
1490 * semantics.c (finish_compound_lteral): Don't wrap VECTOR_TYPEs in a
1491 TARGET_EXPR.
1492
1493 2016-04-19 Jason Merrill <jason@redhat.com>
1494
1495 PR c++/66543
1496 * expr.c (mark_exp_read): Handle NON_DEPENDENT_EXPR.
1497 * pt.c (make_pack_expansion): Call mark_exp_read.
1498 * semantics.c (finish_id_expression): Call mark_type_use in
1499 unevaluated context.
1500
1501 DR 2137
1502 * call.c (implicit_conversion): If we choose a copy constructor
1503 for list-initialization from the same type, the conversion is an
1504 exact match.
1505
1506 * constexpr.c (breaks): Handle EXIT_EXPR.
1507 (cxx_eval_loop_expr): Handle COMPOUND_EXPR body.
1508 (cxx_eval_constant_expression): Handle EXIT_EXPR, improve handling
1509 of COMPOUND_EXPR.
1510
1511 PR c++/68206
1512 PR c++/68530
1513 * constexpr.c (potential_constant_expression_1): Handle LOOP_EXPR
1514 and GOTO_EXPR.
1515
1516 * pt.c (tsubst_expr): Remove shadowing declaration.
1517 (tsubst_pack_expansion): Add assert.
1518
1519 * semantics.c (add_decl_expr): Use DECL_SOURCE_LOCATION.
1520
1521 PR c++/70522
1522 * name-lookup.c (qualified_lookup_using_namespace): Look through
1523 hidden names.
1524
1525 2016-04-18 Michael Matz <matz@suse.de>
1526
1527 * class.c (build_vtable): Use SET_DECL_ALIGN and SET_TYPE_ALIGN.
1528 (layout_class_type): Ditto.
1529 (build_base_field): Use SET_DECL_ALIGN.
1530 (fixup_attribute_variants): Use SET_TYPE_ALIGN.
1531 * decl.c (duplicate_decls): Use SET_DECL_ALIGN.
1532 (record_unknown_type): Use SET_TYPE_ALIGN.
1533 (cxx_init_decl_processing): Ditto.
1534 (copy_type_enum): Ditto.
1535 (grokfndecl): Use SET_DECL_ALIGN.
1536 (copy_type_enum): Use SET_TYPE_ALIGN.
1537 * pt.c (instantiate_class_template_1): Use SET_TYPE_ALIGN.
1538 (tsubst): Ditto.
1539 * tree.c (cp_build_qualified_type_real): Use SET_TYPE_ALIGN.
1540 * lambda.c (maybe_add_lambda_conv_op): Use SET_DECL_ALIGN.
1541 * method.c (implicitly_declare_fn): Use SET_DECL_ALIGN.
1542 * rtti.c (emit_tinfo_decl): Ditto.
1543
1544 2016-04-18 Jason Merrill <jason@redhat.com>
1545
1546 PR c++/70690
1547 PR c++/70528
1548 * class.c (type_maybe_constexpr_default_constructor): New.
1549 (type_has_constexpr_default_constructor): Revert.
1550
1551 2016-04-16 Sandra Loosemore <sandra@codesourcery.com>
1552
1553 PR target/1078
1554
1555 * tree.c (cxx_attribute_table): Remove "com_interface" entry.
1556 (handle_com_interface_attribute): Delete.
1557
1558 2016-04-15 Jason Merrill <jason@redhat.com>
1559
1560 PR c++/70685
1561 * constexpr.c (get_fundef_copy): Handle null *slot.
1562
1563 PR c++/70505
1564 * pt.c (tsubst_baselink): Give the new TEMPLATE_ID_EXPR
1565 unknown_type_node, too.
1566
1567 2016-04-15 Jason Merrill <jason@redhat.com>
1568 Nathan Sidwell <nathan@acm.org>
1569
1570 PR c++/70594
1571 * constexpr.c (constexpr_call_table): Preserve in GC.
1572 (struct fundef_copy, struct fundef_copies_table_t): Delete.
1573 (fundef_copies_table): Preserve in GC. Change to pointer to
1574 tree->tree hash.
1575 (maybe_initialize_fundef_copies_table): Adjust.
1576 (get_fundef_copy): Return a TREE_LIST. Use non-inserting search.
1577 (save_fundef_copy): Adjust for a TREE_LIST.
1578 (cxx_eval_call_expression): Adjust for a fundef_copy TREE_LIST.
1579 (fini_constexpr): New.
1580 * cp-tree.h (fini_constexpr): Declare.
1581 * decl2.c (c_parse_final_cleanups): Call fini_constexpr.
1582
1583 2016-04-15 Jakub Jelinek <jakub@redhat.com>
1584
1585 PR c/70436
1586 * parser.c (cp_parser_pragma): Add IF_P argument, pass it down
1587 where needed.
1588 (cp_parser_declaration_seq_opt, cp_parser_member_specification_opt,
1589 cp_parser_objc_interstitial_code, cp_parser_omp_declare_simd,
1590 cp_parser_oacc_routine): Adjust cp_parser_pragma callers.
1591 (cp_parser_statement): Likewise. Adjust cp_parser_cilk_for caller.
1592 (cp_parser_omp_structured_block): Add IF_P argument, pass it down to
1593 cp_parser_statement.
1594 (cp_parser_oacc_data, cp_parser_oacc_host_data, cp_parser_oacc_loop,
1595 cp_parser_oacc_kernels_parallel, cp_parser_omp_critical,
1596 cp_parser_omp_simd, cp_parser_omp_for, cp_parser_omp_master,
1597 cp_parser_omp_ordered, cp_parser_omp_parallel, cp_parser_omp_single,
1598 cp_parser_omp_task, cp_parser_omp_taskgroup, cp_parser_omp_distribute,
1599 cp_parser_omp_teams, cp_parser_omp_target_data, cp_parser_omp_target,
1600 cp_parser_omp_taskloop, cp_parser_omp_construct,
1601 cp_parser_cilk_grainsize, cp_parser_cilk_simd, cp_parser_cilk_for):
1602 Add IF_P argument, pass it down where needed.
1603 (cp_parser_omp_for_loop): Likewise. Clear IF_P if nbraces.
1604 (cp_parser_omp_sections_scope): Adjust cp_parser_omp_structured_block
1605 calls.
1606
1607 2016-04-14 Jason Merrill <jason@redhat.com>
1608
1609 PR c++/70494
1610 * decl.c (cxx_maybe_build_cleanup): Handle non-decls.
1611 * typeck2.c (split_nonconstant_init_1): Use it.
1612
1613 PR c++/70528
1614 * class.c (type_has_constexpr_default_constructor): Return true
1615 for an implicitly declared constructor.
1616
1617 PR c++/70622
1618 * parser.c (cp_parser_init_declarator): Add auto_result parm.
1619 (cp_parser_simple_declaration): Pass it.
1620 (strip_declarator_types): New.
1621
1622 PR c++/70543
1623 * pt.c (value_dependent_expression_p) [VAR_DECL]: A type-dependent
1624 initializer also makes the variable value-dependent.
1625
1626 PR c++/70648
1627 * constexpr.c (cxx_eval_store_expression): Also copy
1628 CONSTRUCTOR_NO_IMPLICIT_ZERO.
1629
1630 2016-04-14 Martin Sebor <msebor@redhat.com>
1631
1632 PR c++/69517
1633 PR c++/70019
1634 PR c++/70588
1635 * cp-tree.h, decl.c, init.c, typeck2.c: Revert.
1636
1637 2016-04-14 Jason Merrill <jason@redhat.com>
1638
1639 * call.c, decl.c, error.c, cp-tree.h, decl.c: Revert empty
1640 parameter ABI change.
1641
1642 2016-04-13 Martin Sebor <msebor@redhat.com>
1643
1644 PR c++/69517
1645 PR c++/70019
1646 PR c++/70588
1647 * cp-tree.h (throw_bad_array_length, build_vla_check): Declare new
1648 functions.
1649 * decl.c (check_initializer, cp_finish_decl): Call them.
1650 (reshape_init_r): Reject incompletely braced intializer-lists
1651 for VLAs.
1652 * init.c (throw_bad_array_length, build_vla_check)
1653 (build_vla_size_check, build_vla_init_check): Define new functions.
1654 * typeck2.c (split_nonconstant_init_1): Use variably_modified_type_p()
1655 to detect a VLA.
1656 (store_init_value): Same.
1657
1658 2016-04-13 Jason Merrill <jason@redhat.com>
1659
1660 Warn about empty parameter ABI with -Wabi=9.
1661 * call.c (empty_class_msg, mark_for_abi_warning)
1662 (warn_empty_class_abi): New.
1663 (build_call_a): Use them.
1664 * decl.c (store_parm_decls): Use mark_for_abi_warning.
1665 * error.c (pp_format_to_string): New.
1666
1667 Pass empty class parameters like C.
1668 * call.c (pass_as_empty_struct, empty_class_arg): New.
1669 (type_passed_as, build_x_va_arg): Use pass_as_empty_struct.
1670 (build_call_a): Use empty_class_arg.
1671 * cp-tree.h (CPTI_EMPTY_STRUCT, empty_struct_type): New.
1672 * decl.c (cxx_init_decl_processing): Create empty_struct_type.
1673
1674 2016-04-13 Jason Merrill <jason@redhat.com>
1675
1676 PR c++/70627
1677 * decl.c (start_enum): Don't change an existing ENUM_UNDERLYING_TYPE.
1678
1679 2016-04-13 Paolo Carlini <paolo.carlini@oracle.com>
1680
1681 PR c++/70635
1682 * pt.c (resolve_typename_type): Fix typos in infinite recursion
1683 avoidance mechanism.
1684
1685 2016-04-13 Jason Merrill <jason@redhat.com>
1686
1687 PR c++/70634
1688 * pt.c (instantiation_dependent_uneval_expression_p): Split out
1689 from instantiation_dependent_expression_p.
1690 (value_dependent_expression_p): Use it for unevaluated operands.
1691 (instantiation_dependent_r): Don't check value-dependence.
1692 (instantiation_dependent_expression_p): Check
1693 value-dependence of the expression as a whole.
1694 * cp-tree.h: Declare instantiation_dependent_uneval_expression_p.
1695 * semantics.c (finish_decltype_type): Use it.
1696
1697 * constexpr.c (potential_nondependent_constant_expression): New.
1698 (potential_nondependent_static_init_expression): New.
1699 (maybe_constant_value_1, fold_non_dependent_expr)
1700 (maybe_constant_init): Use them.
1701 * pt.c (instantiate_non_dependent_expr_sfinae)
1702 (instantiate_non_dependent_or_null, convert_nontype_argument): Use
1703 them.
1704 * cp-tree.h: Declare them.
1705
1706 2016-04-13 Jakub Jelinek <jakub@redhat.com>
1707
1708 PR c++/70594
1709 * decl.c (pop_labels_1): Removed.
1710 (note_label, sort_labels): New functions.
1711 (pop_labels): During named_labels traversal, just push the slot
1712 pointers into a vector, then qsort it by DECL_UID and only then
1713 call pop_label and chain it into BLOCK_VARS.
1714
1715 2016-04-13 Jason Merrill <jason@redhat.com>
1716
1717 PR c++/70615
1718 * cp-gimplify.c (cp_genericize_r): Expand PTRMEM_CST here.
1719 (cp_gimplify_expr): Not here.
1720
1721 2016-04-12 Patrick Palka <ppalka@gcc.gnu.org>
1722
1723 PR c++/70610
1724 * tree.c (lvalue_kind) [NON_DEPENDENT_EXPR]: Unconditionally
1725 recurse into it.
1726 * typeck.c (build_x_conditional_expr): Unconditionally remember
1727 that the result is an lvalue or xvalue.
1728
1729 2016-04-12 Jason Merrill <jason@redhat.com>
1730
1731 * class.c (is_really_empty_class): A zero-length array is empty.
1732 An unnamed bit-field doesn't make a class non-empty.
1733
1734 2016-04-12 Paolo Carlini <paolo.carlini@oracle.com>
1735
1736 PR c++/68722
1737 * parser.c (cp_parser_cache_defarg): When file ends in default
1738 argument simply return error_mark_node.
1739
1740 2016-04-12 Nathan Sidwell <nathan@acm.org>
1741
1742 PR c++/70501
1743 * constexpr.c (cxx_eval_bare_aggregate): Handle VECTOR_TYPE
1744 similarly to PMF.
1745
1746 2016-04-11 Jason Merrill <jason@redhat.com>
1747
1748 * mangle.c (decl_is_template_id): The template itself counts as a
1749 template-id.
1750
1751 2016-04-08 Patrick Palka <ppalka@gcc.gnu.org>
1752
1753 PR c++/70590
1754 PR c++/70452
1755 * constexpr.c (cxx_eval_outermost_expression): Call unshare_expr
1756 on the result if it's not a CONSTRUCTOR.
1757
1758 2016-04-07 Patrick Palka <ppalka@gcc.gnu.org>
1759
1760 PR c++/70452
1761 * constexpr.c (find_constructor): New function.
1762 (unshare_constructor): New function.
1763 (cxx_eval_call_expression): Use unshare_constructor instead of
1764 unshare_expr.
1765 (find_array_ctor_elt): Likewise.
1766 (cxx_eval_vec_init_1): Likewise.
1767 (cxx_eval_store_expression): Likewise.
1768 (cxx_eval_constant_expression): Likewise.
1769
1770 2016-04-06 Patrick Palka <ppalka@gcc.gnu.org>
1771
1772 PR c/70436
1773 * cp-tree.h (FOR_EACH_CLONE): Restructure macro to avoid
1774 potentially generating a future -Wparentheses warning in its
1775 callers.
1776
1777 2016-04-06 Jason Merrill <jason@redhat.com>
1778
1779 * class.c (check_abi_tags): Fix function template handling.
1780
1781 2016-04-05 Nathan Sidwell <nathan@acm.org>
1782
1783 PR c++/70512
1784 * class.c (fixup_may_alias): New.
1785 (fixup_attribute_variants): Call it.
1786
1787 2016-04-05 Patrick Palka <ppalka@gcc.gnu.org>
1788
1789 PR c++/70452
1790 * constexpr.c (struct fundef_copy): New struct.
1791 (struct fundef_copies_table_t): New struct.
1792 (fundef_copies_table): New static variable.
1793 (maybe_initialize_fundef_copies_table): New static function.
1794 (get_fundef_copy): New static function.
1795 (save_fundef_copy): New static function.
1796 (cxx_eval_call_expression): Use get_fundef_copy, and
1797 save_fundef_copy.
1798 (constexpr_call_table): Add "deletable" GTY marker.
1799
1800 2016-04-05 Patrick Palka <ppalka@gcc.gnu.org>
1801
1802 PR c++/70452
1803 * cp-tree.h (class cache_map): Remove.
1804 * constexpr.c (cv_cache): Change type to
1805 GTY((deletable)) hash_map<tree, tree> *.
1806 (maybe_constant_value): Adjust following the change to cv_cache.
1807 (clear_cv_cache): New static function.
1808 (clear_cv_and_fold_caches): Use it.
1809 * cp-gimplify.c (fold_cache): Change type to
1810 GTY((deletable)) hash_map<tree, tree> *.
1811 (clear_fold_cache): Adjust following the change to fold_cache.
1812 (cp_fold): Likewise.
1813
1814 2016-04-02 Martin Sebor <msebor@redhat.com>
1815
1816 PR c++/67376
1817 PR c++/70170
1818 PR c++/70172
1819 PR c++/70228
1820 * constexpr.c (diag_array_subscript): New function.
1821 (cxx_eval_array_reference): Detect out of bounds array indices.
1822
1823 2016-04-01 Jason Merrill <jason@redhat.com>
1824
1825 PR c++/70449
1826 PR c++/70344
1827 * pt.c (instantiate_decl): A function isn't fully defined if
1828 DECL_INITIAL is error_mark_node.
1829 * constexpr.c (cxx_eval_call_expression): Likewise.
1830
1831 2016-04-01 Jakub Jelinek <jakub@redhat.com>
1832 Marek Polacek <polacek@redhat.com>
1833
1834 PR c++/70488
1835 * init.c (warn_placement_new_too_small): Test whether
1836 DECL_SIZE_UNIT or TYPE_SIZE_UNIT are integers that fit into uhwi.
1837
1838 2016-04-01 Nathan Sidwell <nathan@acm.org>
1839
1840 PR c++/68475
1841 * decl.c (check_redeclaration_exception_specification): Check
1842 regardless of -fno-exceptions.
1843 * typeck2.c (merge_exception_specifiers): Relax assert by checking
1844 flag_exceptions too.
1845
1846 2016-03-31 Nathan Sidwell <nathan@acm.org>
1847
1848 * decl.c (start_preparsed_function): Remove unnecessary bracing.
1849 (finish_destructor_body): Don't emit operator delete here.
1850
1851 2016-03-31 Nathan Sidwell <nathan@acm.org>
1852
1853 PR c++/70393
1854 * constexpr.c (cxx_eval_store_expression): Keep CONSTRUCTOR
1855 elements in field order.
1856
1857 2016-03-31 Marek Polacek <polacek@redhat.com>
1858
1859 PR c/70297
1860 * decl.c (duplicate_decls): Also set TYPE_ALIGN and TYPE_USER_ALIGN.
1861
1862 2016-03-31 Richard Biener <rguenther@suse.de>
1863
1864 PR c++/70430
1865 * typeck.c (cp_build_binary_op): Fix operand order of vector
1866 conditional in truth op handling.
1867
1868 2016-03-29 Jason Merrill <jason@redhat.com>
1869
1870 PR c++/70353
1871 * decl.c (make_rtl_for_nonlocal_decl): Don't defer local statics
1872 in constexpr functions.
1873
1874 2016-03-28 Jason Merrill <jason@redhat.com>
1875
1876 PR c++/70422
1877 PR c++/64266
1878 PR c++/70353
1879 * decl.c, pt.c, constexpr.c: Revert last patch.
1880
1881 2016-03-25 Jason Merrill <jason@redhat.com>
1882 Martin Liška <mliska@suse.cz>
1883
1884 PR c++/64266
1885 PR c++/70353
1886 Core issue 1962
1887 * decl.c (cp_fname_init): Decay the initializer to pointer.
1888 (cp_make_fname_decl): Set DECL_DECLARED_CONSTEXPR_P,
1889 DECL_VALUE_EXPR, DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P.
1890 Don't call cp_finish_decl.
1891 * pt.c (tsubst_expr) [DECL_EXPR]: Set DECL_VALUE_EXPR,
1892 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P. Don't call cp_finish_decl.
1893 * constexpr.c (cxx_eval_constant_expression) [VAR_DECL]:
1894 Handle DECL_VALUE_EXPR.
1895
1896 2016-03-24 Jason Merrill <jason@redhat.com>
1897
1898 PR c++/70386
1899 * constexpr.c (cxx_eval_bare_aggregate): Handle PMFs.
1900
1901 PR c++/70323
1902 * constexpr.c (cxx_eval_call_expression): Don't cache result if
1903 *overflow_p.
1904
1905 2016-03-24 Patrick Palka <ppalka@gcc.gnu.org>
1906
1907 PR c++/62212
1908 * tree.c (build_cplus_array_type): Determine type-dependentess
1909 with uses_template_parms instead of with dependent_type_p.
1910
1911 2016-03-23 Patrick Palka <ppalka@gcc.gnu.org>
1912
1913 PR c++/70347
1914 * typeck.c (process_init_constructor_union): If the initializer
1915 is empty, use the union's NSDMI if it has one.
1916
1917 2016-03-23 Patrick Palka <ppalka@gcc.gnu.org>
1918
1919 PR c++/70332
1920 * pt.c (tsubst_copy) [PARM_DECL]: Handle the use of 'this' in an
1921 NSDMI that's part of an aggregrate initialization.
1922
1923 2016-03-23 Jakub Jelinek <jakub@redhat.com>
1924
1925 PR c++/70001
1926 * constexpr.c (cxx_eval_vec_init_1): Reuse CONSTRUCTOR initializers
1927 for 1..max even for multi-dimensional arrays. Call unshare_expr
1928 on it.
1929
1930 PR c++/70323
1931 * constexpr.c (cxx_eval_constant_expression): Diagnose overflow
1932 on TREE_OVERFLOW constants.
1933
1934 PR c++/70376
1935 * cp-gimplify.c (genericize_omp_for_stmt): Don't walk OMP_FOR_CLAUSES
1936 for OMP_TASKLOOP here.
1937 (cp_genericize_r): Handle OMP_TASKLOOP like OMP_TASK, except do call
1938 genericize_omp_for_stmt instead of cp_walk_tree on OMP_BODY.
1939
1940 2016-03-23 Alexandre Oliva <aoliva@redhat.com>
1941 Jason Merrill <jason@redhat.com>
1942 Jakub Jelinek <jakub@redhat.com>
1943
1944 PR c++/69315
1945 * cp-tree.h (defer_mark_used_calls, deferred_mark_used_calls): Remove.
1946 * decl.c (defer_mark_used_calls, deferred_mark_used_calls): Remove.
1947 (finish_function): Don't set or test them.
1948 * decl2.c (mark_used): Don't handle defer_mark_used_calls.
1949
1950 2016-03-23 Jason Merrill <jason@redhat.com>
1951
1952 PR c++/70344
1953 * constexpr.c (cxx_eval_call_expression): Catch invalid recursion.
1954
1955 2016-03-23 Marek Polacek <polacek@redhat.com>
1956
1957 PR c++/69884
1958 * pt.c (canonicalize_type_argument): Use OPT_Wignored_attributes.
1959
1960 2016-03-22 Ilya Enkovich <enkovich.gnu@gmail.com>
1961
1962 * call.c (build_conditional_expr_1): Always use original
1963 condition type for vector type checks and build.
1964
1965 2016-03-22 Patrick Palka <ppalka@gcc.gnu.org>
1966
1967 PR c++/70096
1968 * pt.c (tsubst_decl): Clear the DECL_MODE of the new decl.
1969
1970 2016-03-22 Patrick Palka <ppalka@gcc.gnu.org>
1971
1972 PR c++/70204
1973 * constexpr.c (non_const_var_error): Check
1974 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P.
1975
1976 2016-03-21 Richard Henderson <rth@redhat.com>
1977
1978 PR c++/70273
1979 * decl.c (notice_forced_label_r): New.
1980 (cp_finish_decl): Use it.
1981
1982 2016-03-21 Jason Merrill <jason@redhat.com>
1983
1984 PR c++/70285
1985 * cp-gimplify.c (cp_fold) [COND_EXPR]: Handle bit-fields.
1986
1987 2016-03-18 Jason Merrill <jason@redhat.com>
1988
1989 PR c++/70139
1990 * constexpr.c (cxx_eval_call_expression): Fix trivial copy.
1991
1992 PR c++/70147
1993 * class.c (vptr_via_virtual_p): New.
1994 (most_primary_binfo): Factor out of build_rtti_vtbl_entries.
1995 * cp-ubsan.c (cp_ubsan_dfs_initialize_vtbl_ptrs): Don't clear
1996 a vptr from any virtual base in a not-in-charge 'structor.
1997
1998 * decl.c (build_clobber_this): Factor out of
1999 start_preparsed_function and begin_destructor_body. Handle
2000 virtual bases better.
2001
2002 * class.c (build_if_in_charge): Split out from build_base_path.
2003 * init.c (expand_virtual_init, expand_default_init): Use it.
2004 * call.c (build_special_member_call): Use it.
2005
2006 2016-03-18 Jakub Jelinek <jakub@redhat.com>
2007
2008 PR c++/70267
2009 * init.c (build_new_1): Complain and return error_mark_node
2010 if alloc_fn is not _Jv_AllocObject function returning pointer.
2011
2012 2016-03-18 Patrick Palka <ppalka@gcc.gnu.org>
2013
2014 PR c++/70205
2015 * search.c (adjust_result_of_qualified_name_lookup): Don't
2016 update the BASELINK_BINFO of DECL if the second call
2017 to lookup_base fails.
2018
2019 2016-03-18 Patrick Palka <ppalka@gcc.gnu.org>
2020
2021 PR c++/70218
2022 * parser.c (cp_parser_lambda_expression): Move call to
2023 pop_deferring_access_checks ahead of the call to
2024 cp_parser_end_tentative_firewall.
2025
2026 2016-03-17 Jakub Jelinek <jakub@redhat.com>
2027
2028 PR c++/70144
2029 * cp-tree.h (magic_varargs_p): Return int instead of bool.
2030 * call.c (magic_varargs_p): Return int instead of bool, return 2 for
2031 Cilk+ reductions, otherwise 1 for magic varargs and 0 for normal
2032 varargs.
2033 (build_over_call): If magic_varargs_p == 2, call reject_gcc_builtin,
2034 if magic_varargs_p == 1, call decay_conversion
2035 instead of mark_type_use. Don't store error_mark_node arguments to
2036 argarray, instead return error_mark_node.
2037
2038 PR c++/70272
2039 * decl.c (begin_destructor_body): Don't insert clobber if
2040 is_empty_class (current_class_type).
2041
2042 2016-03-17 Marek Polacek <polacek@redhat.com>
2043
2044 PR c++/70194
2045 * typeck.c (warn_for_null_address): New function.
2046 (cp_build_binary_op): Call it.
2047
2048 2016-03-16 Jason Merrill <jason@redhat.com>
2049
2050 PR c++/70259
2051 * decl.c (start_preparsed_function): Don't clobber an empty base.
2052
2053 2016-03-16 Jakub Jelinek <jakub@redhat.com>
2054
2055 PR c++/70147
2056 * cp-ubsan.c (cp_ubsan_dfs_initialize_vtbl_ptrs): Conditionalize
2057 BINFO_VIRTUAL_P vtable clearing on current_in_charge_parm.
2058
2059 PR c++/70147
2060 * cp-ubsan.c (cp_ubsan_maybe_initialize_vtbl_ptrs): Temporarily
2061 set in_base_initializer.
2062
2063 2016-03-15 Marek Polacek <polacek@redhat.com>
2064
2065 PR c++/70209
2066 * tree.c (strip_typedefs): Call strip_typedefs again on the
2067 DECL_ORIGINAL_TYPE result.
2068
2069 2016-03-15 Jason Merrill <jason@redhat.com>
2070
2071 PR c++/70095
2072 * pt.c (instantiate_decl): Fix call to variable_template_p.
2073
2074 PR c++/70141
2075 * pt.c (for_each_template_parm_r): Always walk into TYPENAME_TYPE.
2076
2077 2016-03-14 Casey Carter <casey@carter.net>
2078 Jason Merrill <jason@redhat.com>
2079
2080 P0184R0: Generalizing the Range-Based For Loop
2081 * parser.c (cp_convert_range_for): Set the type of __end separately.
2082 (cp_parser_perform_range_for_lookup): Allow different begin/end
2083 types if they are comparable.
2084
2085 2016-03-12 Patrick Palka <ppalka@gcc.gnu.org>
2086
2087 PR c++/70106
2088 * semantics.c (force_paren_expr): Just build a PAREN_EXPR when
2089 processing_template_decl and EXPR is a SCOPE_REF.
2090
2091 2016-03-10 Patrick Palka <ppalka@gcc.gnu.org>
2092 Jakub Jelinek <jakub@redhat.com>
2093
2094 PR c++/70001
2095 * constexpr.c (cxx_eval_vec_init_1): For pre_init case, reuse
2096 return value from cxx_eval_constant_expression from earlier
2097 elements if it is valid constant initializer requiring no
2098 relocations.
2099
2100 2016-03-10 Marek Polacek <polacek@redhat.com>
2101
2102 PR c++/70153
2103 * cp-gimplify.c (cp_fold): Handle UNARY_PLUS_EXPR.
2104
2105 2016-03-09 Cesar Philippidis <cesar@codesourcery.com>
2106
2107 * parser.c (cp_parser_oacc_loop): Update cclauses and clauses
2108 when calling c_finish_omp_clauses.
2109
2110 2016-03-08 Jason Merrill <jason@redhat.com>
2111
2112 * parser.c (cp_parser_diagnose_invalid_type_name): Give helpful
2113 diagnostic for use of "concept".
2114 (cp_parser_requires_clause_opt): And "requires".
2115 (cp_parser_type_parameter, cp_parser_late_return_type_opt)
2116 (cp_parser_explicit_template_declaration): Adjust.
2117 * Make-lang.in (check-c++-all): Add "concepts" to std list.
2118
2119 P0036R0: Unary Folds and Empty Parameter Packs
2120 * pt.c (expand_empty_fold): Remove special cases for *,+,&,|.
2121
2122 2016-03-08 Jakub Jelinek <jakub@redhat.com>
2123
2124 PR c++/70135
2125 * constexpr.c (cxx_eval_loop_expr): Forget saved values of SAVE_EXPRs
2126 even after the last iteration of the loop.
2127
2128 * decl.c (duplicate_decls): Fix spelling - becuase -> because.
2129
2130 2016-03-07 Patrick Palka <ppalka@gcc.gnu.org>
2131
2132 PR c++/66786
2133 * pt.c (get_template_info): Handle PARM_DECL.
2134 (template_class_depth): Check DECL_P instead of
2135 VAR_OR_FUNCTION_DECL_P.
2136
2137 2016-03-05 Jason Merrill <jason@redhat.com>
2138
2139 PR c++/67364
2140 * constexpr.c (cxx_eval_store_expression): Replace
2141 CONSTRUCTOR_ELTS in nested CONSTRUCTORs, too.
2142
2143 2016-03-05 Patrick Palka <ppalka@gcc.gnu.org>
2144
2145 PR c++/66786
2146 * pt.c (template_class_depth): Given a lambda type, iterate
2147 into its LAMBDA_TYPE_EXTRA_SCOPE field instead of its
2148 TYPE_CONTEXT. Given a VAR_DECL, iterate into its
2149 CP_DECL_CONTEXT.
2150
2151 2016-03-04 Jason Merrill <jason@redhat.com>
2152
2153 PR c++/69203
2154 * cp-tree.h (COND_EXPR_IS_VEC_DELETE): New.
2155 * init.c (build_vec_delete_1): Set it.
2156 * constexpr.c (potential_constant_expression_1) [COND_EXPR]: Check it.
2157
2158 2016-03-04 Jakub Jelinek <jakub@redhat.com>
2159
2160 * decl.c (start_preparsed_function): Don't emit start clobber at the
2161 start of constructor clones.
2162
2163 PR c++/70035
2164 * cp-tree.h (cp_ubsan_maybe_initialize_vtbl_ptrs): New prototype.
2165 * decl.c (start_preparsed_function): Call
2166 cp_ubsan_maybe_initialize_vtbl_ptrs if needed.
2167 * cp-ubsan.c (cp_ubsan_dfs_initialize_vtbl_ptrs,
2168 cp_ubsan_maybe_initialize_vtbl_ptrs): New functions.
2169
2170 2016-03-04 Jason Merrill <jason@redhat.com>
2171
2172 PR c++/67364
2173 * constexpr.c (cxx_eval_component_reference): Further tweak.
2174
2175 * constexpr.c (struct constexpr_ctx): Add save_exprs field.
2176 (cxx_eval_loop_expr): Discard SAVE_EXPR values before looping.
2177 (cxx_eval_constant_expression) [SAVE_EXPR]: Add it to the set.
2178 (cxx_eval_outermost_constant_expr, is_sub_constant_expr): Initialize.
2179
2180 PR c++/70067
2181 * tree.c (strip_typedefs): Handle TYPENAME_TYPE lookup finding the
2182 same type.
2183
2184 2016-03-03 Jason Merrill <jason@redhat.com>
2185
2186 * method.c (synthesized_method_walk): operator= can also be constexpr.
2187
2188 * pt.c (tsubst_copy_and_build) [LAMBDA_EXPR]: Get
2189 LAMBDA_EXPR_RETURN_TYPE from the instantiated closure.
2190
2191 PR c++/67164
2192 * pt.c (copy_template_args): New.
2193 (tsubst_pack_expansion): Use it.
2194
2195 * call.c (build_aggr_conv): Use get_nsdmi.
2196
2197 PR c++/51406
2198 * typeck.c (build_static_cast_1): Avoid folding back to lvalue.
2199
2200 PR c++/67364
2201 * constexpr.c (cxx_eval_component_reference): Just return an empty
2202 CONSTRUCTOR for an empty class.
2203
2204 2016-03-01 Jason Merrill <jason@redhat.com>
2205
2206 PR c++/70036
2207 * parser.c (cp_parser_requires_clause): Call
2208 check_for_bare_parameter_packs.
2209
2210 PR c++/51489
2211 * constexpr.c (cxx_eval_binary_expression): Don't VERIFY_CONSTANT
2212 the operands.
2213
2214 PR c++/69995
2215 * constexpr.c (cxx_eval_call_expression): Unshare arg.
2216 (cxx_eval_constant_expression) [DECL_EXPR]: Unshare init.
2217 [TARGET_EXPR]: Unshare init.
2218
2219 2016-03-01 Patrick Palka <ppalka@gcc.gnu.org>
2220
2221 PR c++/68948
2222 PR c++/69961
2223 * pt.c (tsubst_baselink): Reinstate the check for an invalid
2224 constructor call.
2225
2226 2016-02-28 Jason Merrill <jason@redhat.com>
2227
2228 PR c++/69995
2229 * constexpr.c (cxx_eval_store_expression): Unshare init.
2230
2231 2016-02-26 Jason Merrill <jason@redhat.com>
2232
2233 PR c++/69958
2234 * pt.c (make_argument_pack): New.
2235 (tsubst_copy) [SIZEOF_EXPR]: Handle partial expansion.
2236 (tsubst_copy_and_build): Likewise.
2237
2238 2016-02-25 Jason Merrill <jason@redhat.com>
2239
2240 PR c++/69889
2241 * cp-tree.h (AGGR_INIT_FROM_THUNK_P): New.
2242 * tree.c (build_aggr_init_expr): Set it.
2243 * semantics.c (simplify_aggr_init_expr): Check it.
2244 * cp-gimplify.c (cp_genericize_r): Don't walk into
2245 a call/aggr_init from a thunk.
2246
2247 PR c++/69842
2248 * method.c (forward_parm): Handle parameter packs.
2249 * lambda.c (maybe_add_lambda_conv_op): Use it for them.
2250
2251 PR c++/67364
2252 * constexpr.c (cxx_eval_component_reference): Don't complain about
2253 unevaluated empty classes.
2254
2255 PR c++/68049
2256 * tree.c (strip_typedefs): Use DECL_ORIGINAL_TYPE.
2257
2258 2016-02-25 Patrick Palka <ppalka@gcc.gnu.org>
2259
2260 PR c++/69736
2261 * cp-tree.h (REF_PARENTHESIZED_P): Adjust documentation.
2262 (maybe_undo_parenthesized_ref): Declare.
2263 * semantics.c (maybe_undo_parenthesized_ref): Split out from
2264 check_return_expr.
2265 (finish_call_expr): Use it.
2266 * typeck.c (check_return_expr): Use it.
2267 * pt.c (tsubst_copy_and_build) [INDIRECT_REF]: Retain the
2268 REF_PARENTHESIZED_P flag.
2269
2270 2016-02-24 Jakub Jelinek <jakub@redhat.com>
2271
2272 PR c++/69922
2273 * class.c (build_base_path): Set TREE_NO_WARNING on the null_test.
2274 Avoid folding it.
2275 * init.c (build_vec_delete_1, build_delete): Don't fold the non-NULL
2276 tests.
2277 * cp-gimplify.c (cp_fold): For TREE_NO_WARNING comparisons with NULL,
2278 unless they are folded into INTEGER_CST, error_mark_node or some
2279 comparison with NULL, avoid folding them and use either the original
2280 comparison or non-folded comparison of folded arguments.
2281 * cp-ubsan.c (cp_ubsan_instrument_vptr): Set TREE_NO_WARNING on the
2282 comparison, don't fold the comparison right away.
2283
2284 2016-02-24 Jason Merrill <jason@redhat.com>
2285
2286 PR c++/69323
2287 * friend.c (make_friend_class): Likewise.
2288 * decl.c (lookup_and_check_tag): Diagnose invalid dependent friend.
2289
2290 2016-02-24 Jason Merrill <jason@redhat.com>
2291
2292 PR c++/69323
2293 * pt.c (instantiate_class_template_1): Set
2294 processing_template_decl before substituting friend_type.
2295
2296 016-02-24 Martin Sebor <msebor@redhat.com>
2297
2298 PR c++/69912
2299 * tree.c (build_ctor_subob_ref): Compare types' main variants
2300 instead of the types as they are.
2301
2302 2016-02-24 Jason Merrill <jason@redhat.com>
2303
2304 * decl.c (start_preparsed_function): Condition ctor clobber on
2305 flag_lifetime_dse > 1.
2306
2307 * cp-gimplify.c (cp_fold): Don't fold constexpr calls if -fno-inline.
2308
2309 2016-02-19 Jason Merrill <jason@redhat.com>
2310
2311 PR c++/69743
2312 * call.c (remaining_arguments): No longer static.
2313 * cp-tree.h: Declare it.
2314 * pt.c (more_specialized_fn): Use it.
2315
2316 2016-02-19 Jakub Jelinek <jakub@redhat.com>
2317 Bernd Edlinger <bernd.edlinger@hotmail.de>
2318
2319 * Make-lang.in: Invoke gperf with -L C++.
2320 * cfns.gperf: Remove prototypes for hash and libc_name_p
2321 inlines.
2322 * cfns.h: Regenerated.
2323 * except.c (nothrow_libfn_p): Adjust.
2324
2325 2016-02-19 Jakub Jelinek <jakub@redhat.com>
2326
2327 PR c++/69850
2328 * rtti.c (ifnonnull): Set TREE_NO_WARNING on the condition, use
2329 NE_EXPR instead of EQ_EXPR and swap last two arguments on COND_EXPR.
2330
2331 2016-02-19 Patrick Palka <ppalka@gcc.gnu.org>
2332
2333 PR c++/68948
2334 * pt.c (tsubst_baselink): Don't diagnose an invalid constructor
2335 call here.
2336 * semantics.c (finish_call_expr): Don't assume a constructor
2337 call is dependent if only the "this" pointer is dependent. When
2338 building a constructor call, always use a dummy object.
2339
2340 2016-02-19 Jakub Jelinek <jakub@redhat.com>
2341
2342 PR c++/69850
2343 * init.c (build_vec_delete_1): Set TREE_NO_WARNING on the NE_EXPR
2344 condition.
2345 * cp-gimplify.c (cp_fold): Propagate TREE_NO_WARNING from binary
2346 operators if folding preserved the binop, just with different
2347 arguments.
2348
2349 PR c++/67767
2350 * parser.c (cp_parser_std_attribute_spec_seq): Don't assume
2351 attr_spec is always single element chain, chain all the attributes
2352 properly together in the right order.
2353
2354 2016-02-18 Jason Merrill <jason@redhat.com>
2355
2356 * mangle.c (maybe_check_abi_tags): Add for_decl parm. Call
2357 mangle_decl.
2358 (mangle_decl): Call maybe_check_abi_tags for function scope.
2359 (mangle_guard_variable): Call maybe_check_abi_tags here.
2360 (write_guarded_var_name): Not here.
2361
2362 2016-02-17 Jason Merrill <jason@redhat.com>
2363
2364 PR c++/65985
2365 * constexpr.c (build_constexpr_constructor_member_initializers):
2366 Handle an additional STATEMENT_LIST.
2367
2368 PR c++/68585
2369 * constexpr.c (cxx_eval_bare_aggregate): Fix 'changed' detection.
2370
2371 PR c++/68679
2372 * decl2.c (reset_type_linkage_2): Look through member templates.
2373
2374 2016-02-17 Jakub Jelinek <jakub@redhat.com>
2375
2376 PR c++/69850
2377 * init.c (build_delete): Set TREE_NO_WARNING on ifexp.
2378
2379 2016-02-17 Jason Merrill <jason@redhat.com>
2380
2381 PR c++/69842
2382 * method.c (forward_parm): Split out from...
2383 (add_one_base_init): ...here.
2384 * lambda.c (maybe_add_lambda_conv_op): Use it.
2385
2386 2016-02-16 Jason Merrill <jason@redhat.com>
2387
2388 PR c++/10200
2389 PR c++/69753
2390 * call.c, cp-tree.h, name-lookup.c, pt.c, search.c, semantics.c,
2391 tree.c, typeck2.c: Revert earlier changes.
2392 * parser.c (cp_parser_lookup_name): Ignore namespace-scope
2393 non-type templates after -> or .
2394
2395 2016-02-16 Jakub Jelinek <jakub@redhat.com>
2396
2397 PR c/69835
2398 * typeck.c (cp_build_binary_op): Revert 2015-09-09 change.
2399
2400 2016-02-16 Jason Merrill <jason@redhat.com>
2401
2402 PR c++/69657
2403 * name-lookup.c (lookup_qualified_name): Add find_hidden parm.
2404 (set_decl_namespace): Pass it. Complain about finding a hidden friend.
2405 * name-lookup.h: Adjust.
2406
2407 2016-02-16 James Norris <jnorris@codesourcery.com>
2408
2409 * parser.c (cp_parser_oacc_data_clause_deviceptr): Remove checking.
2410 * semantics.c (finish_omp_clauses): Add deviceptr checking.
2411
2412 2016-02-15 Jakub Jelinek <jakub@redhat.com>
2413
2414 PR c++/69658
2415 * init.c (expand_default_init): Only call reshape_init
2416 in the direct-initialization from an initializer list case.
2417
2418 2016-02-15 Jason Merrill <jason@redhat.com>
2419
2420 PR c++/69753
2421 * semantics.c (finish_call_expr): Implicit 'this' does not make
2422 the call dependent.
2423 * search.c (any_dependent_bases_p): Split out...
2424 * name-lookup.c (do_class_using_decl): ...from here.
2425 * call.c (build_new_method_call_1): Don't complain about missing object
2426 if there are dependent bases. Tweak error.
2427 * tree.c (non_static_member_function_p): Remove.
2428 * pt.c (type_dependent_expression_p): A member template of a
2429 dependent type is dependent.
2430 * cp-tree.h: Adjust.
2431
2432 PR c++/68890
2433 * constexpr.c (verify_ctor_sanity): Remove CONSTRUCTOR_NELTS check.
2434
2435 2016-02-12 Patrick Palka <ppalka@gcc.gnu.org>
2436
2437 PR c++/69098
2438 * pt.c (lookup_and_finish_template_variable): New function,
2439 extracted from ...
2440 (tsubst_copy_and_build) [TEMPLATE_ID_EXPR]: ... here. Use it.
2441 (tsubst_qualified_id): Consider that EXPR might be a variable
2442 template.
2443 * typeck.c (check_template_keyword): Don't emit an error
2444 if DECL is a variable template.
2445
2446 2016-02-12 Jakub Jelinek <jakub@redhat.com>
2447
2448 * error.c: Spelling fixes - behaviour -> behavior and
2449 neighbour -> neighbor.
2450 * decl.c: Likewise.
2451 * typeck.c (cp_build_binary_op): Fix up behavior spelling in
2452 diagnostics.
2453 * init.c (build_delete): Likewise.
2454
2455 2016-02-11 Jakub Jelinek <jakub@redhat.com>
2456
2457 PR c/69768
2458 * typeck.c (cp_build_binary_op): cp_fully_fold integer_zerop
2459 arguments for -Waddress warning. Fix up formatting.
2460
2461 2016-02-11 Paolo Carlini <paolo.carlini@oracle.com>
2462
2463 PR c++/68726
2464 * pt.c (lookup_template_class_1): Check tsubst return value for
2465 error_mark_node.
2466
2467 2016-02-10 Jason Merrill <jason@redhat.com>
2468
2469 PR c++/68926
2470 * pt.c (resolve_nondeduced_context): Add complain parm.
2471 (do_auto_deduction): Pass it.
2472 * cvt.c (convert_to_void): Likewise.
2473 * decl.c (cp_finish_decl): Likewise.
2474 * init.c (build_new): Likewise.
2475 * rtti.c (get_tinfo_decl_dynamic): Likewise.
2476 * semantics.c (finish_decltype_type): Likewise.
2477 * typeck.c (decay_conversion): Likewise.
2478 * cp-tree.h: Adjust declaration.
2479 * call.c (standard_conversion): Add complain parm, pass it along.
2480 (implicit_conversion): Pass it.
2481
2482 PR c++/69657
2483 * name-lookup.c (ambiguous_decl): Call remove_hidden_names.
2484 (lookup_name_real_1): Likewise.
2485 (remove_hidden_names): Handle non-functions too.
2486
2487 PR c++/10200
2488 * parser.c (cp_parser_lookup_name): When looking for a template
2489 after . or ->, only consider class templates.
2490 (cp_parser_postfix_dot_deref_expression): Handle the current
2491 instantiation. Remember a dependent object expression.
2492 * typeck2.c (build_x_arrow): Handle the current instantiation.
2493
2494 * ptree.c (debug_tree): Implement for cp_expr.
2495
2496 2016-02-08 Patrick Palka <ppalka@gcc.gnu.org>
2497
2498 PR c++/69139
2499 * parser.c (cp_parser_simple_type_specifier): Make the check
2500 for disambiguating between an 'auto' placeholder and an implicit
2501 template parameter more robust.
2502
2503 2016-02-08 Patrick Palka <ppalka@gcc.gnu.org>
2504
2505 PR c++/69283
2506 PR c++/67835
2507 * decl2.c (mark_used): When given a TEMPLATE_DECL, return after
2508 setting its TREE_USED flag.
2509
2510 2016-02-08 Jason Merrill <jason@redhat.com>
2511
2512 PR c++/69657
2513 * name-lookup.c (do_nonmember_using_decl): Leave anticipated
2514 built-ins alone.
2515
2516 2016-02-08 Jakub Jelinek <jakub@redhat.com>
2517
2518 PR c++/59627
2519 * parser.c (cp_parser_omp_declare_reduction): Set assembler name
2520 of the DECL_OMP_DECLARE_REDUCTION_P decls.
2521
2522 2016-02-08 Marek Polacek <polacek@redhat.com>
2523
2524 PR c++/69688
2525 * constexpr.c (clear_cv_and_fold_caches): Renamed from clear_cv_cache.
2526 Call clear_fold_cache.
2527 * cp-tree.h: Adjust declaration.
2528 * decl.c (finish_enum_value_list): Call clear_cv_and_fold_caches
2529 rather than clear_cv_cache and clear_fold_cache.
2530 * typeck2.c (store_init_value): Call clear_cv_and_fold_caches.
2531
2532 2016-02-08 Jason Merrill <jason@redhat.com>
2533
2534 * cp-tree.h (CONV_FOLD, CONV_BACKEND_CONVERT): New.
2535 * cvt.c (convert): Pass CONV_BACKEND_CONVERT.
2536 (ocp_convert): Use *_maybe_fold.
2537 (cp_convert_to_pointer): Add dofold parameter.
2538 * cp-gimplify.c (cp_fold) [CONVERT_EXPR]: Call convert.
2539
2540 2016-02-05 Martin Sebor <msebor@redhat.com>
2541
2542 PR c++/69662
2543 * init.c (find_field_init): New function.
2544 (warn_placement_new_too_small): Call it. Handle one-element arrays
2545 at ends of structures special.
2546
2547 2016-02-05 Jason Merrill <jason@redhat.com>
2548
2549 PR c++/68948
2550 * semantics.c (finish_expr_stmt): If expr is error_mark_node,
2551 make sure we've seen_error().
2552
2553 2016-02-05 Patrick Palka <ppalka@gcc.gnu.org>
2554
2555 PR c++/68948
2556 * pt.c (tsubst_baselink): Diagnose an invalid constructor call
2557 if lookup_fnfields returns NULL_TREE and the name being looked
2558 up has the form A::A.
2559
2560 2016-02-04 Patrick Palka <ppalka@gcc.gnu.org>
2561
2562 * constexpr.c (cxx_eval_binary_expression): Fold equality
2563 comparisons involving PTRMEM_CSTs.
2564
2565 2016-02-04 Jakub Jelinek <jakub@redhat.com>
2566
2567 * class.c (find_flexarrays): Don't declare dom variable.
2568 (diagnose_flexarray): Likewise.
2569
2570 2016-02-02 Martain Sebor <msebor@redhat.com>
2571
2572 PR c++/69251
2573 PR c++/69253
2574 PR c++/69290
2575 PR c++/69277
2576 PR c++/69349
2577 * class.c (walk_subobject_offsets): Avoid testing the upper bound
2578 of a flexible array member for equality to null.
2579 (find_flexarrays): Remove spurious whitespace introduced in r231665.
2580 (diagnose_flexarrays): Avoid checking the upper bound of arrays.
2581 (check_flexarrays): Same.
2582 * decl.c (compute_array_index_type): Avoid special case for flexible
2583 array members.
2584 (grokdeclarator): Avoid calling compute_array_index_type for flexible
2585 array members.
2586 * error.c (dump_type_suffix): Revert changes introduced in r231665
2587 and rendered unnecessary by the changes above.
2588 * pt.c (tsubst): Same.
2589 * tree.c (build_ctor_subob_ref): Handle flexible array members.
2590 * typeck2.c (digest_init_r): Revert changes introduced in r231665.
2591 (process_init_constructor_array): Same.
2592 (process_init_constructor_record): Same.
2593
2594 2016-02-03 Patrick Palka <ppalka@gcc.gnu.org>
2595
2596 PR c++/69056
2597 * pt.c (try_one_overload): Handle comparing argument packs so
2598 that there is no conflict if we deduced more arguments of an
2599 argument pack than were explicitly specified.
2600
2601 2016-01-31 Jakub Jelinek <jakub@redhat.com>
2602 Jason Merrill <jason@redhat.com>
2603
2604 PR c++/68763
2605 * tree.c (strip_typedefs) [FUNCTION_TYPE]: Avoid building a new
2606 function type if nothing is changing.
2607
2608 2016-01-31 Jason Merrill <jason@redhat.com>
2609
2610 PR c++/69009
2611 * pt.c (partial_specialization_p, impartial_args): New.
2612 (instantiate_decl): Call impartial_args.
2613
2614 * mangle.c (maybe_check_abi_tags): New.
2615 (write_guarded_var_name): Call it.
2616 (mangle_ref_init_variable): Call check_abi_tags.
2617
2618 * pt.c (lookup_template_class_1): Don't share TYPE_ATTRIBUTES
2619 between template and instantiation.
2620
2621 2016-01-29 Jakub Jelinek <jakub@redhat.com>
2622
2623 PR debug/66869
2624 * decl.c (wrapup_globals_for_namespace): Warn about unused static
2625 function declarations.
2626
2627 2016-01-29 Marek Polacek <polacek@redhat.com>
2628
2629 PR c++/69509
2630 PR c++/69516
2631 * constexpr.c (cxx_eval_array_reference): Give the "array subscript
2632 out of bound" error earlier.
2633 * init.c (build_vec_init): Change NE_EXPR into GT_EXPR. Update the
2634 commentary.
2635
2636 2016-01-29 Patrick Palka <ppalka@gcc.gnu.org>
2637
2638 * name-lookup.c (begin_scope): After reusing a cp_binding_level
2639 structure, update free_binding_level before the structure's
2640 level_chain field gets cleared, not after.
2641
2642 2016-01-28 Jason Merrill <jason@redhat.com>
2643
2644 PR c++/67407
2645 * search.c (dfs_walk_once, dfs_walk_once_r)
2646 (dfs_walk_once_accessible_r, dfs_walk_once_accessible): Use
2647 hash_set instead of BINFO_MARKED.
2648 (dfs_unmark_r): Remove.
2649
2650 2016-01-28 Patrick Palka <ppalka@gcc.gnu.org>
2651
2652 PR c++/24208
2653 * parser.c (LEXER_DEBUGGING_ENABLED_P): New macro.
2654 (cp_lexer_debugging_p): Use it.
2655 (cp_lexer_start_debugging): Likewise.
2656 (cp_lexer_stop_debugging): Likewise.
2657
2658 2016-01-27 Marek Polacek <polacek@redhat.com>
2659
2660 PR c/68062
2661 * typeck.c (cp_build_binary_op): Promote operand to unsigned, if
2662 needed. Add -Wsign-compare warning.
2663
2664 2016-01-27 Ryan Burn <contact@rnburn.com>
2665
2666 PR cilkplus/69267
2667 * cp-gimplify.c (cilk_cp_gimplify_call_params_in_spawned_fn): Removed
2668 superfluous post_p argument in call to
2669 cilk_gimplify_call_params_in_spawned_fn.
2670
2671 2016-01-27 Marek Polacek <polacek@redhat.com>
2672
2673 PR c++/69379
2674 * constexpr.c (cxx_eval_constant_expression): Handle PTRMEM_CSTs
2675 wrapped in NOP_EXPRs.
2676
2677 2016-01-27 Martin Sebor <msebor@redhat.com>
2678
2679 PR c++/69317
2680 * mangle.c (mangle_decl): Reference the correct (saved) version
2681 of the ABI in -Wabi diagnostics.
2682
2683 2016-01-27 Marek Polacek <polacek@redhat.com>
2684
2685 PR c++/69496
2686 * constexpr.c (cxx_eval_array_reference): Evaluate the number of
2687 elements of the array.
2688
2689 2016-01-26 Jason Merrill <jason@redhat.com>
2690
2691 PR c++/68949
2692 * constexpr.c (register_constexpr_fundef): Keep the un-massaged body.
2693 (cxx_eval_call_expression): Don't look through clones.
2694 * optimize.c (maybe_clone_body): Clear DECL_SAVED_TREE of the alias.
2695 * semantics.c (expand_or_defer_fn_1): Keep DECL_SAVED_TREE of
2696 maybe-in-charge *tor.
2697
2698 2016-01-26 Jason Merrill <jason@redhat.com>
2699
2700 PR c++/68782
2701 * constexpr.c (cxx_eval_bare_aggregate): Update TREE_CONSTANT
2702 and TREE_SIDE_EFFECTS.
2703 (cxx_eval_constant_expression) [CONSTRUCTOR]: Call
2704 verify_constructor_flags.
2705
2706 2016-01-26 Jakub Jelinek <jakub@redhat.com>
2707
2708 PR c++/68357
2709 * cp-gimplify.c (cp_fold): If some operand folds to error_mark_node,
2710 return error_mark_node instead of building trees with error_mark_node
2711 operands.
2712
2713 2016-01-26 David Malcolm <dmalcolm@redhat.com>
2714
2715 PR other/69006
2716 * error.c (print_instantiation_partial_context_line): Add missing
2717 newlines from output for the t == NULL case.
2718 (print_instantiation_partial_context): Remove call to pp_newline.
2719
2720 2016-01-24 Patrick Palka <ppalka@gcc.gnu.org>
2721
2722 Revert:
2723 2016-01-18 Patrick Palka <ppalka@gcc.gnu.org>
2724
2725 PR c++/11858
2726 PR c++/24663
2727 PR c++/24664
2728 * decl.c (grokdeclarator): Don't decay array parameter type to
2729 a pointer type if it's dependent.
2730 (grokparms): Invoke strip_top_quals instead of directly invoking
2731 cp_build_qualified_type.
2732 * pt.c (decay_dependent_array_parm_type): New static function.
2733 (type_unification_real): Call decay_dependent_array_parm_type
2734 to decay a dependent array parameter type to its corresponding
2735 pointer type before unification.
2736 (more_specialized_fn): Likewise.
2737 (get_bindings): Likewise.
2738 * tree.c (cp_build_qualified_type): Trivial typofix in
2739 documentation.
2740
2741 2016-01-23 Martin Sebor <msebor@redhat.com>
2742
2743 PR c++/58109
2744 PR c++/69022
2745 * decl2.c (is_late_template_attribute): Handle dependent argument
2746 to attribute align and attribute vector_size.
2747
2748 2016-01-21 Jason Merrill <jason@redhat.com>
2749
2750 PR c++/69392
2751 * lambda.c (lambda_capture_field_type): Handle 'this' specially
2752 for init-capture, too.
2753
2754 PR c++/65687
2755 * decl.c (type_is_deprecated): Don't look into a typedef.
2756
2757 PR c++/40751
2758 PR c++/64987
2759 * decl.c (copy_type_enum): Respect TYPE_USER_ALIGN.
2760
2761 PR c++/43407
2762 * decl.c (start_enum): Add attributes parameter.
2763 * parser.c (cp_parser_enum_specifier): Pass it.
2764 * pt.c (lookup_template_class_1): Pass it.
2765 * cp-tree.h: Adjust.
2766
2767 2016-01-19 Jason Merrill <jason@redhat.com>
2768
2769 PR c++/59759
2770 * pt.c (convert_template_argument): Handle VAR_DECL properly.
2771
2772 2016-01-19 Marek Polacek <polacek@redhat.com>
2773
2774 PR c++/68586
2775 * constexpr.c (clear_cv_cache): New.
2776 * cp-gimplify.c (clear_fold_cache): New.
2777 * cp-tree.h (clear_cv_cache, clear_fold_cache): Declare.
2778 * decl.c (finish_enum_value_list): Call them.
2779
2780 PR c++/68965
2781 * pt.c (tsubst_copy): Mark elements in expanded vector as used.
2782
2783 2016-01-18 Patrick Palka <ppalka@gcc.gnu.org>
2784
2785 PR c++/11858
2786 PR c++/24663
2787 PR c++/24664
2788 * decl.c (grokdeclarator): Don't decay array parameter type to
2789 a pointer type if it's dependent.
2790 (grokparms): Invoke strip_top_quals instead of directly invoking
2791 cp_build_qualified_type.
2792 * pt.c (decay_dependent_array_parm_type): New static function.
2793 (type_unification_real): Call decay_dependent_array_parm_type
2794 to decay a dependent array parameter type to its corresponding
2795 pointer type before unification.
2796 (more_specialized_fn): Likewise.
2797 (get_bindings): Likewise.
2798 * tree.c (cp_build_qualified_type): Trivial typofix in
2799 documentation.
2800
2801 2016-01-18 Jason Merrill <jason@redhat.com>
2802
2803 * cp-gimplify.c (cp_fold) [CONSTRUCTOR]: Don't clobber the input.
2804
2805 * cp-gimplify.c (cp_fold): Remove unnecessary special cases.
2806
2807 PR c++/68767
2808 * cp-gimplify.c (cp_fold) [COND_EXPR]: Simplify. Do fold COND_EXPR.
2809 (contains_label_1, contains_label_p): Remove.
2810
2811 2016-01-16 Patrick Palka <ppalka@gcc.gnu.org>
2812
2813 PR c++/69091
2814 * pt.c (type_dependent_expression_p): For a function template
2815 specialization, a type is dependent iff any of its template
2816 arguments are.
2817
2818 2016-01-16 Patrick Palka <ppalka@gcc.gnu.org>
2819
2820 * cp-array-notation.c (cp_expand_cond_array_notations): Return
2821 error_mark_node only if find_rank failed, not if it was
2822 successful.
2823
2824 2016-01-16 Patrick Palka <ppalka@gcc.gnu.org>
2825
2826 PR c++/68936
2827 * tree.c (build_min_non_dep_call_vec): Don't retain the
2828 KOENIG_LOOKUP_P flag of the non-dependent expression that's
2829 been built.
2830 (build_min_non_dep_op_overload): Instead, do it here.
2831
2832 2016-01-15 Jakub Jelinek <jakub@redhat.com>
2833
2834 PR bootstrap/68271
2835 * parser.h (cp_token): Remove pragma_kind field. Add comment
2836 with number of unused bits.
2837 * parser.c (eof_token): Remove pragma_kind field initializer.
2838 (cp_lexer_get_preprocessor_token): Don't set pragma_kind
2839 field, don't clear CPP_PRAGMA u.value.
2840 (cp_parser_pragma_kind): New function.
2841 (cp_parser_omp_sections_scope, cp_parser_oacc_kernels_parallel,
2842 cp_parser_omp_construct, cp_parser_initial_pragma,
2843 cp_parser_pragma): Use cp_parser_pragma_kind instead of accessing
2844 pragma_kind field.
2845
2846 2016-01-15 Jason Merrill <jason@redhat.com>
2847
2848 PR c++/68847
2849 * call.c (build_cxx_call): Use fold_non_dependent_expr.
2850
2851 * typeck2.c (cxx_incomplete_type_diagnostic): Use the location of
2852 value.
2853
2854 PR c++/69257
2855 * typeck.c (decay_conversion): Don't call mark_rvalue_use for
2856 array/function-to-pointer conversion. Call
2857 complete_type_or_maybe_complain for lvalue-to-rvalue conversion.
2858 * call.c (convert_like_real): Print call context if
2859 decay_conversion errors.
2860
2861 2016-01-14 Tom de Vries <tom@codesourcery.com>
2862
2863 PR tree-optimization/68773
2864 * parser.c (cp_parser_oacc_declare, cp_parser_omp_declare_target): Don't
2865 set force_output.
2866
2867 2016-01-14 Jason Merrill <jason@redhat.com>
2868
2869 PR c++/69261
2870 * constexpr.c (find_array_ctor_elt): Handle splitting RANGE_EXPR.
2871
2872 2016-01-12 Marek Polacek <polacek@redhat.com>
2873
2874 PR c++/68979
2875 * constexpr.c (cxx_eval_check_shift_p): Use permerror rather than
2876 error_at and adjust the return value.
2877
2878 2016-01-12 Jakub Jelinek <jakub@redhat.com>
2879
2880 PR objc++/68511
2881 PR c++/69213
2882 * cp-gimplify.c (cp_gimplify_expr) <case INIT_EXPR>: Don't return
2883 GS_ERROR whenever seen_error (), only if *expr_p contains
2884 cilk spawn stmt, but cilk_detect_spawn_and_unwrap failed.
2885
2886 PR c++/66808
2887 PR c++/69000
2888 * pt.c (tsubst_decl): If not local_p, clear DECL_TEMPLATE_INFO.
2889
2890 2016-01-11 Jason Merrill <jason@redhat.com>
2891
2892 PR c++/69131
2893 * method.c (walk_field_subobs): Add dtor_from_ctor parm.
2894 (process_subob_fn): Likewise. Don't consider triviality if true.
2895 (synthesize_method_walk): Pass it.
2896
2897 2016-01-11 David Malcolm <dmalcolm@redhat.com>
2898
2899 PR c++/68795
2900 * parser.c (cp_parser_postfix_expression): Initialize
2901 close_paren_loc to UNKNOWN_LOCATION; only use it if
2902 it has been written to by
2903 cp_parser_parenthesized_expression_list.
2904 (cp_parser_parenthesized_expression_list): Document the behavior
2905 with respect to the CLOSE_PAREN_LOC param.
2906
2907 2016-01-11 Jakub Jelinek <jakub@redhat.com>
2908
2909 PR c++/69211
2910 * cp-gimplify.c (cp_fold): If COMPOUND_EXPR or MODIFY_EXPR
2911 folded operands have side-effects, but folding changed any of them,
2912 build a new tree with the folded operands instead of returning the
2913 unfolded tree.
2914
2915 2016-01-09 Marek Polacek <polacek@redhat.com>
2916
2917 PR c++/69113
2918 * decl2.c (comdat_linkage): Only set DECL_COMDAT if TREE_PUBLIC is set.
2919
2920 2016-01-09 Jakub Jelinek <jakub@redhat.com>
2921
2922 PR c++/69164
2923 * class.c (layout_class_type): Use copy_node to copy FIELD_DECLs.
2924
2925 2016-01-08 Jason Merrill <jason@redhat.com>
2926
2927 PR c++/69158
2928 * constexpr.c (cxx_fold_indirect_ref): Handle array type differing
2929 in completion.
2930
2931 2016-01-08 Marek Polacek <polacek@redhat.com>
2932
2933 PR c++/68449
2934 * constexpr.c (cxx_eval_constant_expression): Handle NULL initializer.
2935
2936 2016-01-08 Jason Merrill <jason@redhat.com>
2937
2938 * constexpr.c (cxx_eval_call_expression): Remove convert_to_void
2939 workaround.
2940
2941 PR c++/68983
2942 PR c++/67557
2943 * cvt.c (convert_to_void): Don't strip a TARGET_EXPR of
2944 TREE_ADDRESSABLE type.
2945
2946 PR c++/68983
2947 PR c++/67557
2948 * call.c (unsafe_copy_elision_p): Look through COMPOUND_EXPR.
2949
2950 2016-01-05 Nathan Sidwell <nathan@acm.org>
2951
2952 PR c++/58583
2953 * pt.c (build_non_dependent_expr): Don't try a checking fold when
2954 parsing an nsdmi.
2955
2956 2016-01-04 Jakub Jelinek <jakub@redhat.com>
2957
2958 Update copyright years.
2959 \f
2960 Copyright (C) 2016 Free Software Foundation, Inc.
2961
2962 Copying and distribution of this file, with or without modification,
2963 are permitted in any medium without royalty provided the copyright
2964 notice and this notice are preserved.