PR c++/88120 - ICE when calling save_expr in a template.
[gcc.git] / gcc / cp / ChangeLog
1 2018-11-26 Marek Polacek <polacek@redhat.com>
2
3 PR c++/88120 - ICE when calling save_expr in a template.
4 * typeck.c (cp_build_binary_op): Call cp_save_expr instead of
5 save_expr.
6
7 2018-11-22 Jakub Jelinek <jakub@redhat.com>
8
9 PR c++/87386
10 * parser.c (cp_parser_operator): Use str.get_value () instead of just
11 str in USERDEF_LITERAL_VALUE and USERDEF_LITERAL_SUFFIX_ID arguments.
12
13 2018-11-21 Jakub Jelinek <jakub@redhat.com>
14
15 PR c++/88122
16 * method.c (maybe_explain_implicit_delete): If
17 FUNCTION_FIRST_USER_PARMTYPE (decl) is NULL, set const_p to false
18 instead of ICEing.
19
20 PR c++/87386
21 * parser.c (cp_parser_primary_expression): Use
22 id_expression.get_location () instead of id_expr_token->location.
23 Adjust the range from id_expr_token->location to
24 id_expressio.get_finish ().
25 (cp_parser_operator_function_id): Pass location of the operator
26 token down to cp_parser_operator.
27 (cp_parser_operator): Add start_loc argument, always construct a
28 location with caret at start_loc and range from start_loc to the
29 finish of the last token.
30
31 PR c++/87393
32 * parser.c (cp_parser_linkage_specification): Remove useless
33 dereference of the consume_open method result.
34
35 2018-11-20 Martin Sebor <msebor@redhat.com>
36
37 * cp-tree.h (cp_check_const_attributes): Declare.
38 * decl2.c (cp_check_const_attributes): Declare extern.
39 * parser.c (cp_parser_has_attribute_expression): New function.
40 (cp_parser_unary_expression): Handle RID_HAS_ATTRIBUTE_EXPRESSION.
41 (cp_parser_gnu_attribute_list): Add argument.
42
43 2018-11-20 Jakub Jelinek <jakub@redhat.com>
44
45 PR c++/88110
46 * constexpr.c (cxx_eval_constant_expression) <case OBJ_TYPE_REF>: Punt
47 if get_base_address of ADDR_EXPR operand is not a DECL_P.
48
49 2018-11-19 Marek Polacek <polacek@redhat.com>
50
51 PR c++/87781 - detect invalid elaborated-type-specifier.
52 * parser.c (cp_parser_elaborated_type_specifier): Ensure that
53 typename follows a nested-name-specifier.
54
55 2018-11-18 Paolo Carlini <paolo.carlini@oracle.com>
56
57 * decl2.c (grokfield): Remove obsolete _vptr check; fix
58 explicit template argument list error location.
59
60 2018-11-16 Kamlesh Kumar <kamleshbhalui@gmail.com>
61
62 DR 1207
63 PR c++/52869
64 * parser.c (cp_parser_noexcept_specification_opt): Call
65 inject_this_parameter.
66
67 2018-11-16 Jason Merrill <jason@redhat.com>
68
69 Implement P0479R5, [[likely]] and [[unlikely]].
70 * tree.c (handle_likeliness_attribute): New.
71 (std_attribute_table): Add likely/unlikely.
72 * cp-gimplify.c (lookup_hotness_attribute, remove_hotness_attribute)
73 (process_stmt_hotness_attribute, first_stmt): New.
74 (genericize_if_stmt): Check for duplicate predictions.
75 * parser.c (cp_parser_statement): Call
76 process_stmt_hotness_attribute.
77 (cp_parser_label_for_labeled_statement): Apply attributes to case.
78 * decl.c (finish_case_label): Give label in template type void.
79 * pt.c (tsubst_expr) [CASE_LABEL_EXPR]: Copy attributes.
80 [PREDICT_EXPR]: Handle.
81
82 2018-11-16 Nathan Sidwell <nathan@acm.org>
83
84 Remove ovl_used, it is no longer needed
85 * cp-tree.h (OVL_USED_P): Delete.
86 (lookup_keep): Delete.
87 * friend.c (add_friend): Don't call it.
88 * parser.c (lookup_literal_operator): Likewise.
89 (cp_parser_primary_expression): Likewise.
90 * semantics.c (perform_koenig_lookup): Likewise.
91 * pt.c (tsubst_copy <OVERLOAD>): Don't assert OVL_USED_P.
92 * tree.c (ovl_copy): Delete.
93 (ovl_insert): Remove OVL_USED_P checks.
94 (ovl_iterator::reveal_node): Likewise.
95 (ovl_iterator::remove__node): Likewise.
96 (ovl_used, lookup_keep): Delete.
97
98 PR c++/87269
99 * parser.c (lookup_literal_operator): Mark overload for keeping
100 when inside template. Refactor.
101
102 2018-11-15 Nathan Sidwell <nathan@acm.org>
103
104 PR c++/86246
105 PR c++/87989
106 * typeck.c (finish_class_member_access_expr): Conversion operator
107 to dependent type is dependent.
108
109 2018-11-15 Paolo Carlini <paolo.carlini@oracle.com>
110
111 * constexpr.c (ensure_literal_type_for_constexpr_object): Use
112 DECL_SOURCE_LOCATION in error_at calls.
113
114 2018-11-15 Nathan Sidwell <nathan@acm.org>
115
116 DR 2336
117 * cp-tree.h (enum special_function_kind): Add sfk_virtual_destructor.
118 * method.c (type_has_trivial_fn): Add it.
119 (SFK_DTOR_P): Likewise.
120 (synthesized_method_base_walk): Don't check access of vbases of
121 abstract classes when sfk_virtual_destructor.
122 (synthesized_method_walk): Skip vbases of abstract classes except
123 when sfk_virtual_destructor.
124 (get_defaulted_eh_spec): Set sfk_virtual_destructor as needed.
125
126 * cp-tree.h (enum special_function_kind): Reorder and comment.
127 * method.c (SFK_CTOR_P, SFK_DTOR_P, SFK_ASSIGN_P, SFK_COPY_P)
128 (SFK_MOVE_P): New predicates.
129 (walk_field_subobs, synthesized_method_base_walk): Drop
130 copy_arg_p, move_p, assign_p args. Use new SFK predicates. Order
131 parameters consistently.
132 (synthesized_method_walk): Drop ctor_p, copy_arg_p, move_p,
133 assign_p calculations. Use new SFK predicates. Adjust calls to
134 worker functions.
135
136 2018-11-14 Paolo Carlini <paolo.carlini@oracle.com>
137
138 * parser.c (make_id_declarator): Add location_t parameter.
139 (cp_parser_lambda_declarator_opt): Adjust call.
140 (cp_parser_decomposition_declaration): Likewise.
141 (cp_parser_alias_declaration): Likewise.
142 (cp_parser_direct_declarator): Likewise.
143 (cp_parser_member_declaration): Likewise.
144 (cp_parser_objc_class_ivars): Likewise.
145 * decl.c (grokdeclarator): Use declarator->id_loc in two error
146 messages.
147
148 2018-11-14 Jakub Jelinek <jakub@redhat.com>
149
150 P1236R1 - Signed integers are two's complement
151 * constexpr.c (cxx_eval_check_shift_p): Disable the signed LSHIFT_EXPR
152 checks for c++2a.
153
154 2018-11-13 David Malcolm <dmalcolm@redhat.com>
155
156 * call.c: Replace "source_location" with "location_t".
157 * cp-tree.h: Likewise.
158 * cvt.c: Likewise.
159 * name-lookup.c: Likewise.
160 * parser.c: Likewise.
161 * typeck.c: Likewise.
162
163 2018-11-12 Jason Merrill <jason@redhat.com>
164
165 Implement P0315R4, Lambdas in unevaluated contexts.
166 * decl2.c (min_vis_expr_r): Handle LAMBDA_EXPR.
167 * mangle.c (write_expression): Handle LAMBDA_EXPR.
168 * parser.c (cp_parser_lambda_expression): Allow lambdas in
169 unevaluated context. Start the tentative firewall sooner.
170 (cp_parser_lambda_body): Use cp_evaluated.
171 * pt.c (iterative_hash_template_arg): Handle LAMBDA_EXPR.
172 (tsubst_function_decl): Substitute a lambda even if it isn't
173 dependent.
174 (tsubst_lambda_expr): Use cp_evaluated. Always complain.
175 (tsubst_copy_and_build) [LAMBDA_EXPR]: Do nothing if tf_partial.
176 * semantics.c (begin_class_definition): Allow in template parm list.
177 * tree.c (strip_typedefs_expr): Pass through LAMBDA_EXPR.
178 (cp_tree_equal): Handle LAMBDA_EXPR.
179
180 * pt.c (fn_type_unification): If we have a full set of explicit
181 arguments, go straight to substitution.
182
183 * decl2.c (min_vis_expr_r, expr_visibility): New.
184 (min_vis_r): Call expr_visibility.
185 (constrain_visibility_for_template): Likewise.
186
187 Implement P0722R3, destroying operator delete.
188 * call.c (std_destroying_delete_t_p, destroying_delete_p): New.
189 (aligned_deallocation_fn_p, usual_deallocation_fn_p): Use
190 destroying_delete_p.
191 (build_op_delete_call): Handle destroying delete.
192 * decl2.c (coerce_delete_type): Handle destroying delete.
193 * init.c (build_delete): Don't call dtor with destroying delete.
194 * optimize.c (build_delete_destructor_body): Likewise.
195
196 Implement P0780R2, pack expansion in lambda init-capture.
197 * parser.c (cp_parser_lambda_introducer): Parse pack init-capture.
198 * pt.c (tsubst_pack_expansion): Handle init-capture packs.
199 (lookup_init_capture_pack): New.
200 (tsubst_expr) [DECL_EXPR]: Use it.
201 (tsubst_lambda_expr): Remember field pack expansions for
202 init-captures.
203
204 * cp-tree.h (struct cp_evaluated): New.
205 * init.c (get_nsdmi): Use it.
206 * parser.c (cp_parser_enclosed_template_argument_list): Use it.
207 * pt.c (coerce_template_parms, tsubst_aggr_type): Use it.
208
209 2018-11-09 Jakub Jelinek <jakub@redhat.com>
210
211 * parser.c (cp_parser_omp_clause_final, cp_parser_omp_clause_if): Use
212 cp_parser_assignment_expression instead of cp_parser_condition.
213 (cp_parser_omp_clause_num_threads, cp_parser_omp_clause_num_tasks,
214 cp_parser_omp_clause_grainsize, cp_parser_omp_clause_priority,
215 cp_parser_omp_clause_num_teams, cp_parser_omp_clause_thread_limit,
216 cp_parser_omp_clause_linear, cp_parser_omp_clause_device): Use
217 cp_parser_assignment_expression instead of cp_parser_expression.
218 (cp_parser_omp_clause_hint): Likewise. Formatting fix.
219
220 * parser.c (cp_parser_omp_clause_reduction): Call sorry_at on
221 reduction clause with inscan modifier.
222
223 * parser.c (cp_parser_omp_requires): Call sorry_at on requires
224 clauses other than atomic_default_mem_order.
225
226 2018-11-09 Martin Sebor <msebor@redhat.com>
227
228 PR middle-end/81824
229 * pt.c (warn_spec_missing_attributes): Move code to attribs.c.
230 Call decls_mismatched_attributes.
231
232 2018-11-08 Jakub Jelinek <jakub@redhat.com>
233
234 * constexpr.c (potential_constant_expression_1): Handle OMP_DEPOBJ.
235 * cp-gimplify.c (cp_genericize_r): Handle
236 OMP_CLAUSE_{IN,TASK}_REDUCTION.
237 (cxx_omp_predetermined_sharing_1): Don't return
238 OMP_CLAUSE_DEFAULT_SHARED for const qualified decls with no mutable
239 member. Return OMP_CLAUSE_DEFAULT_FIRSTPRIVATE for this pointer.
240 * cp-objcp-common.c (cp_common_init_ts): Handle OMP_DEPOBJ.
241 * cp-tree.def (OMP_DEPOBJ): New tree code.
242 * cp-tree.h (OMP_ATOMIC_DEPENDENT_P): Return true also for first
243 argument being OMP_CLAUSE.
244 (OMP_DEPOBJ_DEPOBJ, OMP_DEPOBJ_CLAUSES): Define.
245 (cp_convert_omp_range_for, cp_finish_omp_range_for): Declare.
246 (finish_omp_atomic): Add LOC, CLAUSES and MO arguments. Remove
247 SEQ_CST argument.
248 (finish_omp_for_block): Declare.
249 (finish_omp_flush): Add MO argument.
250 (finish_omp_depobj): Declare.
251 * cxx-pretty-print.c (cxx_pretty_printer::statement): Handle
252 OMP_DEPOBJ.
253 * dump.c (cp_dump_tree): Likewise.
254 * lex.c (cxx_init): Likewise.
255 * parser.c: Include memmodel.h.
256 (cp_parser_for): Pass false as new is_omp argument to
257 cp_parser_range_for.
258 (cp_parser_range_for): Add IS_OMP argument, return before finalizing
259 if it is true.
260 (cp_parser_omp_clause_name): Handle nontemporal, in_reduction and
261 task_reduction clauses.
262 (cp_parser_omp_var_list_no_open): Handle
263 OMP_CLAUSE_{IN,TASK}_REDUCTION. For OMP_CLAUSE_DEPEND, parse clause
264 operands as either an array section, or lvalue assignment expression.
265 (cp_parser_omp_clause_if): Handle cancel and simd modifiers.
266 (cp_parser_omp_clause_defaultmap): Parse new kinds of defaultmap
267 clause.
268 (cp_parser_omp_clause_reduction): Add IS_OMP and KIND arguments.
269 Parse reduction modifiers. Pass KIND to c_parser_omp_variable_list.
270 (cp_parser_omp_clause_lastprivate, cp_parser_omp_iterators): New
271 functions.
272 (cp_parser_omp_clause_depend): Parse iterator modifier and handle
273 iterators. Parse mutexinoutset and depobj kinds.
274 (cp_parser_oacc_all_clauses): Adjust cp_parser_omp_clause_reduction
275 callers.
276 (cp_parser_omp_all_clauses): Likewise. Handle
277 PRAGMA_OMP_CLAUSE_NONTEMPORAL and
278 PRAGMA_OMP_CLAUSE_{IN,TASK}_REDUCTION. Call
279 cp_parser_omp_clause_lastprivate for OpenMP lastprivate clause.
280 (cp_parser_omp_atomic): Pass pragma_tok->location as
281 LOC to finish_omp_atomic. Parse hint and memory order clauses.
282 Handle default memory order from requires directive if any. Adjust
283 finish_omp_atomic caller.
284 (cp_parser_omp_critical): Allow comma in between (name) and hint
285 clause.
286 (cp_parser_omp_depobj): New function.
287 (cp_parser_omp_flush): Parse flush with memory-order-clause.
288 (cp_parser_omp_for_cond): Allow NE_EXPR even in OpenMP loops.
289 (cp_convert_omp_range_for, cp_finish_omp_range_for): New functions.
290 (cp_parser_omp_for_loop): Parse C++11 range for loops among omp
291 loops. Handle OMP_CLAUSE_IN_REDUCTION like OMP_CLAUSE_REDUCTION.
292 (OMP_SIMD_CLAUSE_MASK): Add if and nontemporal clauses.
293 (cp_parser_omp_simd, cp_parser_omp_for): Call keep_next_level before
294 begin_omp_structured_block and call finish_omp_for_block on
295 finish_omp_structured_block result.
296 (cp_parser_omp_master): Add p_name, mask and cclauses arguments.
297 Allow to be called while parsing combined parallel master.
298 Parse combined master taskloop{, simd}.
299 (cp_parser_omp_parallel): Parse combined
300 parallel master{, taskloop{, simd}} constructs.
301 (cp_parser_omp_single): Use SET_EXPR_LOCATION.
302 (OMP_TASK_CLAUSE_MASK): Add in_reduction clause.
303 (OMP_TASKWAIT_CLAUSE_MASK): Define.
304 (cp_parser_omp_taskwait): Handle taskwait with depend clauses.
305 (OMP_TASKGROUP_CLAUSE_MASK): Define.
306 (cp_parser_omp_taskgroup): Parse taskgroup clauses, adjust
307 c_finish_omp_taskgroup caller.
308 (cp_parser_omp_distribute): Call keep_next_level before
309 begin_omp_structured_block and call finish_omp_for_block on
310 finish_omp_structured_block result.
311 (cp_parser_omp_teams): Force a BIND_EXPR with BLOCK around teams
312 body.
313 (cp_parser_omp_target_data): Allow target data with only
314 use_device_ptr clauses.
315 (cp_parser_omp_target): Set OMP_REQUIRES_TARGET_USED bit in
316 omp_requires_mask.
317 (cp_parser_omp_requires): New function.
318 (OMP_TASKLOOP_CLAUSE_MASK): Add reduction and in_reduction clauses.
319 (cp_parser_omp_taskloop): Add forward declaration. Disallow
320 in_reduction clause when combined with parallel master. Call
321 keep_next_level before begin_omp_structured_block and call
322 finish_omp_for_block on finish_omp_structured_block result.
323 (cp_parser_omp_construct): Adjust cp_parser_omp_master caller.
324 (cp_parser_pragma): Handle PRAGMA_OMP_DEPOBJ and PRAGMA_OMP_REQUIRES.
325 * pt.c (tsubst_omp_clause_decl): Add iterators_cache argument.
326 Adjust recursive calls. Handle iterators.
327 (tsubst_omp_clauses): Handle OMP_CLAUSE_{IN,TASK}_REDUCTION and
328 OMP_CLAUSE_NONTEMPORAL. Adjust tsubst_omp_clause_decl callers.
329 (tsubst_decomp_names):
330 (tsubst_omp_for_iterator): Change orig_declv into a reference.
331 Handle range for loops. Move orig_declv handling after declv/initv
332 handling.
333 (tsubst_expr): Force a BIND_EXPR with BLOCK around teams body.
334 Adjust finish_omp_atomic caller. Call keep_next_level before
335 begin_omp_structured_block. Call cp_finish_omp_range_for for range
336 for loops and use {begin,finish}_omp_structured_block instead of
337 {push,pop}_stmt_list if there are any range for loops. Call
338 finish_omp_for_block on finish_omp_structured_block result.
339 Handle OMP_DEPOBJ. Handle taskwait with depend clauses. For
340 OMP_ATOMIC call tsubst_omp_clauses on clauses if any, adjust
341 finish_omp_atomic caller. Use OMP_ATOMIC_MEMORY_ORDER rather
342 than OMP_ATOMIC_SEQ_CST. Handle clauses on OMP_TASKGROUP.
343 (dependent_omp_for_p): Always return true for range for loops if
344 processing_template_decl. Return true if class type iterator
345 does not have INTEGER_CST increment.
346 * semantics.c: Include memmodel.h.
347 (handle_omp_array_sections_1): Handle OMP_CLAUSE_{IN,TASK}_REDUCTION
348 like OMP_CLAUSE_REDUCTION.
349 (handle_omp_array_sections): Likewise. Call save_expr on array
350 reductions before calling build_index_type. Handle depend clauses
351 with iterators.
352 (finish_omp_reduction_clause): Call save_expr for whole array
353 reduction sizes. Don't mark OMP_CLAUSE_DECL addressable if it has
354 reference type. Do mark decl_placeholder addressable if needed.
355 Use error_at with OMP_CLAUSE_LOCATION (c) as first argument instead
356 of error.
357 (cp_omp_finish_iterators): New function.
358 (finish_omp_clauses): Don't diagnose nonmonotonic clause with static,
359 runtime or auto schedule kinds. Diagnose nogroup clause used with
360 reduction clause(s). Handle depend clause with
361 OMP_CLAUSE_DEPEND_DEPOBJ. Diagnose bit-fields. Require
362 omp_depend_t type for OMP_CLAUSE_DEPEND_DEPOBJ kinds and
363 some different type for other kinds. Use cp_build_addr_expr
364 and cp_build_indirect_ref instead of cxx_mark_addressable.
365 Handle depend clauses with iterators. Only handle static data members
366 in the special case that const qualified vars may be specified in
367 firstprivate clause. Complain if const qualified vars without mutable
368 members are mentioned in data-sharing clauses other than firstprivate
369 or shared. Use error_at with OMP_CLAUSE_LOCATION (c) as first
370 argument instead of error. Diagnose more than one nontemporal clause
371 refering to the same variable. Use error_at rather than error for
372 priority and hint clause diagnostics. Fix pasto for hint clause.
373 Diagnose hint expression that doesn't fold into INTEGER_CST.
374 Diagnose if clause with modifier other than cancel. Handle
375 OMP_CLAUSE_{IN,TASK}_REDUCTION like OMP_CLAUSE_REDUCTION. Allow any
376 lvalue as OMP_CLAUSE_DEPEND operand (besides array section), adjust
377 diagnostics.
378 (handle_omp_for_class_iterator): Don't create a new TREE_LIST if one
379 has been created already for range for, just fill TREE_PURPOSE and
380 TREE_VALUE. Call cp_fully_fold on incr.
381 (finish_omp_for): Don't check cond/incr if cond is global_namespace.
382 Pass to c_omp_check_loop_iv_exprs orig_declv if non-NULL. Don't
383 use IS_EMPTY_STMT on NULL pre_body. Adjust c_finish_omp_for caller.
384 (finish_omp_for_block): New function.
385 (finish_omp_atomic): Add LOC argument, pass it through
386 to c_finish_omp_atomic and set it as location of OMP_ATOMIC* trees.
387 Remove SEQ_CST argument. Add CLAUSES and MO arguments. Adjust
388 c_finish_omp_atomic caller. Stick clauses if any into first argument
389 of wrapping OMP_ATOMIC.
390 (finish_omp_depobj): New function.
391 (finish_omp_flush): Add MO argument, if not
392 MEMMODEL_LAST, emit __atomic_thread_fence call with the given value.
393 (finish_omp_cancel): Diagnose if clause with modifier other than
394 cancel.
395
396 2018-11-07 Nathan Sidwell <nathan@acm.org>
397
398 PR c++/87904
399 * cp-tree.h (struct tree_overload): Fix comment.
400 * tree.c (ovl_iterator::reveal_node): Propagate OVL_DEDUP_P.
401
402 2018-11-04 Jason Merrill <jason@redhat.com>
403
404 Implement UDL changes from P0732R2.
405 * cp-tree.h (struct releasing_vec): Move from mangle.c.
406 Add get_ref method.
407 * parser.c (cp_parser_userdef_string_literal): Use it. Handle
408 passing the string to a single template parameter of class type.
409 (cp_parser_template_declaration_after_parameters): Allow it.
410 Pedwarn about the character pack template that was proposed but not
411 accepted for C++14, and don't suggest it.
412
413 Implement P0732R2, class types in non-type template parameters.
414 * error.c (dump_simple_decl): Look through a template parm object.
415 * mangle.c (write_template_arg): Likewise.
416 (mangle_template_parm_object): New.
417 * pt.c (template_parm_object_p, get_template_parm_object): New.
418 (invalid_tparm_referent_p): Factor from convert_nontype_argument.
419 (convert_nontype_argument, invalid_nontype_parm_type_p): Handle
420 class-type template arguments.
421 * tree.c (lvalue_kind): Likewise.
422
423 * cvt.c (ocp_convert): Don't wrap a CONSTRUCTOR in a NOP_EXPR.
424 * constexpr.c (initialized_type): Fix AGGR_INIT_EXPR handling.
425 (cxx_eval_vec_init_1): Correct type of AGGR_INIT_EXPR.
426 (cxx_eval_outermost_constant_expr): Make sure a CONSTRUCTOR has the
427 right type. Don't wrap a CONSTRUCTOR if one was passed in.
428 * tree.c (build_aggr_init_expr): Check for void.
429
430 PR c++/60503 - wrong lambda attribute syntax.
431 * parser.c (cp_parser_lambda_declarator_opt): Fix attribute
432 handling.
433
434 2018-11-02 Nathan Sidwell <nathan@acm.org>
435
436 * decl.c (duplicate_decls): Refactor checks.
437
438 2018-11-01 Marek Polacek <polacek@redhat.com>
439
440 Implement P0846R0, ADL and function templates.
441 * decl.c (grokfndecl): Allow FUNCTION_DECL in assert.
442 * lex.c (unqualified_fn_lookup_error): Handle TEMPLATE_ID_EXPR.
443 * parser.c (cp_parser_postfix_expression): Do ADL for a template-name.
444 (cp_parser_template_id): Give errors if parsing the template argument
445 list didn't go well. Allow FUNCTION_DECL in assert.
446 (cp_parser_template_name): Consider a name to refer to a template if
447 it is an unqualified-id followed by a <. Don't return the identifier
448 if the decl is a function and dependent.
449 * pt.c (tsubst_copy) <case OVERLOAD>: Remove assert.
450
451 2018-11-01 Nathan Sidwell <nathan@acm.org>
452
453 * cp-tree.h (struct lang_function): Delete x_local_names field.
454 (struct lang_decl_base): Rename u2sel to spare.
455 (struct lang_decl_min): Remove lang_decl_u2 union. Keep access
456 field.
457 (LANG_DECL_U2_CHECK): Delete.
458 (DECL_DISCRIMINATOR_P): Require function scope.
459 (DECL_DISCRIMINATOR): Adjust.
460 (DECL_DISCRIMINATOR_SET_P): Delete.
461 (DECL_CAPTURED_VARIABLE, DECL_ACCESS, THUnK_VIRTUAL_OFFSET): Adjust.
462 (local_classes): Don't declare.
463 (determine_local_discriminator): Declare.
464 * decl.c (push_local_name): Delete.
465 (local_entities, determina_local_discrminator): New.
466 (duplicate_decls): Copy DECL_ACCESS. Fix formatting.
467 (cp_finish_decl): Use determine_local_discriminator.
468 (save_function_data): Drop x_local_names.
469 (finish_function): Drop local_names.
470 * decl2.c (finish_anon_union): Use determine_local_disciminator.
471 * mangle.c (write_unnamed_type_name): Use
472 discriminator_for_local_entity.
473 (local_class_index): Delete.
474 (discriminator_for_local_entity): Reimplement.
475 (write_local_name): Adjust discriminator code.
476 * name-lookup.c (do_pushtag): Call determine_local_discrimiator.
477 * semantics.c (finish_omp_threadprivate): Drop DECL_DISCRIMINATOR
478 handling.
479 * class.c (local_classes): Delete.
480 (init_class_processing): Don't init it.
481
482 2018-11-01 Martin Liska <mliska@suse.cz>
483 Jason Merrill <jason@redhat.com>
484
485 PR c++/64266
486 PR bootstrap/70422
487 PR ipa/81277
488 * cp-tree.h (DECL_FNAME_P): New macro.
489 * decl.c (cp_make_fname_decl): Set DECL_DECLARED_CONSTEXPR_P,
490 DECL_VALUE_EXPR, DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P.
491 (cp_finish_decl):
492 * lambda.c (is_capture_proxy): Use DECL_FNAME_P.
493 * pt.c (tsubst_expr): Handle DECL_PRETTY_FUNCTION_P.
494
495 2018-10-31 Nathan Sidwell <nathan@acm.org>
496
497 * cp-tree.h (OVL_DEDUP_P): New.
498 * name-lookup.c (name_lookup::add_overload): Check OVL_DEDUP_P.
499 (get_class_binding_direct): Likwise.
500 * tree.c (ovl_make): Propagate OVL_DEDUP_P.
501 (ovl_copy): Copy it.
502 (ovl_insert): Do not keep using-decls ordered.
503 (lookup_maybe_add): Adjust comment.
504
505 2018-10-30 Marek Polacek <polacek@redhat.com>
506
507 Implement P0892R2, explicit(bool).
508 * call.c (add_template_candidate_real): Return if the declaration is
509 explicit and we're only looking for non-converting constructor.
510 * cp-tree.h (lang_decl_fn): Add has_dependent_explicit_spec_p bit.
511 (DECL_HAS_DEPENDENT_EXPLICIT_SPEC_P): New macro.
512 (cp_decl_specifier_seq): Add explicit_specifier field.
513 (build_explicit_specifier, store_explicit_specifier): Declare.
514 * decl.c (grokdeclarator): Call store_explicit_specifier.
515 (build_explicit_specifier): New function.
516 * parser.c (cp_parser_function_specifier_opt) <case RID_EXPLICIT>:
517 Parse C++20 explicit(bool).
518 * pt.c (store_explicit_specifier, lookup_explicit_specifier): New.
519 (tsubst_function_decl): Handle explicit(dependent-expr).
520
521 2018-10-30 Paolo Carlini <paolo.carlini@oracle.com>
522
523 * decl.c (grokdeclarator): Use declarator->id_loc in diagnostic
524 about flexible array members.
525
526 2018-10-29 David Malcolm <dmalcolm@redhat.com>
527
528 * cp-name-hint.h: New file.
529 * cp-tree.h (expr_to_string): New decl.
530 (suggest_alternatives_for): Move to cp-name-hint.h, changing
531 return type from bool to name_hint.
532 (suggest_alternative_in_explicit_scope): Likewise.
533 * error.c: Define INCLUDE_UNIQUE_PTR. Include "cp-name-hint.h".
534 (expr_to_string): Make non-static.
535 (qualified_name_lookup_error): For the non-"::" case, take
536 responsibity for issuing any suggestion from
537 suggest_alternative_in_explicit_scope, as it changes from
538 returning a bool to returning a name_hint. Replace fallback call
539 to suggest_alternatives_for to a call to
540 suggest_alternatives_in_other_namespaces, capturing the fact that
541 we don't have enough location information to issue a fix-it hint
542 for this case. Update the error to support emitting a fix-it hint
543 where appropriate. For the "::" case, take responsibility for
544 issuing any suggestion from suggest_alternatives_for, supporting
545 emitting a fix-it hint.
546 * lex.c: Define INCLUDE_UNIQUE_PTR. Include "gcc-rich-location.h"
547 and "cp-name-hint.h".
548 (unqualified_name_lookup_error): Take responsibility for issuing
549 any suggestion from suggest_alternatives_for, supporting emitting
550 a fix-it hint.
551 * name-lookup.c (class namespace_limit_reached): New subclass of
552 deferred_diagnostic.
553 (class show_candidate_location): Likewise.
554 (class suggest_alternatives): Likewise.
555 (class namespace_hints): New class.
556 (suggest_alternatives_for): Convert return type from bool to
557 name_hint, replacing all direct diagnostic emission by setting
558 suggestions on the return value, or creating deferred diagnostics.
559 Specifically, split out initial traversal of namespaces into
560 namespace_hints' ctor, and maybe_decorate_with_limit, and move the
561 rest of the implementation to
562 namespace_hints::convert_candidates_to_name_hint and
563 suggest_alternatives_for_1.
564 (namespace_hints::namespace_hints): New ctor, adapted from
565 suggest_alternatives_for's initial namespace traversal, storing
566 location and name, and converting locals "candidates", "limited"
567 and "limit" into members.
568 (namespace_hints::convert_candidates_to_name_hint): New member
569 function.
570 (namespace_hints::maybe_decorate_with_limit): New member function.
571 (suggest_alternatives_for_1): New function, based on second half
572 of old implementation of suggest_alternatives_for, converting from
573 immediate emission of suggestions to using name_hint.
574 (suggest_alternatives_in_other_namespaces): New function.
575 (maybe_suggest_missing_std_header): Convert from immediate
576 emission of suggestions to using name_hint, moving emission
577 implementation to...
578 (class missing_std_header): New subclass of deferred_diagnostic.
579 (maybe_suggest_missing_header): Convert return type from bool to
580 name_hint.
581 (suggest_alternative_in_explicit_scope): Convert from immediate
582 emission of suggestions to using name_hint.
583 * parser.c: Replace include of "c-family/name-hint.h" with
584 "cp-name-hint.h".
585 (cp_parser_diagnose_invalid_type_name): Update
586 "is there a suggestion" logic for change to
587 name_hint::operator bool. Take responsibility for emitting
588 fix-it hints from suggest_alternative_in_explicit_scope.
589 (cp_parser_namespace_name): Take responsibility for emitting
590 fix-it hints from suggest_alternative_in_explicit_scope. Don't
591 emit the "expected namespace-name" error if we've already emitted
592 an "is not a namespace-name" error.
593
594 2018-10-29 David Malcolm <dmalcolm@redhat.com>
595
596 PR c++/56856
597 * call.c (build_over_call): Eliminate the "arglocs" array, and the
598 call to maybe_constant_value when building "fargs".
599
600 2018-10-29 Paolo Carlini <paolo.carlini@oracle.com>
601
602 * decl.c (create_array_type_for_decl): Add location_t parameter
603 and use it.
604 (grokdeclarator): Adjust call.
605
606 2018-10-29 Marek Polacek <polacek@redhat.com>
607
608 PR c++/87594 - constexpr rejects-valid with range-based for.
609 * constexpr.c (potential_constant_expression_1): If the condition
610 can't be evaluated, return true.
611
612 2018-10-29 Joseph Myers <joseph@codesourcery.com>
613 Julian Brown <julian@codesourcery.com>
614
615 PR c++/66053
616 * semantics.c (handle_omp_array_sections_1): Allow array
617 sections with "this" pointer for OpenACC.
618
619 2018-10-25 Jason Merrill <jason@redhat.com>
620
621 * parser.c (cp_parser_sizeof_operand): Remove redundant use of
622 grokdeclarator.
623
624 2018-10-24 Jakub Jelinek <jakub@redhat.com>
625
626 PR c++/86288
627 * parser.c (cp_parser_std_attribute): Canonicalize attr_ns, and when
628 :: is not present and attr_ns non-NULL, canonicalize also attr_id.
629 (cp_parser_attribute_spec): Fix comment typo.
630
631 2018-10-24 Martin Sebor <msebor@redhat.com>
632
633 PR c++/84851
634 * call.c (maybe_warn_class_memaccess): Tighten up.
635
636 2018-10-17 David Malcolm <dmalcolm@redhat.com>
637
638 * Make-lang.in (selftest-c++): New.
639 (CPP_SELFTEST_FLAGS, CPP_SELFTEST_DEPS, s-selftest-c++)
640 (selftest-c++-gdb, selftest-c++-valgrind): Move here from
641 gcc/Makefile.in.
642
643 2018-10-17 Paolo Carlini <paolo.carlini@oracle.com>
644
645 PR c++/84705
646 * tree.c (build_cplus_new): Avoid duplicate diagnostic about
647 incomplete type, early return error_mark_node if the second
648 argument is error_mark_node.
649
650 2018-10-12 Nathan Sidwell <nathan@acm.org>
651
652 * parser.h (struct cp_parser): Drop implicit_extern_c.
653 * parser.c (cp_debug_parser): Drop implicit_extern_c.
654 (cp_parser_new): Likewise.
655 (cp_parser_translation_unit): Handle implicit extern c here. Call
656 cp_parser_toplevel_declaration.
657 (cp_parser_toplevel_declaration): New, broken out of ...
658 (cp_parser_declaration_seq_opt): ... here. Call it. Drop
659 implicit extern C handling.
660
661 2018-10-11 Will Wray <wjwray@gmail.com>
662
663 PR c++/87364
664 * cxx-pretty-print.c (pp_cxx_enumeration_constant): New function.
665 (cxx_pretty_printer::constant): Use it.
666
667 2018-10-11 David Malcolm <dmalcolm@redhat.com>
668
669 PR c++/84993
670 * call.c (enforce_access): Move diagnostics to...
671 (complain_about_access): ...this new function.
672 * cp-tree.h (class access_failure_info): Rename split out field
673 "m_field_decl" into "m_decl" and "m_diag_decl".
674 (access_failure_info::record_access_failure): Add tree param.
675 (access_failure_info::was_inaccessible_p): New accessor.
676 (access_failure_info::get_decl): New accessor.
677 (access_failure_info::get_diag_decl): New accessor.
678 (access_failure_info::get_any_accessor): New member function.
679 (access_failure_info::add_fixit_hint): New static member function.
680 (complain_about_access): New decl.
681 * typeck.c (access_failure_info::record_access_failure): Update
682 for change to fields.
683 (access_failure_info::maybe_suggest_accessor): Split out into...
684 (access_failure_info::get_any_accessor): ...this new function...
685 (access_failure_info::add_fixit_hint): ...and this new function.
686 (finish_class_member_access_expr): Split out "has no member named"
687 error-handling into...
688 (complain_about_unrecognized_member): ...this new function, and
689 check that the guessed name is accessible along the access path.
690 Only provide a spell-correction fix-it hint if it is; otherwise,
691 attempt to issue an accessor fix-it hint.
692
693 2018-10-11 Nathan Sidwell <nathan@acm.org>
694
695 * parser.c (cp_parser_translation_unit): Return void. Don't fail
696 at first extra }, simplify logic.
697 (c_parse_file): Call finish_translation_unit here.
698
699 2018-10-11 Jakub Jelinek <jakub@redhat.com>
700
701 PR c++/87582
702 * typeck.c (maybe_warn_about_returning_address_of_local): If
703 whats_returned is a structured binding identifier and the structured
704 binding is a reference, recurse on its initializer.
705
706 PR c++/87547
707 * rtti.c (get_tinfo_decl_dynamic): Use unlowered_expr_type instead
708 of TREE_TYPE.
709
710 2018-10-10 Marek Polacek <polacek@redhat.com>
711
712 PR c++/87567 - constexpr rejects call to non-constexpr function.
713 * constexpr.c (potential_constant_expression_1) <case FOR_STMT>: Return
714 true if the condition is always false.
715 <case WHILE_STMT>: Likewise.
716
717 2018-10-09 Paolo Carlini <paolo.carlini@oracle.com>
718
719 PR c++/84423
720 * pt.c (convert_template_argument): Immediately return error_mark_node
721 if the second argument is erroneous.
722 * parser.c (cp_parser_type_id): Add location_t * parameter.
723 (cp_parser_type_id_1): Likewise.
724 (cp_parser_alias_declaration): Adjust cp_parser_type_id call,
725 obtain the location of the type and save it.
726 (cp_parser_template_type_arg): Adjust.
727 (cp_parser_trailing_type_id): Likewise.
728 * decl.c (grokdeclarator): Improve error message for 'auto' in
729 alias declaration.
730
731 2018-10-08 Paolo Carlini <paolo.carlini@oracle.com>
732
733 PR c++/71128
734 * pt.c (do_decl_instantiation): Per 12.6.8/5, a concept cannot be
735 explicitly instantiated.
736
737 2018-10-05 David Malcolm <dmalcolm@redhat.com>
738
739 PR c++/56856
740 * call.c (build_over_call): Build a vec of locations of the
741 arguments before the call to maybe_constant_value, and pass to
742 check_function_arguments.
743 * cp-lang.c (LANG_HOOKS_GET_SUBSTRING_LOCATION): Define as
744 c_get_substring_location.
745 * parser.c (cp_parser_string_literal): Capture string
746 concatenation locations.
747
748 2018-10-04 Nathan Sidwell <nathan@acm.org>
749
750 * lang-specs.h: Use string contatenation, not line splicing.
751
752 2018-10-03 Jason Merrill <jason@redhat.com>
753
754 Implement P0840, language support for empty objects.
755 * tree.c (handle_no_unique_addr_attribute): New.
756 (cxx_attribute_table): Add [[no_unique_address]].
757 * class.c (field_poverlapping_p): New.
758 (layout_class_type): Check it. Adjust DECL_SIZE of potentially
759 overlapping fields.
760 (layout_empty_base_or_field): Rename from layout_empty_base, handle
761 FIELD_DECL as well.
762 (build_base_field, record_subobject_offsets): Adjust.
763
764 2018-10-03 Martin Liska <mliska@suse.cz>
765
766 PR gcov-profile/86109
767 * parser.c (cp_parser_lambda_declarator_opt):
768 Set DECL_LAMBDA_FUNCTION for lambdas.
769
770 2018-10-02 Richard Biener <rguenther@suse.de>
771
772 * name-lookup.c (check_local_shadow): Do not test DECL_FROM_INLINE.
773
774 2018-09-28 Eric Botcazou <ebotcazou@adacore.com>
775 Pierre-Marie de Rodat <derodat@adacore.com>
776
777 * method.c (use_thunk): Adjust call to cgraph_node::create_thunk.
778
779 2018-09-28 Richard Biener <rguenther@suse.de>
780
781 * error.c (cp_print_error_function): Simplify by eliding
782 the BLOCK_ABSTRACT_ORIGIN chasing.
783
784 2018-09-27 Paolo Carlini <paolo.carlini@oracle.com>
785
786 PR c++/84940
787 * semantics.c (finish_unary_op_expr): Check return value of
788 build_x_unary_op for error_mark_node.
789
790 2018-09-25 Jakub Jelinek <jakub@redhat.com>
791
792 PR c++/87398
793 * constexpr.c (cxx_eval_constant_expression) <case OBJ_TYPE_REF>: Only
794 look through COMPONENT_REFs with DECL_FIELD_IS_BASE FIELD_DECLs.
795
796 2018-09-25 Martin Liska <mliska@suse.cz>
797
798 * name-lookup.c (namespace_scope_ht_size): Remove
799 unused function.
800 * parser.c (cp_lexer_next_token_is_not_keyword): Likewise.
801
802 2018-09-24 Paolo Carlini <paolo.carlini@oracle.com>
803
804 PR c++/85070
805 * method.c (lazily_declare_fn): During error-recovery add_method
806 may return false.
807
808 2018-09-21 Marek Polacek <polacek@redhat.com>
809
810 PR c++/87372 - __func__ constexpr evaluation.
811 * constexpr.c (maybe_constant_init_1): Pass false for strict down to
812 cxx_eval_outermost_constant_expr.
813
814 2018-09-20 Marek Polacek <polacek@redhat.com>
815
816 PR c++/87109 - wrong ctor with maybe-rvalue semantics.
817 * call.c (build_user_type_conversion_1): Refine the maybe-rvalue
818 check to only return if we're converting the return value to a base
819 class.
820
821 2018-09-20 Allan Sandfeld Jensen <allan.jensen@qt.io>
822
823 * g++spec.c (lang_specific_driver): Handle -r like -nostdlib.
824
825 2018-09-20 Jason Merrill <jason@redhat.com>
826
827 PR c++/87075 - ICE with constexpr array initialization.
828 * constexpr.c (cxx_eval_vec_init_1): Handle trivial initialization.
829
830 2018-09-19 Marek Polacek <polacek@redhat.com>
831
832 Add -Wclass-conversion.
833 * decl.c (grok_op_properties): Change a warning from -Wconversion to
834 -Wclass-conversion. Make it print the types.
835
836 2018-09-19 Paolo Carlini <paolo.carlini@oracle.com>
837
838 PR c++/87324
839 * parser.c (cp_parser_initializer_list): Assign error_mark_node
840 to the index upon error.
841
842 2018-09-19 Marek Polacek <polacek@redhat.com>
843
844 PR c++/87357 - missing -Wconversion warning
845 * decl.c (grok_op_properties): Remove diagnostic parts mentioning
846 a conversion to a reference to void. Use
847 same_type_ignoring_top_level_qualifiers_p rather than comparing types
848 directly.
849
850 2018-09-18 Marek Polacek <polacek@redhat.com>
851
852 P1064R0 - Allowing Virtual Function Calls in Constant Expressions
853 * call.c (build_over_call): No longer check if we're outside a template
854 function.
855 * class.c (build_vtbl_initializer): Build vtable's constructor with
856 indexes.
857 * constexpr.c (cxx_eval_constant_expression): Don't ignore _vptr's
858 initializer. Handle OBJ_TYPE_REF.
859 (potential_constant_expression_1): Handle OBJ_TYPE_REF.
860 * decl.c (maybe_commonize_var): Bail out for any DECL_ARTIFICIAL.
861 (initialize_artificial_var): Mark the variable as constexpr.
862 (grokdeclarator): Change error to pedwarn. Only warn when
863 pedantic and not C++2a.
864
865 2018-09-18 Paolo Carlini <paolo.carlini@oracle.com>
866
867 PR c++/85065
868 * cp-tree.h (NON_ERROR): New.
869 * pt.c (auto_hash::hash): Use it.
870 (do_auto_deduction): Likewise.
871
872 2018-09-18 Nathan Sidwell <nathan@acm.org>
873
874 PR c++/86881
875 * name-lookup.c (check_local_shadow): Ignore auto types.
876
877 2018-09-17 David Malcolm <dmalcolm@redhat.com>
878
879 * error.c (range_label_for_type_mismatch::get_text): Update for
880 new param.
881
882 2018-09-13 Bernd Edlinger <bernd.edlinger@hotmail.de>
883
884 * typeck2.c (digest_init_r): Fix overlength strings.
885
886 2018-09-13 Ville Voutilainen <ville.voutilainen@gmail.com>
887
888 PR c++/87093
889 * method.c (constructible_expr): We're in an unevaluated context
890 in all cases, not just for class targets.
891
892 2018-09-12 David Malcolm <dmalcolm@redhat.com>
893
894 PR c++/85110
895 * call.c (struct conversion_info): Add "loc" field.
896 (arg_conversion_rejection): Add "loc" param, using it to
897 initialize the new field.
898 (bad_arg_conversion_rejection): Likewise.
899 (explicit_conversion_rejection): Initialize the new field to
900 UNKNOWN_LOCATION.
901 (template_conversion_rejection): Likewise.
902 (add_function_candidate): Pass on the argument location to the new
903 param of arg_conversion_rejection.
904 (add_conv_candidate): Likewise.
905 (build_builtin_candidate): Likewise.
906 (build_user_type_conversion_1): Likewise.
907 (single_z_candidate): New function.
908 (maybe_get_bad_conversion_for_unmatched_call): New function.
909 (complain_about_bad_argument): New function, based on part of
910 convert_for_assignment.
911 (build_new_method_call_1): Split out handling of the "no viable
912 candidates" case into...
913 (complain_about_no_candidates_for_method_call): ...this new
914 function, and use the new functions above to special-case the
915 handling of a single non-viable candidate due to a bad argument.
916 * cp-tree.h (complain_about_bad_argument): New decl.
917 * typeck.c (convert_for_assignment): Split out one error-handling
918 case into complain_about_bad_argument.
919
920 2018-09-09 Cesar Philippidis <cesar@codesourcery.com>
921 Julian Brown <julian@codesourcery.com>
922
923 PR middle-end/86336
924 * semantics.c (finish_omp_clauses): Treat C++ references the same in
925 OpenACC as OpenMP.
926
927 2018-08-28 Martin Liska <mliska@suse.cz>
928
929 * constexpr.c (cxx_eval_call_expression): Add quotes
930 to -fconstexpr-depth=.
931
932 2018-09-10 Marek Polacek <polacek@redhat.com>
933
934 * class.c (build_vtbl_ref): Remove.
935 (build_vtbl_ref_1): Rename to build_vtbl_ref.
936 (build_vfn_ref): Call build_vtbl_ref instead of build_vtbl_ref_1.
937
938 2018-09-08 Marek Polacek <polacek@redhat.com>
939
940 PR c++/87150 - wrong ctor with maybe-rvalue semantics.
941 * call.c (struct conversion): Update commentary.
942 (standard_conversion): Set rvaluedness_matches_p if LOOKUP_PREFER_RVALUE
943 for ck_base.
944
945 2018-09-08 Jason Merrill <jason@redhat.com>
946
947 PR c++/86678 - constexpr function with non-constant after return.
948 * constexpr.c (potential_constant_expression_1): Add jump_target.
949 (breaks): Check for BREAK_STMT.
950 (continues): Check for CONTINUE_STMT.
951
952 2018-09-08 Marek Polacek <polacek@redhat.com>
953
954 * cxx-pretty-print.c (cxx_pretty_printer::statement) <case
955 RANGE_FOR_SMT>: Handle RANGE_FOR_INIT_STMT.
956
957 2018-09-07 Marek Polacek <polacek@redhat.com>
958
959 PR c++/87152 - range-based for loops with initializer broken in templates.
960 * constexpr.c (potential_constant_expression_1) <case RANGE_FOR_STMT>:
961 Recur into RANGE_FOR_INIT_STMT.
962 * cp-tree.def: Add RANGE_FOR_INIT_STMT to RANGE_FOR_STMT.
963 * cp-tree.h (RANGE_FOR_INIT_STMT): Define.
964 * dump.c (cp_dump_tree) <case RANGE_FOR_STMT>: Also dump
965 RANGE_FOR_INIT_STMT.
966 * pt.c (tsubst_expr) <case RANGE_FOR_STMT>: Recur into
967 RANGE_FOR_INIT_STMT.
968 * semantics.c (begin_range_for_stmt): Adjust call to build_stmt.
969 Do put the init statement in RANGE_FOR_INIT_STMT.
970 (finish_range_for_decl): Pop it for templates.
971
972 2018-09-06 Bernd Edlinger <bernd.edlinger@hotmail.de>
973
974 * decl.c (check_initializer): Call cp_complete_array_type.
975
976 2018-09-05 Marek Polacek <polacek@redhat.com>
977
978 PR c++/87109, wrong overload with ref-qualifiers.
979 * call.c (build_user_type_conversion_1): Use NULL instead of 0. Bail
980 out if performing the maybe-rvalue overload resolution and a conversion
981 function is getting called.
982
983 PR c++/86982, -Wreturn-local-addr and std::move and std::forward.
984 * typeck.c (maybe_warn_about_returning_address_of_local): Handle calls
985 to std::move or std::forward.
986 (is_std_forward_p): New function.
987
988 2018-09-05 Pádraig Brady <p@draigbrady.com>
989
990 PR c++/87185
991 * lambda.c (prune_lambda_captures): Protect against const_vars.get
992 returning NULL.
993
994 2018-09-04 Marek Polacek <polacek@redhat.com>
995
996 * cp-tree.h (treat_lvalue_as_rvalue_p): Declare.
997 * except.c (build_throw): Use it. Use CP_TYPE_VOLATILE_P.
998 * typeck.c (treat_lvalue_as_rvalue_p): No longer static. Add PARM_OK
999 parameter.
1000 (maybe_warn_pessimizing_move): Adjust treat_lvalue_as_rvalue_p call.
1001 (check_return_expr): Likewise.
1002
1003 2018-09-03 Paolo Carlini <paolo.carlini@oracle.com>
1004
1005 PR c++/84980
1006 * constraint.cc (finish_shorthand_constraint): Early return if the
1007 constraint is erroneous.
1008
1009 2018-09-02 Bernd Edlinger <bernd.edlinger@hotmail.de>
1010
1011 * decl.c (eval_check_narrowing): Remove.
1012 (check_initializer): Move call to braced_list_to_string from here ...
1013 * typeck2.c (store_init_value): ... to here.
1014 (digest_init_r): Remove handing of signed/unsigned char strings.
1015
1016 2018-08-31 Nathan Sidwell <nathan@acm.org>
1017
1018 PR c++/87155
1019 PR c++/84707
1020 * name-lookup.c (name_lookup::search_namespace): Don't look at
1021 inlines when searching for NULL names.
1022
1023 * decl.c (decls_match): Remove SYSTEM_IMPLICIT_EXTERN_C matching
1024 of return types and parms.
1025 * parser.c (cp_parser_parameter_declaration_clause): Likewise,
1026 '()' always means '(void)'.
1027
1028 2018-08-29 Jakub Jelinek <jakub@redhat.com>
1029
1030 PR c++/87095
1031 * decl.c (begin_destructor_body): If current_class_type has
1032 virtual bases and the primary base is nearly empty virtual base,
1033 voidify clearing of vptr and make it conditional on in-charge
1034 argument.
1035
1036 2018-08-29 Paolo Carlini <paolo.carlini@oracle.com>
1037
1038 PR c++/85265
1039 * parser.c (cp_parser_introduction_list): If cp_parser_identifier
1040 returns error_mark_node early exit the loop.
1041 (cp_parser_template_introduction): Improve error-recovery, remove
1042 error call about empty introduction-list.
1043
1044 2018-08-29 David Malcolm <dmalcolm@redhat.com>
1045
1046 PR c++/85110
1047 * call.c (print_conversion_rejection): Add "fn" param and use it
1048 for "no known conversion" messages to underline the pertinent
1049 param.
1050 (print_z_candidate): Supply "fn" to the new param above.
1051
1052 2018-08-29 Jakub Jelinek <jakub@redhat.com>
1053
1054 PR c++/87122
1055 * pt.c (tsubst_expr) <case RANGE_FOR_STMT>: If
1056 processing_template_decl and decl is structured binding decl, call
1057 cp_finish_decomp.
1058
1059 2018-08-28 Paolo Carlini <paolo.carlini@oracle.com>
1060
1061 PR c++/86546
1062 * decl.c (finish_case_label): If the type is erroneous early
1063 return error_mark_node.
1064
1065 2018-08-27 David Malcolm <dmalcolm@redhat.com>
1066
1067 PR c++/63392
1068 * parser.c (cp_parser_diagnose_invalid_type_name): Add fix-it
1069 hint.
1070
1071 2018-08-27 Jakub Jelinek <jakub@redhat.com>
1072
1073 PR c++/86993
1074 * cp-tree.h (cxx_readonly_error): Add location_t argument.
1075 * typeck2.c (cxx_readonly_error): Add LOC argument, pass it to
1076 ERROR_FOR_ASSIGNMENT macro and readonly_error. Add LOC argument
1077 to ERROR_FOR_ASSIGNMENT macro, use error_at instead of error and
1078 pass LOC to it. Formatting fixes.
1079 * typeck.c (cp_build_unary_op): Pass location to cxx_readonly_error.
1080 (cp_build_modify_expr): Pass loc to cxx_readonly_error.
1081 * semantics.c (finish_asm_stmt): Pass input_location to
1082 cxx_readonly_error.
1083
1084 2018-08-27 David Malcolm <dmalcolm@redhat.com>
1085
1086 PR c++/87091
1087 * decl.c (grokdeclarator): Update for conversion of show_caret_p
1088 to a tri-state.
1089 * error.c (cp_printer): Likewise.
1090 * name-lookup.c (maybe_suggest_missing_std_header): Update call to
1091 maybe_add_include_fixit to suggest overriding the location, as it
1092 is for a note.
1093 * parser.c (cp_parser_string_literal): Update for conversion of
1094 show_caret_p to a tri-state.
1095 (cp_parser_elaborated_type_specifier): Likewise.
1096 (set_and_check_decl_spec_loc): Likewise.
1097 * pt.c (listify): Update call to maybe_add_include_fixit to not
1098 override the location, as it is for an error.
1099 * rtti.c (typeid_ok_p): Likewise.
1100
1101 2018-08-27 Martin Liska <mliska@suse.cz>
1102
1103 * call.c (build_call_a): Use new function
1104 fndecl_built_in_p and remove check for FUNCTION_DECL if
1105 possible.
1106 (build_cxx_call): Likewise.
1107 * constexpr.c (constexpr_fn_retval): Likewise.
1108 (cxx_eval_builtin_function_call): Likewise.
1109 (cxx_eval_call_expression): Likewise.
1110 (potential_constant_expression_1): Likewise.
1111 * cp-gimplify.c (cp_gimplify_expr): Likewise.
1112 (cp_fold): Likewise.
1113 * decl.c (decls_match): Likewise.
1114 (validate_constexpr_redeclaration): Likewise.
1115 (duplicate_decls): Likewise.
1116 (make_rtl_for_nonlocal_decl): Likewise.
1117 * name-lookup.c (consider_binding_level): Likewise.
1118 (cp_emit_debug_info_for_using): Likewise.
1119 * semantics.c (finish_call_expr): Likewise.
1120 * tree.c (builtin_valid_in_constant_expr_p): Likewise.
1121
1122 2018-08-26 Marek Polacek <polacek@redhat.com>
1123
1124 PR c++/87080
1125 * typeck.c (maybe_warn_pessimizing_move): Do nothing in a template.
1126
1127 PR c++/87029, Implement -Wredundant-move.
1128 * typeck.c (treat_lvalue_as_rvalue_p): New function.
1129 (maybe_warn_pessimizing_move): Call convert_from_reference.
1130 Warn about redundant moves.
1131
1132 2018-08-24 Marek Polacek <polacek@redhat.com>
1133
1134 PR c++/67012
1135 PR c++/86942
1136 * decl.c (grokdeclarator): Disallow functions with trailing return
1137 type with decltype(auto) as its type. Also check the function if
1138 it's inner declarator doesn't exist
1139
1140 2018-08-21 Marek Polacek <polacek@redhat.com>
1141
1142 PR c++/86499
1143 * parser.c (cp_parser_lambda_introducer): Give error if a non-local
1144 lambda has a capture-default.
1145
1146 2018-08-21 Paolo Carlini <paolo.carlini@oracle.com>
1147
1148 * decl.c (check_static_variable_definition): Change to return void.
1149
1150 2018-08-21 Marek Polacek <polacek@redhat.com>
1151
1152 PR c++/86981, Implement -Wpessimizing-move.
1153 * typeck.c (decl_in_std_namespace_p): New.
1154 (is_std_move_p): New.
1155 (maybe_warn_pessimizing_move): New.
1156 (can_do_nrvo_p): New, factored out of ...
1157 (check_return_expr): ... here. Warn about potentially harmful
1158 std::move in a return statement.
1159
1160 PR c++/65043
1161 * call.c (standard_conversion): Set check_narrowing.
1162 * typeck2.c (check_narrowing): Use CP_INTEGRAL_TYPE_P rather
1163 than comparing with INTEGER_TYPE.
1164
1165 * cp-tree.h: Fix typo.
1166
1167 2018-08-20 David Malcolm <dmalcolm@redhat.com>
1168
1169 PR other/84889
1170 * call.c (build_user_type_conversion_1): Add auto_diagnostic_group
1171 instance(s).
1172 (print_error_for_call_failure): Likewise.
1173 (build_op_call_1): Likewise.
1174 (build_conditional_expr_1): Likewise.
1175 (build_new_op_1): Likewise.
1176 (build_op_delete_call): Likewise.
1177 (convert_like_real): Likewise.
1178 (build_over_call): Likewise.
1179 (build_new_method_call_1): Likewise.
1180 (joust): Likewise.
1181 * class.c (check_tag): Likewise.
1182 (finish_struct_anon_r): Likewise.
1183 (one_inherited_ctor): Likewise.
1184 (finalize_literal_type_property): Likewise.
1185 (explain_non_literal_class): Likewise.
1186 (find_flexarrays): Likewise.
1187 (resolve_address_of_overloaded_function): Likewise.
1188 * constexpr.c (ensure_literal_type_for_constexpr_object): Likewise.
1189 (is_valid_constexpr_fn): Likewise.
1190 (cx_check_missing_mem_inits): Likewise.
1191 * cp-gimplify.c (cp_genericize_r): Likewise.
1192 * cvt.c (maybe_warn_nodiscard): Likewise.
1193 * decl.c (warn_extern_redeclared_static): Likewise.
1194 (check_redeclaration_exception_specification): Likewise.
1195 (check_no_redeclaration_friend_default_args): Likewise.
1196 (duplicate_decls): Likewise.
1197 (redeclaration_error_message): Likewise.
1198 (warn_misplaced_attr_for_class_type): Likewise.
1199 * decl2.c (finish_static_data_member_decl): Likewise.
1200 (no_linkage_error): Likewise.
1201 (cp_warn_deprecated_use): Likewise.
1202 * error.c (qualified_name_lookup_error): Likewise.
1203 * friend.c (make_friend_class): Likewise.
1204 (do_friend): Likewise.
1205 * init.c (perform_member_init): Likewise.
1206 (build_new_1): Likewise.
1207 (build_vec_delete_1): Likewise.
1208 (build_delete): Likewise.
1209 * lex.c (unqualified_name_lookup_error): Likewise.
1210 * name-lookup.c (check_extern_c_conflict): Likewise.
1211 (inform_shadowed): New function.
1212 (check_local_shadow): Add auto_diagnostic_group instances,
1213 replacing goto "inform_shadowed" label with call to subroutine.
1214 (set_local_extern_decl_linkage): Add auto_diagnostic_group
1215 instance(s).
1216 * parser.c (cp_parser_diagnose_invalid_type_name): Likewise.
1217 (cp_parser_namespace_name): Likewise.
1218 * pt.c (check_specialization_namespace): Likewise.
1219 (check_template_variable): Likewise.
1220 (warn_spec_missing_attributes): Likewise.
1221 (check_explicit_specialization): Likewise.
1222 (process_partial_specialization): Likewise.
1223 (lookup_template_class_1): Likewise.
1224 (finish_template_variable): Likewise.
1225 (do_auto_deduction): Likewise.
1226 * search.c (check_final_overrider): Likewise.
1227 (look_for_overrides_r): Likewise.
1228 * tree.c (maybe_warn_parm_abi): Likewise.
1229 * typeck.c (cxx_sizeof_expr): Likewise.
1230 (cp_build_function_call_vec): Likewise.
1231 (cp_build_binary_op): Likewise.
1232 (convert_for_assignment): Likewise.
1233 (maybe_warn_about_returning_address_of_local): Likewise.
1234 * typeck2.c (abstract_virtuals_error_sfinae): Likewise.
1235 (check_narrowing): Likewise.
1236
1237 2018-08-17 David Malcolm <dmalcolm@redhat.com>
1238
1239 * typeck.c (string_conv_p): Extract location from EXP and use it
1240 in preference to input_location when issuing warnings.
1241
1242 2018-08-15 David Malcolm <dmalcolm@redhat.com>
1243
1244 * call.c: Include "gcc-rich-location.h".
1245 (convert_like_real): Add range label for "invalid conversion"
1246 diagnostic.
1247 (perform_implicit_conversion_flags): Add type label to the
1248 "could not convert" error.
1249 * error.c: Include "gcc-rich-location.h".
1250 (range_label_for_type_mismatch::get_text): New function.
1251 * typeck.c (convert_for_assignment): Add type label to
1252 the "cannot convert" error if a location is available.
1253
1254 2018-08-15 Paolo Carlini <paolo.carlini@oracle.com>
1255
1256 * decl.c (check_previous_goto_1): When decl_jump_unsafe returns 2
1257 emit an error instead of a permerror.
1258
1259 2018-08-13 Marek Polacek <polacek@redhat.com>
1260
1261 PR c++/57891
1262 * call.c (struct conversion): Add check_narrowing_const_only.
1263 (build_converted_constant_expr): Set check_narrowing and
1264 check_narrowing_const_only. Give error if expr is error node.
1265 (convert_like_real): Pass it to check_narrowing.
1266 * cp-tree.h (check_narrowing): Add a default parameter.
1267 * decl.c (compute_array_index_type): Use input_location instead of
1268 location_of.
1269 * pt.c (convert_nontype_argument): Return NULL_TREE if tf_error.
1270 * typeck2.c (check_narrowing): Don't warn for instantiation-dependent
1271 expressions. Call maybe_constant_value instead of
1272 fold_non_dependent_expr. Don't mention { } in diagnostic. Only check
1273 narrowing for constants if CONST_ONLY.
1274
1275 2018-08-13 Martin Sebor <msebor@redhat.com>
1276
1277 PR tree-optimization/71625
1278 * decl.c (check_initializer): Call braced_list_to_string.
1279 (eval_check_narrowing): New function.
1280 * gcc/cp/typeck2.c (digest_init_r): Accept strings literals
1281 as initilizers for all narrow character types.
1282
1283 2018-08-13 Marek Polacek <polacek@redhat.com>
1284
1285 P0806R2 - Deprecate implicit capture of this via [=]
1286 * lambda.c (add_default_capture): Formatting fixes. Warn about
1287 deprecated implicit capture of this via [=].
1288
1289 PR c++/86915
1290 * decl.c (create_array_type_for_decl): Handle null name.
1291
1292 2018-08-10 Jason Merrill <jason@redhat.com>
1293
1294 PR c++/86728 - C variadic generic lambda.
1295 * parser.c (cp_parser_parameter_declaration): Don't turn 'auto' into
1296 a pack if it's followed by a declarator-id.
1297
1298 2018-08-08 Jakub Jelinek <jakub@redhat.com>
1299
1300 P0595R1 - is_constant_evaluated
1301 * cp-tree.h (enum cp_built_in_function): New.
1302 (maybe_constant_init): Add pretend_const_required argument.
1303 * typeck2.c (store_init_value): Pass true as new argument to
1304 maybe_constant_init.
1305 * constexpr.c (constexpr_fn_retval): Check also DECL_BUILT_IN_CLASS
1306 for BUILT_IN_UNREACHABLE.
1307 (struct constexpr_ctx): Add pretend_const_required field.
1308 (cxx_eval_builtin_function_call): Use DECL_IS_BUILTIN_CONSTANT_P
1309 macro. Handle CP_BUILT_IN_IS_CONSTANT_EVALUATED. Check also
1310 DECL_BUILT_IN_CLASS for BUILT_IN_UNREACHABLE.
1311 (cxx_eval_outermost_constant_expr): Add pretend_const_required
1312 argument, initialize pretend_const_required field in ctx. If the
1313 result is TREE_CONSTANT and non_constant_p, retry with
1314 pretend_const_required false if it was true.
1315 (is_sub_constant_expr): Initialize pretend_const_required_field in
1316 ctx.
1317 (cxx_constant_value): Pass true as pretend_const_required to
1318 cxx_eval_outermost_constant_expr.
1319 (maybe_constant_value): Pass false as pretend_const_required to
1320 cxx_eval_outermost_constant_expr.
1321 (fold_non_dependent_expr): Likewise.
1322 (maybe_constant_init_1): Add pretend_const_required argument, pass it
1323 down to cxx_eval_outermost_constant_expr. Pass !allow_non_constant
1324 instead of false as strict to cxx_eval_outermost_constant_expr.
1325 (maybe_constant_init): Add pretend_const_required argument, pass it
1326 down to maybe_constant_init_1.
1327 (cxx_constant_init): Pass true as pretend_const_required to
1328 maybe_constant_init_1.
1329 * cp-gimplify.c (cp_gimplify_expr): Handle CALL_EXPRs to
1330 CP_BUILT_IN_IS_CONSTANT_EVALUATED.
1331 (cp_fold): Don't fold CP_BUILT_IN_IS_CONSTANT_EVALUATED calls.
1332 * decl.c: Include langhooks.h.
1333 (cxx_init_decl_processing): Register __builtin_is_constant_evaluated
1334 built-in.
1335 * tree.c (builtin_valid_in_constant_expr_p): Return true for
1336 CP_BUILT_IN_IS_CONSTANT_EVALUATED.
1337 * pt.c (declare_integer_pack): Initialize DECL_FUNCTION_CODE.
1338
1339 PR c++/86836
1340 * pt.c (tsubst_expr): For structured bindings, call tsubst_decomp_names
1341 before tsubst_init, not after it.
1342
1343 PR c++/86738
1344 * constexpr.c (cxx_eval_binary_expression): For arithmetics involving
1345 NULL pointer set *non_constant_p to true.
1346 (cxx_eval_component_reference): For dereferencing of a NULL pointer,
1347 set *non_constant_p to true and return t.
1348
1349 2018-08-07 Paolo Carlini <paolo.carlini@oracle.com>
1350
1351 PR c++/59480, DR 136
1352 * decl.c (check_no_redeclaration_friend_default_args): New.
1353 (duplicate_decls): Use the latter; also check that a friend
1354 declaration specifying default arguments is a definition.
1355
1356 2018-08-07 Ville Voutilainen <ville.voutilainen@gmail.com>
1357
1358 PR c++/79133
1359 * name-lookup.c (check_local_shadow): Reject captures and parameters
1360 with the same name.
1361
1362 2018-08-06 Marek Polacek <polacek@redhat.com>
1363
1364 PR c++/86767
1365 * constexpr.c (cxx_eval_statement_list): Handle continue.
1366
1367 2018-08-03 David Malcolm <dmalcolm@redhat.com>
1368 Jonathan Wakely <jwakely@redhat.com>
1369
1370 * decl.c: Include "gcc-rich-location.h".
1371 (add_return_star_this_fixit): New function.
1372 (finish_function): When warning about missing return statements in
1373 functions returning non-void, add a "return *this;" fix-it hint for
1374 assignment operators.
1375
1376 2018-08-03 Jason Merrill <jason@redhat.com>
1377
1378 PR c++/86706
1379 * class.c (build_base_path): Use currently_open_class.
1380
1381 2018-08-02 David Malcolm <dmalcolm@redhat.com>
1382
1383 * error.c (cxx_print_error_function): Duplicate "file" before
1384 passing it to pp_set_prefix.
1385 (cp_print_error_function): Use pp_take_prefix when saving the
1386 existing prefix.
1387
1388 2018-08-02 Richard Biener <rguenther@suse.de>
1389
1390 PR c++/86763
1391 * class.c (layout_class_type): Copy TYPE_TYPELESS_STORAGE
1392 to the CLASSTYPE_AS_BASE.
1393
1394 2018-08-01 Martin Sebor <msebor@redhat.com>
1395
1396 PR tree-optimization/86650
1397 * error.c (cp_printer): Move usage of EXPR_LOCATION (t) and
1398 TREE_BLOCK (t) from within percent_K_format to this callsite.
1399
1400 2018-08-01 Paolo Carlini <paolo.carlini@oracle.com>
1401
1402 PR c++/86661
1403 * class.c (note_name_declared_in_class): Use location_of in permerror
1404 instead of DECL_SOURCE_LOCATION (for OVERLOADs).
1405
1406 2018-07-31 Tom de Vries <tdevries@suse.de>
1407
1408 PR debug/86687
1409 * optimize.c (update_cloned_parm): Copy DECL_BY_REFERENCE.
1410
1411 2018-07-31 Jakub Jelinek <jakub@redhat.com>
1412
1413 P1008R1 - prohibit aggregates with user-declared constructors
1414 * class.c (check_bases_and_members): For C++2a set
1415 CLASSTYPE_NON_AGGREGATE based on TYPE_HAS_USER_CONSTRUCTOR rather than
1416 type_has_user_provided_or_explicit_constructor.
1417
1418 2018-07-31 Martin Liska <mliska@suse.cz>
1419
1420 PR c++/86653
1421 * parser.c (cp_parser_condition): Initialize non_constant_p
1422 to false.
1423
1424 2018-07-28 David Malcolm <dmalcolm@redhat.com>
1425
1426 * error.c (cp_printer): In the leading comment, move "%H" and "%I"
1427 into alphabetical order, and add missing "%G" and "%K". Within
1428 the switch statement, move cases 'G', 'H', 'I' and 'K' so that the
1429 cases are in alphabetical order.
1430
1431 2018-07-25 Jakub Jelinek <jakub@redhat.com>
1432
1433 * cp-tree.h (enum cp_tree_index): Add
1434 CPTI_{ABI_TAG,ALIGNED,BEGIN,END,GET,TUPLE_{ELEMENT,SIZE}}_IDENTIFIER
1435 and CPTI_{GNU,TYPE,VALUE,FUN,CLOSURE}_IDENTIFIER.
1436 (abi_tag_identifier, aligned_identifier, begin_identifier,
1437 end_identifier, get__identifier, gnu_identifier,
1438 tuple_element_identifier, tuple_size_identifier, type_identifier,
1439 value_identifier, fun_identifier, closure_identifier): Define.
1440 * decl.c (initialize_predefined_identifiers): Initialize the above
1441 identifiers.
1442 (get_tuple_size): Use tuple_size_identifier instead of
1443 get_identifier ("tuple_size") and value_identifier instead of
1444 get_identifier ("value").
1445 (get_tuple_element_type): Use tuple_element_identifier instead of
1446 get_identifier ("tuple_element") and type_identifier instead of
1447 get_identifier ("type").
1448 (get_tuple_decomp_init): Use get__identifier instead of
1449 get_identifier ("get").
1450 * lambda.c (maybe_add_lambda_conv_op): Use fun_identifier instead of
1451 get_identifier ("_FUN").
1452 * parser.c (cp_parser_lambda_declarator_opt): Use closure_identifier
1453 instead of get_identifier ("__closure").
1454 (cp_parser_std_attribute): Use gnu_identifier instead of
1455 get_identifier ("gnu").
1456 (cp_parser_std_attribute_spec): Likewise. Use aligned_identifier
1457 instead of get_identifier ("aligned").
1458 * class.c (check_abi_tags, inherit_targ_abi_tags): Use
1459 abi_tag_identifier instead of get_identifier ("abi_tag").
1460
1461 PR c++/85515
1462 * cp-tree.h (enum cp_tree_index): Add
1463 CPTI_FOR_{RANGE,BEGIN,END}{,_}_IDENTIFIER.
1464 (for_range__identifier, for_begin__identifier, for_end__identifier,
1465 for_range_identifier, for_begin_identifier, for_end_identifier):
1466 Define.
1467 * decl.c (initialize_predefined_identifiers): Initialize
1468 for_{range,begin,end}{,_}_identifier.
1469 * parser.c (build_range_temp): Use for_range__identifier instead of
1470 get_identifier ("__for_range").
1471 (cp_convert_range_for): Use for_begin__identifier and
1472 for_end__identifier instead of get_identifier ("__for_begin") and
1473 get_identifier ("__for_end").
1474 * semantics.c (finish_for_stmt): Rename "__for_{range,begin,end} "
1475 local symbols to "__for_{range,begin,end}".
1476
1477 2018-07-23 Jakub Jelinek <jakub@redhat.com>
1478
1479 PR c++/86569
1480 * cp-gimplify.c (cp_fold): Don't fold comparisons into other kind
1481 of expressions other than INTEGER_CST regardless of TREE_NO_WARNING
1482 or warn_nonnull_compare.
1483
1484 2018-07-19 Paolo Carlini <paolo.carlini@oracle.com>
1485
1486 Revert fix for c++/59480 (and testsuite followup)
1487
1488 2019-07-18 Paolo Carlini <paolo.carlini@oracle.com>
1489
1490 PR c++/59480, DR 136
1491 * decl.c (check_no_redeclaration_friend_default_args): New.
1492 (duplicate_decls): Use the latter; also check that a friend
1493 declaration specifying default arguments is a definition.
1494
1495 2018-07-18 Jakub Jelinek <jakub@redhat.com>
1496
1497 PR c++/86550
1498 * parser.c (cp_parser_decl_specifier_seq): Diagnose invalid type
1499 specifier if CP_PARSER_FLAGS_ONLY_MUTABLE_OR_CONSTEXPR.
1500
1501 2018-07-18 Marek Polacek <polacek@redhat.com>
1502
1503 PR c++/86190 - bogus -Wsign-conversion warning
1504 * typeck.c (cp_build_binary_op): Fix formatting. Add a warning
1505 sentinel.
1506
1507 2018-07-18 Paolo Carlini <paolo.carlini@oracle.com>
1508
1509 PR c++/59480, DR 136
1510 * decl.c (check_no_redeclaration_friend_default_args): New.
1511 (duplicate_decls): Use the latter; also check that a friend
1512 declaration specifying default arguments is a definition.
1513
1514 2018-07-18 Paolo Carlini <paolo.carlini@oracle.com>
1515
1516 * class.c (note_name_declared_in_class): Prefer permerror + inform
1517 to a pair of permerrors; use DECL_SOURCE_LOCATION.
1518
1519 2018-07-18 Richard Biener <rguenther@suse.de>
1520
1521 PR debug/86523
1522 * decl2.c (c_parse_final_cleanups): Call write_out_vars before
1523 start_static_storage_duration_function sets current_function_decl.
1524
1525 2018-07-17 Jason Merrill <jason@redhat.com>
1526
1527 PR c++/86480 - nested variadic lambda and constexpr if.
1528 * pt.c (find_parameter_packs_r) [IF_STMT]: Don't walk into
1529 IF_STMT_EXTRA_ARGS.
1530 * tree.c (cp_walk_subtrees) [DECLTYPE_TYPE]: Set
1531 cp_unevaluated_operand.
1532 [ALIGNOF_EXPR] [SIZEOF_EXPR] [NOEXCEPT_EXPR]: Likewise.
1533
1534 2018-07-16 Paolo Carlini <paolo.carlini@oracle.com>
1535
1536 * class.c (resolve_address_of_overloaded_function): Don't emit an
1537 inform if the matching permerror returns false.
1538 * pt.c (check_specialization_namespace): Likewise.
1539
1540 2018-07-16 Jakub Jelinek <jakub@redhat.com>
1541
1542 PR c++/3698
1543 PR c++/86208
1544 * cp-gimplify.c (cp_genericize_r): When using extern_decl_map, or
1545 in TREE_USED flag from stmt to h->to.
1546
1547 2018-07-13 Nathan Sidwell <nathan@acm.org>
1548
1549 PR c++/86374
1550 * pt.c (lookup_template_class_1): Use tsubst_aggr_type for
1551 contexts that are classes.
1552 * parser.c (cp_parser_template_id): Combine entering_scope decl &
1553 initializer.
1554
1555 2018-07-12 Jakub Jelinek <jakub@redhat.com>
1556
1557 * decl2.c (cplus_decl_attributes): Don't diagnose vars without mappable
1558 type here, instead add "omp declare target implicit" attribute. Add
1559 that attribute instead of "omp declare target" also when
1560 processing_template_decl.
1561 * decl.c (cp_finish_decl): Diagnose vars without mappable type here,
1562 and before calling cp_omp_mappable_type call complete_type.
1563
1564 2018-07-10 Jakub Jelinek <jakub@redhat.com>
1565
1566 PR sanitizer/86406
1567 * cp-gimplify.c (cp_maybe_instrument_return): Skip trailing
1568 DEBUG_BEGIN_STMTs.
1569
1570 PR c++/86443
1571 * semantics.c (handle_omp_for_class_iterator): Remove lastp argument,
1572 instead of setting *lastp turn orig_declv elt into a TREE_LIST.
1573 (finish_omp_for): Adjust handle_omp_for_class_iterator caller.
1574 * pt.c (tsubst_omp_for_iterator): Allow OMP_FOR_ORIG_DECLS to contain
1575 TREE_LIST for both the original class iterator and the "last" helper
1576 var.
1577
1578 2018-07-09 Paolo Carlini <paolo.carlini@oracle.com>
1579
1580 * decl.c (grokdeclarator): Use rich_location::add_range in three
1581 more places; include gcc-rich-location.h.
1582
1583 2018-07-07 Aldy Hernandez <aldyh@redhat.com>
1584
1585 * decl.c (build_enumerator): Change overflow type to overflow_type.
1586 * init.c (build_new_1): Same.
1587
1588 2018-07-05 Nathan Sidwell <nathan@acm.org>
1589
1590 * cp/decl.c (decls_match): Check SYSTEM_IMPLICIT_EXTERN_C not
1591 NO_IMPLICIT_EXTERN_C.
1592 * cp/parser.c (cp_parser_parameter_declaration_clause): Likewise.
1593
1594 2018-07-04 Ville Voutilainen <ville.voutilainen@gmail.com>
1595
1596 PR c++/86398
1597 * method.c (is_trivially_xible): Return false
1598 if is_xible_helper returns a NULL_TREE.
1599
1600 2018-07-03 Paolo Carlini <paolo.carlini@oracle.com>
1601
1602 * decl.c (min_location): New.
1603 (smallest_type_quals_location): Use the latter.
1604 (check_concept_fn): Use DECL_SOURCE_LOCATION.
1605 (grokdeclarator): Use accurate locations in a number of error
1606 messages involving ds_thread, ds_storage_class, ds_virtual,
1607 ds_constexpr, ds_typedef and ds_friend; exploit min_location.
1608
1609 2018-07-03 Marek Polacek <polacek@redhat.com>
1610
1611 PR c++/86201
1612 * typeck.c (cp_build_binary_op): Check c_inhibit_evaluation_warnings.
1613
1614 2018-07-03 Jason Merrill <jason@redhat.com>
1615
1616 PR c++/86378 - functional cast in noexcept-specifier.
1617 * tree.c (strip_typedefs_expr) [TREE_LIST]: Fix iteration.
1618
1619 2018-07-02 Paolo Carlini <paolo.carlini@oracle.com>
1620
1621 * parser.c (set_and_check_decl_spec_loc): Use rich_location::add_range
1622 in error message about __thread and thread_local at the same time.
1623
1624 2018-06-29 Marek Polacek <polacek@redhat.com>
1625
1626 PR c++/86184
1627 * tree.c (cp_save_expr): Don't call save_expr for TARGET_EXPRs.
1628
1629 2018-06-28 David Malcolm <dmalcolm@redhat.com>
1630
1631 * parser.c (cp_parser_error_1): After issuing a conflict marker
1632 error, consume tokens until the end of the source line.
1633
1634 2018-06-28 Jason Merrill <jason@redhat.com>
1635
1636 PR c++/86342 - -Wdeprecated-copy and system headers.
1637 * decl2.c (cp_warn_deprecated_use): Don't warn about declarations
1638 in system headers.
1639
1640 2018-06-27 David Malcolm <dmalcolm@redhat.com>
1641
1642 PR c++/86329
1643 * name-lookup.c (consider_binding_level): Filter out names that
1644 match anon_aggrname_p.
1645
1646 2018-06-27 Jason Merrill <jason@redhat.com>
1647
1648 * name-lookup.c (do_pushtag): If we skip a class level, also skip
1649 its template level.
1650
1651 2018-06-26 Jason Merrill <jason@redhat.com>
1652
1653 PR c++/86320 - memory-hog with std::array of pair
1654 * typeck2.c (process_init_constructor_array): Only compute a
1655 constant initializer once.
1656
1657 PR c++/80290 - memory-hog with std::pair.
1658 * pt.c (fn_type_unification): Add convs parameter.
1659 (check_non_deducible_conversion): Remember conversion.
1660 (check_non_deducible_conversions): New. Do checks here.
1661 (type_unification_real): Not here. Remove flags parm.
1662 * call.c (add_function_candidate): Make convs a parameter.
1663 Don't recalculate the conversion if it's already set.
1664 (add_template_candidate_real): Allocate convs here.
1665 (good_conversion, conv_flags): New.
1666
1667 2018-06-26 Jakub Jelinek <jakub@redhat.com>
1668
1669 PR c++/86291
1670 * parser.c (cp_parser_omp_for_loop_init): Change for_block argument
1671 type from vec<tree, va_gc> * to vec<tree, va_gc> *&.
1672
1673 2018-06-23 Paolo Carlini <paolo.carlini@oracle.com>
1674
1675 * decl.c (bad_specifiers): Add const location_t* parameter and
1676 use locations in error messages about 'inline' and 'virtual'.
1677 (mark_inline_variable): Add location_t parameter and use it in
1678 error_at and pedwarn messages.
1679 (grokdeclarator): Use declspecs->locations[ds_constexpr],
1680 declspecs->locations[ds_concept], declspecs->locations[ds_virtual],
1681 declspecs->locations[ds_inline] in many error messages; adjust
1682 bad_specifiers and mark_inline_variable calls.
1683 (grokvardecl): Use declspecs->locations[ds_concept] in error message.
1684
1685 2018-06-22 Jason Merrill <jason@redhat.com>
1686
1687 PR c++/86219 - ICE with erroneous initializer in template.
1688 * constexpr.c (fold_non_dependent_expr): Add complain parm.
1689 * call.c, expr.c, init.c, pt.c, semantics.c, typeck.c, typeck2.c:
1690 Pass it.
1691 * call.c (build_cxx_call): Don't mess with builtins in a template.
1692 * typeck2.c (store_init_value): If fold_non_dependent_expr didn't
1693 produce a constant value, go back to the uninstantiated form.
1694
1695 Avoid taking the address of something just because it's in parens.
1696 * constexpr.c (same_type_ignoring_tlq_and_bounds_p): New.
1697 (cxx_fold_indirect_ref): Use it.
1698 (cxx_eval_constant_expression) [VIEW_CONVERT_EXPR]: Use it.
1699 * cp-tree.h (REF_PARENTHESIZED_P): Allow VIEW_CONVERT_EXPR.
1700 * semantics.c (force_paren_expr): Use VIEW_CONVERT_EXPR instead of
1701 static_cast to reference type.
1702 (maybe_undo_parenthesized_ref): Handle VIEW_CONVERT_EXPR.
1703
1704 2018-06-21 Jason Merrill <jason@redhat.com>
1705
1706 * pt.c (tsubst) [TEMPLATE_TYPE_PARM]: Use TEMPLATE_PARM_DESCENDANTS.
1707
1708 * name-lookup.c (do_push_to_top_level): Don't allocate
1709 current_lang_base.
1710 (do_pop_from_top_level): Release current_lang_base.
1711
1712 Let -fmem-report see callers of cxx_make_type.
1713 * lex.c (cxx_make_type): Add MEM_STAT_DECL.
1714 (make_class_type): Likewise.
1715 (cxx_make_type_hook): New.
1716 * cp-objcp-common.h (LANG_HOOKS_MAKE_TYPE): Use cxx_make_type_hook.
1717
1718 2018-06-20 Nathan Sidwell <nathan@acm.org>
1719
1720 PR c++/85634
1721 * friend.c (add_friend): Keep lookup sets of tempate sets.
1722
1723 2018-06-20 Paolo Carlini <paolo.carlini@oracle.com>
1724
1725 * decl.c (grokfndecl): Add const cp_decl_specifier_seq* parameter;
1726 tidy handling of a null location_t argument; use proper location
1727 information in a few additional error messages.
1728 (grokdeclarator): Update calls.
1729
1730 2018-06-20 Chung-Lin Tang <cltang@codesourcery.com>
1731 Thomas Schwinge <thomas@codesourcery.com>
1732 Cesar Philippidis <cesar@codesourcery.com>
1733
1734 * parser.c (cp_parser_omp_clause_name): Add support for finalize
1735 and if_present. Make present_or_{copy,copyin,copyout,create} aliases
1736 to their non-present_or_* counterparts. Make 'self' an alias to
1737 PRAGMA_OACC_CLAUSE_HOST.
1738 (cp_parser_oacc_data_clause): Update GOMP mappings for
1739 PRAGMA_OACC_CLAUSE_{COPY,COPYIN,COPYOUT,CREATE,DELETE}. Remove
1740 PRAGMA_OACC_CLAUSE_{SELF,PRESENT_OR_*}.
1741 (cp_parser_oacc_all_clauses): Handle finalize and if_present clauses.
1742 Remove support for present_or_* clauses.
1743 (OACC_KERNELS_CLAUSE_MASK): Remove PRESENT_OR_* clauses.
1744 (OACC_PARALLEL_CLAUSE_MASK): Likewise.
1745 (OACC_DECLARE_CLAUSE_MASK): Likewise.
1746 (OACC_DATA_CLAUSE_MASK): Likewise.
1747 (OACC_ENTER_DATA_CLAUSE_MASK): Remove PRESENT_OR_* clauses.
1748 (OACC_EXIT_DATA_CLAUSE_MASK): Add FINALIZE clause.
1749 (OACC_UPDATE_CLAUSE_MASK): Remove SELF, add IF_PRESENT.
1750 (cp_parser_oacc_declare): Remove PRESENT_OR_* clauses.
1751 * pt.c (tsubst_omp_clauses): Handle IF_PRESENT and FINALIZE.
1752 * semantics.c (finish_omp_clauses): Handle IF_PRESENT and FINALIZE.
1753
1754 2018-06-20 Marek Polacek <polacek@redhat.com>
1755
1756 PR c++/86240
1757 * constexpr.c (cxx_eval_constant_expression): Handle ABSU_EXPR.
1758 (fold_simple_1): Likewise.
1759 * error.c (dump_expr): Likewise.
1760
1761 2018-06-20 Nathan Sidwell <nathan@acm.org>
1762
1763 PR c++/85634
1764 * cp-tree.h (lookup_keep): Drop KEEP parm.
1765 (lookup_list_keep): Delete.
1766 (maybe_get_fns): Declare.
1767 * parser.c (cp_parser_primary_expression): Call lookup_keep here.
1768 (cp_parser_template_id): Not here ...
1769 * decl.c (cp_finish_decl): ... nor here ...
1770 * init.c (build_raw_new_expr): ... nor here ...
1771 * pt.c (process_template_parm): ... nor here ...
1772 * semantics.c (perform_koenig_lookup): Call lookup_keep.
1773 (finish_call_expr): Not here.
1774 * tree.c (ovl_cache): Delete.
1775 (ovl_make, ovl_copy): No cache.
1776 (lookup_keep): Always keep.
1777 (lookup_list_keep): Delete.
1778 (maybe_get_fns): New, broken out of ...
1779 (get_fns): ... here. Call it.
1780 (built_min_nt_loc, build_min, build_min_non_dep): Drop lookup_keep.
1781 (build_min_nt_call_vec): Likewise.
1782
1783 2018-06-19 Jason Merrill <jason@redhat.com>
1784
1785 * cp-tree.h (CONSTRUCTOR_NO_IMPLICIT_ZERO): Remove.
1786 * constexpr.c: Use CONSTRUCTOR_NO_CLEARING instead.
1787
1788 PR c++/86182 - ICE with anonymous union passed to template.
1789 * pt.c (tsubst_expr) [DECL_EXPR]: Handle an anonymous union type
1790 used to declare a named variable.
1791
1792 2018-06-18 Jason Merrill <jason@redhat.com>
1793
1794 * tree.c (cp_expr_location): New.
1795 * cp-tree.h (cp_expr_loc_or_loc): New.
1796 * call.c, cvt.c, constexpr.c, constraint.cc, cp-gimplify.c, decl.c,
1797 error.c, init.c, lex.c, parser.c, pt.c, semantics.c, typeck.c,
1798 typeck2.c: Use it instead of EXPR_LOC_OR_LOC.
1799
1800 * parser.c (cp_parser_lambda_expression): Use a range for
1801 LAMBDA_EXPR_LOCATION.
1802
1803 PR c++/86200 - ICE with unexpanded pack in lambda parameter.
1804 * pt.c (find_parameter_packs_r) [LAMBDA_EXPR]: Also look into the
1805 function type.
1806
1807 PR c++/81060 - ICE with unexpanded parameter pack.
1808 * pt.c (check_for_bare_parameter_packs): Add loc parameter.
1809 * decl.c (grokdeclarator): Call it for qualifying_scope.
1810
1811 PR c++/86171 - ICE with recursive alias instantiation.
1812 * pt.c (tsubst_decl): Handle recursive alias instantiation.
1813
1814 2018-06-18 Paolo Carlini <paolo.carlini@oracle.com>
1815
1816 * decl.c (duplicate_decls): Consistently use DECL_SOURCE_LOCATION
1817 in errors about redefined default arguments; tidy.
1818
1819 2018-06-16 Kugan Vivekanandarajah <kuganv@linaro.org>
1820
1821 * constexpr.c (potential_constant_expression_1): Handle ABSU_EXPR.
1822 * cp-gimplify.c (cp_fold): Likewise.
1823
1824 2018-06-15 Jason Merrill <jason@redhat.com>
1825
1826 PR c++/86147 - wrong capture for template argument.
1827 * expr.c (mark_use): Look through NOP_EXPR.
1828
1829 * name-lookup.c (do_pushtag): Don't look through complete types, but
1830 don't add to them either. Get context from current_binding_level.
1831 * pt.c (tsubst_default_argument): Use push_to/pop_from_top_level.
1832
1833 * decl.c (start_enum): Do compare dependent underlying type.
1834
1835 PR c++/82882 - ICE with lambda in template default argument.
1836 * lambda.c (record_null_lambda_scope): New.
1837 * pt.c (tsubst_lambda_expr): Use it.
1838 * name-lookup.c (do_pushtag): Don't give a lambda DECL_CONTEXT of a
1839 function that isn't open.
1840
1841 * tree.c (maybe_warn_parm_abi): Inform the location of the class.
1842
1843 2018-06-14 Marek Polacek <polacek@redhat.com>
1844
1845 PR c++/86063
1846 * decl2.c (cp_check_const_attributes): Skip trees that are not
1847 TREE_LISTs.
1848
1849 2018-06-14 Jakub Jelinek <jakub@redhat.com>
1850
1851 P0624R2 - Default constructible and assignable stateless lambdas
1852 * method.c (synthesized_method_walk): For C++2a don't mark
1853 sfk_constructor or sfk_copy_assignment as deleted if lambda has
1854 no lambda-captures.
1855
1856 2018-06-14 Paolo Carlini <paolo.carlini@oracle.com>
1857
1858 * decl.c (duplicate_decls): Use DECL_SOURCE_LOCATION in
1859 OPT_Wshadow warning_at.
1860 (grokfndecl): Consistently use the location_t argument in
1861 literal operator diagnostic messages.
1862 (grokdeclarator): Use declspecs->locations[ds_storage_class]
1863 in error_at call.
1864 * decl2.c (finish_static_data_member_decl): Use DECL_SOURCE_LOCATION
1865 in permerror call.
1866
1867 2018-06-13 Jason Merrill <jason@redhat.com>
1868
1869 PR c++/86099 - ICE with trivial copy and non-trivial default ctor.
1870 * constexpr.c (instantiate_cx_fn_r): Don't synthesize trivial
1871 constructors.
1872
1873 PR c++/86094 - wrong code with defaulted move ctor.
1874 * class.c (classtype_has_non_deleted_move_ctor): New.
1875 * tree.c (maybe_warn_parm_abi, type_has_nontrivial_copy_init):
1876 Handle v12 breakage.
1877
1878 2018-06-12 Jason Merrill <jason@redhat.com>
1879
1880 PR c++/86098 - ICE with template placeholder for TTP.
1881 * typeck.c (structural_comptypes) [TEMPLATE_TYPE_PARM]: Check
1882 CLASS_PLACEHOLDER_TEMPLATE.
1883
1884 2018-06-12 Paolo Carlini <paolo.carlini@oracle.com>
1885
1886 * decl2.c (coerce_new_type, coerce_delete_type): Add location_t
1887 parameter and adjust error_at calls.
1888 * decl.c (grok_op_properties): Adjust calls.
1889 * cp-tree.h (oerce_new_type, coerce_delete_type): Adjust decls.
1890
1891 2018-06-12 Marek Polacek <polacek@redhat.com>
1892
1893 Core issue 1331 - const mismatch with defaulted copy constructor
1894 * class.c (check_bases_and_members): When checking a defaulted
1895 function, mark it as deleted rather than giving an error.
1896
1897 2018-06-11 Jason Merrill <jason@redhat.com>
1898
1899 PR c++/85792 -Wctor-dtor-privacy and inherited constructor.
1900 * class.c (maybe_warn_about_overly_private_class): Handle inherited
1901 constructors.
1902
1903 PR c++/85963 - -Wunused-but-set with ?: in template.
1904 * pt.c (tsubst_copy_and_build) [COND_EXPR]: Call mark_rvalue_use.
1905
1906 2018-06-11 Paolo Carlini <paolo.carlini@oracle.com>
1907
1908 * decl.c (grok_op_properties): Consistently use the location
1909 of the decl; remove special casing of POSTINCREMENT_EXPR and
1910 POSTDECREMENT_EXPR wrt default arguments.
1911
1912 2018-06-05 Jason Merrill <jason@redhat.com>
1913
1914 * constexpr.c (cxx_eval_binary_expression): Special case comparison
1915 of pointers to members of the same union.
1916
1917 2018-06-11 Jason Merrill <jason@redhat.com>
1918
1919 PR c++/86094 - wrong code with defaulted move ctor.
1920 * tree.c (type_has_nontrivial_copy_init): Fix move ctor handling.
1921
1922 2018-06-10 Paolo Carlini <paolo.carlini@oracle.com>
1923
1924 * decl.c (grokfndecl): Use the location_t argument in two more places.
1925
1926 2018-06-06 Marek Polacek <polacek@redhat.com>
1927
1928 PR c++/85977
1929 * pt.c (unify): If ELTTYPE has no deducible template parms, skip
1930 deduction from the list elements.
1931 (type_unification_real): Check convertibility of list elements.
1932
1933 2018-06-06 Jason Merrill <jason@redhat.com>
1934
1935 PR c++/86060 - ICE on range for with -std=c++98.
1936 * parser.c (cp_parser_init_statement): Don't clobber *decl after
1937 pedwarn.
1938
1939 PR c++/85710 - ICE with -Wmemset-elt-size.
1940 * semantics.c (finish_call_expr): Call warn_for_memset here.
1941 * parser.c (cp_parser_postfix_expression): Not here.
1942 (literal_integer_zerop): No longer static.
1943 * pt.c (build_non_dependent_expr): Don't wrap CONST_DECL.
1944
1945 2018-06-05 Marek Polacek <polacek@redhat.com>
1946
1947 PR c++/85976
1948 * tree.c (cp_tree_equal): Handle USING_DECL.
1949
1950 2018-06-05 Jason Merrill <jason@redhat.com>
1951
1952 PR c++/85731 - wrong error with qualified-id in template.
1953 * semantics.c (finish_qualified_id_expr): build_qualified_name
1954 for unbound names in the current class.
1955
1956 2018-06-04 Jason Merrill <jason@redhat.com>
1957
1958 PR c++/61806 - missed SFINAE with partial specialization.
1959 * cp-tree.h (deferring_access_check_sentinel): Add deferring_kind
1960 parameter to constructor.
1961 * pt.c (instantiate_class_template_1): Enable access checking
1962 before call to most_specialized_partial_spec.
1963
1964 PR c++/85765 - SFINAE and non-type default template arg.
1965 * pt.c (type_unification_real): Do full semantic processing if
1966 substituting a partial args list replaces all template parms.
1967
1968 2018-06-03 Jason Merrill <jason@redhat.com>
1969
1970 PR c++/85739 - ICE with pointer to member template parm.
1971 * cvt.c (perform_qualification_conversions): Use cp_fold_convert.
1972
1973 2018-06-02 Jason Merrill <jason@redhat.com>
1974
1975 PR c++/85761 - ICE with ill-formed use of const outer variable.
1976 * expr.c (mark_use): Handle location wrappers.
1977
1978 2018-06-01 Jason Merrill <jason@redhat.com>
1979
1980 PR c++/85764 - bogus 'this' not captured error.
1981 * lambda.c (resolvable_dummy_lambda): Use nonlambda_method_basetype.
1982 (nonlambda_method_basetype): Handle NSDMI.
1983
1984 CWG 1581: When are constexpr member functions defined?
1985 * constexpr.c (instantiate_cx_fn_r, instantiate_constexpr_fns): New.
1986 (cxx_eval_outermost_constant_expr): Call instantiate_constexpr_fns.
1987
1988 PR c++/58281 - explicit instantiation of constexpr
1989 * pt.c (mark_decl_instantiated): Clear DECL_EXTERNAL.
1990
1991 * pt.c (instantiate_decl): Any defaulted function is defined.
1992
1993 2018-05-30 Jonathan Wakely <jwakely@redhat.com>
1994
1995 PR c++/77777
1996 * call.c (resolve_args): Use location of expression, not current input
1997 location.
1998
1999 2018-05-30 Ville Voutilainen <ville.voutilainen@gmail.com>
2000
2001 Do not warn about zero-as-null when NULL is used.
2002 * call.c (conversion_null_warnings): Check for pointer
2003 types converted from zero constants.
2004 (convert_like_real): Add a warning sentinel at the end.
2005 * tree.c (maybe_warn_zero_as_null_pointer_constant): Also
2006 check null_node_p.
2007
2008 2018-05-30 Jason Merrill <jason@redhat.com>
2009
2010 PR c++/85807 - ICE with call in template NSDMI.
2011 * init.c (get_nsdmi): Use push_to/pop_from_top_level.
2012 * tree.c (bot_manip): Don't set_flags_from_callee in a template.
2013
2014 PR c++/85873 - constant initializer_list array not in .rodata.
2015 * tree.c (build_target_expr): Set TREE_READONLY.
2016 * call.c (set_up_extended_ref_temp): Set TREE_READONLY.
2017
2018 * parser.c (cp_parser_check_condition_declarator): Handle
2019 cp_error_declarator.
2020
2021 2018-05-30 Jonathan Wakely <jwakely@redhat.com>
2022
2023 * typeck.c (cxx_sizeof_or_alignof_type): Return size_one_node instead
2024 of using it in dead store.
2025
2026 2018-05-29 Jason Merrill <jason@redhat.com>
2027
2028 PR c++/67445 - returning temporary initializer_list.
2029 PR c++/67711 - assigning from temporary initializer_list.
2030 PR c++/48562 - new initializer_list.
2031 * typeck.c (maybe_warn_about_returning_address_of_local): Also warn
2032 about returning local initializer_list.
2033 * cp-tree.h (AUTO_TEMP_NAME, TEMP_NAME_P): Remove.
2034 * call.c (build_over_call): Warn about assignment from temporary
2035 init_list.
2036 * init.c (build_new_1): Warn about 'new std::initializer_list'.
2037 (find_list_begin, maybe_warn_list_ctor): New.
2038 (perform_member_init): Use maybe_warn_list_ctor.
2039
2040 2018-05-29 Marek Polacek <polacek@redhat.com>
2041
2042 PR c++/85883
2043 * init.c (build_new): Handle deducing a class with new
2044 with more than one argument.
2045
2046 2018-05-29 Jakub Jelinek <jakub@redhat.com>
2047
2048 PR c++/85952
2049 * init.c (build_aggr_init): For structured binding initialized from
2050 array call mark_rvalue_use on the initializer.
2051
2052 2018-05-28 Bernd Edlinger <bernd.edlinger@hotmail.de>
2053
2054 * decl2.c (start_static_storage_duration_function): Use
2055 splay_tree_delete_pointers.
2056
2057 2018-05-25 Jason Merrill <jason@redhat.com>
2058
2059 PR c++/85815 - reference to member of enclosing template.
2060 * search.c (lookup_base): Use currently_open_class.
2061 (lookup_member): Use it regardless of -fconcepts.
2062 * parser.c (cp_parser_postfix_dot_deref_expression): Check it.
2063
2064 CWG 616, 1213 - value category of subobject references.
2065 * tree.c (lvalue_kind): Fix handling of ARRAY_REF of pointer.
2066
2067 2018-05-24 Jason Merrill <jason@redhat.com>
2068
2069 PR c++/85842 - -Wreturn-type, constexpr if and generic lambda.
2070 * pt.c (tsubst_lambda_expr): Copy current_function_returns_* to
2071 generic lambda.
2072
2073 2018-05-24 Ville Voutilainen <ville.voutilainen@gmail.com>
2074
2075 Pedwarn on a non-standard position of a C++ attribute.
2076 * parser.c (cp_parser_namespace_definition): Pedwarn about attributes
2077 after the namespace name.
2078
2079 2018-05-24 Paolo Carlini <paolo.carlini@oracle.com>
2080
2081 * cp-tree.h (INDIRECT_TYPE_P): New.
2082 * call.c (build_trivial_dtor_call, maybe_warn_class_memaccess,
2083 joust): Use it instead of POINTER_TYPE_P.
2084 * class.c (update_vtable_entry_for_fn, find_flexarrays,
2085 * fixed_type_or_null, resolves_to_fixed_type_p): Likewise.
2086 * constexpr.c (cxx_eval_binary_expression, cxx_fold_indirect_ref,
2087 * cxx_eval_increment_expression, potential_constant_expression_1):
2088 Likewise.
2089 * cp-gimplify.c (cp_gimplify_expr, cp_genericize_r): Likewise.
2090 * cp-objcp-common.c (cxx_get_alias_set): Likewise.
2091 * cp-ubsan.c (cp_ubsan_maybe_instrument_member_call,
2092 cp_ubsan_maybe_instrument_downcast): Likewise.
2093 * cvt.c (cp_convert_to_pointer, ocp_convert,
2094 cp_get_fndecl_from_callee, maybe_warn_nodiscard, convert): Likewise.
2095 * cxx-pretty-print.c (cxx_pretty_printer::abstract_declarator,
2096 pp_cxx_offsetof_expression_1): Likewise.
2097 * decl.c (grokparms, static_fn_type): Likewise.
2098 * decl2.c (grokbitfield): Likewise.
2099 * error.c (dump_expr): Likewise.
2100 * except.c (initialize_handler_parm, check_noexcept_r): Likewise.
2101 * init.c (warn_placement_new_too_small): Likewise.
2102 * lambda.c (build_capture_proxy, add_capture): Likewise.
2103 * parser.c (cp_parser_omp_for_loop): Likewise.
2104 * pt.c (convert_nontype_argument, fn_type_unification,
2105 uses_deducible_template_parms, check_cv_quals_for_unify,
2106 dependent_type_p_r): Likewise.
2107 * search.c (check_final_overrider): Likewise.
2108 * semantics.c (handle_omp_array_sections, finish_omp_clauses,
2109 finish_omp_for): Likewise.
2110 * tree.c (cp_build_qualified_type_real): Likewise.
2111 * typeck.c (build_class_member_access_expr,
2112 finish_class_member_access_expr, build_x_indirect_ref,
2113 cp_build_indirect_ref_1, cp_build_binary_op, build_const_cast_1):
2114 Likewise.
2115
2116 2018-05-24 Jason Merrill <jason@redhat.com>
2117
2118 PR c++/85864 - literal template and default template arg.
2119 * pt.c (instantiation_dependent_r): Handle NONTYPE_ARGUMENT_PACK.
2120
2121 2018-05-24 Marek Polacek <polacek@redhat.com>
2122
2123 PR c++/85847
2124 * init.c (build_new_1): Use fold_non_dependent_expr. Use a dedicated
2125 variable for its result. Fix a condition.
2126 (build_new): Use fold_non_dependent_expr. Tweak a condition.
2127
2128 2018-05-23 Jason Merrill <jason@redhat.com>
2129
2130 Fix cast to rvalue reference from prvalue.
2131 * cvt.c (diagnose_ref_binding): Handle rvalue reference.
2132 * rtti.c (build_dynamic_cast_1): Don't try to build a reference to
2133 non-class type. Handle xvalue argument.
2134 * typeck.c (build_reinterpret_cast_1): Allow cast from prvalue to
2135 rvalue reference.
2136 * semantics.c (finish_compound_literal): Do direct-initialization,
2137 not cast, to initialize a reference.
2138
2139 CWG 616, 1213 - value category of subobject references.
2140 * tree.c (lvalue_kind): A reference to a subobject of a prvalue is
2141 an xvalue.
2142 * typeck2.c (build_m_component_ref): Likewise.
2143 * typeck.c (cp_build_addr_expr_1, lvalue_or_else): Remove diagnostic
2144 distinction between temporary and xvalue.
2145
2146 2018-05-23 Marek Polacek <polacek@redhat.com>
2147
2148 Implement P0614R1, Range-based for statements with initializer.
2149 * parser.c (cp_parser_range_based_for_with_init_p): New.
2150 (cp_parser_init_statement): Use it. Parse the optional init-statement
2151 for a range-based for loop.
2152 (cp_parser_skip_to_closing_parenthesis_1): Handle balancing ?:.
2153
2154 2018-05-22 Jason Merrill <jason@redhat.com>
2155
2156 PR c++/81420 - not extending temporary lifetime.
2157 * call.c (extend_ref_init_temps_1): Handle ARRAY_REF.
2158 * class.c (build_base_path): Avoid redundant move of an rvalue.
2159
2160 PR c++/85866 - error with .* in default template arg.
2161 * pt.c (tsubst_copy_and_build): Handle partial instantiation.
2162
2163 2018-05-21 Paolo Carlini <paolo.carlini@oracle.com>
2164
2165 * parser.c (cp_parser_parameter_declaration_list): Remove
2166 bool* parameter.
2167 (cp_parser_parameter_declaration_clause): Adjust.
2168 (cp_parser_cache_defarg): Likewise.
2169
2170 2018-05-21 Paolo Carlini <paolo.carlini@oracle.com>
2171
2172 PR c++/84588
2173 * parser.c (cp_parser_maybe_commit_to_declaration,
2174 cp_parser_check_condition_declarator): New.
2175 (cp_parser_simple_declaration): Use the first above.
2176 (cp_parser_condition): Use both the above; enforce
2177 [stmt.stmt]/2 about the declarator not specifying
2178 a function or an array; improve error-recovery.
2179
2180 2018-05-20 Jason Merrill <jason@redhat.com>
2181
2182 PR libstdc++/85843 - warning in logic_error copy constructor.
2183 * class.c (type_has_user_nondefault_constructor): Check for a
2184 user-provided ctor, not user-declared.
2185
2186 2018-05-19 Jason Merrill <jason@redhat.com>
2187
2188 * pt.c (tsubst_pack_expansion): Sorry rather than abort
2189 on __integer_pack as subexpression of pattern.
2190
2191 2018-05-18 Jason Merrill <jason@redhat.com>
2192
2193 PR c++/58407 - deprecated implicit copy ops.
2194 * call.c (build_over_call): Warn about deprecated trivial fns.
2195 * class.c (classtype_has_user_copy_or_dtor): New.
2196 (type_build_ctor_call): Check TREE_DEPRECATED.
2197 (type_build_dtor_call): Likewise.
2198 * decl2.c (cp_warn_deprecated_use): Move from tree.c.
2199 Add checks. Return bool. Handle -Wdeprecated-copy.
2200 (mark_used): Use it.
2201 * decl.c (grokdeclarator): Remove redundant checks.
2202 * typeck2.c (build_functional_cast): Likewise.
2203 * method.c (lazily_declare_fn): Mark deprecated copy ops.
2204 * init.c (build_aggr_init): Only set TREE_USED if there are
2205 side-effects.
2206
2207 2018-05-18 Cesar Philippidis <cesar@codesourcery.com>
2208
2209 PR c++/85782
2210 * cp-gimplify.c (cp_genericize_r): Call genericize_omp_for_stmt for
2211 OACC_LOOPs.
2212
2213 2018-05-18 Richard Sandiford <richard.sandiford@linaro.org>
2214
2215 * constexpr.c (cxx_eval_constant_expression): Remove FMA_EXPR handling.
2216 (potential_constant_expression_1): Likewise.
2217
2218 2018-05-16 Marek Polacek <polacek@redhat.com>
2219
2220 PR c++/85363
2221 * call.c (set_flags_from_callee): Handle AGGR_INIT_EXPRs too.
2222 * tree.c (bot_manip): Call set_flags_from_callee for
2223 AGGR_INIT_EXPRs too.
2224
2225 2018-05-15 Jason Merrill <jason@redhat.com>
2226
2227 * cp-tree.h (cp_expr): Remove copy constructor.
2228 * mangle.c (struct releasing_vec): Declare copy constructor.
2229
2230 * constexpr.c (cxx_eval_vec_init_1): Pass tf_none if ctx->quiet.
2231
2232 PR c++/64372 - CWG 1560, gratuitous lvalue-rvalue conversion in ?:
2233 * call.c (build_conditional_expr_1): Don't force_rvalue when one arm
2234 is a throw-expression.
2235
2236 2018-05-15 Paolo Carlini <paolo.carlini@oracle.com>
2237
2238 * cp-tree.h (DECL_MAYBE_IN_CHARGE_CDTOR_P): New.
2239 (FOR_EACH_CLONE): Update.
2240 * decl.c (grokdeclarator): Use it.
2241 * decl2.c (vague_linkage_p): Likewise.
2242 * mangle.c (mangle_decl): Likewise.
2243 * method.c (lazily_declare_fn): Likewise.
2244 * optimize.c (can_alias_cdtor, maybe_clone_body): Likewise.
2245 * repo.c (repo_emit_p): Likewise.
2246 * tree.c (decl_linkage): Likewise.
2247
2248 2018-05-14 Jason Merrill <jason@redhat.com>
2249
2250 Handle TYPE_HAS_LATE_RETURN_TYPE like ref-qualifier and eh spec.
2251 * tree.c (build_cp_fntype_variant): New.
2252 (build_ref_qualified_type, build_exception_variant)
2253 (strip_typedefs, cxx_copy_lang_qualifiers): Use it.
2254 (cxx_type_hash_eq, cp_check_qualified_type): Check
2255 TYPE_HAS_LATE_RETURN_TYPE.
2256 (cp_build_type_attribute_variant): Check cxx_type_hash_eq.
2257 (cp_build_qualified_type_real): No need to preserve C++ qualifiers.
2258 * class.c (build_clone): Use cxx_copy_lang_qualifiers.
2259 (adjust_clone_args): Likewise.
2260 * decl.c (grokfndecl): Add late_return_type_p parameter. Use
2261 build_cp_fntype_variant.
2262 (grokdeclarator): Pass late_return_type_p to grokfndecl.
2263 (check_function_type): Use cxx_copy_lang_qualifiers.
2264 (static_fn_type): Use cxx_copy_lang_qualifiers.
2265 * decl2.c (build_memfn_type, maybe_retrofit_in_chrg)
2266 (cp_reconstruct_complex_type, coerce_new_type, coerce_delete_type)
2267 (change_return_type): Use cxx_copy_lang_qualifiers.
2268 * mangle.c (write_type): Use cxx_copy_lang_qualifiers.
2269 * parser.c (cp_parser_lambda_declarator_opt): Represent an explicit
2270 return type on the declarator like a normal trailing return type.
2271 * pt.c (tsubst_function_type): Use build_cp_fntype_variant.
2272 (copy_default_args_to_explicit_spec): Use cxx_copy_lang_qualifiers.
2273 * typeck.c (merge_types): Use build_cp_fntype_variant.
2274
2275 2018-05-14 Paolo Carlini <paolo.carlini@oracle.com>
2276
2277 * cp-tree.h (TYPE_REF_P): New.
2278 (TYPE_OBJ_P, TYPE_REF_OBJ_P, TYPE_REFFN_P): Update.
2279 * call.c (build_list_conv, build_aggr_conv, standard_conversion,
2280 direct_reference_binding, reference_binding, implicit_conversion,
2281 add_builtin_candidate, build_user_type_conversion_1, build_op_call_1,
2282 build_new_op_1, build_x_va_arg, conv_binds_ref_to_prvalue,
2283 build_over_call, perform_implicit_conversion_flags,
2284 extend_ref_init_temps, type_has_extended_temps): Use it.
2285 * class.c (one_inheriting_sig, check_field_decls,
2286 check_bases_and_members, find_flexarrays, finish_struct,
2287 fixed_type_or_null): Likewise.
2288 * constexpr.c (literal_type_p, cxx_bind_parameters_in_call,
2289 non_const_var_error, cxx_eval_constant_expression,
2290 potential_constant_expression_1): Likewise.
2291 * cp-gimplify.c (omp_var_to_track, omp_cxx_notice_variable,
2292 cp_genericize_r, cxx_omp_privatize_by_reference,
2293 cxx_omp_const_qual_no_mutable, cxx_omp_finish_clause,
2294 cp_fold_maybe_rvalue): Likewise.
2295 * cp-ubsan.c (cp_ubsan_maybe_instrument_downcast): Likewise.
2296 * cvt.c (build_up_reference, convert_to_reference,
2297 convert_from_reference, convert_to_void, noexcept_conv_p,
2298 fnptr_conv_p): Likewise.
2299 * decl.c (poplevel, check_for_uninitialized_const_var,
2300 check_initializer, initialize_local_var, cp_finish_decl,
2301 get_tuple_decomp_init, cp_finish_decomp, grokdeclarator, copy_fn_p,
2302 move_signature_fn_p, grok_op_properties, finish_function): Likewise.
2303 * decl2.c (grok_array_decl, cp_reconstruct_complex_type,
2304 decl_maybe_constant_var_p): Likewise.
2305 * error.c (dump_type_prefix, dump_expr): Likewise.
2306 * except.c (initialize_handler_parm, complete_ptr_ref_or_void_ptr_p,
2307 is_admissible_throw_operand_or_catch_parameter): Likewise.
2308 * expr.c (mark_use): Likewise.
2309 * init.c (build_zero_init_1, build_value_init_noctor,
2310 perform_member_init, diagnose_uninitialized_cst_or_ref_member_1,
2311 build_new, build_delete): Likewise.
2312 * lambda.c (build_lambda_object): Likewise.
2313 * mangle.c (write_expression, write_template_arg): Likewise.
2314 * method.c (forward_parm, do_build_copy_constructor,
2315 do_build_copy_assign, build_stub_object, constructible_expr,
2316 walk_field_subobs): Likewise.
2317 * parser.c (cp_parser_omp_for_loop_init,
2318 cp_parser_omp_declare_reduction_exprs,
2319 cp_parser_omp_declare_reduction): Likewise.
2320 * pt.c (convert_nontype_argument_function, convert_nontype_argument,
2321 convert_template_argument, tsubst_pack_expansion,
2322 tsubst_function_decl, tsubst_decl, tsubst, tsubst_copy_and_build,
2323 maybe_adjust_types_for_deduction, check_cv_quals_for_unify, unify,
2324 more_specialized_fn, invalid_nontype_parm_type_p, dependent_type_p_r,
2325 value_dependent_expression_p, build_deduction_guide): Likewise.
2326 * semantics.c (finish_handler_parms, finish_non_static_data_member,
2327 finish_compound_literal, omp_privatize_field,
2328 handle_omp_array_sections_1, handle_omp_array_sections,
2329 cp_check_omp_declare_reduction, finish_omp_reduction_clause,
2330 finish_omp_declare_simd_methods, cp_finish_omp_clause_depend_sink,
2331 finish_omp_clauses, finish_decltype_type, capture_decltype,
2332 finish_builtin_launder): Likewise.
2333 * tree.c (lvalue_kind, cp_build_reference_type, move,
2334 cp_build_qualified_type_real, stabilize_expr, stabilize_init): Likewise.
2335 * typeck.c (cxx_safe_arg_type_equiv_p, build_class_member_access_expr,
2336 cp_build_indirect_ref_1, convert_arguments, warn_for_null_address,
2337 cp_build_addr_expr_1, maybe_warn_about_useless_cast,
2338 build_static_cast_1, build_static_cast, build_reinterpret_cast_1,
2339 build_const_cast_1, cp_build_c_cast, cp_build_modify_expr,
2340 convert_for_initialization,
2341 maybe_warn_about_returning_address_of_local, check_return_expr,
2342 cp_type_quals, casts_away_constness, non_reference): Likewise.
2343 * typeck2.c (cxx_readonly_error, store_init_value,
2344 process_init_constructor_record, build_x_arrow, build_functional_cast,
2345 add_exception_specifier): Likewise.
2346
2347 2018-05-14 Jason Merrill <jason@redhat.com>
2348
2349 * pt.c (tsubst) [ARRAY_TYPE]: Check valid_array_size_p.
2350 (tsubst_copy_and_build) [NEW_EXPR]: Clear in_decl.
2351
2352 2018-05-11 Jakub Jelinek <jakub@redhat.com>
2353
2354 PR c/85696
2355 * cp-tree.h (cxx_omp_predetermined_sharing_1): New prototype.
2356 * cp-gimplify.c (cxx_omp_predetermined_sharing): New wrapper around
2357 cxx_omp_predetermined_sharing_1. Rename old function to ...
2358 (cxx_omp_predetermined_sharing_1): ... this.
2359 * semantics.c (finish_omp_clauses): Use cxx_omp_predetermined_sharing_1
2360 instead of cxx_omp_predetermined_sharing.
2361
2362 2018-05-10 Jason Merrill <jason@redhat.com>
2363
2364 * decl.c (cp_finish_decl): Don't instantiate auto variable.
2365 (check_static_variable_definition): Allow auto.
2366 * constexpr.c (ensure_literal_type_for_constexpr_object): Likewise.
2367
2368 * cp-tree.h (DECL_CONSTRUCTOR_P): Use DECL_CXX_CONSTRUCTOR_P.
2369 (DECL_DESTRUCTOR_P): Use DECL_CXX_DESTRUCTOR_P.
2370
2371 Core issue 2310 - conversion to base of incomplete type.
2372 * class.c (build_base_path): Check COMPLETE_TYPE_P for source type.
2373
2374 CWG 2267 - list-initialization of reference temporary
2375 * call.c (reference_binding): List-initializing a reference
2376 temporary is copy-list-initialization.
2377
2378 * parser.c (cp_parser_class_head): Use num_template_headers_for_class.
2379
2380 * pt.c (instantiate_decl): Make sure we aren't trying to do a nested
2381 instantiation in template context.
2382
2383 * class.c (vbase_has_user_provided_move_assign): Use
2384 user_provided_p.
2385
2386 * lambda.c (lambda_expr_this_capture): Improve logic.
2387
2388 * decl.c (make_typename_type): s/parameters/arguments/.
2389 * parser.c (cp_parser_nested_name_specifier_opt): Likewise.
2390 * pt.c (make_pack_expansion): Correct error message.
2391
2392 2018-05-10 Jakub Jelinek <jakub@redhat.com>
2393
2394 PR c++/85662
2395 * cp-gimplify.c (cp_fold): Use fold_offsetof rather than
2396 fold_offsetof_1, pass TREE_TYPE (x) as TYPE to it and drop the
2397 fold_convert.
2398
2399 2018-05-10 Eric Botcazou <ebotcazou@adacore.com>
2400
2401 PR c++/85400
2402 * decl2.c (adjust_var_decl_tls_model): New static function.
2403 (comdat_linkage): Call it on a variable.
2404 (maybe_make_one_only): Likewise.
2405
2406 2018-05-09 Paolo Carlini <paolo.carlini@oracle.com>
2407
2408 PR c++/85713
2409 Revert:
2410 2018-05-08 Paolo Carlini <paolo.carlini@oracle.com>
2411
2412 PR c++/84588
2413 * parser.c (cp_parser_parameter_declaration_list): When the
2414 entire parameter-declaration-list is erroneous maybe call
2415 abort_fully_implicit_template.
2416
2417 2018-05-08 Jason Merrill <jason@redhat.com>
2418
2419 PR c++/85706 - class deduction under decltype
2420 * pt.c (for_each_template_parm_r): Handle DECLTYPE_TYPE. Clear
2421 *walk_subtrees whether or not we walked into the operand.
2422 (type_uses_auto): Only look at deduced contexts.
2423
2424 2018-05-08 Paolo Carlini <paolo.carlini@oracle.com>
2425
2426 PR c++/84588
2427 * parser.c (cp_parser_parameter_declaration_list): When the
2428 entire parameter-declaration-list is erroneous maybe call
2429 abort_fully_implicit_template.
2430
2431 2018-05-08 Marek Polacek <polacek@redhat.com>
2432
2433 PR c++/85695
2434 * semantics.c (finish_if_stmt_cond): See through typedefs.
2435
2436 2018-05-07 Jason Merrill <jason@redhat.com>
2437
2438 PR c++/85646 - lambda visibility.
2439 * decl2.c (determine_visibility): Don't mess with template arguments
2440 from the containing scope.
2441 (vague_linkage_p): Check DECL_ABSTRACT_P before looking at a 'tor
2442 thunk.
2443
2444 2018-05-07 Nathan Sidwell <nathan@acm.org>
2445
2446 Remove fno-for-scope
2447 * cp-tree.h (DECL_ERROR_REPORTED, DECL_DEAD_FOR_LOCAL)
2448 (DECL_HAS_SHADOWED_FOR_VAR_P, DECL_SHADOWED_FOR_VAR)
2449 (SET_DECL_SHADOWED_FOR_VAR): Delete.
2450 (decl_shadowed_for_var_lookup, decl_shadowed_for_var_insert)
2451 (check_for_out_of_scope_variable, init_shadowed_var_for_decl):
2452 Don't declare.
2453 * name-lookup.h (struct cp_binding_level): Remove
2454 dead_vars_from_for field.
2455 * cp-lang.c (cp_init_ts): Delete.
2456 (LANG_HOOKS_INIT_TS): Override to cp_common_init_ts.
2457 * cp-objcp-common.c (shadowed_var_for_decl): Delete.
2458 (decl_shadowed_for_var_lookup, decl_shadowed_for_var_insert)
2459 (init_shadowed_var_for_decl): Delete.
2460 * decl.c (poplevel): Remove shadowed for var handling.
2461 (cxx_init_decl_processing): Remove -ffor-scope deprecation.
2462 * name-lookup.c (find_local_binding): Remove shadowed for var
2463 handling.
2464 (check_local_shadow): Likewise.
2465 (check_for_out_of_scope_variable): Delete.
2466 * parser.c (cp_parser_primary_expression): Remove shadowed for var
2467 handling.
2468 * pt.c (tsubst_decl): Remove DECL_DEAD_FOR_LOCAL setting.
2469 * semantics.c (begin_for_scope): Always have a scope.
2470 (begin_for_stmt, finish_for_stmt): Remove ARM-for scope handling.
2471 (begin_range_for_stmt, finish_id_expression): Likewise.
2472
2473 2018-05-07 Jason Merrill <jason@redhat.com>
2474
2475 PR c++/85618 - ICE with initialized VLA.
2476 * tree.c (vla_type_p): New.
2477 * typeck2.c (store_init_value, split_nonconstant_init_1): Check it
2478 rather than array_of_runtime_bound_p.
2479
2480 2018-05-05 Paolo Carlini <paolo.carlini@oracle.com>
2481
2482 * cvt.c (ocp_convert): Early handle the special case of a
2483 null_ptr_cst_p expr converted to a NULLPTR_TYPE_P type.
2484
2485 2018-05-03 Jason Merrill <jason@redhat.com>
2486
2487 PR c++/85600 - virtual delete failure.
2488 * init.c (build_delete): Always save_expr when deleting.
2489
2490 2018-05-03 Nathan Sidwell <nathan@acm.org>
2491
2492 * decl.c (cxx_init_decl_processing): Remove flag_friend_injection.
2493 * name-lookup.c (do_pushdecl): Likewise.
2494
2495 2018-05-02 Paolo Carlini <paolo.carlini@oracle.com>
2496 Jason Merrill <jason@redhat.com>
2497
2498 PR c++/68374
2499 * name-lookup.c (check_local_shadow): Don't handle static old
2500 declarations in the block handling locals shadowing locals.
2501
2502 2018-05-01 Jason Merrill <jason@redhat.com>
2503
2504 PR c++/85587 - error with scoped enum in template.
2505 * semantics.c (finish_qualified_id_expr): Don't return an
2506 unqualified IDENTIFIER_NODE.
2507
2508 2018-04-30 Jason Merrill <jason@redhat.com>
2509
2510 PR c++/85580 - extern "C" and local variables
2511 * name-lookup.c (check_extern_c_conflict): Ignore local decls.
2512
2513 PR c++/84701 - unsigned typeof.
2514 * decl.c (grokdeclarator): Overhaul diagnostics for invalid use
2515 of long/short/signed/unsigned.
2516
2517 PR c++/85305 - pack in lambda init-capture.
2518 * parser.c (cp_parser_initializer): Add subexpression_p parm; don't
2519 check_for_bare_parameter_packs in a subexpression.
2520 (cp_parser_lambda_introducer): Use it.
2521
2522 PR c++/61982 - dead stores to destroyed objects.
2523 * call.c (build_trivial_dtor_call): New, assigns a clobber.
2524 (build_over_call, build_special_member_call): Use it.
2525 * cp-tree.h: Declare it.
2526 * init.c (build_delete): Remove trivial path.
2527
2528 * init.c (build_dtor_call): Use build_special_member_call.
2529 (build_delete): Remove redundant uses of save_addr.
2530
2531 * decl.c (build_clobber_this): Use build_clobber.
2532
2533 2018-04-27 Jakub Jelinek <jakub@redhat.com>
2534
2535 PR c++/85553
2536 * init.c (build_zero_init_1): For zero initialization of
2537 NULLPTR_TYPE_P type use build_int_cst directly.
2538
2539 2018-04-27 David Malcolm <dmalcolm@redhat.com>
2540
2541 PR c++/85515
2542 * name-lookup.c (consider_binding_level): Skip compiler-generated
2543 variables.
2544 * search.c (lookup_field_fuzzy_info::fuzzy_lookup_field): Flatten
2545 nested if statements into a series of rejection tests. Reject
2546 lambda-ignored entities as suggestions.
2547
2548 2018-04-27 Jason Merrill <jason@redhat.com>
2549
2550 * cvt.c (cp_fold_convert): Use convert_ptrmem.
2551 * typeck.c (convert_ptrmem): Add a NOP even if no adjustment.
2552
2553 2018-04-27 Paolo Carlini <paolo.carlini@oracle.com>
2554
2555 PR c++/84691
2556 * decl.c (grokdeclarator): Clear friendp upon definition in local
2557 class definition error.
2558
2559 2018-04-27 Jason Merrill <jason@redhat.com>
2560
2561 PR c++/85545 - ICE with noexcept PMF conversion.
2562 * cvt.c (cp_fold_convert): Pass PMF CONSTRUCTORs to
2563 build_ptrmemfunc.
2564 * typeck.c (build_ptrmemfunc): Don't build a NOP_EXPR for zero
2565 adjustment.
2566 (build_ptrmemfunc_access_expr): Special-case CONSTRUCTORs.
2567
2568 2018-04-27 Nathan Sidwell <nathan@acm.org>
2569
2570 * typeck.c (convert_ptrmem): Move local var decls to initialization.
2571
2572 * cp-tree.h (TEMPLATE_INFO): Fix comments.
2573 (TI_PENDING_TEMPLATE_FLAG): Check TEMPLATE_INFO.
2574 (NON_DEFAULT_TEMPLATE_ARG_COUNT): Wrap line.
2575 (dump, print_other_binding_stacks): Remove declarations.
2576 * name-lookup.c (print_other_binding_stack): Make static.
2577 * pt.c (build_template_decl): Make static.
2578
2579 2018-04-26 Jason Merrill <jason@redhat.com>
2580
2581 PR c++/85545 - ICE with noexcept PMF conversion.
2582 * cvt.c (cp_fold_convert): Handle PMF CONSTRUCTORs directly.
2583
2584 2018-04-25 Nathan Sidwell <nathan@acm.org>
2585
2586 PR c++/85437
2587 PR c++/49171
2588 * cp-tree.h (REINTERPRET_CAST_P): New.
2589 * constexpr.c (cxx_eval_constant_expression) <case NOP_EXPR>:
2590 Reject REINTERPET_CAST_P conversions. Use cplus_expand_constant
2591 for non-trivial PTRMEM_CST cases.
2592 * typeck.c (build_nop_reinterpret): New.
2593 (build_reinterpret_cast_1): Use it. Set REINTERPRET_CAST_P on
2594 NOP_EXPRs returned by cp_convert.
2595
2596 2018-04-23 Jason Merrill <jason@redhat.com>
2597
2598 PR c++/69560 - wrong alignof(double) on x86.
2599 CWG 1879 - Inadequate definition of alignment requirement.
2600 * cp-tree.h (ALIGNOF_EXPR_STD_P): New.
2601 * typeck.c (cxx_sizeof_or_alignof_type): Add std_alignof parm.
2602 (cxx_sizeof_expr, cxx_sizeof_nowarn, cxx_alignas_expr)
2603 (cxx_alignof_expr): Pass it.
2604 * parser.c (cp_parser_unary_expression): Pass it.
2605 * pt.c (tsubst_copy): Copy it.
2606 (tsubst_copy_and_build): Pass it.
2607 * decl.c (fold_sizeof_expr): Pass it.
2608
2609 2018-04-23 Jakub Jelinek <jakub@redhat.com>
2610 Jason Merrill <jason@redhat.com>
2611
2612 PR c++/85470 - wrong error with static data member.
2613 * decl.c (check_initializer): Check DECL_INITIALIZED_IN_CLASS_P.
2614 * typeck2.c (store_init_value): Likewise.
2615
2616 2018-04-20 Jakub Jelinek <jakub@redhat.com>
2617
2618 PR c++/85462
2619 * cp-tree.h (tinst_level): Remove in_system_header_p member,
2620 change refcount member from unsigned char to unsigned short,
2621 add refcount_infinity static data member, adjust comments.
2622 * pt.c (tinst_level::refcount_infinity): Define.
2623 (inc_refcount_use): Remove assert, don't increment if refcount
2624 is already refcount_infinity, adjust comment.
2625 (dec_refcount_use): Remove assert, don't decrement if refcount
2626 is refcount_infinity, adjust comment.
2627 (push_tinst_level_loc): Formatting fix.
2628
2629 2018-04-19 Paolo Carlini <paolo.carlini@oracle.com>
2630
2631 PR c++/84611
2632 * pt.c (lookup_template_class_1): Check pushtag return value for
2633 error_mark_node.
2634
2635 2018-04-19 Alexandre Oliva <aoliva@redhat.com>
2636
2637 PR c++/80290
2638 * cp-tree.h (tinst_level::free): Fix whitespace.
2639
2640 2018-04-18 Paolo Carlini <paolo.carlini@oracle.com>
2641
2642 PR c++/84630
2643 * pt.c (tsubst_lambda_expr): Check begin_lambda_type return value
2644 for error_mark_node.
2645
2646 2018-04-18 Jakub Jelinek <jakub@redhat.com>
2647
2648 PR c++/84463
2649 * typeck.c (cp_build_addr_expr_1): Move handling of offsetof-like
2650 tricks from here to ...
2651 * cp-gimplify.c (cp_fold) <case ADDR_EXPR>: ... here. Only use it
2652 if INDIRECT_REF's operand is INTEGER_CST cast to pointer type.
2653
2654 2018-04-18 Alexandre Oliva <aoliva@redhat.com>
2655
2656 PR c++/80290
2657 * cp-tree.h (struct tinst_level): Split decl into tldcl and
2658 targs. Add private split_list_p, tree_list_p, and not_list_p
2659 inline const predicates; to_list private member function
2660 declaration; free public member function declaration; list_p,
2661 get_node and maybe_get_node accessors, and refcount data
2662 member. Narrow errors to unsigned short.
2663 * error.c (print_instantiation_full_context): Use new
2664 accessors.
2665 (print_instantiation_partial_context_line): Likewise. Drop
2666 const from tinst_level-typed parameter.
2667 * mangle.c (mangle_decl_string): Likewise.
2668 * pt.c (freelist): New template class.
2669 (tree_list_freelist_head): New var.
2670 (tree_list_freelist): New fn, along with specializations.
2671 (tinst_level_freelist_head): New var.
2672 (pending_template_freelist_head): Likewise.
2673 (tinst_level_freelist, pending_template_freelist): New fns.
2674 (tinst_level::to_list, tinst_level::free): Define.
2675 (inc_refcount_use, dec_refcount_use): New fns for tinst_level.
2676 (set_refcount_ptr): New template fn.
2677 (add_pending_template): Adjust for refcounting, freelists and
2678 new accessors.
2679 (neglectable_inst_p): Take a NULL d as a non-DECL.
2680 (limit_bad_template_recursion): Use new accessors.
2681 (push_tinst_level): New overload to create the list.
2682 (push_tinst_level_loc): Make it static, split decl into two
2683 args, adjust tests and initialization to cope with split
2684 lists, use freelist, adjust for refcounting.
2685 (push_tinst_level_loc): New wrapper with the old interface.
2686 (pop_tinst_level): Adjust for refcounting.
2687 (record_last_problematic_instantiation): Likewise.
2688 (reopen_tinst_level): Likewise. Use new accessors.
2689 (instantiate_alias_template): Adjust for split list.
2690 (fn_type_unification): Likewise.
2691 (get_partial_spec_bindings): Likewise.
2692 (instantiate_pending_templates): Use new accessors. Adjust
2693 for refcount. Release pending_template to freelist.
2694 (instantiating_current_function_p): Use new accessors.
2695
2696 2018-04-16 Alexandre Oliva <aoliva@redhat.com>
2697
2698 PR c++/85039
2699 * parser.c (cp_parser_builtin_offset): Reject type definitions.
2700 * mangle.c (nested_anon_class_index): Avoid crash returning -1
2701 if we've seen errors.
2702
2703 2018-04-12 David Malcolm <dmalcolm@redhat.com>
2704
2705 PR c++/85385
2706 * name-lookup.c (macro_use_before_def::maybe_make): New function,
2707 checking that the use is indeed before the definition.
2708 (macro_use_before_def::macro_use_before_def): Make private.
2709 (macro_use_before_def::~macro_use_before_def): Make private. Move
2710 check for UNKNOWN_LOCATION to macro_use_before_def::maybe_make.
2711 (lookup_name_fuzzy): Call macro_use_before_def::maybe_make rather
2712 than using new directly.
2713
2714 2018-04-12 Jason Merrill <jason@redhat.com>
2715
2716 PR c++/85356 - ICE with pointer to member function.
2717 * pt.c (maybe_instantiate_noexcept): Do instantiate in templates if
2718 flag_noexcept_type. Build the new spec within the function context.
2719 * except.c (build_noexcept_spec): Do get constant value in templates
2720 if flag_noexcept_type.
2721 * decl.c (check_redeclaration_exception_specification): Don't
2722 instantiate noexcept on a dependent declaration.
2723
2724 2018-04-12 Marek Polacek <polacek@redhat.com>
2725
2726 PR c++/85258
2727 * constexpr.c (reduced_constant_expression_p): Return false for null
2728 trees.
2729
2730 2018-04-11 Marek Polacek <polacek@redhat.com>
2731
2732 PR c++/85032
2733 * constexpr.c (potential_constant_expression_1): Consider conversions
2734 from classes to literal types potentially constant.
2735
2736 2018-04-10 Paolo Carlini <paolo.carlini@oracle.com>
2737
2738 PR c++/70808
2739 * init.c (build_zero_init_1): Handle NULLPTR_TYPE_P being true of
2740 the type like TYPE_PTR_OR_PTRMEM_P.
2741
2742 2018-04-10 Jason Merrill <jason@redhat.com>
2743
2744 PR debug/65821 - wrong location for main().
2745 * call.c (clear_location_r, convert_default_arg): Revert.
2746 * tree.c (break_out_target_exprs): Add clear_location parm.
2747 (struct bot_data): New.
2748 (bot_manip): Clear location if requested.
2749 * init.c (get_nsdmi): Pass clear_location.
2750
2751 2018-04-10 David Malcolm <dmalcolm@redhat.com>
2752
2753 PR c++/85110
2754 * call.c (get_fndecl_argument_location): Make non-static.
2755 * cp-tree.h (get_fndecl_argument_location): New decl.
2756 * typeck.c (convert_for_assignment): When complaining due to
2757 conversions for an argument, show the location of the parameter
2758 within the decl.
2759
2760 2018-04-10 Jakub Jelinek <jakub@redhat.com>
2761
2762 PR c++/85312 - P0962 cleanup
2763 * parser.c (cp_parser_perform_range_for_lookup): Remove unreachable
2764 diagnostics.
2765
2766 2018-04-10 Jason Merrill <jason@redhat.com>
2767
2768 PR debug/65821 - wrong location for main().
2769 * call.c (clear_location_r): New.
2770 (convert_default_arg): Use it.
2771 * tree.c (bot_manip): Remove builtin_LINE/FILE handling.
2772
2773 PR c++/85285 - ICE with flexible array after substitution.
2774 * pt.c (instantiate_class_template_1): Check for flexible array in
2775 union.
2776
2777 2018-04-09 Paolo Carlini <paolo.carlini@oracle.com>
2778
2779 PR c++/85227
2780 * decl.c (cp_finish_decomp): In a template, if the type is incomplete
2781 issue a pedwarn and defer trying to do bindings.
2782
2783 2018-04-09 Jason Merrill <jason@redhat.com>
2784
2785 PR c++/85279 - dump_expr doesn't understand decltype.
2786 * error.c (dump_expr): Handle DECLTYPE_TYPE.
2787
2788 PR c++/85262 - ICE with redundant qualification on constructor.
2789 * call.c (build_new_method_call_1): Move make_args_non_dependent
2790 after A::A() handling.
2791
2792 PR c++/85277 - ICE with invalid offsetof.
2793 * semantics.c (finish_offsetof): Avoid passing non-DECL to %qD.
2794 Adjust -Winvalid-offsetof diagnostic to say conditionally supported.
2795
2796 PR c++/85264 - ICE with excess template-parameter-list.
2797 * parser.c (cp_parser_check_template_parameters): Add template_id_p
2798 parameter. Don't allow an extra template header if true.
2799 (cp_parser_class_head): Pass template_id_p.
2800 (cp_parser_elaborated_type_specifier): Likewise.
2801 (cp_parser_alias_declaration): Likewise.
2802 (cp_parser_check_declarator_template_parameters): Likewise.
2803
2804 2018-04-09 Jakub Jelinek <jakub@redhat.com>
2805
2806 PR c++/85194
2807 * parser.c (cp_parser_simple_declaration): For structured bindings,
2808 if *maybe_range_for_decl is NULL after parsing it, set it to
2809 error_mark_node.
2810
2811 2018-04-09 Jason Merrill <jason@redhat.com>
2812
2813 PR c++/85256 - ICE capturing pointer to VLA.
2814 * lambda.c (add_capture): Distinguish between variable-size and
2815 variably-modified types.
2816
2817 2018-04-06 Jason Merrill <jason@redhat.com>
2818
2819 PR c++/85214 - ICE with alias, generic lambda, constexpr if.
2820 * pt.c (extract_locals_r): Remember local typedefs.
2821
2822 2018-04-06 David Malcolm <dmalcolm@redhat.com>
2823
2824 PR c++/84269
2825 * name-lookup.c (struct std_name_hint): Move out of
2826 get_std_name_hint; add field "min_dialect".
2827 (get_std_name_hint): Add min_dialect values to all initializers.
2828 Add <any>, <atomic>, <bitset>, <condition_variable>, <functional>,
2829 <future>, <istream>, <iterator>, <ostream>, <mutex>, <optional>,
2830 <shared_mutex>, <string_view>, <thread>, and <variant>.
2831 Add fstream, ifstream, and ofstream to <fstream>.
2832 Add istringstream, ostringstream, and stringstream to <sstream>.
2833 Add basic_string to <string>.
2834 Add tuple_element and tuple_size to <tuple>.
2835 Add declval to <utility>.
2836 Fix ordering of <queue> and <tuple>.
2837 Return a std_name_hint, rather than a const char *.
2838 (get_cxx_dialect_name): New function.
2839 (maybe_suggest_missing_std_header): Detect names that aren't yet
2840 available in the current dialect, and instead of suggesting a
2841 missing #include, warn about the dialect.
2842
2843 2018-04-06 Jakub Jelinek <jakub@redhat.com>
2844
2845 PR c++/85210
2846 * pt.c (tsubst_decomp_names): Return error_mark_node and assert
2847 errorcount is set if tsubst doesn't return a VAR_DECL.
2848
2849 2018-04-06 David Malcolm <dmalcolm@redhat.com>
2850
2851 PR c++/85021
2852 * name-lookup.c (using_directives_contain_std_p): New function.
2853 (has_using_namespace_std_directive_p): New function.
2854 (suggest_alternatives_for): Simplify if/else logic using early
2855 returns. If no candidates were found, and there's a
2856 "using namespace std;" directive, call
2857 maybe_suggest_missing_std_header.
2858 (maybe_suggest_missing_header): Split later part of the function
2859 into..
2860 (maybe_suggest_missing_std_header): New.
2861
2862 2018-04-06 Jason Merrill <jason@redhat.com>
2863
2864 PR c++/85242 - ICE with class definition in template parm.
2865 * cp-tree.h (PROCESSING_REAL_TEMPLATE_DECL_P): False if
2866 processing_template_parmlist.
2867
2868 PR c++/85240 - LTO ICE with using of undeduced auto fn.
2869 * cp-gimplify.c (cp_genericize_r): Discard using of undeduced auto.
2870
2871 2018-04-05 Jakub Jelinek <jakub@redhat.com>
2872
2873 PR c++/85209
2874 * pt.c (tsubst_decomp_names): Don't fail or ICE if DECL_CHAIN (decl3)
2875 is not prev, if prev == decl.
2876
2877 PR c++/85208
2878 * decl.c (start_decl): For DECL_DECOMPOSITION_P decls, don't call
2879 maybe_apply_pragma_weak here...
2880 (cp_maybe_mangle_decomp): ... but call it here instead.
2881
2882 2018-04-05 Jason Merrill <jason@redhat.com>
2883
2884 PR c++/85136 - ICE with designated init in template.
2885 * decl.c (maybe_deduce_size_from_array_init): Handle dependent
2886 designated initializer.
2887 (check_array_designated_initializer): Update ce->index with the
2888 constant value.
2889
2890 PR c++/83808 - ICE with VLA initialization.
2891 * typeck2.c (process_init_constructor_array): Don't require a VLA
2892 initializer to have VLA type.
2893
2894 2018-04-05 Paolo Carlini <paolo.carlini@oracle.com>
2895
2896 PR c++/80956
2897 * call.c (convert_like_real): Fail gracefully for a broken
2898 std::initializer_list, missing a definition.
2899
2900 * name-lookup.c (do_pushtag): Tweak message, use %< and %>.
2901
2902 2018-04-05 Paolo Carlini <paolo.carlini@oracle.com>
2903
2904 PR c++/84792
2905 * decl.c (grokdeclarator): Fix diagnostic about typedef name used
2906 as nested-name-specifier, keep type and TREE_TYPE (decl) in sync.
2907
2908 2018-04-05 Jason Merrill <jason@redhat.com>
2909
2910 PR c++/82152 - ICE with class deduction and inherited ctor.
2911 * pt.c (do_class_deduction): Ignore inherited ctors.
2912
2913 PR c++/84665 - ICE with array of empty class.
2914 * decl2.c (cp_check_const_attributes): Use fold_non_dependent_expr.
2915
2916 PR c++/85228 - ICE with lambda in enumerator in template.
2917 * pt.c (bt_instantiate_type_proc): Don't assume
2918 CLASSTYPE_TEMPLATE_INFO is non-null.
2919
2920 2018-04-05 Ville Voutilainen <ville.voutilainen@gmail.com>
2921
2922 Implement P0969
2923 * decl.c (find_decomp_class_base): Check accessibility instead
2924 of declared access, adjust diagnostic.
2925
2926 2018-04-05 Ville Voutilainen <ville.voutilainen@gmail.com>
2927
2928 Implement P0961
2929 * decl.c (get_tuple_decomp_init): Check the templatedness
2930 of a member get.
2931
2932 2018-04-05 Jason Merrill <jason@redhat.com>
2933
2934 PR c++/85200 - ICE with constexpr if in generic lambda.
2935 * pt.c (extract_locals_r): Don't record the local specs of variables
2936 declared within the pattern.
2937
2938 2018-04-05 Alexandre Oliva <aoliva@redhat.com>
2939
2940 PR c++/84979
2941 * pt.c (check_auto_in_tmpl_args): New.
2942 (tsubst_qualified_id): Use it to reject template args
2943 referencing auto for non-type templates.
2944 * parser.c (cp_parser_template_id): Likewise.
2945 * cp-tree.h (check_auto_in_tmpl_args): Declare.
2946 * typeck2.c (build_functional_cast): Report correct location
2947 for invalid use of auto.
2948
2949 2018-04-04 Jason Merrill <jason@redhat.com>
2950
2951 PR c++/85215 - ICE with copy-init from conversion.
2952 * call.c (merge_conversion_sequences): Fix type of direct binding
2953 sequence.
2954
2955 PR c++/84938 - ICE with division by ~-1.
2956 * call.c (set_up_extended_ref_temp): Call cp_fully_fold.
2957
2958 PR c++/84936 - ICE with unexpanded pack in mem-initializer.
2959 * parser.c (cp_parser_mem_initializer_list): Call
2960 check_for_bare_parameter_packs.
2961
2962 2018-04-04 Jakub Jelinek <jakub@redhat.com>
2963
2964 PR inline-asm/85172
2965 * constexpr.c (cxx_eval_builtin_function_call): For calls to
2966 builtin_valid_in_constant_expr_p functions, don't call
2967 cxx_eval_constant_expression if argument is not
2968 potential_constant_expression.
2969
2970 PR c++/85146
2971 * cp-tree.h (calculate_bases, calculate_direct_bases): Add complain
2972 argument.
2973 * semantics.c (calculate_bases): Add complain argument. Use
2974 complete_type_or_maybe_complain instead of just complete_type and
2975 return an empty vector if it fails. Move make_tree_vector () call
2976 after early return. Formatting fixes.
2977 (calculate_direct_bases): Likewise. Call release_tree_vector at the
2978 end.
2979 (dfs_calculate_bases_post, calculate_bases_helper): Formatting fixes.
2980 * pt.c (tsubst_pack_expansion): Adjust calculate_bases and
2981 calculate_direct_bases callers, formatting fixes.
2982
2983 2018-04-04 Jason Merrill <jason@redhat.com>
2984
2985 PR c++/85006 - -fconcepts ICE with A<auto...> return type
2986 * pt.c (tsubst_pack_expansion): Allow unsubstituted auto pack.
2987
2988 PR c++/85200 - ICE with constexpr if in generic lambda.
2989 * tree.c (cp_walk_subtrees): Walk into DECL_EXPR in templates.
2990
2991 PR c++/84221 - bogus -Wunused with attribute and template.
2992 * decl2.c (is_late_template_attribute): Handle unused and used
2993 normally on non-TYPE_DECL.
2994
2995 PR c++/85135 - ICE with omitted template arguments.
2996 * decl.c (grokdeclarator): Catch deduced class type in trailing
2997 return type.
2998
2999 PR c++/85133 - ICE with missing concept initializer.
3000 * decl.c (cp_finish_decl): If a concept initializer is missing, use
3001 true.
3002
3003 PR c++/85118 - wrong error with generic lambda and std::bind.
3004 * call.c (add_template_conv_candidate): Disable if there are any
3005 call operators.
3006
3007 PR c++/85141 - ICE with compound assignment and static member fn.
3008 * typeck.c (cp_build_modify_expr): Call decay_conversion for RHS of
3009 compound assignment.
3010
3011 PR c++/85148 - ICE with 'this' in array NSDMI.
3012 * tree.c (replace_placeholders_r): Use handled_component_p.
3013
3014 2018-04-04 Ville Voutilainen <ville.voutilainen@gmail.com>
3015
3016 PR c++/65923
3017 * decl.c (grokfndecl): Handle standard UDL diagnostics here..
3018 * parser.c (cp_parser_unqualified_id): ..not here.
3019
3020 2018-04-04 Alexandre Oliva <aoliva@redhat.com>
3021
3022 PR c++/84943
3023 * typeck.c (cp_build_addr_expr_1): Mark FUNCTION_DECL as
3024 used.
3025 * decl2.c (mark_used): Return without effects if tf_conv.
3026
3027 2018-04-03 Jason Merrill <jason@redhat.com>
3028
3029 PR c++/85092 - C++17 ICE with unused list constructor.
3030 * call.c (conv_binds_ref_to_prvalue): Also count ck_identity
3031 from a TARGET_EXPR.
3032
3033 PR c++/85113 - ICE with constexpr and __builtin_constant_p.
3034 * constexpr.c (cxx_eval_builtin_function_call): Only defer
3035 __builtin_constant_p if ctx->quiet.
3036
3037 2018-04-03 Paolo Carlini <paolo.carlini@oracle.com>
3038
3039 PR c++/84768
3040 * pt.c (rewrite_template_parm): If the first argument is
3041 error_mark_node return it immediately.
3042 (build_deduction_guide): Check the return value of the
3043 latter for error_mark_node.
3044 (do_class_deduction): Check the return value of the latter.
3045
3046 2018-04-03 Jason Merrill <jason@redhat.com>
3047
3048 * semantics.c (finish_if_stmt_cond): Use
3049 instantiation_dependent_expression_p.
3050
3051 PR c++/85149 - generic lambda and constexpr if.
3052 * pt.c (build_extra_args, add_extra_args): Split from
3053 tsubst_pack_expansion.
3054 (tsubst_expr) [IF_STMT]: Use them.
3055 * cp-tree.h (IF_STMT_EXTRA_ARGS): New.
3056
3057 * typeck.c (merge_types): Limit matching attribute shortcut to
3058 the default case.
3059
3060 2018-04-03 Jakub Jelinek <jakub@redhat.com>
3061
3062 PR c++/85147
3063 * pt.c (fixed_parameter_pack_p_1): Punt if parm is error_mark_node.
3064
3065 PR c++/85140
3066 * name-lookup.c (handle_namespace_attrs): Return early if attributes
3067 is error_mark_node.
3068
3069 PR c++/85134
3070 * decl.c (cp_finish_decl): If ensure_literal_type_for_constexpr_object
3071 fails, after clearing DECL_DECLARED_CONSTEXPR_P don't return early,
3072 instead for static data members clear init and set DECL_EXTERNAL.
3073
3074 2018-04-02 Jason Merrill <jason@redhat.com>
3075
3076 PR c++/64095 - auto... parameter pack.
3077 * parser.c (cp_parser_parameter_declaration): Handle turning autos
3078 into packs here.
3079 (cp_parser_parameter_declaration_list): Not here.
3080
3081 2018-03-31 Alexandre Oliva <aoliva@redhat.com>
3082
3083 PR c++/85027
3084 * class.c (instantiate_type): Peel off SAVE_EXPR before
3085 BASELINK.
3086
3087 2018-03-30 Jason Merrill <jason@redhat.com>
3088
3089 * typeck2.c (process_init_constructor_record): Use
3090 init_list_type_node for the CONSTRUCTOR around an anonymous union
3091 designated initializer.
3092
3093 2018-03-30 Jakub Jelinek <jakub@redhat.com>
3094
3095 PR c++/84791
3096 * semantics.c (finish_omp_reduction_clause): If
3097 OMP_CLAUSE_REDUCTION_PLACEHOLDER is error_mark_node, return true
3098 even if processing_template_decl.
3099
3100 2018-03-29 David Malcolm <dmalcolm@redhat.com>
3101
3102 PR c++/84269
3103 * name-lookup.c (get_std_name_hint): Add names from <memory>,
3104 <tuple>, and <utility>.
3105
3106 2018-03-29 Jason Merrill <jason@redhat.com>
3107
3108 PR c++/85093 - too many template args with pack expansion.
3109 * pt.c (coerce_template_parms): Keep pack expansion args that will
3110 need to be empty.
3111
3112 2018-03-29 Jason Merrill <jason@redhat.com>
3113
3114 * pt.c (build_non_dependent_expr): Propagate expr location.
3115
3116 2018-03-27 Jason Merrill <jason@redhat.com>
3117
3118 PR c++/85060 - wrong-code with call to base member in template.
3119 * search.c (any_dependent_bases_p): Check uses_template_parms
3120 rather than processing_template_decl.
3121
3122 2018-03-29 David Malcolm <dmalcolm@redhat.com>
3123
3124 PR c++/85110
3125 * typeck.c (convert_for_assignment): When complaining due to
3126 conversions for an argument, attempt to use the location of the
3127 argument.
3128
3129 2018-03-28 Paolo Carlini <paolo.carlini@oracle.com>
3130
3131 PR c++/85028
3132 * pt.c (tsubst_default_argument): Early return if the type of the
3133 parameter is erroneous.
3134
3135 2018-03-28 Alexandre Oliva <aoliva@redhat.com>
3136
3137 PR c++/84973
3138 * decl2.c (note_vague_linkage_fn): Don't defer uninstantiated
3139 templates.
3140
3141 PR c++/84968
3142 * tree.c (strip_typedefs_expr): Reject STATEMENT_LISTs.
3143
3144 2018-03-27 Paolo Carlini <paolo.carlini@oracle.com>
3145
3146 PR c++/85067
3147 * method.c (defaulted_late_check): Partially revert r253321 changes,
3148 do not early return upon error.
3149
3150 2018-03-27 Jakub Jelinek <jakub@redhat.com>
3151
3152 PR c++/85077
3153 * cp-gimplify.c (cp_fold) <case CONSTRUCTOR>: For ctors with vector
3154 type call fold to generate VECTOR_CSTs when possible.
3155
3156 PR c++/85076
3157 * tree.c (cp_build_reference_type): If to_type is error_mark_node,
3158 return it right away.
3159
3160 2018-03-27 Volker Reichelt <v.reichelt@netcologne.de>
3161
3162 * search.c (check_final_overrider): Use inform instead of error
3163 for the diagnostics of the overridden functions. Tweak wording.
3164
3165 2018-03-27 Jakub Jelinek <jakub@redhat.com>
3166
3167 PR c++/85068
3168 * class.c (update_vtable_entry_for_fn): Don't ICE if base_binfo
3169 is NULL. Assert if thunk_binfo is NULL then errorcount is non-zero.
3170
3171 2018-03-27 Paolo Carlini <paolo.carlini@oracle.com>
3172 Jason Merrill <jason@redhat.com>
3173
3174 PR c++/84632
3175 * init.c (build_aggr_init): When initializing from array,
3176 reject anything but CONSTRUCTORs and TARGET_EXPRs.
3177 (build_vec_init): Handle separately ARRAY_TYPEs.
3178
3179 2018-03-26 Jason Merrill <jason@redhat.com>
3180
3181 PR c++/85062 - ICE with alignas in wrong place.
3182 * decl.c (grokdeclarator): Ignore attributes on type-specifiers
3183 here.
3184
3185 PR c++/85049 - ICE with __integer_pack.
3186 * pt.c (unify_pack_expansion): Don't try to deduce generated packs.
3187 * cp-tree.h (TEMPLATE_PARM_P): New.
3188
3189 2018-03-23 Jason Merrill <jason@redhat.com>
3190
3191 PR c++/78489 - wrong SFINAE behavior.
3192
3193 PR c++/84489
3194 * pt.c (type_unification_real): Don't defer substitution failure.
3195
3196 2018-03-23 Jakub Jelinek <jakub@redhat.com>
3197
3198 PR c++/85015
3199 * decl.c (compute_array_index_type): Set osize to mark_rvalue_use
3200 result.
3201
3202 PR c++/84942
3203 * pt.c (tsubst_copy_and_build) <case FIX_TRUNC_EXPR>: Replace
3204 cp_build_unary_op call with gcc_unreachable ().
3205
3206 2018-03-23 Marek Polacek <polacek@redhat.com>
3207
3208 PR c++/85045
3209 * cxx-pretty-print.c (cxx_pretty_printer::multiplicative_expression):
3210 Handle EXACT_DIV_EXPR and RDIV_EXPR. Tweak condition.
3211 (cxx_pretty_printer::expression): Handle EXACT_DIV_EXPR and RDIV_EXPR.
3212
3213 2018-03-23 Ville Voutilainen <ville.voutilainen@gmail.com>
3214
3215 Implement P0962
3216 * parser.c (cp_parser_perform_range_for_lookup): Change
3217 the condition for deciding whether to use members.
3218
3219 2018-03-23 Marek Polacek <polacek@redhat.com>
3220
3221 PR c++/85033
3222 * semantics.c (finish_offsetof): Don't allow CONST_DECLs.
3223
3224 2018-03-23 Alexandre Oliva <aoliva@redhat.com>
3225
3226 PR c++/71251
3227 * parser.c (cp_parser_alias_declaration): Call
3228 parser_check_template_parameters.
3229
3230 PR c++/84789
3231 * pt.c (resolve_typename_type): Drop assert that stopped
3232 simplification to template-independent types. Add assert to
3233 verify the initial scope is template dependent.
3234 * parser.c (cp_parser_parse_and_diagnose_invalid_type_name):
3235 Reparse the id expression as a type-name, not a declarator.
3236
3237 PR c++/84729
3238 * init.c (build_vec_init): Error at parenthesized array init.
3239
3240 PR c++/84610
3241 PR c++/84642
3242 PR c++/84942
3243 * cp-tree.h (temp_override): New template class, generalizing
3244 a cleanup that was only used...
3245 * parser.c (cp_parser_parameter_declaration_clause):
3246 ... here for auto_is_implicit_function_template_parm_p.
3247 (cp_parser_gnu_attributes_opt): Use it here as well.
3248 (cp_parser_std_attribute): Likewise.
3249
3250 2018-03-22 Marek Polacek <polacek@redhat.com>
3251
3252 PR c++/84854
3253 * semantics.c (finish_if_stmt_cond): Check if the type of the condition
3254 is boolean.
3255
3256 2018-03-21 Jason Merrill <jason@redhat.com>
3257
3258 PR c++/81311 - wrong C++17 overload resolution.
3259 * call.c (build_user_type_conversion_1): Remove C++17 code.
3260 (conv_binds_ref_to_prvalue): New.
3261 (build_over_call): Handle C++17 copy elision.
3262 (build_special_member_call): Only do C++17 copy elision here if the
3263 argument is already the right type.
3264
3265 2018-03-21 Alexandre Oliva <aoliva@redhat.com>
3266
3267 PR c++/71965
3268 * init.c (build_vec_init): Silence error, former sorry,
3269 without tf_error.
3270
3271 PR c++/84610
3272 PR c++/84642
3273 * parser.c (abort_fully_implicit_template_p): New.
3274 (cp_parser_skip_to_end_of_statement): Use it.
3275 (cp_parser_skip_to_end_of_block_or_statement): Likewise.
3276 (finish_fully_implicit_template_p): Clear
3277 implicit_template_parms and implicit_template_scope.
3278
3279 2018-03-21 Paolo Carlini <paolo.carlini@oracle.com>
3280
3281 PR c++/84972
3282 * decl.c (maybe_deduce_size_from_array_init): Set TREE_TYPE to
3283 error_mark_node when check_array_designated_initializer fails.
3284
3285 2018-03-21 Jakub Jelinek <jakub@redhat.com>
3286
3287 PR c++/84961
3288 * cp-tree.h (genericize_compound_lvalue): Declare.
3289 * typeck.c (genericize_compound_lvalue): New function.
3290 (unary_complex_lvalue, cp_build_modify_expr): Use it.
3291 * semantics.c (finish_asm_stmt): Replace MODIFY_EXPR, PREINCREMENT_EXPR
3292 and PREDECREMENT_EXPR in output and "m" constrained input operands with
3293 COMPOUND_EXPR. Call cxx_mark_addressable on the rightmost
3294 COMPOUND_EXPR operand.
3295
3296 2018-03-21 Nathan Sidwell <nathan@acm.org>
3297
3298 PR c++/85008
3299 * tree.c (decl_linkage): Use DECL_CLONED_FUNCTION_P.
3300 * decl2.c (vague_linkage_p): Likewise.
3301
3302 2018-03-21 David Malcolm <dmalcolm@redhat.com>
3303
3304 PR c++/84994
3305 * constexpr.c (constexpr_fn_retval): Make non-"static".
3306 * cp-tree.h (constexpr_fn_retval): New decl.
3307 * search.c (direct_accessor_p): Update leading comment.
3308 (reference_accessor_p): Likewise.
3309 (field_accessor_p): Replace check that function body is a
3310 RETURN_EXPR with a call to constexpr_fn_retval. Fix
3311 indentation of "field_type" decl.
3312
3313 2018-03-21 Nathan Sidwell <nathan@acm.org>
3314
3315 PR c++/84804
3316 * name-lookup.c (do_pushtag): Permit lambdas to be pushed into
3317 complete classes.
3318
3319 2018-03-21 Martin Sebor <msebor@redhat.com>
3320
3321 PR c++/84850
3322 * call.c (first_non_public_field): New template and function.
3323 (first_non_trivial_field): New function.
3324 (maybe_warn_class_memaccess): Call them.
3325
3326 2018-03-21 David Malcolm <dmalcolm@redhat.com>
3327
3328 PR c++/84892
3329 * search.c (field_accessor_p): Use class_of_this_parm rather than
3330 type_of_this_parm, to check that "this" is a "const T *", rather
3331 than a "T *const".
3332
3333 2018-03-21 Nathan Sidwell <nathan@acm.org>
3334
3335 * class.c (finish_struct_anon_r): Refactor, deprecate anything
3336 other than public non-static data members.
3337 * parser.c (cp_parser_init_declarator): Deprecate attributes after
3338 parenthesized initializer.
3339
3340 PR c++/84836
3341 * name-lookup.c (update_binding): Correct logic for local binding
3342 update.
3343
3344 2018-03-21 Marek Polacek <polacek@redhat.com>
3345
3346 PR c++/71638, ICE with NSDMI and reference.
3347 * constexpr.c (cxx_eval_bare_aggregate): Update constructor's flags
3348 even when we replace an element.
3349
3350 2018-03-20 Marek Polacek <polacek@redhat.com>
3351
3352 PR c++/84978, ICE with NRVO.
3353 * constexpr.c (cxx_eval_constant_expression): Handle the case when
3354 a RESULT_DECL isn't in the hash map.
3355
3356 2018-03-20 Jason Merrill <jason@redhat.com>
3357
3358 PR c++/84978, ICE with NRVO.
3359 * cvt.c (cp_get_fndecl_from_callee): Add fold parameter.
3360 (cp_get_callee_fndecl_nofold): New.
3361 * cp-gimplify.c (cp_genericize_r): Use it instead.
3362 * call.c (check_self_delegation): Likewise.
3363
3364 2018-03-20 Nathan Sidwell <nathan@acm.org>
3365
3366 PR c++/84962
3367 * name-lookup.c (pushdecl_class_level): Push anon-struct's
3368 member_vec, if there is one.
3369
3370 PR c++/84970
3371 * cp-tree.h (lookup_list_keep): Declare.
3372 * tree.c (lookup_list_keep): New, broken out of ...
3373 (build_min): ... here. Call it.
3374 * decl.c (cp_finish_decl): Call lookup_list_keep.
3375
3376 2018-03-19 Jason Merrill <jason@redhat.com>
3377
3378 PR c++/84937 - ICE with class deduction and auto.
3379 * pt.c (rewrite_template_parm): Fix auto handling.
3380
3381 2018-03-19 Marek Polacek <polacek@redhat.com>
3382
3383 PR c++/84925
3384 * pt.c (enclosing_instantiation_of): Check if fn is null.
3385
3386 PR c++/84927
3387 * constexpr.c (cxx_eval_bare_aggregate): Update constructor's flags
3388 as we evaluate the elements.
3389 (cxx_eval_constant_expression): Verify constructor's flags
3390 unconditionally.
3391
3392 2018-03-19 Jason Merrill <jason@redhat.com>
3393
3394 PR c++/71834 - template-id with too few arguments.
3395 * pt.c (coerce_template_parms): Check fixed_parameter_pack_p.
3396
3397 2018-03-19 Nathan Sidwell <nathan@acm.org>
3398
3399 PR c++/84835
3400 * lambda.c (maybe_add_lambda_conv_op): Force C++ linkage.
3401 * pt.c (build_template_decl): Propagate language linkage.
3402
3403 PR c++/84812
3404 * name-lookup.c (set_local_extern_decl_linkage): Defend against
3405 ambiguous lookups.
3406
3407 2018-03-16 Jakub Jelinek <jakub@redhat.com>
3408
3409 PR c/84910
3410 * parser.c (cp_parser_lambda_introducer): Remove trailing space from
3411 diagnostics.
3412 * method.c (synthesize_method): Likewise.
3413 * pt.c (convert_nontype_argument): Likewise.
3414
3415 2018-03-16 Jason Merrill <jason@redhat.com>
3416
3417 PR c++/84720 - ICE with rvalue ref non-type argument.
3418 * pt.c (invalid_nontype_parm_type_p): Prohibit rvalue reference.
3419 (convert_nontype_argument): Revert earlier change.
3420
3421 PR c++/80227 - SFINAE and negative array size.
3422 * decl.c (compute_array_index_type): Use
3423 build_converted_constant_expr and valid_constant_size_p.
3424
3425 PR c++/84906 - silent wrong code with ambiguous conversion.
3426 * call.c (build_user_type_conversion_1): Set need_temporary_p on
3427 ambiguous conversion.
3428 (convert_like_real): Check it.
3429
3430 PR c++/83937 - wrong C++17 handling of init-list ctor argument.
3431 * call.c (build_special_member_call): Don't convert an init-list
3432 argument directly to the class type.
3433
3434 2018-03-16 Jakub Jelinek <jakub@redhat.com>
3435
3436 PR c++/79937
3437 PR c++/82410
3438 * cp-tree.h (CONSTRUCTOR_PLACEHOLDER_BOUNDARY): Define.
3439 (find_placeholder): Declare.
3440 * tree.c (struct replace_placeholders_t): Add exp member.
3441 (replace_placeholders_r): Don't walk into ctors with
3442 CONSTRUCTOR_PLACEHOLDER_BOUNDARY flag set, unless they are equal to
3443 d->exp. Replace PLACEHOLDER_EXPR with unshare_expr (x) rather than x.
3444 (replace_placeholders): Initialize data.exp.
3445 (find_placeholders_r, find_placeholders): New functions.
3446 * typeck2.c (process_init_constructor_record,
3447 process_init_constructor_union): Set CONSTRUCTOR_PLACEHOLDER_BOUNDARY
3448 if adding NSDMI on which find_placeholder returns true.
3449 * call.c (build_over_call): Don't call replace_placeholders here.
3450 * cp-gimplify.c (cp_genericize_r): Set TARGET_EXPR_NO_ELIDE on
3451 TARGET_EXPRs with CONSTRUCTOR_PLACEHOLDER_BOUNDARY set on
3452 TARGET_EXPR_INITIAL.
3453 (cp_fold): Copy over CONSTRUCTOR_PLACEHOLDER_BOUNDARY bit to new
3454 ctor.
3455
3456 2018-03-16 Jason Merrill <jason@redhat.com>
3457
3458 PR c++/83911 - ICE with multiversioned constructor.
3459 * cp-gimplify.c (cp_genericize_r): Replace versioned function with
3460 dispatchere here.
3461 * call.c (build_over_call): Not here.
3462
3463 2018-03-16 Jakub Jelinek <jakub@redhat.com>
3464
3465 PR c++/84874
3466 * decl.c (reshape_init_class): Don't assert d->cur->index == field
3467 if d->cur->index is a FIELD_DECL, instead set field to d->cur->index.
3468
3469 2018-03-15 Jakub Jelinek <jakub@redhat.com>
3470
3471 PR c++/84222
3472 * cp-tree.h (cp_warn_deprecated_use): Declare.
3473 * tree.c (cp_warn_deprecated_use): New function.
3474 * typeck2.c (build_functional_cast): Use it.
3475 * decl.c (grokparms): Likewise.
3476 (grokdeclarator): Likewise. Temporarily push nested class scope
3477 around grokparms call for out of class member definitions.
3478
3479 2018-03-14 Jason Merrill <jason@redhat.com>
3480
3481 PR c++/84820 - no error for invalid qualified-id.
3482 * parser.c (cp_parser_make_indirect_declarator): Don't wrap
3483 cp_error_declarator.
3484
3485 PR c++/84801 - ICE with unexpanded pack in lambda.
3486 * pt.c (check_for_bare_parameter_packs): Don't return early for a
3487 lambda in non-template context.
3488
3489 PR c++/81236 - auto variable and auto function
3490 * pt.c (tsubst_baselink): Update the type of the BASELINK after
3491 mark_used.
3492
3493 2018-03-14 Jason Merrill <jason@redhat.com>
3494
3495 PR c++/83916 - ICE with template template parameters.
3496 * pt.c (convert_template_argument): Don't substitute into type of
3497 non-type parameter if we don't have enough arg levels.
3498 (unify): Likewise.
3499
3500 2018-03-14 Marek Polacek <polacek@redhat.com>
3501
3502 PR c++/84596
3503 * semantics.c (finish_static_assert): Check
3504 instantiation_dependent_expression_p instead of
3505 {type,value}_dependent_expression_p.
3506
3507 2018-03-13 Paolo Carlini <paolo.carlini@oracle.com>
3508 Jason Merrill <jason@redhat.com>
3509
3510 PR c++/82336 - link error with list-init default argument.
3511 * decl.c (check_default_argument): Unshare an initializer list.
3512
3513 2018-03-13 Jakub Jelinek <jakub@redhat.com>
3514
3515 PR c++/84843
3516 * decl.c (duplicate_decls): For redefinition of built-in, use error
3517 and return error_mark_node. For redeclaration, return error_mark_node
3518 rather than olddecl if !flag_permissive.
3519
3520 2018-03-13 Jason Merrill <jason@redhat.com>
3521
3522 PR c++/82565 - ICE with concepts and generic lambda.
3523 * pt.c (instantiate_decl): Clear fn_context for lambdas.
3524
3525 2018-03-13 Jason Merrill <jason@redhat.com>
3526
3527 PR c++/84720 - ICE with rvalue ref non-type argument.
3528 * pt.c (convert_nontype_argument): Handle rvalue references.
3529
3530 PR c++/84839 - ICE with decltype of parameter pack.
3531 * pt.c (tsubst_pack_expansion): Set cp_unevaluated_operand while
3532 instantiating dummy parms.
3533
3534 * parser.c (cp_parser_simple_type_specifier): Pedwarn about auto
3535 parameter even without -Wpedantic.
3536
3537 PR c++/84798 - ICE with auto in abstract function declarator.
3538 * parser.c (cp_parser_parameter_declaration_clause): Check
3539 parser->default_arg_ok_p.
3540
3541 2018-03-13 Jakub Jelinek <jakub@redhat.com>
3542
3543 PR c++/84808
3544 * constexpr.c (find_array_ctor_elt): Don't use elt reference after
3545 first potential CONSTRUCTOR_ELTS reallocation. Convert dindex to
3546 sizetype. Formatting fixes.
3547
3548 2018-03-12 Jason Merrill <jason@redhat.com>
3549
3550 PR c++/84355 - ICE with deduction for member class template.
3551 * pt.c (tsubst) [TEMPLATE_TYPE_PARM]: Always substitute into
3552 CLASS_PLACEHOLDER_TEMPLATE.
3553
3554 PR c++/84802 - ICE capturing uninstantiated class.
3555 * lambda.c (build_capture_proxy): Call complete_type.
3556
3557 2018-03-09 Jason Merrill <jason@redhat.com>
3558
3559 PR c++/84770 - ICE with typedef and parameter pack.
3560 * pt.c (verify_unstripped_args_1): Split out from
3561 verify_unstripped_args.
3562
3563 PR c++/84785 - ICE with alias template and default targs.
3564 * pt.c (type_unification_real): Set processing_template_decl if
3565 saw_undeduced == 1.
3566
3567 PR c++/84752 - ICE with capture of constexpr array.
3568 * call.c (standard_conversion): Set rvaluedness_matches_p on the
3569 identity conversion under ck_lvalue.
3570
3571 2018-03-09 Jason Merrill <jason@redhat.com>
3572 Paolo Carlini <paolo.carlini@oracle.com>
3573
3574 PR c++/71169
3575 PR c++/71832
3576 * pt.c (any_erroneous_template_args_p): New.
3577 * cp-tree.h (any_erroneous_template_args_p): Declare it.
3578 * parser.c (cp_parser_class_specifier_1): Use it.
3579
3580 2018-03-09 Jason Merrill <jason@redhat.com>
3581
3582 PR c++/84726 - unnecessary capture of constant vars.
3583 * cp-tree.h (LAMBDA_CAPTURE_EXPLICIT_P)
3584 (LAMBDA_EXPR_CAPTURE_OPTIMIZED): New.
3585 * expr.c (mark_use): Set LAMBDA_EXPR_CAPTURE_OPTIMIZED.
3586 * lambda.c (is_constant_capture_proxy)
3587 (current_lambda_expr, var_to_maybe_prune, mark_const_cap_r)
3588 (prune_lambda_captures): New.
3589 (finish_lambda_function): Call prune_lambda_captures.
3590
3591 2018-03-09 Jason Merrill <jason@redhat.com>
3592 Jakub Jelinek <jakub@redhat.com>
3593
3594 PR c++/84076
3595 * call.c (convert_arg_to_ellipsis): Instead of cp_build_addr_expr
3596 build ADDR_EXPR with REFERENCE_TYPE.
3597 (build_over_call): For purposes of check_function_arguments, if
3598 argarray[j] is ADDR_EXPR with REFERENCE_TYPE created above, use
3599 its operand rather than the argument itself.
3600
3601 2018-03-09 Jakub Jelinek <jakub@redhat.com>
3602
3603 PR c++/84724
3604 * decl.c (duplicate_decls): Don't override __* prefixed builtins
3605 except for __[^b]*_chk, instead issue permerror and for -fpermissive
3606 also a note and return olddecl.
3607
3608 2018-03-09 Nathan Sidwell <nathan@acm.org>
3609
3610 PR c++/84733
3611 * name-lookup.c (do_pushdecl_with_scope): Only clear
3612 current_function_decl when pushing a non-class (i.e. namespace)
3613 scope.
3614
3615 2018-03-08 Jason Merrill <jason@redhat.com>
3616 Jakub Jelinek <jakub@redhat.com>
3617
3618 PR c++/80598
3619 * call.c (build_over_call): In templates set TREE_USED (first_fn) when
3620 not calling mark_used for the benefit of -Wunused-function warning.
3621
3622 2018-03-06 Jason Merrill <jason@redhat.com>
3623
3624 * lambda.c (is_capture_proxy_with_ref): Remove.
3625 * constexpr.c, expr.c, cp-tree.h, semantics.c: Adjust.
3626
3627 2018-03-06 Marek Polacek <polacek@redhat.com>
3628
3629 PR c++/84684
3630 * constexpr.c (cxx_bind_parameters_in_call): Unshare evaluated
3631 arguments.
3632
3633 2018-03-06 Alexandre Oliva <aoliva@redhat.com>
3634
3635 PR c++/84231
3636 * tree.c (lvalue_kind): Use presence/absence of REFERENCE_TYPE
3637 only while processing template decls.
3638 * typeck.c (build_x_conditional_expr): Move wrapping of
3639 reference type around type...
3640 * call.c (build_conditional_expr_1): ... here. Rename
3641 is_lvalue to is_glvalue.
3642 * parser.c (cp_parser_fold_expression): Catch REFERENCE_REF_P
3643 INDIRECT_REF of COND_EXPR too.
3644
3645 PR c++/84593
3646 * init.c (build_zero_init_1): Zero-initialize references.
3647
3648 PR c++/84492
3649 * semantics.c (finish_stmt_expr_expr): Reject unresolved
3650 overloads used as stmt expr values.
3651
3652 2018-03-05 Jason Merrill <jason@redhat.com>
3653
3654 PR c++/84708 - ICE with lambda in local class NSDMI.
3655 * lambda.c (lambda_expr_this_capture): Handle local class NSDMI
3656 context.
3657
3658 2018-03-05 Jakub Jelinek <jakub@redhat.com>
3659
3660 PR c++/84684
3661 * constexpr.c (constexpr_call_hasher::equal): Return false if
3662 lhs->hash != rhs->hash. Change return 1 to return true and
3663 return 0 to return false.
3664
3665 2018-03-05 Nathan Sidwell <nathan@acm.org>
3666
3667 PR c++/84702
3668 * pt.c (process_template_arg): Mark lookup_keep on a default arg.
3669
3670 2018-03-05 Marek Polacek <polacek@redhat.com>
3671
3672 PR c++/84707
3673 * decl.c (duplicate_decls): Check DECL_NAME before accessing
3674 UDLIT_OPER_P.
3675
3676 2018-03-05 Nathan Sidwell <nathan@acm.org>
3677
3678 PR c++/84694
3679 * friend.c (do_friend): Restore check for identifier_p inside
3680 TEMPLATE_ID_EXPR.
3681
3682 2018-03-05 Paolo Carlini <paolo.carlini@oracle.com>
3683
3684 PR c++/84618
3685 * parser.c (cp_parser_lambda_introducer): Reject any capture not
3686 involving a VAR_DECL or a PARM_DECL.
3687
3688 2018-03-05 Pádraig Brady <P@draigBrady.com>
3689 Jason Merrill <jason@redhat.com>
3690 Nathan Sidwell <nathan@acm.org>
3691
3692 PR c++/84497
3693 * decl2.c (get_tls_init_fn): Check TYPE_HAS_TRIVIAL_DFLT too.
3694
3695 2018-03-03 Jason Merrill <jason@redhat.com>
3696
3697 PR c++/84686 - missing volatile loads.
3698 * cvt.c (convert_to_void): Call maybe_undo_parenthesized_ref.
3699
3700 2018-03-03 Paolo Carlini <paolo.carlini@oracle.com>
3701
3702 PR c++/71464
3703 * optimize.c (maybe_thunk_body): Bail out immediately if either
3704 fns[0] or fns[1] is null.
3705
3706 2018-03-02 Marek Polacek <polacek@redhat.com>
3707
3708 PR c++/84578
3709 * constexpr.c (get_array_or_vector_nelts): New.
3710 (cxx_eval_array_reference): Use it.
3711 (cxx_eval_vec_init_1): Likewise.
3712 (cxx_eval_store_expression): Likewise.
3713
3714 2018-03-02 Jason Merrill <jason@redhat.com>
3715
3716 * semantics.c (force_paren_expr): Remove redundant test.
3717
3718 2018-03-02 Marek Polacek <polacek@redhat.com>
3719
3720 PR c++/84663
3721 * decl.c (cp_complete_array_type): Check error_mark_node.
3722
3723 PR c++/84664
3724 * typeck.c (cp_perform_integral_promotions): Check the result of
3725 mark_rvalue_use.
3726
3727 2018-03-02 Jakub Jelinek <jakub@redhat.com>
3728
3729 PR c++/84662
3730 * pt.c (tsubst_copy_and_build) <case TEMPLATE_ID_EXPR>: Use
3731 RETURN instead of return.
3732 <case POINTER_PLUS_EXPR>: Likewise.
3733 <case CONVERT_EXPR>: If op0 is error_mark_node, just return
3734 it instead of wrapping it into CONVERT_EXPR.
3735
3736 2018-03-02 Jason Merrill <jason@redhat.com>
3737
3738 Fix MIPS16 ICE.
3739 * pt.c (type_dependent_expression_p): Check DECL_LANG_SPECIFIC.
3740
3741 2018-03-02 Marek Polacek <polacek@redhat.com>
3742
3743 PR c++/84590
3744 * cp-gimplify.c (cp_fully_fold): Unwrap TARGET_EXPR or a CONSTRUCTOR
3745 wrapped in VIEW_CONVERT_EXPR.
3746
3747 2018-03-01 Martin Sebor <msebor@redhat.com>
3748
3749 PR c++/84294
3750 * decl.c (check_redeclaration_no_default_args): Merge attributes
3751 specified on redeclarations of the same function template.
3752 Remove dead code.
3753
3754 2018-03-01 Marek Polacek <polacek@redhat.com>
3755 Jason Merrill <jason@redhat.com>
3756
3757 PR c++/84582
3758 * semantics.c (force_paren_expr): Create a PAREN_EXPR when in
3759 a template.
3760 (maybe_undo_parenthesized_ref): Unwrap PAREN_EXPR.
3761 * typeck2.c (store_init_value): Call fold_non_dependent_expr instead
3762 of instantiate_non_dependent_expr.
3763 * tree.c (lvalue_kind): Handle PAREN_EXPR like NON_DEPENDENT_EXPR.
3764
3765 2018-03-01 Nathan Sidwell <nathan@acm.org>
3766
3767 PR c++/84434
3768 * name-lookup.c (member_vec_dedup): Remove manually peeled
3769 iteration. Ignore dependent ctor inheritance.
3770
3771 2018-03-01 Jason Merrill <jason@redhat.com>
3772
3773 PR c++/71569 - decltype of template.
3774 * parser.c (cp_parser_decltype_expr): Handle missing template args.
3775
3776 2018-03-01 Marek Polacek <polacek@redhat.com>
3777
3778 PR c++/84596
3779 * constexpr.c (require_rvalue_constant_expression): New function.
3780 * cp-tree.h: Declare it.
3781 * semantics.c (finish_static_assert): Use it instead of
3782 require_potential_rvalue_constant_expression.
3783
3784 2018-03-01 Jason Merrill <jason@redhat.com>
3785 Alexandre Oliva <aoliva@redhat.com>
3786
3787 PR c++/71569 - ICE with redundant args on member variable template.
3788 * decl.c (start_decl): Handle partial specialization of member
3789 variable template.
3790 * pt.c (determine_specialization): Allow partial specialization
3791 of member variable template without specializing enclosing class.
3792 (process_partial_specialization): Improve error message.
3793
3794 2018-02-28 Jason Merrill <jason@redhat.com>
3795
3796 PR c++/71784 - ICE with ref-qualifier and explicit specialization.
3797 * pt.c (determine_specialization): Check ref-qualifier.
3798
3799 2018-02-28 Jakub Jelinek <jakub@redhat.com>
3800
3801 PR c++/84609
3802 * parser.c (cp_parser_attributes_opt): Formatting fix.
3803 (cp_parser_skip_balanced_tokens, cp_parser_skip_gnu_attributes_opt,
3804 cp_parser_skip_std_attribute_spec_seq, cp_parser_skip_attributes_opt):
3805 New functions.
3806 (cp_parser_member_declaration): Use cp_parser_skip_attributes_opt
3807 instead of tentative parse to peek over optional attribute tokens
3808 to check for CPP_COLON after them.
3809
3810 PR c++/83871
3811 PR c++/83503
3812 * pt.c (INCLUDE_STRING): Remove define.
3813 (warn_spec_missing_attributes): Use pretty_printer instead of
3814 std::string. Fix up inform call so that the list of attributes
3815 is in %s argument.
3816
3817 2018-02-28 Martin Sebor <msebor@redhat.com>
3818
3819 PR testsuite/84617
3820 * decl.c (duplicate_decls): Fully merge attributes const, pure,
3821 and malloc.
3822
3823 2018-02-28 Nathan Sidwell <nathan@acm.org>
3824
3825 PR c++/84602
3826 * name-lookup.h (search_anon_aggr): Add defaulted WANT_TYPE arg.
3827 * name-lookup.c (fields_linear_search): Look in an anon-aggr
3828 regardless of want_type.
3829 (search_anon_aggr): Just use get_class_binding_direct.
3830
3831 2018-02-28 Jakub Jelinek <jakub@redhat.com>
3832
3833 * decl.c (cp_finish_decomp): Don't adjust eltscnt when calling
3834 inform_n.
3835
3836 2018-02-27 Martin Sebor <msebor@redhat.com>
3837
3838 * pt.c: Avoid including <string> directly.
3839
3840 2018-02-27 Martin Sebor <msebor@redhat.com>
3841
3842 PR c++/83871
3843 PR c++/83503
3844 * cp-tree.h (warn_spec_missing_attributes): New function.
3845 ((check_explicit_specialization): Add an argument. Call the above
3846 function.
3847 * decl.c (duplicate_decls): Avoid applying primary function template's
3848 attributes to its explicit specializations.
3849 cp/pt.c (warn_spec_missing_attributes): Define.
3850
3851 2018-02-27 HÃ¥kon Sandsmark <hsandsmark@gmail.com>
3852
3853 PR c++/71546 - lambda init-capture with qualified-id.
3854 * parser.c (cp_parser_lambda_introducer): Clear scope after
3855 each lambda capture.
3856
3857 2018-02-27 Nathan Sidwell <nathan@acm.org>
3858
3859 PR c++/84426
3860 * name-lookup.h (get_member_slot): Rename ...
3861 (find_member_slot): ... here.
3862 (add_member_slot): New.
3863 * name-lookup.c (member_vec_linear_search): No need to check for
3864 NULL slot.
3865 (get_member_slot): Rename ...
3866 (find_member_slot): ... here. Don't add slot for incomplete class.
3867 (add_member_slot): New.
3868 * class.c (add_method): Adjust get_member_slot rename. Bail out
3869 if push_class_level_binding fails. Create slot and grok
3870 properties once we're committed to insertion.
3871
3872 2018-02-27 Jason Merrill <jason@redhat.com>
3873
3874 PR c++/84489 - dependent default template argument
3875 * pt.c (type_unification_real): Handle early substitution failure.
3876
3877 2018-02-26 Jason Merrill <jason@redhat.com>
3878
3879 PR c++/84560 - ICE capturing multi-dimensional VLA.
3880 * tree.c (array_of_runtime_bound_p): False if the element is
3881 variably-modified.
3882
3883 PR c++/84441 - ICE with base initialized from ?:
3884 * call.c (unsafe_copy_elision_p): Handle COND_EXPR.
3885
3886 PR c++/84520 - ICE with generic lambda in NSDMI.
3887 * lambda.c (lambda_expr_this_capture): Don't look for fake NSDMI
3888 'this' in a generic lambda instantiation.
3889
3890 PR c++/84559 - ICE with constexpr VLA.
3891 * constexpr.c (ensure_literal_type_for_constexpr_object): Check
3892 for constexpr variable with VLA type.
3893
3894 2018-02-26 Jakub Jelinek <jakub@redhat.com>
3895
3896 PR c++/84558
3897 * constexpr.c (cxx_eval_vec_init_1): For reuse, treat NULL eltinit like
3898 a valid constant initializer. Formatting fixes.
3899
3900 2018-02-26 Paolo Carlini <paolo.carlini@oracle.com>
3901
3902 PR c++/84540
3903 * pt.c (tsubst_attributes): Handle correctly tsubst_attribute
3904 returning NULL_TREE.
3905 (apply_late_template_attributes): Likewise.
3906
3907 2018-02-26 Jakub Jelinek <jakub@redhat.com>
3908
3909 PR c++/84557
3910 * parser.c (cp_parser_omp_var_list_no_open): Only call
3911 cp_parser_lookup_name_simple on names satisfying identifier_p.
3912 (cp_parser_oacc_routine): Likewise.
3913
3914 2018-02-26 Jason Merrill <jason@redhat.com>
3915
3916 PR c++/84551 - ICE with concepts and -g.
3917 * parser.c (add_debug_begin_stmt): Do nothing in a concept.
3918
3919 2018-02-26 Marek Polacek <polacek@redhat.com>
3920
3921 PR c++/84325
3922 * tree.c (replace_placeholders_r): Only check TREE_CONSTANT on
3923 non-types.
3924
3925 2018-02-26 Jason Merrill <jason@redhat.com>
3926
3927 PR c++/84447 - ICE with deleted inherited ctor with default arg.
3928 * call.c (build_over_call): Handle deleted functions in one place.
3929
3930 2018-02-26 Paolo Carlini <paolo.carlini@oracle.com>
3931
3932 PR c++/84533
3933 * decl.c (redeclaration_error_message): Don't try to use
3934 DECL_DECLARED_CONSTEXPR_P on CONST_DECLs.
3935
3936 2018-02-26 Paolo Carlini <paolo.carlini@oracle.com>
3937
3938 * lambda.c (build_capture_proxy): Define static.
3939 * cp-tree.h (build_capture_proxy): Remove.
3940
3941 2018-02-26 Marek Polacek <polacek@redhat.com>
3942
3943 PR c++/84537
3944 * name-lookup.c (suggest_alternative_in_explicit_scope): Return false
3945 if name is error node.
3946
3947 2018-02-25 Jason Merrill <jason@redhat.com>
3948
3949 PR c++/84015 - ICE with class deduction and auto template parm.
3950 * pt.c (rewrite_template_parm): Use tf_partial in first tsubst.
3951
3952 2018-02-24 Marek Polacek <polacek@redhat.com>
3953
3954 PR c++/83692
3955 * constexpr.c (maybe_constant_init_1): New function.
3956 (maybe_constant_init): Make it a wrapper around maybe_constant_init_1.
3957 (cxx_constant_init): New function.
3958 * cp-tree.h (cxx_constant_init): Declare.
3959 * typeck2.c (store_init_value): Call cxx_constant_init instead of
3960 cxx_constant_value. Move the maybe_constant_init call under an 'else'.
3961
3962 2018-02-22 Jason Merrill <jason@redhat.com>
3963
3964 PR c++/70468 - ICE with constructor delegation via typedef.
3965 * pt.c (tsubst_initializer_list): Check for other mem-initializers
3966 with constructor delegation.
3967
3968 2018-02-22 Jason Merrill <jason@redhat.com>
3969
3970 PR c++/84424 - ICE with constexpr and __builtin_shuffle.
3971 * constexpr.c (reduced_constant_expression_p): Handle CONSTRUCTOR of
3972 VECTOR_TYPE.
3973
3974 2018-02-22 Marek Polacek <polacek@redhat.com>
3975
3976 PR c++/84493
3977 * parser.c (cp_parser_braced_list): Use require_open instead of
3978 consume_open.
3979
3980 2018-02-21 Jason Merrill <jason@redhat.com>
3981
3982 PR c++/84454 - ICE with pack expansion in signature.
3983 * error.c (find_typenames_r): Also stop on EXPR_PACK_EXPANSION.
3984
3985 2018-02-20 Siddhesh Poyarekar <siddhesh@sourceware.org>
3986
3987 * cp-objcp-common.c (cxx_block_may_fallthru): Add case for
3988 IF_STMT.
3989
3990 2018-02-20 Paolo Carlini <paolo.carlini@oracle.com>
3991
3992 PR c++/84446
3993 * parser.c (cp_parser_init_declarator): Don't call start_lambda_scope
3994 on error_mark_node.
3995
3996 2018-02-20 Jakub Jelinek <jakub@redhat.com>
3997
3998 PR c++/84445
3999 * class.c (fixed_type_or_null) <case CALL_EXPR>: Only test
4000 TREE_HAS_CONSTRUCTOR if instance is not an internal function call.
4001
4002 PR c++/84449
4003 * tree.c (bot_manip): If build_cplus_new or break_out_target_exprs
4004 returns error_mark_node, return it immediately.
4005 (break_out_target_exprs): If cp_walk_tree with bot_manip returns
4006 error_mark_node, return error_mark_node.
4007
4008 PR c++/84455
4009 * pt.c (tsubst_lambda_expr): If not nested, increment temporarily
4010 function_depth to avoid GC during finish_lambda_function.
4011
4012 2018-02-19 Jason Merrill <jason@redhat.com>
4013
4014 PR c++/84429 - ICE capturing VLA.
4015 * lambda.c (build_capture_proxy): Handle reference refs.
4016
4017 2018-02-19 Jakub Jelinek <jakub@redhat.com>
4018
4019 PR c++/84448
4020 * parser.c (cp_parser_binary_expression): For no_toplevel_fold_p, if
4021 either operand is error_mark_node, set current.lhs to that instead of
4022 creating a binary op with error_mark_node operands.
4023
4024 PR c++/84430
4025 * constexpr.c (potential_constant_expression_1): Handle OMP_SIMD.
4026
4027 2018-02-19 Paolo Carlini <paolo.carlini@oracle.com>
4028
4029 PR c++/84348
4030 * decl.c (grokdeclarator): Early return error_mark_node upon
4031 ill-formed friend declaration.
4032
4033 2018-02-16 Marek Polacek <polacek@redhat.com>
4034 Jakub Jelinek <jakub@redhat.com>
4035
4036 PR c++/84192
4037 * constexpr.c (cxx_eval_constant_expression) <case RETURN_EXPR>: Don't
4038 set *jump_target to anything if jump_target is NULL.
4039
4040 2018-02-16 Jason Merrill <jason@redhat.com>
4041
4042 PR c++/84151 - unnecessary volatile load with static member.
4043 * call.c (build_new_method_call_1): Avoid loading from a volatile
4044 lvalue used as the object argument for a static member function.
4045
4046 PR c++/81853 - using-directive and constexpr.
4047 * constexpr.c (cxx_eval_constant_expression): Handle USING_STMT.
4048
4049 PR c++/84420 - ICE with structured binding in lambda.
4050 * lambda.c (is_capture_proxy): Check DECL_DECOMPOSITION_P.
4051
4052 PR c++/83835 - C++17 error with constructor ctors.
4053 * call.c (build_special_member_call): Set TARGET_EXPR_DIRECT_INIT_P.
4054
4055 PR c++/82664 - ICE with reference to function template parm.
4056 * pt.c (convert_nontype_argument_function): Avoid obfuscationg
4057 NOP_EXPRs.
4058
4059 PR c++/82764 - C++17 ICE with empty base
4060 * class.c (build_base_field_1): Set DECL_SIZE to zero for empty base.
4061
4062 2018-02-16 Jason Merrill <jason@redhat.com>
4063
4064 PR c++/84421 - type-dependent if constexpr
4065 * semantics.c (finish_if_stmt_cond): Check type_dependent_expression_p.
4066
4067 2018-02-16 Nathan Sidwell <nathan@acm.org>
4068
4069 Deprecate -ffriend-injection.
4070 * decl.c (cxx_init_decl_processing): Emit warning on option.
4071 * name-lookup.c (do_pushdecl): Emit warning if we push a visible
4072 friend.
4073
4074 2018-02-16 Paolo Carlini <paolo.carlini@oracle.com>
4075
4076 PR c++/82468
4077 * decl.c (check_special_function_return_type): Reject template
4078 template parameter in deduction guide.
4079
4080 2018-02-16 Nathan Sidwell <nathan@acm.org>
4081
4082 PR c++/84375
4083 * name-lookup.c (do_pushdecl): Bail out on bad local friend injection.
4084
4085 2018-02-15 Jason Merrill <jason@redhat.com>
4086
4087 PR c++/83227 - C++17 ICE with init-list derived-to-base conversion.
4088 * call.c (convert_like_real): Don't use the copy-list-initialization
4089 shortcut for ck_base.
4090
4091 PR c++/84045 - ICE with typedef and noexcept.
4092 * except.c (build_noexcept_spec): Use strip_typedefs_expr.
4093
4094 PR c++/84376 - ICE with omitted template arguments.
4095 * pt.c (dguide_name_p): Check for IDENTIFIER_NODE.
4096
4097 PR c++/84368 - wrong error with local variable in variadic lambda.
4098 * pt.c (tsubst_pack_expansion): Fix handling of non-packs in
4099 local_specializations.
4100
4101 2018-02-15 Paolo Carlini <paolo.carlini@oracle.com>
4102
4103 PR c++/84330
4104 * constraint.cc (tsubst_constraint_info): Handle an error_mark_node
4105 as first argument.
4106
4107 2018-02-14 Paolo Carlini <paolo.carlini@oracle.com>
4108
4109 PR c++/84350
4110 * pt.c (do_auto_deduction): Don't check the TREE_TYPE of a null
4111 init, early return.
4112
4113 2018-02-14 Nathan Sidwell <nathan@acm.org>
4114
4115 * decl2.c (mark_vtable_entries): Set input_location to decl's.
4116 (c_parse_final_cleanups): Restore input_location after emitting
4117 vtables.
4118
4119 2018-02-14 Paolo Carlini <paolo.carlini@oracle.com>
4120
4121 * cp-tree.h (do_auto_deduction (tree, tree, tree)): Remove.
4122 (do_auto_deduction (tree, tree, tree, tsubst_flags_t,
4123 auto_deduction_context, tree, int): Add defaults.
4124 * pt.c (do_auto_deduction (tree, tree, tree)): Remove definition.
4125 (tsubst_omp_for_iterator): Adjust do_auto_deduction call, forward
4126 tsubst_flags_t argument.
4127 * init.c (build_new): Likewise.
4128
4129 2018-02-13 Jakub Jelinek <jakub@redhat.com>
4130
4131 PR c++/84364
4132 * typeck.c (check_return_expr): Don't emit -Weffc++ warning
4133 about return other than *this in assignment operators if
4134 retval is type dependent expression.
4135
4136 2018-02-13 Paolo Carlini <paolo.carlini@oracle.com>
4137
4138 PR c++/84333
4139 * call.c (build_conditional_expr_1): Use cp_save_expr instead of
4140 save_expr for the G++ extension.
4141
4142 2018-02-13 Jason Merrill <jason@redhat.com>
4143
4144 PR c++/84080 - ICE with return type deduction and specialization.
4145 * pt.c (determine_specialization): Check uses_template_parms.
4146
4147 Fix more variadic capture issues.
4148 * pt.c (find_parameter_packs_r): Also look at explicit captures.
4149 (check_for_bare_parameter_packs): Check current_class_type for
4150 lambda context.
4151 (extract_locals_r): Handle seeing a full instantiation of a pack.
4152 (tsubst_pack_expansion): Likewise. Force lambda capture.
4153 * parser.c (cp_parser_lambda_introducer): Don't
4154 check_for_bare_parameter_packs.
4155
4156 PR c++/84338 - wrong variadic sizeof.
4157 * pt.c (argument_pack_select_arg): Like the macro, but look through
4158 a pack expansion.
4159 (tsubst, tsubst_copy, dependent_template_arg_p): Use it.
4160 (extract_fnparm_pack): Do make_pack_expansion.
4161 (extract_locals_r): Do strip a pack expansion.
4162 * cp-tree.h (ARGUMENT_PACK_SELECT_ARG): Remove.
4163
4164 2018-02-12 Jakub Jelinek <jakub@redhat.com>
4165
4166 PR c++/84341
4167 * parser.c (cp_parser_binary_expression): Use build_min instead of
4168 build2_loc to build the no_toplevel_fold_p toplevel binary expression.
4169
4170 2018-02-12 Nathan Sidwell <nathan@acm.org>
4171
4172 PR c++/84263
4173 * parser.c (cp_parser_decltype): Push and pop
4174 deferring_access_checks. Reorganize to avoid goto.
4175
4176 2018-02-12 Richard Biener <rguenther@suse.de>
4177
4178 PR c++/84281
4179 * constexpr.c (cxx_eval_vec_init_1): Use a RANGE_EXPR to compact
4180 uniform constructors and delay allocating them fully.
4181
4182 2018-02-09 Jason Merrill <jason@redhat.com>
4183
4184 PR c++/84036 - ICE with variadic capture.
4185 Handle variadic capture proxies more like non-variadic.
4186 * lambda.c (build_capture_proxy): Remove workaround.
4187 * pt.c (find_parameter_packs_r): The proxy is a pack.
4188 (instantiate_class_template_1): Remove dead lambda code.
4189 (extract_fnparm_pack): Don't make_pack_expansion.
4190 (extract_locals_r): Don't strip a pack expansion.
4191 (tsubst_pack_expansion): Handle proxy packs. Use
4192 PACK_EXPANSION_EXTRA_ARGS less.
4193 (tsubst_decl) [FIELD_DECL]: Don't register_specialization.
4194 (tsubst_copy) [FIELD_DECL]: Don't retrieve*_specialization.
4195 [VAR_DECL]: Handle ARGUMENT_PACK_SELECT.
4196 (tsubst_expr) [DECL_EXPR]: Handle proxy packs.
4197 (tsubst_copy_and_build) [VAR_DECL]: Handle proxy packs normally.
4198
4199 2018-02-10 Jakub Jelinek <jakub@redhat.com>
4200
4201 PR sanitizer/83987
4202 * tree.c (cp_free_lang_data): Revert 2018-01-23 change.
4203
4204 2018-02-09 Jason Merrill <jason@redhat.com>
4205
4206 PR c++/81917 - ICE with void_t and partial specialization.
4207 * pt.c (instantiate_class_template_1): Set TYPE_BEING_DEFINED before
4208 calling most_specialized_partial_spec.
4209
4210 2018-02-09 Nathan Sidwell <nathan@acm.org>
4211
4212 PR c/84293
4213 * typeck.c (cp_build_indirect_ref_1, build_reinterpret_cast_1):
4214 Pass expr location to strict_aliasing_warning.
4215
4216 2018-02-09 Jason Merrill <jason@redhat.com>
4217
4218 PR c++/84296 - ICE with qualified-id in template.
4219 PR c++/83714
4220 * pt.c (unknown_base_ref_p): New.
4221 (instantiation_dependent_scope_ref_p): Use it instead of
4222 any_dependent_bases_p.
4223
4224 2018-02-09 Marek Polacek <polacek@redhat.com>
4225 Jakub Jelinek <jakub@redhat.com>
4226
4227 PR c++/83659
4228 * constexpr.c (cxx_fold_indirect_ref): Sync some changes from
4229 fold_indirect_ref_1, including poly_*int64. Verify first that
4230 tree_fits_poly_int64_p (op01). Formatting fixes.
4231
4232 2018-02-08 Paolo Carlini <paolo.carlini@oracle.com>
4233
4234 * constexpr.c (cxx_eval_component_reference): Use INDIRECT_REF_P.
4235 * lambda.c (build_capture_proxy): Likewise.
4236 * search.c (field_access_p): Likewise.
4237 * semantics.c (omp_clause_decl, omp_privatize_field,
4238 finish_omp_clauses): Likewise.
4239
4240 2018-02-08 Paolo Carlini <paolo.carlini@oracle.com>
4241
4242 PR c++/83806
4243 * typeck.c (decay_conversion): Use mark_rvalue_use for the special
4244 case of nullptr too.
4245
4246 2018-02-08 Nathan Sidwell <nathan@acm.org>
4247
4248 * class.c (finish_struct): Fix std:initializer_list diagnostic
4249 formatting.
4250
4251 2018-02-08 Paolo Carlini <paolo.carlini@oracle.com>
4252
4253 PR c++/83204
4254 * pt.c (tsubst_copy_and_build): Use force_paren_expr for INDIRECT_REF.
4255
4256 2018-02-07 Jakub Jelinek <jakub@redhat.com>
4257
4258 PR c++/84082
4259 * parser.c (cp_parser_dot_deref_incomplete): New function.
4260 (cp_parser_postfix_dot_deref_expression): Use it.
4261
4262 2018-02-07 David Malcolm <dmalcolm@redhat.com>
4263
4264 PR c++/81610
4265 PR c++/80567
4266 * name-lookup.c (suggest_rid_p): New function.
4267 (lookup_name_fuzzy): Replace enum-rid-filtering logic with call to
4268 suggest_rid_p.
4269
4270 2018-02-07 Jason Merrill <jason@redhat.com>
4271
4272 PR c++/84182 - ICE with captured lambda
4273 PR c++/84181
4274 * pt.c (extract_locals_r, extract_local_specs): New.
4275 (tsubst_pack_expansion): Use them.
4276
4277 2018-02-07 Martin Liska <mliska@suse.cz>
4278
4279 PR c++/84059.
4280 * class.c (add_method): Append argument value.
4281 * cp-tree.h (maybe_version_functions): Add new argument.
4282 * decl.c (decls_match): Call it if a declaration does not
4283 have DECL_FUNCTION_VERSIONED.
4284 (maybe_version_functions): record argument is added.
4285
4286 2018-02-05 Marek Polacek <polacek@redhat.com>
4287
4288 * class.c: Remove unused global variables.
4289 (build_primary_vtable): Don't gather statistics.
4290 (print_class_statistics): Remove.
4291 * cp-tree.h (print_class_statistics): Remove.
4292 * tree.c (cxx_print_statistics): Don't call print_class_statistics.
4293
4294 2018-02-02 Paolo Carlini <paolo.carlini@oracle.com>
4295
4296 * class.c (is_really_empty_class): Use DECL_UNNAMED_BIT_FIELD.
4297 * constexpr.c (cx_check_missing_mem_inits): Likewise.
4298 * decl.c (next_initializable_field, find_decomp_class_base,
4299 cp_finish_decomp): Likewise.
4300 * typeck2.c (process_init_constructor_record): Likewise.
4301
4302 2018-02-02 Jason Merrill <jason@redhat.com>
4303
4304 PR c++/84181 - ICE with lambda parm in template argument.
4305 * tree.c (strip_typedefs_expr): Use cp_tree_operand_length.
4306
4307 2018-02-01 Jason Merrill <jason@redhat.com>
4308
4309 PR c++/84160 - ICE with nested variadic capture.
4310 * lambda.c (is_capture_proxy_with_ref): New.
4311 (insert_capture_proxy): Don't set DECL_CAPTURED_VARIABLE from a
4312 COMPONENT_REF.
4313 * expr.c (mark_use): Use is_capture_proxy_with_ref.
4314 * constexpr.c (potential_constant_expression_1): Likewise.
4315 * semantics.c (process_outer_var_ref): Likewise.
4316
4317 2018-02-01 Marek Polacek <polacek@redhat.com>
4318
4319 PR c++/84125
4320 * typeck.c (build_address): Relax the assert when
4321 processing_template_decl.
4322
4323 2018-02-01 Jason Merrill <jason@redhat.com>
4324
4325 PR c++/84126 - ICE with variadic generic lambda
4326 PR c++/84036
4327 PR c++/82249
4328 * pt.c (tsubst_pack_expansion): Handle function parameter_packs in
4329 PACK_EXPANSION_EXTRA_ARGS.
4330
4331 2018-02-01 Paolo Carlini <paolo.carlini@oracle.com>
4332
4333 PR c++/83796
4334 * call.c (convert_like_real): If w're initializing from {} explicitly
4335 call abstract_virtuals_error_sfinae.
4336
4337 2018-01-31 Jason Merrill <jason@redhat.com>
4338 Jakub Jelinek <jakub@redhat.com>
4339
4340 PR c++/83993
4341 * constexpr.c (cxx_eval_outermost_constant_expr): Build NOP_EXPR
4342 around non-constant ADDR_EXPRs rather than clearing TREE_CONSTANT
4343 on ADDR_EXPR.
4344
4345 2018-01-31 Jakub Jelinek <jakub@redhat.com>
4346
4347 PR c++/83993
4348 * constexpr.c (diag_array_subscript): Emit different diagnostics
4349 if TYPE_DOMAIN (arraytype) is NULL.
4350 (cxx_eval_array_reference, cxx_eval_store_expression): For arrays
4351 with NULL TYPE_DOMAIN use size_zero_node as nelts.
4352
4353 2018-01-31 Paolo Carlini <paolo.carlini@oracle.com>
4354
4355 PR c++/84092
4356 * semantics.c (finish_qualified_id_expr): When handling an
4357 UNBOUND_CLASS_TEMPLATE only adjust qualifying_class and expr.
4358
4359 2018-01-31 Marek Polacek <polacek@redhat.com>
4360
4361 PR c++/84138
4362 * cp-gimplify.c (cp_fold): Check if X is an error node before
4363 calling useless_type_conversion_p.
4364
4365 2018-01-30 Jason Merrill <jason@redhat.com>
4366
4367 PR c++/84091 - ICE with local class in lambda in template.
4368 * decl2.c (determine_visibility): Look for outer containing template
4369 instantiation.
4370
4371 PR c++/84098 - ICE with lambda in template NSDMI.
4372 * pt.c (instantiate_class_template_1): Ignore more lambdas.
4373
4374 2018-01-29 Jason Merrill <jason@redhat.com>
4375
4376 PR c++/68810 - wrong location for reinterpret_cast error.
4377 * cvt.c (cp_convert_to_pointer): Always build a CONVERT_EXPR when
4378 !dofold.
4379
4380 2018-01-29 Marek Polacek <polacek@redhat.com>
4381
4382 PR c++/83996
4383 * constexpr.c (cxx_fold_indirect_ref): Compute ((foo *)&fooarray)[1]
4384 => fooarray[1] in offset_int.
4385
4386 2018-01-29 Jason Merrill <jason@redhat.com>
4387
4388 PR c++/83942 - wrong unused warning with static_cast.
4389 * cvt.c (ocp_convert): Call mark_rvalue_use.
4390
4391 2018-01-26 Jason Merrill <jason@redhat.com>
4392
4393 PR c++/83956 - wrong dtor error with anonymous union
4394 * method.c (walk_field_subobs): Variant members only affect
4395 deletedness.
4396 (maybe_explain_implicit_delete): Pass &deleted_p for diagnostic.
4397
4398 PR c++/84036 - ICE with variadic capture.
4399 PR c++/82249
4400 * pt.c (tsubst_pack_expansion): When optimizing a simple
4401 substitution, pull a single pack expansion out of its pack.
4402
4403 PR c++/82514 - ICE with local class in generic lambda.
4404 * pt.c (regenerated_lambda_fn_p): Remove.
4405 (enclosing_instantiation_of): Don't use it.
4406 (tsubst_function_decl): Call enclosing_instantiation_of.
4407
4408 * pt.c (lookup_template_class_1): Add sanity check.
4409 * name-lookup.c (do_pushtag): Don't add closures to local_classes.
4410
4411 2018-01-25 Jakub Jelinek <jakub@redhat.com>
4412
4413 PR c++/84031
4414 * decl.c (find_decomp_class_base): Ignore unnamed bitfields. Ignore
4415 recursive calls that return ret.
4416 (cp_finish_decomp): Ignore unnamed bitfields.
4417
4418 2018-01-23 Jason Merrill <jason@redhat.com>
4419
4420 PR c++/82249 - wrong mismatched pack length error.
4421 * pt.c (extract_fnparm_pack, tsubst_pack_expansion): Handle
4422 unsubstituted function parameter pack.
4423
4424 2018-01-23 Paolo Carlini <paolo.carlini@oracle.com>
4425
4426 PR c++/83921
4427 * decl.c (check_for_uninitialized_const_var): Not static; add
4428 bool and tsubst_flags_t parameters; adjust to be used both in
4429 constexpr context and not.
4430 * constexpr.c (potential_constant_expression_1): Use the above.
4431 * cp-tree.h (check_for_uninitialized_const_var): Declare.
4432
4433 2018-01-23 Jason Merrill <jason@redhat.com>
4434
4435 PR c++/83947 - ICE with auto declarations.
4436 * pt.c (do_auto_deduction): Don't deduce from an auto decl.
4437 * decl.c (undeduced_auto_decl): Limit to vars and fns.
4438
4439 2018-01-23 David Malcolm <dmalcolm@redhat.com>
4440
4441 PR c++/83974
4442 * pt.c (tsubst_copy_and_build) <CONSTRUCTOR>: Remove early bailout
4443 for pointer to member function types.
4444
4445 2018-01-23 Jakub Jelinek <jakub@redhat.com>
4446
4447 PR sanitizer/83987
4448 * tree.c (cp_free_lang_data): Change DECL_VALUE_EXPR of
4449 DECL_OMP_PRIVATIZED_MEMBER vars to error_mark_node.
4450
4451 2018-01-23 Nathan Sidwell <nathan@acm.org>
4452
4453 PR c++/83988
4454 * pt.c (tsubst_baselink): Remove optype assert.
4455 * ptree.c (cxx_print_xnode): <case BASELINK> Print BASELINK_OPTYPE.
4456
4457 2018-01-23 Jakub Jelinek <jakub@redhat.com>
4458
4459 PR c++/83958
4460 * decl.c (cp_finish_decomp): Diagnose if reference structure binding
4461 refers to incomplete type.
4462
4463 2018-01-23 Nathan Sidwell <nathan@acm.org>
4464
4465 Deprecate ARM-era for scope handling
4466 * decl.c (poplevel): Flag_new_for_scope is a boolean-like.
4467 (cxx_init_decl_processing): Deprecate flag_new_for_scope being
4468 cleared.
4469 * name-lookup.c (check_for_out_of_scope_variable): Deprecate and
4470 cleanup handling.
4471 * semantics.c (begin_for_scope): Flag_new_for_scope is
4472 boolean-like.
4473 (finish_for_stmt, begin_range_for_stmt): Likewise.
4474
4475 2018-01-22 Jason Merrill <jason@redhat.com>
4476
4477 PR c++/83720
4478 * decl2.c (determine_visibility): Fix template_decl handling
4479 instead of blocking it.
4480
4481 PR c++/83720 - ICE with lambda and LTO.
4482 * decl2.c (determine_visibility): Clear template_decl for
4483 function-scope decls. Propagate anonymous linkage from containing
4484 function.
4485
4486 2018-01-22 Marek Polacek <polacek@redhat.com>
4487
4488 PR c++/81933
4489 * typeck2.c (split_nonconstant_init_1): Return false if we didn't
4490 split out anything.
4491
4492 2018-01-22 Ville Voutilainen <ville.voutilainen@gmail.com>
4493
4494 PR c++/83895
4495 * decl.c (grokdeclarator): Don't diagnose extra parens
4496 on typedefs.
4497
4498 2018-01-19 Jakub Jelinek <jakub@redhat.com>
4499
4500 PR c++/81167
4501 * call.c (joust): Use TREE_TYPE (source) if source is
4502 a POINTER_TYPE_P rather than if ! DECL_CONSTRUCTOR_P (w->fn).
4503
4504 PR c++/83919
4505 * typeck.c (convert_for_assignment): Suppress warn_ignored_qualifiers
4506 for direct enum init.
4507 * decl.c (reshape_init): Likewise.
4508
4509 2018-01-19 Marek Polacek <polacek@redhat.com>
4510
4511 * constexpr.c (fold_simple): Simplify.
4512
4513 2018-01-18 Jason Merrill <jason@redhat.com>
4514
4515 PR c++/83714
4516 * search.c (any_dependent_bases_p): Handle null TREE_BINFO.
4517 * pt.c (instantiation_dependent_scope_ref_p): True if
4518 any_dependent_bases_p.
4519
4520 2018-01-18 Paolo Carlini <paolo.carlini@oracle.com>
4521
4522 * cp-tree.h: Fix comment typo (DECL_NON_TRIVIALLY_INITIALIZED_P
4523 vs DECL_NONTRIVIALLY_INITIALIZED_P).
4524
4525 2018-01-18 Jason Merrill <jason@redhat.com>
4526
4527 PR c++/82461 - constexpr list-initialized member
4528 * constexpr.c (potential_constant_expression_1): Check
4529 TARGET_EXPR_DIRECT_INIT_P.
4530
4531 2018-01-18 Paolo Carlini <paolo.carlini@oracle.com>
4532
4533 PR c++/81013
4534 * decl.c (xref_basetypes): Early return upon error about derived
4535 union.
4536
4537 2018-01-18 Nathan Sidwell <nathan@acm.org>
4538
4539 PR c++/83160
4540 * cp-tree.h (mark_use): Declare.
4541 * expr.c (mark_use): Make extern.
4542 * call.c (direct_reference_binding): Set inner conv's
4543 rvaluedness_matches_p, if it is an identity.
4544 (convert_like_real): Mark lvalue or rvalue use for identity as
4545 rvaledness_matches_p demands.
4546
4547 2018-01-18 Jakub Jelinek <jakub@redhat.com>
4548
4549 PR c++/83824
4550 * parser.c (attr_chainon): New function.
4551 (cp_parser_label_for_labeled_statement, cp_parser_decl_specifier_seq,
4552 cp_parser_namespace_definition, cp_parser_init_declarator,
4553 cp_parser_type_specifier_seq, cp_parser_parameter_declaration,
4554 cp_parser_gnu_attributes_opt): Use it.
4555 (cp_parser_member_declaration, cp_parser_objc_class_ivars,
4556 cp_parser_objc_struct_declaration): Likewise. Don't reset
4557 prefix_attributes if attributes is error_mark_node.
4558
4559 2018-01-17 Paolo Carlini <paolo.carlini@oracle.com>
4560
4561 PR c++/78344
4562 * decl.c (grokdeclarator): Do not append the error_mark_node
4563 due to an erroneous optional attribute-specifier-seq.
4564
4565 2018-01-17 Jakub Jelinek <jakub@redhat.com>
4566
4567 PR c++/83897
4568 * cp-gimplify.c (cp_maybe_instrument_return): Handle
4569 CLEANUP_POINT_EXPR.
4570
4571 2018-01-17 Paolo Carlini <paolo.carlini@oracle.com>
4572
4573 PR c++/81054
4574 * constexpr.c (ensure_literal_type_for_constexpr_object): Return
4575 error_mark_node when we give an error.
4576 * decl.c (cp_finish_decl): Use the latter.
4577
4578 2018-01-17 Nathan Sidwell <nathan@acm.org>
4579
4580 PR c++/83287
4581 * init.c (build_raw_new_expr): Scan list for lookups to keep.
4582
4583 2018-01-17 David Malcolm <dmalcolm@redhat.com>
4584
4585 PR c++/83814
4586 * expr.c (fold_for_warn): Move from c-common.c, reducing to just
4587 the C++ part. If processing a template, call
4588 fold_non_dependent_expr rather than fully folding.
4589
4590 2018-01-17 Jason Merrill <jason@redhat.com>
4591
4592 PR c++/81067 - redundant NULL warning.
4593 * call.c (convert_like_real): Restore null_node handling.
4594
4595 2018-01-17 Jason Merrill <jason@redhat.com>
4596
4597 PR c++/81843 - ICE with variadic member template.
4598 PR c++/72801
4599 * pt.c (unify_pack_expansion): Don't try to deduce enclosing
4600 template args.
4601
4602 2018-01-17 David Malcolm <dmalcolm@redhat.com>
4603
4604 PR c++/83799
4605 * pt.c (type_dependent_expression_p): Strip any location wrapper
4606 before testing tree codes.
4607 (selftest::test_type_dependent_expression_p): New function.
4608 (selftest::cp_pt_c_tests): Call it.
4609
4610 2018-01-17 Nathan Sidwell <nathan@acm.org>
4611
4612 PR c++/83739
4613 * pt.c (tsubst_expr) <case RANGE_FOR_STMT>: Rebuild a range_for if
4614 this not a final instantiation.
4615
4616 2018-01-16 Jason Merrill <jason@redhat.com>
4617
4618 PR c++/83714 - ICE checking return in template.
4619 * typeck.c (check_return_expr): Call build_non_dependent_expr.
4620
4621 2018-01-16 Jakub Jelinek <jakub@redhat.com>
4622
4623 PR c++/83817
4624 * pt.c (tsubst_copy_and_build) <case CALL_EXPR>: If function
4625 is AGGR_INIT_EXPR rather than CALL_EXPR, set AGGR_INIT_FROM_THUNK_P
4626 instead of CALL_FROM_THUNK_P.
4627
4628 PR c++/83825
4629 * name-lookup.c (member_vec_dedup): Return early if len is 0.
4630 (resort_type_member_vec, set_class_bindings,
4631 insert_late_enum_def_bindings): Use vec qsort method instead of
4632 calling qsort directly.
4633
4634 2018-01-15 Martin Sebor <msebor@redhat.com>
4635
4636 PR c++/83588
4637 * class.c (find_flexarrays): Make a record of multiple flexible array
4638 members.
4639
4640 2018-01-12 Jason Merrill <jason@redhat.com>
4641
4642 PR c++/83186 - ICE with static_cast of list-initialized temporary.
4643 * typeck.c (build_static_cast): Use build_non_dependent_expr.
4644
4645 2018-01-12 Nathan Sidwell <nathan@acm.org>
4646
4647 * cp-tree.h (mark_rvalue_use): Add parm name.
4648 * expr.c (mark_lvalue_use, mark_lvalue_use_nonread): Move next to
4649 mark_rvalue_use.
4650 * call.c (convert_like_real): Fix formatting.
4651
4652 2018-01-11 Jason Merrill <jason@redhat.com>
4653
4654 PR c++/82728 - wrong -Wunused-but-set-variable
4655 PR c++/82799
4656 PR c++/83690
4657 * call.c (perform_implicit_conversion_flags): Call mark_rvalue_use.
4658 * decl.c (case_conversion): Likewise.
4659 * semantics.c (finish_static_assert): Call
4660 perform_implicit_conversion_flags.
4661
4662 2018-01-11 Nathan Sidwell <nathan@acm.org>
4663
4664 * method.c (enum mangling_flags): Delete long-dead enum.
4665
4666 2018-01-10 Paolo Carlini <paolo.carlini@oracle.com>
4667
4668 * parser.c (cp_parser_std_attribute_spec): When
4669 token_pair::require_open / require_close return false simply
4670 return error_mark_node, avoid duplicate cp_parser_error about
4671 expected '(' / ')', respectively.
4672
4673 2018-01-10 David Malcolm <dmalcolm@redhat.com>
4674
4675 PR c++/43486
4676 * call.c (null_ptr_cst_p): Strip location wrappers when
4677 converting from '0' to a pointer type in C++11 onwards.
4678 (conversion_null_warnings): Replace comparison with null_node with
4679 call to null_node_p.
4680 (build_over_call): Likewise.
4681 * cp-gimplify.c (cp_fold): Remove the early bailout when
4682 processing_template_decl.
4683 * cp-lang.c (selftest::run_cp_tests): Call
4684 selftest::cp_pt_c_tests and selftest::cp_tree_c_tests.
4685 * cp-tree.h (cp_expr::maybe_add_location_wrapper): New method.
4686 (selftest::run_cp_tests): Move decl to bottom of file.
4687 (null_node_p): New inline function.
4688 (selftest::cp_pt_c_tests): New decl.
4689 (selftest::cp_tree_c_tests): New decl.
4690 * cvt.c (build_expr_type_conversion): Replace comparison with
4691 null_node with call to null_node_p.
4692 * error.c (args_to_string): Likewise.
4693 * except.c (build_throw): Likewise.
4694 * mangle.c (write_expression): Skip location wrapper nodes.
4695 * parser.c (literal_integer_zerop): New function.
4696 (cp_parser_postfix_expression): Call maybe_add_location_wrapper on
4697 the result for RID_TYPEID. Pass true for new "wrap_locations_p"
4698 param of cp_parser_parenthesized_expression_list. When calling
4699 warn_for_memset, replace integer_zerop calls with
4700 literal_integer_zerop, eliminating the double logical negation
4701 cast to bool. Eliminate the special-casing for CONST_DECL in
4702 favor of the fold_for_warn within warn_for_memset.
4703 (cp_parser_parenthesized_expression_list): Add "wrap_locations_p"
4704 param, defaulting to false. Convert "expr" to a cp_expr, and call
4705 maybe_add_location_wrapper on it when wrap_locations_p is true.
4706 (cp_parser_unary_expression): Call maybe_add_location_wrapper on
4707 the result for RID_ALIGNOF and RID_SIZEOF.
4708 (cp_parser_builtin_offsetof): Likewise.
4709 * pt.c: Include "selftest.h".
4710 (tsubst_copy): Handle location wrappers.
4711 (tsubst_copy_and_build): Likewise.
4712 (build_non_dependent_expr): Likewise.
4713 (selftest::test_build_non_dependent_expr): New function.
4714 (selftest::cp_pt_c_tests): New function.
4715 * tree.c: Include "selftest.h".
4716 (lvalue_kind): Handle VIEW_CONVERT_EXPR location wrapper nodes.
4717 (selftest::test_lvalue_kind): New function.
4718 (selftest::cp_tree_c_tests): New function.
4719 * typeck.c (string_conv_p): Strip any location wrapper from "exp".
4720 (cp_build_binary_op): Replace comparison with null_node with call
4721 to null_node_p.
4722 (build_address): Use location of operand when building address
4723 expression.
4724
4725 2018-01-10 Marek Polacek <polacek@redhat.com>
4726
4727 PR c++/82541
4728 * call.c (build_conditional_expr_1): Check complain before warning.
4729 * pt.c (tsubst_copy_and_build) <case COND_EXPR>: Suppress
4730 -Wduplicated-branches.
4731
4732 2018-01-10 Jakub Jelinek <jakub@redhat.com>
4733
4734 PR c++/81327
4735 * call.c (maybe_warn_class_memaccess): Add forward declaration.
4736 Change last argument from tree * to const vec<tree, va_gc> *, adjust
4737 args uses and check number of operands too. Don't strip away any
4738 nops. Use maybe_constant_value when looking for INTEGER_CST args.
4739 Deal with src argument not having pointer type. Check
4740 tree_fits_uhwi_p before calling tree_to_uhwi. Remove useless
4741 test.
4742 (build_over_call): Call maybe_warn_class_memaccess here on the
4743 original arguments.
4744 (build_cxx_call): Rather than here on converted arguments.
4745
4746 2018-01-10 Paolo Carlini <paolo.carlini@oracle.com>
4747
4748 PR c++/81055
4749 * init.c (build_vec_init): Avoid building an INIT_EXPR with
4750 error_mark_node as second argument.
4751
4752 2018-01-09 Jakub Jelinek <jakub@redhat.com>
4753
4754 PR c++/83734
4755 * constexpr.c (cxx_eval_statement_list): Ignore DEBUG_BEGIN_STMTs
4756 in STATEMENT_LIST. Remove unneeded assert.
4757
4758 2018-01-03 Richard Sandiford <richard.sandiford@linaro.org>
4759 Alan Hayward <alan.hayward@arm.com>
4760 David Sherwood <david.sherwood@arm.com>
4761
4762 * constexpr.c (cxx_eval_array_reference): Handle polynomial
4763 VECTOR_CST_NELTS.
4764 (cxx_fold_indirect_ref): Handle polynomial TYPE_VECTOR_SUBPARTS.
4765 * call.c (build_conditional_expr_1): Likewise.
4766 * decl.c (cp_finish_decomp): Likewise.
4767 * mangle.c (write_type): Likewise.
4768 * typeck.c (structural_comptypes): Likewise.
4769 (cp_build_binary_op): Likewise.
4770 * typeck2.c (process_init_constructor_array): Likewise.
4771
4772 2018-01-03 Jakub Jelinek <jakub@redhat.com>
4773
4774 PR c++/83555
4775 * typeck.c (build_static_cast_1): For static casts to reference types,
4776 call build_base_path with flag_delete_null_pointer_checks as nonnull
4777 instead of always false. When -fsanitize=null, call
4778 ubsan_maybe_instrument_reference on the NULL reference INTEGER_CST.
4779 * cp-gimplify.c (cp_genericize_r): Don't walk subtrees of UBSAN_NULL
4780 call if the first argument is INTEGER_CST with REFERENCE_TYPE.
4781
4782 2018-01-03 Nathan Sidwell <nathan@acm.org>
4783
4784 PR c++/83667
4785 * method.c (make_alias_for): Copy DECL_CONTEXT.
4786
4787 2018-01-03 Marek Polacek <polacek@redhat.com>
4788
4789 PR c++/83592
4790 * decl.c (grokdeclarator): Don't warn about MVP in typename context.
4791
4792 2018-01-03 Jakub Jelinek <jakub@redhat.com>
4793
4794 PR preprocessor/83602
4795 * name-lookup.c (lookup_name_fuzzy): Don't use macro_use_before_def
4796 for builtin macros.
4797
4798 PR c++/83634
4799 * cp-gimplify.c (cp_fold) <case NOP_EXPR>: If the operand folds to
4800 error_mark_node, return error_mark_node.
4801
4802 Update copyright years.
4803
4804 2018-01-02 Jakub Jelinek <jakub@redhat.com>
4805
4806 PR c++/83556
4807 * tree.c (replace_placeholders_r): Pass NULL as last argument to
4808 cp_walk_tree instead of d->pset. If non-TREE_CONSTANT and
4809 non-PLACEHOLDER_EXPR tree has been seen already, set *walk_subtrees
4810 to false and return.
4811 (replace_placeholders): Pass NULL instead of &pset as last argument
4812 to cp_walk_tree.
4813
4814 2018-01-02 Nathan Sidwell <nathan@acm.org>
4815
4816 * constexpr.c (cxx_bind_parameters_in_call): Remove unneeded local
4817 lval var.
4818 \f
4819 Copyright (C) 2018 Free Software Foundation, Inc.
4820
4821 Copying and distribution of this file, with or without modification,
4822 are permitted in any medium without royalty provided the copyright
4823 notice and this notice are preserved.