re PR c++/54858 (ICE in cp_tree_equal)
[gcc.git] / gcc / cp / ChangeLog
1 2012-10-08 Jakub Jelinek <jakub@redhat.com>
2
3 PR c++/54858
4 * tree.c (cp_tree_equal): Handle FIELD_DECL.
5
6 2012-10-08 Jason Merrill <jason@redhat.com>
7
8 Allow dynamic initialization of thread_locals.
9 * decl.c: Define tls_aggregates.
10 (expand_static_init): Remove sorry. Add to tls_aggregates.
11 * cp-tree.h: Declare tls_aggregates.
12 * call.c (set_up_extended_ref_temp): Add to tls_aggregates.
13 * decl2.c (var_needs_tls_wrapper): New.
14 (var_defined_without_dynamic_init): New.
15 (get_tls_init_fn, get_tls_wrapper_fn): New.
16 (generate_tls_wrapper, handle_tls_init): New.
17 (cp_write_global_declarations): Call handle_tls_init and
18 enerate_tls_wrapper.
19 * mangle.c (write_guarded_var_name): Split out from..
20 (mangle_guard_variable): ...here.
21 (mangle_tls_init_fn, mangle_tls_wrapper_fn): Use it.
22 (decl_tls_wrapper_p): New.
23 * semantics.c (finish_id_expression): Replace use of thread_local
24 variable with a call to its wrapper.
25
26 * decl.c (get_thread_atexit_node): New.
27 (register_dtor_fn): Use it for TLS.
28
29 Partial implementation of C++11 thread_local.
30 * decl.c (cp_finish_decl): Remove errors about non-trivial
31 initialization and destruction of TLS variables.
32 (register_dtor_fn): Add sorry about TLS variables.
33 (expand_static_init): Add sorry about non-local TLS variables,
34 or error with __thread.
35 Don't emit thread-safety guards for local TLS variables.
36 (grokdeclarator): thread_local in a function implies static.
37 * decl.h: Adjust prototype.
38 * decl2.c (get_guard): Copy DECL_TLS_MODEL.
39 * parser.c (cp_parser_set_storage_class, cp_parser_set_decl_spec_type)
40 (set_and_check_decl_spec_loc): Take the token rather than the location.
41 Distinguish between __thread and thread_local.
42 (cp_parser_set_storage_class): Don't complain about thread_local before
43 extern/static.
44 (token_is__thread): New.
45 * call.c (make_temporary_var_for_ref_to_temp): Handle TLS.
46 * cp-tree.h (DECL_GNU_TLS_P): New.
47 (cp_decl_specifier_seq): Add gnu_thread_keyword_p.
48
49 2012-10-08 Dodji Seketeli <dodji@redhat.com>
50
51 PR c++/53528 C++11 attribute support
52 * cp-tree.h (enum cpp0x_warn_str::CPP0X_ATTRIBUTES): New member.
53 (enum cp_decl_spec::ds_std_attribute): New enumerator.
54 (struct cp_decl_specifier_seq::std_attributes): New field.
55 (cxx_alignas_expr, warn_misplaced_attr_for_class_type): Declare
56 new functions.
57 (check_tag_decl): Take an extra parameter for explicit
58 instantiations.
59 * decl.c (warn_misplaced_attr_for_class_type): Extract from ...
60 (check_tag_decl): ... here. Add check for c++11 attributes being
61 applied to an explicit instantiation. Take an extra parameter for
62 explicit instantiations.
63 (grokdeclarator): Make sure a c++11 attribute after an array
64 declarator appertains to the array, an attribute after a function
65 declarator appertains to the function type, an attribute after a
66 declarator-id appertains to the entity being declared, and an
67 attribute after a pointer declarator appertain to the pointer.
68 * decl2.c (is_late_template_attribute): Use get_attribute_name.
69 * error.c (maybe_warn_cpp0x): Support
70 CPP0X_GENERALIZED_ATTRIBUTES.
71 * parser.c (cp_next_tokens_can_be_attribute_p)
72 (cp_next_tokens_can_be_gnu_attribute_p)
73 (cp_next_tokens_can_be_std_attribute_p)
74 (cp_nth_tokens_can_be_attribute_p)
75 (cp_nth_tokens_can_be_gnu_attribute_p)
76 (cp_nth_tokens_can_be_std_attribute_p)
77 (cp_parser_gnu_attribute_list, cp_parser_std_attribute)
78 (cp_parser_std_attribute_spec, cp_parser_std_attribute_spec_seq)
79 (cp_parser_attributes_opt, cp_parser_std_attribute_list): New
80 static functions.
81 (cp_parser_gnu_attributes_opt): Replace cp_parser_attributes_opt.
82 (cp_parser_gnu_attribute_list): Replace cp_parser_attribute_list.
83 (cp_parser_postfix_expression): Disallow "[[" tokens here.
84 (cp_parser_label_for_labeled_statement): Use take an extra
85 parameter for attributes.
86 (cp_parser_block_declaration): Use
87 cp_nth_tokens_can_be_std_attribute_p here.
88 (cp_parser_decl_specifier_seq): Likewise. Store C++11 attributes
89 that appears in in decl specifiers in cp_decl_specifier_seq::std_attributes.
90 declaration. Emit proper warning about misplaced c++11 attributes
91 for class type.
92 (cp_parser_explicit_instantiation): Adjust call to check_tag_decl.
93 (cp_parser_init_declarator): Parsing attributes here is no more a
94 GNU extension in c++-11.
95 (cp_parser_type_specifier_seq): Use
96 cp_next_tokens_can_be_attribute_p.
97 (cp_parser_direct_declarator): Likewise. Hang c++11 attributes
98 following the declarator to its syntactic construct. It'll later
99 be applied to the proper appertaining entity by grokdeclarator.
100 (cp_parser_ptr_operator): Likewise.
101 (make_declarator): Initialize cp_declarator::std_attribute.
102 (make_pointer_declarator, make_reference_declarator)
103 (make_ptrmem_declarator, cp_parser_make_indirect_declarator): Take
104 attributes that appertain to the pointer/reference in argument.
105 (cp_parser_ptr_operator): Take an out parameter for c++11
106 attributes. Update comments.
107 (cp_parser_new_declarator_opt)
108 (cp_parser_conversion_declarator_opt): Adjust.
109 (cp_parser_declarator): Likewise. Handle C++11 attributes.
110 Rename attributes to gnu_attribute for better legibility.
111 (cp_parser_simple_declaration): Update comment.
112 (cp_parser_class_specifier_1): Parse GNU attributes specifically
113 (cp_parser_enum_specifier): Accept only gnu attributes after the
114 specifier.
115 (cp_parser_member_declaration): Don't clear attributes -- intended
116 for the entity being declared -- too early because check_tag_decl
117 needs them.
118 (cp_parser_statement): Update comment. Parse optional c++11
119 attributes at the beginning of the relevant kind of statements and
120 ignore them, for now, unless when calling
121 cp_parser_label_for_labeled_statement.
122 (cp_parser_label_for_labeled_statement): Take c++11 attributes
123 in parameter.
124 * semantics.c (potential_constant_expression_1): Likewise.
125 * typeck.c (fundamental_alignment_p, cxx_alignas_expr): New public
126 functions.
127
128 2012-10-07 Paolo Carlini <paolo.carlini@oracle.com>
129
130 * pt.c (fold_non_dependent_expr_sfinae): Remove static specifier.
131 (tsubst_copy_and_build): Use get_target_expr_sfinae.
132 * call.c (build_conditional_expr_1, convert_like_real): Likewise.
133 * cvt.c (build_up_reference): Likewise.
134 (ocp_convert): Use abstract_virtuals_error_sfinae.
135 (build_up_reference): Propagate complain to cp_build_addr_expr.
136 * decl.c (compute_array_index_type): Use fold_non_dependent_expr_sfinae.
137 * cp-tree.h: Update declarations.
138
139 * cvt.c (build_expr_type_conversion): Tidy.
140
141 * tree.c (stabilize_aggr_init): Change to static.
142
143 2012-10-07 Paolo Carlini <paolo.carlini@oracle.com>
144
145 PR c++/51422
146 * semantics.c (is_normal_capture_proxy): Return true for
147 error_mark_node as DECL_VALUE_EXPR.
148
149 2012-10-05 Jakub Jelinek <jakub@redhat.com>
150
151 * cp-tree.h (SIZEOF_EXPR_TYPE_P): Define.
152 * tree.c (cp_tree_equal): Handle SIZEOF_EXPR with
153 SIZEOF_EXPR_TYPE_P.
154 * mangle.c (write_expression): Likewise.
155 * cxx-pretty-print.c (pp_cxx_unary_expression): Likewise.
156 * error.c (dump_expr): Likewise.
157 * parser.c (cp_parser_unary_expression): For sizeof call
158 cxx_sizeof_or_alignof_{type,expr} just for diagnostics and
159 return SIZEOF_EXPR with the operand.
160 * pt.c (tsubst_copy, tsubst_copy_and_build): For SIZEOF_EXPR,
161 call cxx_sizeof_or_alignof_{type,expr} for diagnostics, but
162 return SIZEOF_EXPR with tsubsted operand.
163 (value_dependent_expression_p): Handle SIZEOF_EXPR with
164 SIZEOF_EXPR_TYPE_P.
165 (instantiation_dependent_r): Likewise.
166 * call.c (null_ptr_cst_p): Call maybe_constant_value for C++98.
167 * semantics.c (finish_call_expr): Call
168 sizeof_pointer_memaccess_warning if needed.
169 (cxx_eval_constant_expression): Handle SIZEOF_EXPR.
170 (potential_constant_expression_1): Remove early exit for
171 C++98. Handle PROPERTY_REF.
172 * decl.c (duplicate_decls): When redeclaring a builtin function,
173 keep the merged decl builtin also if newdecl is a gnu_inline
174 inline definition.
175 (fold_sizeof_expr_r): New function.
176 (compute_array_index_type): Fold SIZEOF_EXPRs in itype.
177 * cp-gimplify.c (cp_genericize_r): Fold SIZEOF_EXPR.
178 * typeck.c (cp_build_binary_op): For warn_for_sign_compare
179 try harder using maybe_constant_value to get INTEGER_CSTs.
180
181 * decl.c (stabilize_vla_size): Call pointer_set_destroy
182 at the end.
183
184 2012-10-04 Arnaud Charlet <charlet@adacore.com>
185
186 * decl2.c (cp_write_global_declarations): Fix handling of
187 -fdump-ada-spec*.
188
189 2012-10-03 Jakub Jelinek <jakub@redhat.com>
190
191 PR c++/54777
192 * semantics.c (cxx_eval_constant_expression) <case COMPOUND_EXPR>: If
193 not ignoring the second operand, pass the original second operand
194 and not one with stripped nops to cxx_eval_constant_expression.
195
196 2012-10-01 Jason Merrill <jason@redhat.com>
197
198 * decl.c (check_initializer): Set DECL_NONTRIVIALLY_INITIALIZED_P
199 for a constructor call.
200 (decl_jump_unsafe): So don't bother checking
201 type_has_nontrivial_default_init.
202 * call.c (set_up_extended_ref_temp): Set
203 DECL_NONTRIVIALLY_INITIALIZED_P.
204
205 * cp-tree.h (TYPE_FUNCTION_OR_TEMPLATE_DECL_CHECK): New.
206 (DECL_FRIEND_P, DECL_ANTICIPATED): Use it.
207 (TYPE_FUNCTION_OR_TEMPLATE_DECL_P): New.
208 * name-lookup.c (hidden_name_p): Use it.
209
210 * cp-tree.h (DECL_PRETTY_FUNCTION_P): Just look at the name.
211 * decl.c (cp_make_fname_decl): Adjust.
212
213 2012-09-30 Sharad Singhai <singhai@google.com>
214
215 * decl2.c (cp_write_global_declarations): Use a different method
216 to determine if the dump has ben initialized.
217
218 2012-09-29 Paolo Carlini <paolo.carlini@oracle.com>
219
220 PR c++/54738
221 * decl2.c (build_offset_ref_call_from_tree): Add tsubst_flags_t
222 parameter.
223 * pt.c (tsubst_copy_and_build): Adjust.
224 * parser.c (cp_parser_postfix_expression): Likewise.
225 * cp-tree.h: Adjust declaration.
226
227 2012-09-28 Dodji Seketeli <dodji@redhat.com>
228
229 PR c++/54372 - unused attribute inactive on dependant entities
230 * decl2.c (is_late_template_attribute): "unused" attribute is to
231 be applied at compile time.
232
233 2012-09-25 Dodji Seketeli <dodji@redhat.com>
234
235 PR c++/29028 - Missed unused warning on using declaration
236 * decl.c (poplevel<warn_unused*>): Do not forget that some local
237 bindings are represented by a TREE_LIST.
238
239 2012-09-25 Dodji Seketeli <dodji@redhat.com>
240
241 PR c++/53551 - -Wunused-local-typedefs misses uses
242 * decl.c (make_typename_type): Record the use of typedefs.
243
244 2012-09-27 Jakub Jelinek <jakub@redhat.com>
245
246 * init.c (build_new_1): Don't test TREE_CONSTANT
247 of INTEGER_CST.
248
249 2012-09-25 Paolo Carlini <paolo.carlini@oracle.com>
250
251 PR c++/54526
252 * parser.c (cp_parser_template_id): In C++11 mode simply accept
253 X<::A>.
254
255 2012-09-25 Zhenqiang Chen <zhenqiang.chen@linaro.org>
256
257 PR c++/50970
258 * typeck.c (cp_build_binary_op): Check side effects before generating
259 pfn and delta related expressions.
260
261 2012-09-24 Lawrence Crowl <crowl@google.com>
262
263 * init.c (build_new_1): Change to new double_int API.
264 * decl.c (build_enumerator): Likewise.
265 * typeck2.c (process_init_constructor_array): Likewise.
266 * mangle.c (write_array_type): Likewise.
267
268 2012-09-24 Paolo Carlini <paolo.carlini@oracle.com>
269
270 PR c++/50828
271 * error.c (dump_function_decl): Strip TFF_TEMPLATE_NAME from flags
272 at the outset.
273
274 2012-09-24 Jason Merrill <jason@redhat.com>
275
276 * decl.c (get_atexit_node): Remove dead code.
277
278 * Make-lang.in (cp/parser.o): Depend on decl.h.
279
280 2012-09-20 Paolo Carlini <paolo.carlini@oracle.com>
281
282 PR c++/52432
283 * pt.c (tsubst_copy_and_build): If tf_error is not set in the complain
284 argument don't call unqualified_name_lookup_error.
285
286 2012-09-19 Marc Glisse <marc.glisse@inria.fr>
287
288 PR c++/54581
289 * semantics.c (finish_decltype_type): Make vectors not opaque.
290
291 2012-09-17 Jason Merrill <jason@redhat.com>
292
293 PR c++/54575
294 * pt.c (instantiate_alias_template): New.
295 (tsubst): Use it.
296 (push_access_scope): Allow TYPE_DECL.
297
298 2012-09-14 Jason Merrill <jason@redhat.com>
299
300 PR c++/53661
301 * typeck2.c (check_narrowing): Avoid false positives on conversion
302 from enumeral type.
303
304 2012-09-14 Marc Glisse <marc.glisse@inria.fr>
305
306 PR c++/54427
307 * typeck.c (cp_build_binary_op) [LSHIFT_EXPR, RSHIFT_EXPR, EQ_EXPR,
308 NE_EXPR, LE_EXPR, GE_EXPR, LT_EXPR, GT_EXPR]: Handle VECTOR_TYPE.
309
310 2012-09-14 Paolo Carlini <paolo.carlini@oracle.com>
311
312 * decl.c (make_typename_type): Only error out if tf_error is set
313 in complain.
314
315 2012-09-13 Paolo Carlini <paolo.carlini@oracle.com>
316 Manuel López-Ibåñez <manu@gcc.gnu.org>
317
318 PR c++/53210
319 * init.c (perform_member_init): Use OPT_Winit_self instead of
320 OPT_Wuninitialized.
321
322 2012-09-13 Paolo Carlini <paolo.carlini@oracle.com>
323
324 * typeck.c (build_indirect_ref, build_function_call,
325 build_function_call_vec, build_binary_op, build_unary_op,
326 build_compound_expr, build_c_cast, build_modify_expr): Remove
327 uses of ATTRIBUTE_UNUSED on the parameters.
328 * class.c (set_linkage_according_to_type, resort_type_method_vec,
329 dfs_find_final_overrider_post, empty_base_at_nonzero_offset_p):
330 Likewise.
331 * decl.c (local_variable_p_walkfn): Likewise.
332 * except.c (wrap_cleanups_r, check_noexcept_r): Likewise.
333 * error.c (find_typenames_r): Likewise.
334 * tree.c (verify_stmt_tree_r, bot_replace,
335 handle_java_interface_attribute, handle_com_interface_attribute,
336 handle_init_priority_attribute, c_register_addr_space): Likewise.
337 * cp-gimplify.c (cxx_omp_clause_default_ctor): Likewise.
338 * cp-lang.c (objcp_tsubst_copy_and_build): Likewise.
339 * pt.c (unify_success, unify_invalid, instantiation_dependent_r):
340 Likewise.
341 * semantics.c (dfs_calculate_bases_pre): Likewise.
342 * decl2.c (fix_temporary_vars_context_r, clear_decl_external):
343 Likewise.
344 * parser.c (cp_lexer_token_at, cp_parser_omp_clause_mergeable,
345 cp_parser_omp_clause_nowait, cp_parser_omp_clause_ordered,
346 cp_parser_omp_clause_untied): Likewise.
347 * mangle.c (write_unnamed_type_name,
348 discriminator_for_string_literal): Likewise.
349 * search.c (dfs_accessible_post, dfs_debug_mark): Likewise.
350 * lex.c (handle_pragma_vtable, handle_pragma_unit,
351 handle_pragma_interface, handle_pragma_implementation,
352 handle_pragma_java_exceptions): Likewise.
353
354 2012-09-13 Jason Merrill <jason@redhat.com>
355
356 PR c++/53839
357 * semantics.c (cxx_eval_indirect_ref): If we aren't looking for an
358 address, make sure the value is constant.
359
360 PR c++/54511
361 * pt.c (tsubst_decl) [VAR_DECL]: Handle DECL_ANON_UNION_VAR_P.
362
363 PR c++/53836
364 * pt.c (value_dependent_expression_p): A TREE_LIST initializer must
365 be dependent.
366
367 2012-09-10 Paolo Carlini <paolo.carlini@oracle.com>
368
369 PR c++/54541
370 PR c++/54542
371 * call.c (build_cxx_call): Add tsubst_flags_t parameter, use
372 require_complete_type_sfinae.
373 (build_op_delete_call, build_over_call): Adjust.
374 * typeck.c (build_x_compound_expr_from_vec): Add tsubst_flags_t
375 parameter.
376 (cp_build_function_call_vec): Adjust.
377 * init.c (build_new_1): Likewise.
378 * rtti.c (throw_bad_cast, throw_bad_typeid, build_dynamic_cast_1):
379 Likewise.
380 * optimize.c (build_delete_destructor_body): Likewise.
381 * cp-tree.h: Adjust declarations.
382
383 * call.c (convert_arg_to_ellipsis): Use require_complete_type_sfinae.
384
385 2012-09-10 Jason Merrill <jason@redhat.com>
386
387 PR c++/54538
388 PR c++/53783
389 * pt.c (tsubst_copy_and_build) [LAMBDA_EXPR]: Go back to using RECUR
390 for LAMBDA_EXPR_EXTRA_SCOPE except for function scope.
391
392 PR c++/54506
393 * decl.c (move_signature_fn_p): Split out from move_fn_p.
394 * method.c (process_subob_fn): Use it.
395 * cp-tree.h: Declare it.
396
397 2012-09-07 Jason Merrill <jason@redhat.com>
398
399 * semantics.c (sort_constexpr_mem_initializers): Tweak.
400
401 2012-09-09 Mark Kettenis <kettenis@openbsd.org>
402
403 * decl.c (reshape_init_class): Avoid dereferencing a
404 past-the-end pointer.
405
406 2012-09-07 Paolo Carlini <paolo.carlini@oracle.com>
407
408 * pt.c (num_template_headers_for_class): Rework per the code
409 inline in cp_parser_check_declarator_template_parameters.
410 * parser.c (cp_parser_check_declarator_template_parameters):
411 Use num_template_headers_for_class.
412
413 2012-09-06 Jason Merrill <jason@redhat.com>
414
415 PR c++/54341
416 PR c++/54253
417 * semantics.c (sort_constexpr_mem_initializers): New.
418 (build_constexpr_constructor_member_initializers): Use it.
419 (cx_check_missing_mem_inits): Skip artificial fields.
420 * init.c (expand_aggr_init_1): Don't zero out a class
421 with no data.
422
423 2012-09-05 Paolo Carlini <paolo.carlini@oracle.com>
424
425 PR c++/54191
426 * search.c (lookup_base): Add tsubst_flags_t parameter.
427 (adjust_result_of_qualified_name_lookup, check_final_overrider):
428 Adjust.
429 * name-lookup.c (do_class_using_decl): Adjust.
430 * typeck2.c (binfo_or_else, build_scoped_ref, build_m_component_ref):
431 Likewise.
432 * cvt.c (cp_convert_to_pointer, convert_to_pointer_force,
433 build_up_reference): Likewise.
434 * rtti.c (build_dynamic_cast_1): Likewise.
435 * tree.c (maybe_dummy_object): Likewise.
436 * call.c (build_conditional_expr_1, build_over_call): Likewise.
437 * cp-tree.h (UNIQUELY_DERIVED_FROM_P, PUBLICLY_UNIQUELY_DERIVED_P):
438 Remove.
439 (enum base_access_flags, ba_quiet): Remove.
440 (uniquely_derived_from_p, publicly_uniquely_derived_p): Declare.
441 * except.c (can_convert_eh): Adjust.
442 * decl.c (grokdeclarator): Likewise.
443 * typeck.c (comp_except_types, build_class_member_access_expr,
444 finish_class_member_access_expr, get_member_function_from_ptrfunc,
445 build_static_cast_1, get_delta_difference_1): Likewise.
446 * class.c (build_base_path, convert_to_base, build_vtbl_ref_1,
447 warn_about_ambiguous_bases): Likewise.
448 (uniquely_derived_from_p, publicly_uniquely_derived_p): Define.
449
450 2012-09-04 Jason Merrill <jason@redhat.com>
451
452 PR c++/54441
453 * decl.c (reshape_init_class): Handle invalid initializer for
454 0-length array member.
455
456 * error.c (dump_type_suffix): Correct handling of 0-length arrays.
457
458 PR c++/54420
459 * cp-tree.h (LAMBDANAME_P): Remove.
460 (LAMBDA_TYPE_P): Check CLASSTYPE_LAMBDA_EXPR instead.
461 * cp-lang.c (cxx_dwarf_name): Likewise.
462 * error.c (dump_aggr_type): Likewise.
463 * semantics.c (begin_lambda_type): Set CLASSTYPE_LAMBDA_EXPR sooner.
464
465 PR c++/54198
466 * decl.c (check_default_argument): Set cp_unevaluated_operand
467 around call to perform_implicit_conversion_flags.
468
469 PR c++/54437
470 PR c++/51213
471 * pt.c (fn_type_unification): Call coerce_template_parms before
472 entering substitution context.
473
474 2012-08-31 Paolo Carlini <paolo.carlini@oracle.com>
475 Jason Merrill <jason@redhat.com>
476
477 PR c++/18747
478 * pt.c (check_template_variable): New.
479 (num_template_headers_for_class): Split out...
480 * decl.c (grokdeclarator): ...from here.
481 (start_decl): Remove redundant diagnostic.
482 * cp-tree.h: Declare them
483 * parser.c (cp_parser_single_declaration): Call check_template_variable.
484
485 2012-08-31 Ollie Wild <aaw@google.com>
486
487 PR c++/54197
488 * call.c (extend_ref_init_temps_1): Handle COMPOUND_EXPR trees.
489
490 2012-08-30 Jason Merrill <jason@redhat.com>
491
492 PR c++/50545
493 PR c++/51222
494 * pt.c (instantiation_dependent_r): New.
495 (instantiation_dependent_expression_p): New.
496 (value_dependent_expression_p): Use it. SCOPE_REF is always dependent.
497 * semantics.c (finish_decltype_type): Use it.
498 * cp-tree.h: Declare it.
499
500 * semantics.c (finish_qualified_id_expr): Handle building up a
501 non-dependent SCOPE_REF here.
502 (finish_id_expression): Not here.
503 * error.c (dump_decl) [SCOPE_REF]: Only pass TFF_UNQUALIFIED_NAME.
504
505 * friend.c (make_friend_class): Handle template template parameters.
506 * parser.c (cp_parser_template_declaration_after_export): Likewise.
507 * pt.c (tsubst_friend_class): Likewise.
508 (instantiate_class_template_1): Likewise
509 * decl.c (check_elaborated_type_specifier): Likewise.
510 (lookup_and_check_tag): Likewise.
511
512 * pt.c (get_class_bindings): Call coerce_template_parms. Add
513 main_tmpl parameter.
514 (more_specialized_class): Add main_tmpl parameter.
515 (most_specialized_class): Adjust calls.
516
517 * decl.c (cp_finish_decl): Check for invalid multiple initializers
518 even if the initializer is dependent.
519
520 * pt.c (instantiate_template_1): Keep processing_template_decl set
521 if there are dependent args.
522
523 2012-08-25 Paolo Carlini <paolo.carlini@oracle.com>
524
525 PR c++/51421
526 * decl2.c (mark_used): Consistently return false after errors
527 about uses before deduction of auto.
528 * semantics.c (finish_id_expression): Check mark_used return
529 value and return error_mark_node in case of failure.
530
531 2012-08-24 Jason Merrill <jason@redhat.com>
532
533 PR c++/51213 (again)
534 * pt.c (deduction_tsubst_fntype): Remove.
535 (fn_type_unification): Check deduction depth and call
536 instantiate_template here. Handle default argument access checks.
537 (determine_specialization): Suppress access control.
538 (tsubst_decl): Check for excessive deduction depth.
539 (recheck_decl_substitution): Make sure access control is on.
540 (type_unification_real): Don't mess with access deferring here.
541 (get_bindings): Adjust for fn_type_unification return type.
542 * call.c (enum rejection_reason_code): Drop rr_template_instantiation.
543 (template_instantiation_rejection): Remove.
544 (struct rejection_reason): Change targs to num_targs.
545 (template_unification_rejection, print_z_candidate): Adjust.
546 (add_template_candidate_real): Adjust for fn_type_unification change.
547 * class.c (resolve_address_of_overloaded_function): Likewise.
548 * cp-tree.h: Adjust declaration.
549
550 * pt.c (tsubst_default_argument): Indicate where the default
551 argument is being instantiated for.
552 (tsubst_expr): Restore previous location.
553 (tsubst_copy_and_build): Set and restore location.
554 * call.c (build_new_method_call_1): Remember location of call.
555 * semantics.c (finish_call_expr): Here too.
556 * parser.c (cp_parser_omp_for_loop): Remember the location of the
557 increment expression.
558
559 * pt.c (resolve_overloaded_unification): Use coerce_template_parms
560 instead of get_bindings.
561 (resolve_nondeduced_context): Likewise.
562
563 * pt.c (register_specialization): Correct argument to
564 check_specialization_namespace.
565 (determine_specialization): Don't consider members of
566 unspecialized types.
567
568 2012-08-23 Jason Merrill <jason@redhat.com>
569
570 * decl.c (compute_array_index_type): Use type_dependent_expression_p.
571
572 2012-08-23 Paolo Carlini <paolo.carlini@oracle.com>
573
574 PR c++/20420
575 * name-lookup.c (supplement_binding_1): Handle specially enums
576 only in class templates.
577 (validate_nonmember_using_decl): Enforce 7.3.3/10 about duplicate
578 using declarations at function scope.
579
580 2012-08-21 Richard Guenther <rguenther@suse.de>
581
582 * cp-tree.h (TREE_INDIRECT_USING): Use TREE_LANG_FLAG_0 accessor.
583 (ATTR_IS_DEPENDENT): Likewise.
584 (ARGUMENT_PACK_INCOMPLETE_P): Use TREE_ADDRESSABLE instead of
585 TREE_LANG_FLAG_0 on TREE_VECs.
586
587 2012-08-20 Florian Weimer <fweimer@redhat.com>
588
589 PR c++/19351
590 * call.c (build_operator_new_call): Add size_check argument and
591 evaluate it.
592 * cp-tree.h (build_operator_new_call): Adjust declaration.
593 * init.c (build_new_1): Compute array size check and apply it.
594
595 2012-08-20 Paolo Carlini <paolo.carlini@oracle.com>
596
597 PR c++/10416
598 * decl.c (poplevel): Check TYPE_HAS_NONTRIVIAL_DESTRUCTOR for
599 Wunused_variable too.
600
601 2012-08-20 Diego Novillo <dnovillo@google.com>
602
603 * decl.c (poplevel): Start TV_NAME_LOOKUP conditionally.
604
605 2012-08-20 Richard Guenther <rguenther@suse.de>
606
607 * name-lookup.c (store_binding_p): New predicate, split out from ...
608 (store_binding): ... here. Always store binding and require
609 target vector with enough space.
610 (store_bindings): Collect to store bindings and reserve space
611 for them, then store them.
612 (store_class_bindings): Likewise.
613
614 2012-08-19 Mikael Morin <mikael@gcc.gnu.org>
615
616 * Make-lang.in: Fix typo.
617
618 2012-08-17 Jakub Jelinek <jakub@redhat.com>
619
620 * cp-tree.def (SIZEOF_EXPR): Move to c-common.def.
621
622 2012-08-14 Diego Novillo <dnovillo@google.com>
623
624 Merge from cxx-conversion branch. Re-write VEC in C++.
625
626 * call.c (add_function_candidate): Remove const qualifier
627 from call to VEC_index.
628
629 2012-08-10 Richard Guenther <rguenther@suse.de>
630
631 * error.c (dump_expr): Handle anonymous SSA names.
632
633 2012-08-07 Steven Bosscher <steven@gcc.gnu.org>
634
635 * error.c (print_instantiation_context): Pretty-print a newline before
636 diagnostic_flush_buffer.
637 * cxx-pretty-print.c (pp_cxx_function_definition): Use
638 pp_newline_and_flush instead of separate pp_newline and pp_flush.
639
640 2012-08-06 Dodji Seketeli <dodji@redhat.com>
641
642 Avoid crashing on erroneous static_assert usage
643 * semantics.c (finish_static_assert): Don't crash on erroneous
644 message or condition.
645
646 2012-08-06 Marc Glisse <marc.glisse@inria.fr>
647 Paolo Carlini <paolo.carlini@oracle.com>
648
649 PR c++/54165
650 * typeck.c (build_static_cast_1): Move the conversion to void case
651 before the perform_direct_initialization_if_possible call.
652
653 2012-08-03 Marc Glisse <marc.glisse@inria.fr>
654
655 * pt.c (tsubst_copy_and_build): Handle VECTOR_TYPE like scalars.
656 * cp-tree.h (scalarish_type_p): Declare.
657 * tree.c (scalarish_type_p): Make non-static.
658
659 2012-08-02 Jason Merrill <jason@redhat.com>
660 Paolo Carlini <paolo.carlini@oracle.com>
661
662 PR c++/51213 (again)
663 * pt.c (type_unification_real): Call push_deferring_access_checks /
664 pop_deferring_access_checks around the substitution of default
665 template args.
666 (instantiate_template_1): When the specialization returned by
667 retrieve_specialization has FNDECL_HAS_ACCESS_ERRORS set and we
668 are in a SFINAE context, simply return error_mark_node.
669 * cp-tree.h (FNDECL_RECHECK_ACCESS_P): Rename FNDECL_HAS_ACCESS_ERRORS.
670
671 2012-07-31 Paolo Carlini <paolo.carlini@oracle.com>
672
673 * pt.c (check_default_tmpl_args): Change is_primary and is_partial
674 parameters to bool type, adjust.
675 (push_template_decl_real): Tidy.
676 * parser.c (cp_parser_init_declarator): Adjust.
677 * decl.c (redeclaration_error_message): Likewise.
678 * cp-tree.h (check_default_tmpl_args): Update prototype.
679
680 2012-07-31 Paolo Carlini <paolo.carlini@oracle.com>
681
682 PR c++/53624
683 * pt.c (check_default_tmpl_args): Don't check local types.
684
685 2012-07-25 Sandra Loosemore <sandra@codesourcery.com>
686 Paul Brook <paul@codesourcery.com>
687
688 PR target/53633
689 * decl.c (finish_function): Check targetm.warn_func_return.
690
691 2012-07-25 Jason Merrill <jason@redhat.com>
692
693 PR c++/54086
694 * decl.c (grokdeclarator): Allow const and constexpr together.
695
696 PR c++/54020
697 * semantics.c (potential_constant_expression_1) [COND_EXPR]: Call
698 maybe_constant_value.
699
700 * cp-tree.h (tsubst_flags): Remove tf_no_access_control.
701 * call.c (standard_conversion): Don't set it.
702 * class.c (resolve_address_of_overloaded_function): Don't check it.
703 * decl.c (check_default_argument): Call
704 perform_implicit_conversion_flags.
705
706 * pt.c (print_candidates_1): Use inform instead of error.
707
708 2012-07-24 Paolo Carlini <paolo.carlini@oracle.com>
709
710 * pt.c (convert_template_argument, tsubst): Simplify fourth argument
711 to make_typename_type (complain & tf_error -> complain).
712
713 2012-07-24 Steven Bosscher <steven@gcc.gnu.org>
714
715 * class.c (n_vtables, n_vtable_entries, n_vtable_searches,
716 n_vtable_elems, n_convert_harshness, n_compute_conversion_costs,
717 n_inner_fields_searched): Always define.
718 (build_primary_vtable): Convert #ifdef GATHER_STATISTICS to if-code.
719 (print_class_statistics): Convert #ifdef GATHER_STATISTICS to if-code.
720 * tree.c (depth_reached): Always define global.
721 (cxx_print_statistics): Convert #ifdef GATHER_STATISTICS to if-code.
722 * pt.c (depth_reached): Always define.
723 (push_tinst_level): Convert #ifdef GATHER_STATISTICS to if-code.
724 * search.c (n_fields_searched, n_calls_lookup_field,
725 n_calls_lookup_field_1, n_calls_lookup_fnfields,
726 n_calls_lookup_fnfields_1, n_calls_get_base_type,
727 n_outer_fields_searched, n_contexts_saved): Always define.
728 (lookup_field_1): Convert #ifdef GATHER_STATISTICS to if-code.
729 (lookup_member): Likewise.
730 (lookup_fnfields_idx_nolazy): Likewise.
731 (print_search_statistics): Likewise.
732 (reinit_search_statistics): Unconditionally re-set counters.
733 * lex.c (retrofit_lang_decl): Convert #ifdef GATHER_STATISTICS
734 to if-code.
735 (cxx_dup_lang_specific_decl): Likewise.
736 (copy_lang_type): Likewise.
737 (cxx_make_type): Likewise.
738
739 2012-07-20 Jason Merrill <jason@redhat.com>
740
741 PR c++/54038
742 * tree.c (build_cplus_array_type): Use build_cplus_array_type to build
743 canonical array type rather than mess with its TYPE_*_VARIANT.
744
745 2012-07-19 Jason Merrill <jason@redhat.com>
746
747 PR c++/54026
748 * typeck.c (cp_apply_type_quals_to_decl): Check COMPLETE_TYPE_P.
749
750 PR c++/54021
751 * call.c (build_cxx_call): Set optimize when folding
752 __builtin_constant_p in a constexpr function.
753
754 2012-07-18 Jason Merrill <jason@redhat.com>
755
756 * pt.c (instantiate_decl): Don't recheck substitutions.
757
758 2012-07-18 Paolo Carlini <paolo.carlini@oracle.com>
759 Jason Merrill <jason@redhat.com>
760
761 DR 1170
762 PR c++/51213
763 * semantics.c (perform_access_checks): Add complain parm, return bool.
764 (perform_deferred_access_checks): Likewise.
765 (perform_or_defer_access_check): Likewise.
766 (speculative_access_check): Remove.
767 * call.c (enforce_access): Add complain parm, return bool.
768 * decl.c, friend.c, class.c, init.c, parser.c: Adjust callers.
769 * search.c: Adjust callers.
770 * cp-tree.h (TINFO_RECHECK_ACCESS_P): New macro.
771 (FNDECL_RECHECK_ACCESS_P): New macro.
772 * method.c (synthesized_method_walk): Stop deferring access checks.
773 * pt.c (recheck_decl_substitution): New.
774 (instantiate_template_1): Set and check FNDECL_RECHECK_ACCESS_P.
775
776 2012-07-18 Jason Merrill <jason@redhat.com>
777
778 * method.c (process_subob_fn): Make sure no_implicit_p is non-null
779 before trying to store through it.
780
781 2012-07-17 Jason Merrill <jason@redhat.com>
782
783 PR c++/53995
784 * decl.c (finish_enum_value_list): Only call
785 insert_late_enum_def_into_classtype_sorted_fields in class scope.
786
787 PR c++/53989
788 * tree.c (build_cplus_array_type): Also add TYPE_CANONICAL
789 to the list of variants.
790
791 * decl.c (xref_basetypes): Complain about incomplete template base.
792 * class.c (finish_struct): Adjust variants in templates, too.
793
794 PR c++/53549
795 * parser.c (cp_parser_class_head): Call xref_basetypes here.
796 (cp_parser_class_specifier_1): Not here.
797 * pt.c (tsubst_decl) [USING_DECL]: Check uses_template_parms
798 as well as DECL_DEPENDENT_P.
799
800 2012-07-16 Jason Merrill <jason@redhat.com>
801
802 * cp-tree.h (struct deferred_access_check): Add location.
803 * semantics.c (perform_access_checks): Use it.
804 (perform_or_defer_access_check): Store it.
805
806 2012-07-16 Steven Bosscher <steven@gcc.gnu.org>
807
808 * dump.c (dump_stmt): Moved here from c-dump.c.
809 * optimize.c: Include dumpfile.h instead of tree-dump.h.
810 * class.c: Likewise.
811 * decl2.c: Likewise.
812 * Make-lang.in: Fix dependencies.
813
814 2012-07-13 Jason Merrill <jason@redhat.com>
815
816 PR c++/53953
817 * method.c (synthesized_method_walk): Initialize no_implicit_p sooner.
818
819 2012-07-12 Jason Merrill <jason@redhat.com>
820
821 * pt.c (instantiate_decl): Check typedefs access here.
822 (instantiate_template_1): Not here.
823
824 * pt.c (deduction_tsubst_fntype): Just suppress access checking.
825 (instantiate_template_1): Set DECL_TI_TEMPLATE before access checking.
826 (push_deduction_access_scope, pop_deduction_access_scope): Remove.
827
828 2012-07-11 Jason Merrill <jason@redhat.com>
829
830 DR 1402
831 * method.c (synthesized_method_walk): Replace uses of msg with diag.
832 Correct handling of virtual bases with move operations.
833 (process_subob_fn, walk_field_subobs): Replace uses of msg with diag.
834
835 2012-07-11 Steven Bosscher <steven@gcc.gnu.org>
836
837 * method.c: Do not include tree-pass.h.
838
839 2012-07-10 Jason Merrill <jason@redhat.com>
840
841 DR 1402
842 PR c++/53733
843 * cp-tree.h (FNDECL_SUPPRESS_IMPLICIT_DECL): New.
844 (struct lang_decl_fn): Add suppress_implicit_decl field.
845 * method.c (implicitly_declare_fn): Check it.
846 (process_subob_fn): Add no_implicit_p parm.
847 (walk_field_subobs, synthesized_method_walk): Likewise.
848 (maybe_explain_implicit_delete): Adjust.
849 (explain_implicit_non_constexpr): Adjust.
850
851 * method.c (synthesized_method_walk): Avoid changing
852 EH spec based on cleanups in other places, too.
853
854 2012-07-09 Sterling Augustine <saugustine@google.com>
855
856 * error.c (lang_decl_name): Use TFF_UNQUALIFIED_NAME flag.
857
858 2012-07-08 Steven Bosscher <steven@gcc.gnu.org>
859
860 * decl.c (cp_finish_decl): Add FIXME at add_local_decl call site.
861
862 2012-07-06 Jason Merrill <jason@redhat.com>
863
864 PR c++/53862
865 * pt.c (tsubst_arg_types): Add "end" parameter.
866 (check_undeduced_parms): Use it.
867
868 * cp-tree.h (DECL_DECLARES_TYPE_P): Check DECL_TYPE_TEMPLATE_P.
869
870 PR c++/53858
871 * name-lookup.c (ambiguous_decl): Use DECL_TYPE_TEMPLATE_P.
872
873 2012-07-05 Jason Merrill <jason@redhat.com>
874
875 PR c++/53039
876 * pt.c (arg_from_parm_pack_p): Go back to using same_type_p or
877 cp_tree_equal.
878
879 * cp-tree.h (TEMPLATE_PARM_NUM_SIBLINGS): Remove.
880 (struct template_parm_index_s): Remove num_siblings.
881 * pt.c (fixup_template_parms, fixup_template_parm_index): Remove.
882 (fixup_template_type_parm_type): Remove.
883 (build_template_parm_index): Remove num_siblings parm.
884 (process_template_parm): Likewise.
885 * parser.c (cp_parser_template_parameter_list): Adjust.
886 * tree.c (cp_tree_equal): Don't compare num_siblings.
887 * typeck.c (comp_template_parms_position): Likewise.
888
889 PR c++/50852
890 PR c++/53039
891 * tree.c (strip_typedefs_expr): New.
892 * cp-tree.h: Declare it.
893 * pt.c (convert_template_argument, unify): Use it.
894 * parser.c (cp_parser_template_declaration_after_export): Don't call
895 fixup_template_parms.
896
897 2012-07-04 Jason Merrill <jason@redhat.com>
898
899 PR c++/53848
900 PR c++/53524
901 * decl.c (build_enumerator): Don't use build_lang_decl_loc.
902
903 2012-07-03 Jakub Jelinek <jakub@redhat.com>
904
905 PR c++/53812
906 * semantics.c (finish_goto_stmt): Surround computed goto argument
907 with CLEANUP_POINT_EXPR if needed.
908
909 2012-07-02 Jason Merrill <jason@redhat.com>
910
911 PR c++/53619
912 * pt.c (in_template_function): New.
913 * cp-tree.h: Declare it.
914 * class.c (build_base_path, resolves_to_fixed_type_p): Use it.
915
916 PR c++/53783
917 * pt.c (tsubst_copy_and_build) [LAMBDA_EXPR]: Use tsubst
918 for LAMBDA_EXPR_EXTRA_SCOPE.
919
920 PR c++/53788
921 * pt.c (build_non_dependent_expr): Don't wrap a dummy object.
922
923 PR c++/53816
924 * class.c (resolves_to_fixed_type_p): Check uses_template_parms
925 (current_function_decl) instead of processing_template_decl.
926
927 PR c++/53821
928 * semantics.c (maybe_add_lambda_conv_op): Don't set
929 DECL_INTERFACE_KNOWN.
930
931 PR c++/53524
932 * call.c (build_conditional_expr_1): Don't warn about comparison of
933 two enumerators before their enumeration is complete.
934 (build_new_op_1): Call decay_conversion before warn_logical_operator.
935 * decl.c (build_enumerator): Set DECL_CONTEXT of an enumerator to
936 its enumeration.
937 * decl2.c (mark_used): Call used_types_insert for enums.
938 * semantics.c (finish_id_expression): Don't decay CONST_DECL.
939 (finish_member_declaration): Don't change DECL_CONTEXT of enumerators.
940 * class.c (check_field_decls): Don't change DECL_CONTEXT of enums.
941 * typeck.c (convert_for_assignment): Don't decay CONST_DECL.
942 (build_class_member_access_expr): Look through unscoped enums.
943 * search.c (context_for_name_lookup): Look through unscoped enums.
944 * pt.c (tsubst_copy_and_build): Don't decay CONST_DECL.
945 (tsubst_copy): Use DECL_CONTEXT to find the enumeration.
946 * tree.c (decl_linkage): Likewise.
947 * cvt.c (ocp_convert): Check decayed expr for enum range warning.
948
949 2012-06-29 Steven Bosscher <steven@gcc.gnu.org>
950
951 * Make-lang.in: Remove tree-mudflap.o from CXX_AND_OBJCXX_OBJS.
952
953 2012-06-27 Jason Merrill <jason@redhat.com>
954
955 * parser.c (cp_parser_check_for_invalid_template_id): tag_type parm.
956 (cp_parser_simple_type_specifier, cp_parser_class_head): Adjust.
957 (cp_parser_elaborated_type_specifier): Adjust.
958 * decl.c (duplicate_decls): Return error_mark_node on template
959 mismatch.
960
961 PR c++/53563
962 * parser.c (cp_parser_template_id): Add tag_type parm.
963 (cp_parser_template_name): Likewise.
964 (cp_parser_id_expression, cp_parser_unqualified_id): Adjust.
965 (cp_parser_pseudo_destructor_name, cp_parser_type_name): Adjust.
966 (cp_parser_simple_type_specifier, cp_parser_class_name): Adjust.
967 (cp_parser_elaborated_type_specifier, cp_parser_class_head): Adjust.
968
969 2012-06-27 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
970
971 PR C++/51033
972 * semantics.c (constexpr_call): Fix typo in comment.
973 (cxx_eval_vec_perm_expr): New.
974 (cxx_eval_constant_expression): Fold VEC_PERM_EXPRs.
975
976 2012-06-26 Richard Guenther <rguenther@suse.de>
977
978 PR c++/53752
979 * mangle.c (write_array_type): Truncate the number-of-elements
980 result.
981
982 2012-06-25 Jason Merrill <jason@redhat.com>
983
984 PR c++/53498
985 PR c++/53305
986 * pt.c (tsubst_decl) [PARM_DECL]: Don't recurse into DECL_CHAIN
987 if cp_unevaluated_operand is set.
988 (tsubst_copy) [PARM_DECL]: Don't copy before tsubsting.
989
990 PR c++/52988
991 * typeck.c (decay_conversion): Don't discard side-effects from
992 expressions of nullptr_t.
993
994 2012-06-25 Florian Weimer <fweimer@redhat.com>
995
996 * init.c (build_new_1): Warn about (T[N]) for variable N, and
997 reject T[M][N].
998
999 * parser.c (cp_parser_direct_new_declarator): Accept non-constant
1000 expressions. Handled now in build_new_1.
1001
1002 2012-06-25 Jason Merrill <jason@redhat.com>
1003
1004 PR c++/53202
1005 * semantics.c (build_data_member_initialization): Always keep
1006 initializer for empty base.
1007 (cxx_eval_bare_aggregate): Discard it here.
1008
1009 PR c++/53565
1010 * pt.c (tsubst_omp_for_iterator): Simplify DECL_EXPR handling.
1011 (tsubst_expr) [OMP_FOR]: Here, too.
1012
1013 2012-06-25 Jakub Jelinek <jakub@redhat.com>
1014
1015 PR c++/53594
1016 * class.c (check_bases_and_members): Avoid -Wuninitialized
1017 diagnostics for non-static const members or references if they
1018 use NSDMI.
1019
1020 2012-06-16 Ville Voutilainen <ville.voutilainen@gmail.com>
1021
1022 * parser.c (cp_parser_direct_declarator): Move virt-specifier
1023 parsing after late-specified return type parsing.
1024
1025 2012-06-14 Jason Merrill <jason@redhat.com>
1026
1027 PR c++/53651
1028 * name-lookup.c (constructor_name_p): Don't try to look at the
1029 name of a DECLTYPE_TYPE.
1030
1031 2012-06-18 Lawrence Crowl <crowl@google.com>
1032
1033 * decl2.c (cp_write_global_declarations): Rename use of TV_PHASE_CGRAPH
1034 to TV_PHASE_OPT_GEN.
1035
1036 2012-06-18 Steven Bosscher <steven@gcc.gnu.org>
1037
1038 * decl.c (finish_function): Remove code conditional on VMS_TARGET.
1039
1040 2012-06-15 Marc Glisse <marc.glisse@inria.fr>
1041
1042 PR c++/51033
1043 * semantics.c (literal_type_p): Handle VECTOR_TYPE.
1044 (potential_constant_expression_1): Handle VEC_PERM_EXPR.
1045 * parser.c (cp_parser_postfix_expression): Handle RID_BUILTIN_SHUFFLE.
1046
1047 2012-06-09 Jason Merrill <jason@redhat.com>
1048
1049 * pt.c (tsubst_expr) [TAG_DEFN]: Instantiate local class.
1050 * class.c (finish_struct): Don't add a TAG_DEFN for a lambda.
1051 * decl2.c (finish_static_data_member_decl): Avoid redundant error.
1052
1053 PR c++/53599
1054 * name-lookup.c (pushtag_1): Add a DECL_EXPR for a local class.
1055 * semantics.c (finish_cond): Build a COMPOUND_EXPR.
1056 * pt.c (tsubst_expr) [COMPOUND_EXPR]: Handle.
1057 [DECL_EXPR]: Don't call cp_finish_decl for an implicit typedef.
1058 Don't return the decl.
1059
1060 2012-06-11 Richard Guenther <rguenther@suse.de>
1061
1062 PR c++/53605
1063 * mangle.c (write_array_type): Use double-ints for array domain
1064 arithmetic.
1065
1066 2012-06-07 Fabien ChĂȘne <fabien@gcc.gnu.org>
1067
1068 PR c++/51214
1069 * cp-tree.h (insert_late_enum_def_into_classtype_sorted_fields):
1070 Declare.
1071 * class.c (insert_into_classtype_sorted_fields): New.
1072 (add_enum_fields_to_record_type): New.
1073 (count_fields): Adjust the comment.
1074 (add_fields_to_record_type): Likewise.
1075 (finish_struct_1): Move the code that inserts the fields for the
1076 sorted case, into insert_into_classtype_sorted_fields, and call
1077 it.
1078 (insert_late_enum_def_into_classtype_sorted_fields): Define.
1079 * decl.c (finish_enum_value_list): Call
1080 insert_late_enum_def_into_classtype_sorted_fields if a late enum
1081 definition is encountered.
1082
1083 2012-06-06 Paolo Carlini <paolo.carlini@oracle.com>
1084
1085 PR c++/53567
1086 * typeck.c (cp_perform_integral_promotions): New, like
1087 perform_integral_promotions but also takes a tsubst_flags_t parameter.
1088 (pointer_diff): Add tsubst_flags_t parameter.
1089 (decay_conversion, cp_default_conversion, cp_build_array_ref,
1090 cp_build_binary_op, cp_build_unary_op, build_static_cast_1,
1091 build_reinterpret_cast_1, cp_build_modify_expr,
1092 convert_for_assignment): Adjust.
1093 * optimize.c (build_delete_destructor_body): Adjust.
1094 * init.c (expand_virtual_init, expand_default_init, build_new_1,
1095 build_new, build_vec_delete_1, build_vec_init, build_delete): Adjust.
1096 (construct_virtual_base): Adjust LOOKUP_COMPLAIN -> 0.
1097 * class.c (build_base_path): Adjust.
1098 * decl.c (compute_array_index_type, finish_destructor_body): Likewise.
1099 * method.c (synthesized_method_walk): Adjust flag and complain.
1100 * rtti.c (ifnonnull): Add tsubst_flags_t parameter.
1101 (build_typeid, build_dynamic_cast_1): Adjust.
1102 * except.c (initialize_handler_parm): Likewise.
1103 * typeck2.c (process_init_constructor_record): Likewise.
1104 * pt.c (tsubst_friend_class): Don't change flags.
1105 * semantics.c (finish_goto_stmt, handle_omp_for_class_iterator,
1106 finish_static_assert): Likewise.
1107 * parser.c (cp_parser_lookup_name): Just pass 0 as flags to
1108 lookup_name_real.
1109 * call.c (build_op_delete_call): Add tsubst_flags_t parameter.
1110 (convert_like_real, convert_arg_to_ellipsis, convert_for_arg_passing):
1111 Adjust.
1112 (standard_conversion): Adjust LOOKUP_COMPLAIN -> 0.
1113 (implicit_conversion): Mask out tf_error with a FIXME.
1114 (build_user_type_conversion_1, build_new_op_1, build_over_call): Use
1115 complain & tf_error instead of flags & LOOKUP_COMPLAIN.
1116 * cvt.c (cp_convert_to_pointer, convert_to_pointer_force,
1117 build_up_reference, convert_to_reference, cp_convert,
1118 cp_convert_and_check, ocp_convert, convert_force): Add tsubst_flags_t
1119 parameter.
1120 (convert_to_reference, ocp_convert): Use complain & tf_error instead
1121 of flags & LOOKUP_COMPLAIN.
1122 (convert_force): Adjust LOOKUP_COMPLAIN -> 0.
1123 * name-lookup.c (identifier_type_value_1, lookup_qualified_name,
1124 lookup_name_real, lookup_function_nonclass, lookup_name,
1125 lookup_name_prefer_type): Adjust LOOKUP_COMPLAIN -> 0.
1126 * cp-tree.h: Adjust prototypes; remove LOOKUP_COMPLAIN.
1127
1128 2012-06-06 Steven Bosscher <steven@gcc.gnu.org>
1129
1130 * decl.c: Do not include output.h.
1131 (start_decl): Remove code for flag_conserve_space.
1132
1133 2012-06-06 Fabien ChĂȘne <fabien@gcc.gnu.org>
1134
1135 PR c++/52841
1136 * parser.c (cp_parser_alias_declaration): Return earlier
1137 if an error occured.
1138
1139 2012-06-04 Paolo Carlini <paolo.carlini@oracle.com>
1140
1141 PR c++/53524
1142 * call.c (build_conditional_expr_1): Use OPT_Wenum_compare
1143 to control enumeral mismatch in conditional expression too.
1144
1145 2012-06-04 Sterling Augustine <saugustine@google.com>
1146
1147 * cp-tree.h: Declare decl_as_dwarf_string, lang_decl_dwarf_name.
1148 * cp-lang.c (cxx_dwarf_name): Call them.
1149
1150 2012-06-04 Steven Bosscher <steven@gcc.gnu.org>
1151
1152 * semantics.c: Do not include output.h.
1153 * decl2.c: Likewise.
1154 * friend.c: Likewise.
1155 * typeck.c: Likewise.
1156 * typeck2.c: Likewise.
1157 * Make-lang.in: Fix dependencies.
1158
1159 2012-06-01 Jason Merrill <jason@redhat.com>
1160
1161 PR c++/52973
1162 * parser.c (cp_parser_class_head): Apply attributes here.
1163 * semantics.c (begin_class_definition): Not here.
1164 * cp-tree.h: Adjust.
1165
1166 PR c++/52725
1167 * parser.c (cp_parser_binary_expression): Bail early if we're parsing
1168 tentatively and the LHS has a parse error.
1169
1170 PR c++/53137
1171 * pt.c (instantiate_class_template_1): Set LAMBDA_EXPR_THIS_CAPTURE.
1172 (instantiate_decl): Don't push_to_top_level for local class methods.
1173 (instantiate_class_template_1): Or for local classes.
1174
1175 PR c++/53484
1176 * pt.c (do_auto_deduction): Don't try to deduce from a
1177 type-dependent initializer.
1178
1179 2012-06-01 Paolo Carlini <paolo.carlini@oracle.com>
1180
1181 PR c++/26155
1182 * name-lookup.c (push_namespace): When error recovery is
1183 impossible just error out in duplicate_decls.
1184
1185 2012-05-31 Steven Bosscher <steven@gcc.gnu.org>
1186
1187 * call.c: Do not include output.h.
1188 * class.c: Likewise.
1189 * except.c: Likewise.
1190 * friend.c: Likewise.
1191 * init.c: Likewise.
1192 * lex.c: Likewise.
1193 * method.c: Likewise.
1194 * parser.c: Likewise.
1195 * pt.c: Likewise.
1196 * rtti.c: Likewise.
1197 * search.c: Likewise.
1198
1199 2012-05-30 Jason Merrill <jason@redhat.com>
1200
1201 PR c++/53356
1202 * tree.c (stabilize_init): Handle stabilizing a TARGET_EXPR
1203 representing a bitwise copy of a glvalue.
1204
1205 * tree.c (stabilize_expr): Tweak logic.
1206
1207 PR c++/53356
1208 * tree.c (stabilize_init): Side effects make the init unstable.
1209
1210 2012-05-28 Paolo Carlini <paolo.carlini@oracle.com>
1211
1212 PR c++/53503
1213 * semantics.c (potential_constant_expression_1): Handle LTGT_EXPR.
1214
1215 2012-05-26 Paolo Carlini <paolo.carlini@oracle.com>
1216
1217 PR c++/53491
1218 * tree.c (stabilize_expr): Handle exp of void type.
1219
1220 2012-05-26 Jason Merrill <jason@redhat.com>
1221
1222 PR c++/53220
1223 * call.c (convert_like_real) [ck_list]: Take array address directly.
1224 * typeck.c (decay_conversion): Reject decay of an array compound
1225 literal.
1226
1227 2012-05-25 Paolo Carlini <paolo.carlini@oracle.com>
1228
1229 PR c++/32054
1230 * parser.c (cp_parser_member_declaration): A storage class is not
1231 allowed in a declaration of an anonymous aggregate in a class scope.
1232
1233 2012-05-24 Uros Bizjak <ubizjak@gmail.com>
1234
1235 PR obj-c++/53441
1236 * decl.c (grokdeclarator): Check that current_class_type is non-NULL
1237 before calling constructor_name_p.
1238
1239 2012-05-24 Paolo Carlini <paolo.carlini@oracle.com>
1240
1241 PR c++/32080
1242 * parser.c (cp_parser_ctor_initializer_opt_and_function_body,
1243 cp_parser_function_body): Add a bool parameter, true when parsing
1244 a function-try-block.
1245 (cp_parser_function_try_block): Pass true to the above.
1246 (cp_parser_function_definition_after_declarator,
1247 cp_parser_function_transaction): Adjust.
1248
1249 2012-05-23 Paolo Carlini <paolo.carlini@oracle.com>
1250
1251 PR c++/29185
1252 * decl2.c (delete_sanity): Extend 'deleting array' warning to
1253 any array type.
1254
1255 2012-05-21 Paolo Carlini <paolo.carlini@oracle.com>
1256
1257 PR c++/51184
1258 * decl.c (grokdeclarator): Diagnose functions returning abstract
1259 class types as TYPENAME.
1260 * cp-tree.h (ABSTRACT_CLASS_TYPE_P): Add.
1261 * except.c (is_admissible_throw_operand_or_catch_parameter): Use it.
1262 * pt.c (tsubst): Likewise.
1263 * semantics.c (trait_expr_value): Likewise.
1264
1265 2012-05-21 Paolo Carlini <paolo.carlini@oracle.com>
1266
1267 PR c++/40821
1268 * parser.c (cp_parser_attributes_opt): Enforce error checking of
1269 unbalanced parentheses in the presence of tentative parsing.
1270
1271 2012-05-17 Paolo Carlini <paolo.carlini@oracle.com>
1272
1273 PR c++/39681
1274 * parser.c (cp_parser_new_type_id): Early return error_mark_node
1275 if the cp_parser_type_specifier_seq call has type_specifier_seq.type
1276 error_mark_node; tidy.
1277 (cp_parser_new_expression): Always initialize nelts to NULL_TREE to
1278 avoid uninitialized warnings.
1279 (cp_parser_init_declarator, cp_parser_late_parse_one_default_arg):
1280 Call cp_parser_skip_to_end_of_statement if cp_parser_initializer
1281 returns error_mark_node.
1282
1283 2012-05-17 Paolo Carlini <paolo.carlini@oracle.com>
1284
1285 PR c++/53371
1286 * except.c (is_admissible_throw_operand): Rename to
1287 is_admissible_throw_operand_or_catch_parameter and handle
1288 catch parameter too.
1289 (expand_start_catch_block): Use it.
1290 (build_throw): Adjust.
1291
1292 2012-05-17 Paolo Carlini <paolo.carlini@oracle.com>
1293
1294 PR c++/44516
1295 * typeck.c (build_x_array_ref, build_x_conditional_expr,
1296 build_x_compound_expr, build_x_modify_expr): Add location_t parameter.
1297 (finish_class_member_access_expr, build_x_indirect_ref,
1298 build_x_binary_op, build_x_compound_expr_from_list,
1299 build_x_compound_expr_from_vec): Adjust callers.
1300 * tree.c (build_min_nt_loc): New.
1301 (build_min_nt): Remove.
1302 * typeck2.c (build_x_arrow): Adjust callers.
1303 * pt.c (tsubst_qualified_id, tsubst_omp_for_iterator,
1304 tsubst_copy_and_build): Likewise.
1305 * semantics.c (finish_mem_initializers, handle_omp_for_class_iterator,
1306 finish_omp_atomic): Likewise.
1307 * decl2.c (grok_array_decl, build_anon_union_vars): Adjust.
1308 * parser.c (cp_parser_question_colon_clause,
1309 cp_parser_assignment_expression, cp_parser_expression,
1310 cp_parser_template_id, cp_parser_omp_for_loop): Likewise.
1311 * cp-tree.h: Update.
1312
1313 2012-05-16 Dodji Seketeli <dodji@redhat.com>
1314
1315 PR preprocessor/7263
1316 * cp-tree.h (enum cp_decl_spec): Add new enumerators to cover all
1317 the possible declarator specifiers so far.
1318 (struct cp_decl_specifier_seq::locations): Declare new member.
1319 (cp_decl_specifier_seq::{specs, type_location}): Remove.
1320 (decl_spec_seq_has_spec_p): Declare new function.
1321 * parser.c (cp_parser_check_decl_spec): Remove.
1322 (set_and_check_decl_spec_loc): Define new static function.
1323 (decl_spec_seq_has_spec_p): Define new public function.
1324 (cp_parser_decl_specifier_seq, cp_parser_function_specifier_opt)
1325 (cp_parser_type_specifier, cp_parser_simple_type_specifier)
1326 (cp_parser_set_storage_class, cp_parser_set_decl_spec_type)
1327 (cp_parser_alias_declaration): Set the locations for each
1328 declspec, using set_and_check_decl_spec_loc.
1329 (cp_parser_explicit_instantiation, cp_parser_init_declarator)
1330 (cp_parser_member_declaration, cp_parser_init_declarator): Use the
1331 new declspec location for specifiers. Use the new
1332 decl_spec_seq_has_spec_p.
1333 (cp_parser_type_specifier_seq): Use the new
1334 set_and_check_decl_spec_loc. Stop using
1335 cp_parser_check_decl_spec. Use the new decl_spec_seq_has_spec_p.
1336 (, cp_parser_init_declarator): Use the new
1337 set_and_check_decl_spec_loc.
1338 (cp_parser_single_declaration, cp_parser_friend_p)
1339 (cp_parser_objc_class_ivars, cp_parser_objc_struct_declaration):
1340 Use the new decl_spec_seq_has_spec_p.
1341 * decl.c (check_tag_decl): Use new decl_spec_seq_has_spec_p. Use
1342 the more precise ds_redefined_builtin_type_spec location for
1343 diagnostics about re-declaring C++ built-in types.
1344 (start_decl, grokvardecl, grokdeclarator): Use the new
1345 decl_spec_seq_has_spec_p.
1346
1347 2012-05-15 Paolo Carlini <paolo.carlini@oracle.com>
1348
1349 PR c++/11856
1350 * pt.c (tsubst_copy_and_build): Increase / decrease
1351 c_inhibit_evaluation_warnings around build_x_binary_op call.
1352
1353 2012-05-12 Paolo Carlini <paolo.carlini@oracle.com>
1354
1355 * cp-tree.h (TYPE_PTRMEM_P): Rename to TYPE_PTRDATAMEM_P.
1356 (TYPE_PTR_TO_MEMBER_P): Rename to TYPE_PTRMEM_P.
1357 (TYPE_PTR_OR_PTRMEM_P): Add.
1358 * typeck.c (composite_pointer_type_r, composite_pointer_type,
1359 common_pointer_type, cp_build_indirect_ref, cp_build_binary_op,
1360 cp_truthvalue_conversion, convert_ptrmem, build_static_cast_1,
1361 build_reinterpret_cast_1, build_const_cast_1, comp_ptr_ttypes_real,
1362 casts_away_constness_r, casts_away_constness): Adjust.
1363 * init.c (build_zero_init_1): Adjust.
1364 * class.c (check_field_decls): Likewise.
1365 * decl.c (check_default_argument): Likewise.
1366 * rtti.c (target_incomplete_p): Likewise.
1367 * tree.c (zero_init_p): Likewise.
1368 * cxx-pretty-print.c (pp_cxx_ptr_operator,
1369 pp_cxx_abstract_declarator): Likewise.
1370 * typeck2.c (build_m_component_ref): Likewise.
1371 * pt.c (convert_nontype_argument, invalid_nontype_parm_type_p,
1372 dependent_type_p_r): Likewise.
1373 * call.c (null_member_pointer_value_p, standard_conversion,
1374 add_builtin_candidate, build_conditional_expr_1, compare_ics):
1375 Likewise.
1376 * cp-objcp-common.c (cp_var_mod_type_p): Likewise.
1377 * cvt.c (cp_convert_to_pointer, ocp_convert,
1378 perform_qualification_conversions): Likewise.
1379 * mangle.c (write_type): Likewise.
1380 * name-lookup.c (arg_assoc_type): Likewise.
1381
1382 2012-05-12 Paolo Carlini <paolo.carlini@oracle.com>
1383
1384 * parser.c (struct cp_parser_expression_stack_entry): Add location_t
1385 field.
1386 (cp_parser_binary_expression): Rework to always update at the same
1387 time tree_type and loc.
1388 * call.c (print_z_candidate): Add location_t parameter.
1389 (print_z_candidates, convert_like_real, joust): Adjust.
1390
1391 2012-05-11 Alexandre Oliva <aoliva@redhat.com>
1392
1393 PR c++/53209
1394 * pt.c (tsubst_decl): Bail out if argvec is error_mark_node.
1395
1396 2012-05-11 Paolo Carlini <paolo.carlini@oracle.com>
1397
1398 PR c++/53305
1399 * pt.c (tsubst_copy: case PARM_DECL): Return error_mark_node if
1400 tsubst_decl returns NULL_TREE.
1401 * cxx-pretty-print.c (pp_cxx_simple_type_specifier): Handle
1402 BOUND_TEMPLATE_TEMPLATE_PARM.
1403
1404 2012-05-10 Paolo Carlini <paolo.carlini@oracle.com>
1405
1406 PR c++/53158
1407 * cvt.c (ocp_convert): Error out early for void -> bool conversions.
1408 * typeck.c (decay_conversion): Use error_at.
1409 * call.c (build_integral_nontype_arg_conv, convert_like_real,
1410 convert_arg_to_ellipsis, perform_implicit_conversion_flags,
1411 initialize_reference): Likewise.
1412 * cvt.c (warn_ref_binding): Add location_t parameter.
1413 (cp_convert_to_pointer, convert_to_reference, ocp_convert,
1414 convert_to_void, ): Use error_at and warning_at.
1415
1416 2012-05-10 Paolo Carlini <paolo.carlini@oracle.com>
1417
1418 PR c++/53301
1419 * decl.c (check_default_argument): Fix typo (POINTER_TYPE_P
1420 instead of TYPE_PTR_P) in zero-as-null-pointer-constant warning.
1421
1422 2012-05-06 Paolo Carlini <paolo.carlini@oracle.com>
1423
1424 PR c++/53152
1425 * call.c (op_error, build_new_op_1, build_new_op): Add location_t
1426 parameter.
1427 (build_conditional_expr_1): Adjust.
1428 * typeck.c (build_x_indirect_ref, build_x_binary_op,
1429 build_x_unary_op): Add location_t parameter.
1430 (rationalize_conditional_expr, build_x_array_ref,
1431 build_x_compound_expr, cp_build_modify_expr, build_x_modify_expr):
1432 Adjust.
1433 * typeck2.c (build_x_arrow): Add location_t parameter.
1434 * semantics.c (finish_unary_op_expr): Likewise.
1435 (finish_increment_expr, handle_omp_for_class_iterator): Adjust.
1436 * decl2.c (grok_array_decl): Add location_t parameter.
1437 * parser.c (cp_parser_postfix_open_square_expression,
1438 cp_parser_postfix_dot_deref_expression, cp_parser_unary_expression,
1439 cp_parser_binary_expression, cp_parser_builtin_offsetof,
1440 do_range_for_auto_deduction, cp_convert_range_for,
1441 cp_parser_template_argument, cp_parser_omp_for_cond): Pass the
1442 location, adjust.
1443 * pt.c (tsubst_copy_and_build): Adjust.
1444 * tree.c (maybe_dummy_object): Likewise.
1445 * cp-tree.h: Update declarations.
1446
1447 2012-05-04 Paolo Carlini <paolo.carlini@oracle.com>
1448
1449 * semantics.c (cxx_eval_constant_expression, case CONVERT_EXPR): Tidy.
1450
1451 2012-05-04 Paolo Carlini <paolo.carlini@oracle.com>
1452
1453 PR c++/53166
1454 * pt.c (instantiate_class_template_1): Increase / decrease
1455 c_inhibit_evaluation_warnings around the tsubst_expr call
1456 for STATIC_ASSERT_CONDITION.
1457 (tsubst_expr, case STATIC_ASSERT): Likewise.
1458 * typeck.c (cp_build_binary_op, case EQ_EXPR/NE_EXPR): Check
1459 c_inhibit_evaluation_warnings in the OPT_Waddress warnings.
1460
1461 2012-05-03 Paolo Carlini <paolo.carlini@oracle.com>
1462
1463 PR c++/53186
1464 * call.c (build_over_call): Handle final member functions
1465 and class types.
1466 (build_new_method_call_1): Do not handle here.
1467
1468 2012-05-02 Richard Guenther <rguenther@suse.de>
1469
1470 * decl.c (grokdeclarator): Properly check for sizes that
1471 cover more than half of the address-space.
1472
1473 2012-04-30 Marc Glisse <marc.glisse@inria.fr>
1474
1475 PR c++/51033
1476 * typeck.c (cp_build_array_ref): Handle VECTOR_TYPE.
1477 * decl2.c (grok_array_decl): Likewise.
1478
1479 PR c++/51314
1480 * parser.c (cp_parser_sizeof_operand): Require parentheses for
1481 sizeof...
1482
1483 2012-04-30 Dodji Seketeli <dodji@redhat.com>
1484
1485 Fix location for static class members
1486 * decl.c (grokdeclarator): Use the location carried by the
1487 declarator for the DECL of the static class member.
1488
1489 Fix va_arg type location
1490 * cp-tree.h (build_x_va_arg): Take an additional location
1491 parameter.
1492 * call.c (build_x_va_arg): Take a loc parameter for the location
1493 of the type of the va_arg expression.
1494 * parser.c (cp_parser_primary_expression): Pass the type of the
1495 type in the va_arg expression to build_x_va_arg.
1496 * pt.c (tsubst_copy): Adjust calls to build_x_va_arg.
1497
1498 Make conversion warnings work on NULL with -ftrack-macro-expansion
1499 * call.c (conversion_null_warnings): Use the new
1500 expansion_point_location_if_in_system_header.
1501 * cvt.c (build_expr_type_conversion): Likewise.
1502 * typeck.c (cp_build_binary_op): Likewise.
1503
1504 2012-04-30 Manuel López-Ibåñez <manu@gcc.gnu.org>
1505
1506 * typeck.c (convert_for_assignment): Replace
1507 Wmissing-format-attribute with Wsuggest-attribute=format.
1508 * call.c (convert_for_arg_passing): Likewise.
1509
1510 2012-04-26 Paolo Carlini <paolo.carlini@oracle.com>
1511
1512 PR c++/53096
1513 * class.c (check_bases_and_members): Implement core/1333, do not
1514 disallow defaulted in the class body non-const ref special members.
1515
1516 2012-04-24 Paolo Carlini <paolo.carlini@oracle.com>
1517
1518 PR c++/52363
1519 * call.c (tourney, perform_overload_resolution,
1520 build_operator_new_call, build_user_type_conversion_1,
1521 build_user_type_conversion, perform_overload_resolution,
1522 add_template_candidate, add_template_candidate_real,
1523 add_template_conv_candidate, add_builtin_candidates,
1524 add_builtin_candidate, build_builtin_candidate,
1525 add_conv_candidate, add_function_candidate, implicit_conversion,
1526 reference_binding, build_list_conv, conditional_conversion,
1527 add_candidates, can_convert_array, build_aggr_conv,
1528 build_array_conv, build_complex_conv, conditional_conversion):
1529 Add tsubst_flags_t parameter.
1530 (joust): Likewise, use it to handle SFINAE as if pedantic.
1531 (add_list_candidates, build_integral_nontype_arg_conv,
1532 perform_overload_resolution, build_new_function_call,
1533 build_operator_new_call, build_op_call_1,
1534 build_conditional_expr_1, build_new_op_1, convert_like_real,
1535 convert_arg_to_ellipsis, convert_default_arg,
1536 convert_for_arg_passing, build_over_call,
1537 build_new_method_call_1, can_convert_arg, can_convert_arg_bad,
1538 perform_implicit_conversion_flags,
1539 perform_direct_initialization_if_possible,
1540 initialize_reference): Adjust.
1541 * typeck.c (casts_away_constness, casts_away_constness_r):
1542 Add tsubst_flags_t parameter.
1543 (convert_arguments, check_for_casting_away_constness,
1544 build_static_cast_1, build_ptrmemfunc, convert_for_assignment):
1545 Adjust.
1546 * decl.c (reshape_init_r, check_default_argument): Likewise.
1547 * cp-gimplify.c (cxx_omp_clause_apply_fn): Likewise.
1548 * pt.c (convert_nontype_argument, check_non_deducible_conversion):
1549 Likewise.
1550 * init.c (build_new_1): Likewise.
1551 * cvt.c (convert_to_reference, ocp_convert, build_type_conversion,
1552 build_expr_type_conversion, ): Likewise.
1553 * search.c (check_final_overrider): Likewise.
1554 * cp-tree.h (build_user_type_conversion,
1555 build_operator_new_call, can_convert, can_convert_arg,
1556 can_convert_arg_bad, convert_default_arg,
1557 convert_arg_to_ellipsis, convert_for_arg_passing):
1558 Adjust declaration.
1559
1560 2012-04-22 Jan Hubicka <jh@suse.cz>
1561
1562 * decl2.c (maybe_make_one_only): Mark keyed COMDATs as USED so they
1563 gets finalized.
1564
1565 2012-04-22 Manuel López-Ibåñez <manu@gcc.gnu.org>
1566
1567 PR c/44774
1568 * typeck.c (composite_pointer_type): Likewise.
1569 (cxx_sizeof_or_alignof_type): Likewise.
1570 (cp_build_array_ref): Likewise.
1571 (cp_build_function_call_vec): Likewise.
1572 (cp_build_addr_expr_1): Likewise.
1573 (convert_member_func_to_ptr): Likewise.
1574 * decl.c (check_tag_decl): Likewise.
1575 (check_static_variable_definition): Likewise.
1576 (compute_array_index_type): Likewise.
1577 (create_array_type_for_decl): Likewise.
1578 (grokdeclarator): Likewise.
1579 (grok_op_properties): Likewise.
1580 * error.c (maybe_warn_cpp0x): Likewise.
1581 * pt.c (maybe_process_partial_specialization): Likewise.
1582 (convert_template_argument): Likewise.
1583 (do_decl_instantiation): Likewise.
1584 (do_type_instantiation): Likewise.
1585 * parser.c (cp_parser_primary_expression): Likewise.
1586 (cp_parser_postfix_expression): Likewise.
1587 (cp_parser_unary_expression): Likewise.
1588 (cp_parser_question_colon_clause): Likewise.
1589 (cp_parser_lambda_introducer): Likewise.
1590 (cp_parser_lambda_declarator_opt): Likewise.
1591 (cp_parser_compound_statement): Likewise.
1592 (cp_parser_jump_statement): Likewise.
1593 (cp_parser_declaration_seq_opt): Likewise.
1594 (cp_parser_enum_specifier): Likewise.
1595 (cp_parser_enumerator_list): Likewise.
1596 (cp_parser_initializer_list): Likewise.
1597 (cp_parser_member_declaration): Likewise.
1598 * call.c (build_conditional_expr_1): Likewise.
1599 * friend.c (make_friend_class): Likewise.
1600 * name-lookup.c (pushdecl_maybe_friend_1): Likewise.
1601
1602 2012-04-21 Jan Hubicka <jh@suse.cz>
1603
1604 * method.c (make_alias_for): Do not set TREE_SYMBOL_REFERENCED.
1605 * decl2.c (mark_needed): Likewise.
1606 (decl_needed_p): Do not test TREE_SYMBOL_REFERENCED.
1607
1608 * decl2.c (cxx_callgraph_analyze_expr): Remove.
1609 * cp-objcp-common.h (LANG_HOOKS_CALLGRAPH_ANALYZE_EXPR): Remove.
1610 * cp-tree.h (cxx_callgraph_analyze_expr): Remove.
1611
1612 2012-04-21 Manuel López-Ibåñez <manu@gcc.gnu.org>
1613
1614 PR 35441
1615 * typeck.c (cp_build_function_call_vec): Do not pretty-print
1616 expressions when caret is enabled.
1617
1618 2012-04-20 Jan Hubicka <jh@suse.cz>
1619
1620 PR target/53042
1621 * decl2.c (maybe_emit_vtables): Do not initialize same_comdat_group
1622 list when target has no support for it.
1623
1624 2012-04-20 Michael Matz <matz@suse.de>
1625
1626 * error.c (pedwarn_cxx98): Move va_end call after user
1627 of the va_list.
1628
1629 2012-04-18 Paolo Carlini <paolo.carlini@oracle.com>
1630
1631 PR c++/52422
1632 * cp-tree.h (build_addr_func, decay_conversion,
1633 get_member_function_from_ptrfunc,
1634 build_m_component_ref, convert_member_func_to_ptr):
1635 Add tsubst_flags_t parameter.
1636 * typeck.c (cp_default_conversion): Add.
1637 (decay_conversion, default_conversion,
1638 get_member_function_from_ptrfunc, convert_member_func_to_ptr):
1639 Add tsubst_flags_t parameter and use it throughout.
1640 (cp_build_indirect_ref, cp_build_array_ref,
1641 cp_build_function_call_vec, convert_arguments, build_x_binary_op,
1642 cp_build_binary_op, cp_build_unary_op, build_reinterpret_cast_1,
1643 build_const_cast_1, expand_ptrmemfunc_cst,
1644 convert_for_initialization): Adjust.
1645 * init.c (build_vec_init): Adjust.
1646 * decl.c (grok_reference_init, get_atexit_node): Likewise.
1647 * rtti.c (build_dynamic_cast_1, tinfo_base_init): Likewise.
1648 * except.c (build_throw): Likewise.
1649 * typeck2.c (build_x_arrow): Likewise.
1650 (build_m_component_ref): Add tsubst_flags_t parameter and
1651 use it throughout.
1652 * pt.c (convert_nontype_argument): Adjust.
1653 * semantics.c (finish_asm_stmt, maybe_add_lambda_conv_op): Likewise.
1654 * decl2.c (build_offset_ref_call_from_tree): Likewise.
1655 * call.c (build_addr_func): Add tsubst_flags_t parameter and
1656 use it throughout.
1657 (build_call_a, build_conditional_expr_1, build_new_op_1,
1658 convert_like_real, convert_arg_to_ellipsis, build_over_call,
1659 build_special_member_call): Adjust.
1660 * cvt.c (cp_convert_to_pointer, force_rvalue,
1661 build_expr_type_conversion): Likewise.
1662
1663 2012-04-17 Tom de Vries <tom@codesourcery.com>
1664
1665 * cp-gimplify.c (begin_bc_block): Add location parameter and use as
1666 location argument to create_artificial_label.
1667 (finish_bc_block): Change return type to void. Remove body_seq
1668 parameter, and add block parameter. Append label to STMT_LIST and
1669 return in block.
1670 (gimplify_cp_loop, gimplify_for_stmt, gimplify_while_stmt)
1671 (gimplify_do_stmt, gimplify_switch_stmt): Remove function.
1672 (genericize_cp_loop, genericize_for_stmt, genericize_while_stmt)
1673 (genericize_do_stmt, genericize_switch_stmt, genericize_continue_stmt)
1674 (genericize_break_stmt, genericize_omp_for_stmt): New function.
1675 (cp_gimplify_omp_for): Remove bc_continue processing.
1676 (cp_gimplify_expr): Genericize VEC_INIT_EXPR.
1677 (cp_gimplify_expr): Mark FOR_STMT, WHILE_STMT, DO_STMT, SWITCH_STMT,
1678 CONTINUE_STMT, and BREAK_STMT as unreachable.
1679 (cp_genericize_r): Genericize FOR_STMT, WHILE_STMT, DO_STMT,
1680 SWITCH_STMT, CONTINUE_STMT, BREAK_STMT and OMP_FOR.
1681 (cp_genericize_tree): New function, factored out of ...
1682 (cp_genericize): ... this function.
1683
1684 2012-04-17 Paolo Carlini <paolo.carlini@oracle.com>
1685
1686 PR c++/52599
1687 * semantics.c (build_constexpr_constructor_member_initializers):
1688 Check for function-try-block as function-body.
1689
1690 2012-04-17 Paolo Carlini <paolo.carlini@oracle.com>
1691
1692 PR c++/53003
1693 * parser.c (cp_parser_member_declaration): Check that
1694 initializer_token_start is non null before dereferencing it.
1695
1696 2012-04-16 Jason Merrill <jason@redhat.com>
1697
1698 PR c++/38543
1699 * pt.c (determine_specialization): Instead of comparing the number
1700 of parms, check that tsubst gives the right answer.
1701
1702 PR c++/52008
1703 * pt.c (process_partial_specialization): Complain about a partial
1704 specialization with fewer args than primary template parms.
1705
1706 PR c++/50830
1707 * pt.c (convert_template_argument): Handle template template
1708 argument packs.
1709
1710 PR c++/50303
1711 * pt.c (tsubst_pack_expansion): Use tsubst_expr for template
1712 template parameters.
1713
1714 2012-04-16 Paolo Carlini <paolo.carlini@oracle.com>
1715
1716 PR c++/49152
1717 * call.c (op_error): Print types; when flag_diagnostics_show_caret
1718 is false print expressions too.
1719 (op_error_string): Add.
1720
1721 2012-04-16 Jason Merrill <jason@redhat.com>
1722
1723 PR c++/51148
1724 * friend.c (make_friend_class): Call check_for_bare_parameter_packs.
1725
1726 2012-04-16 Jan Hubicka <jh@suse.cz>
1727
1728 * decl2.c (collect_candidates_for_java_method_alias): Use FOR_EACH
1729 walkers to walk cgraph and varpool.
1730
1731 2012-04-15 Jason Merrill <jason@redhat.com>
1732
1733 PR c++/47220
1734 * pt.c (coerce_template_parameter_pack): Check for error_mark_node.
1735
1736 PR c++/52292
1737 PR c++/52380
1738 * pt.c (coerce_template_parms): Even if we aren't converting we
1739 want to expand argument packs.
1740
1741 PR c++/52706
1742 * mangle.c (write_type): nullptr_t is a builtin type.
1743
1744 2012-04-14 Jan Hubicka <jh@suse.cz>
1745
1746 * tree.c: Update field referenced for new cgraph/varpool layout.
1747 * decl2.c: Likewise.
1748
1749 2012-04-13 Jason Merrill <jason@redhat.com>
1750
1751 PR c++/52824
1752 * pt.c (any_pack_expanson_args_p): New.
1753 (coerce_template_parms): Use it.
1754
1755 PR c++/52905
1756 * call.c (joust): Handle comparing list and non-list ctors.
1757
1758 PR c++/52915
1759 * decl2.c (finish_anon_union): Use cp_finish_decl.
1760 * error.c (dump_function_name): Avoid showing anonymous "name".
1761
1762 2012-04-11 Fabien ChĂȘne <fabien@gcc.gnu.org>
1763
1764 PR c++/52465
1765 * parser.c (cp_parser_class_name): Call strip_using_decl and
1766 return the target decl.
1767 * name-lookup.c (strip_using_decl): Returns NULL_TREE if the decl
1768 to be stripped is NULL_TREE.
1769 (qualify_lookup): Call strip_using_decl and perform some checks on
1770 the target decl.
1771
1772 2012-04-11 Jason Merrill <jason@redhat.com>
1773
1774 PR debug/45088
1775 * decl.c (grokdeclarator): Strip the injected-class-name typedef
1776 if we are building a declaration or compound type.
1777
1778 PR c++/52906
1779 * decl.c (check_tag_decl): Don't complain about attributes if we
1780 don't even have a type.
1781
1782 2012-04-10 Manuel López-Ibåñez <manu@gcc.gnu.org>
1783
1784 * cvt.c (convert_to_void): Update comment.
1785
1786 2012-04-05 Jason Merrill <jason@redhat.com>
1787
1788 PR c++/52596
1789 * semantics.c (finish_non_static_data_member): In templates, pass
1790 the decl to build_qualified_name.
1791 * tree.c (lvalue_kind) [SCOPE_REF]: Handle FIELD_DECL.
1792
1793 2012-04-04 Jason Merrill <jason@redhat.com>
1794
1795 PR c++/52845
1796 * decl.c (finish_function): Update fntype after deducing return type.
1797
1798 2012-04-03 Jason Merrill <jason@redhat.com>
1799
1800 PR c++/52796
1801 * pt.c (tsubst_initializer_list): A pack expansion with no elements
1802 means value-initialization.
1803
1804 2012-04-01 Paolo Carlini <paolo.carlini@oracle.com>
1805
1806 PR c++/50043
1807 * class.c (deduce_noexcept_on_destructor,
1808 deduce_noexcept_on_destructors): New.
1809 (check_bases_and_members): Call the latter.
1810 * decl.c (grokfndecl): Call the former.
1811 * method.c (implicitly_declare_fn): Not static.
1812 * cp-tree.h (deduce_noexcept_on_destructor, implicitly_declare_fn):
1813 Declare
1814
1815 2012-03-29 Paolo Carlini <paolo.carlini@oracle.com>
1816
1817 PR c++/52718
1818 * decl.c (check_default_argument): With -Wzero-as-null-pointer-constant
1819 warn for a zero as null pointer constant default argument.
1820
1821 2012-03-29 Jason Merrill <jason@redhat.com>
1822
1823 PR c++/52685
1824 * tree.c (copy_binfo): Handle BINFO_DEPENDENT_BASE_P.
1825
1826 2012-03-29 Jakub Jelinek <jakub@redhat.com>
1827
1828 PR c++/52759
1829 * decl.c (start_decl): Don't call maybe_apply_pragma_weak
1830 if processing_template_decl.
1831
1832 2012-03-29 Jason Merrill <jason@redhat.com>
1833
1834 PR c++/52743
1835 * call.c (compare_ics): Handle ck_aggr like ck_list.
1836
1837 2012-03-28 Jason Merrill <jason@redhat.com>
1838
1839 PR c++/52746
1840 * typeck.c (lookup_destructor): Clear BASELINK_QUALIFIED_P if
1841 we didn't get an explicit scope.
1842 * pt.c (tsubst_baselink): Likewise.
1843
1844 2012-03-28 Richard Guenther <rguenther@suse.de>
1845
1846 * typeck2.c (process_init_constructor_array): Use the proper
1847 type for computing the array length.
1848
1849 2012-03-27 Meador Inge <meadori@codesourcery.com>
1850
1851 PR c++/52672
1852 * semantics.c (cxx_fold_indirect_ref): Don't attempt to fold
1853 stripped child trees that are not pointer types.
1854
1855 2012-03-21 Jason Merrill <jason@redhat.com>
1856
1857 Implement return type deduction for normal functions with -std=c++1y.
1858 * cp-tree.h (FNDECL_USED_AUTO): New macro.
1859 (LAMBDA_EXPR_DEDUCE_RETURN_TYPE_P): Remove.
1860 (dependent_lambda_return_type_node): Remove.
1861 (CPTI_DEPENDENT_LAMBDA_RETURN_TYPE): Remove.
1862 (struct language_function): Add x_auto_return_pattern field.
1863 (current_function_auto_return_pattern): New.
1864 (enum tsubst_flags): Add tf_partial.
1865 * decl.c (decls_match): Handle auto return comparison.
1866 (duplicate_decls): Adjust error message for auto return.
1867 (cxx_init_decl_processing): Remove dependent_lambda_return_type_node.
1868 (cp_finish_decl): Don't do auto deduction for functions.
1869 (grokdeclarator): Allow auto return without trailing return type in
1870 C++1y mode.
1871 (check_function_type): Defer checking of deduced return type.
1872 (start_preparsed_function): Set current_function_auto_return_pattern.
1873 (finish_function): Set deduced return type to void if not previously
1874 deduced.
1875 * decl2.c (change_return_type): Handle error_mark_node.
1876 (mark_used): Always instantiate functions with deduced return type.
1877 Complain about use if deduction isn't done.
1878 * parser.c (cp_parser_lambda_declarator_opt): Use 'auto' for
1879 initial return type.
1880 (cp_parser_lambda_body): Don't deduce return type in a template.
1881 (cp_parser_conversion_type_id): Allow auto in C++1y.
1882 * pt.c (instantiate_class_template_1): Don't mess with
1883 LAMBDA_EXPR_DEDUCE_RETURN_TYPE_P.
1884 (tsubst_copy_and_build): Likewise.
1885 (fn_type_unification, tsubst): Don't reduce the template parm level
1886 of 'auto' during deduction.
1887 (unify): Compare 'auto' specially.
1888 (get_bindings): Change test.
1889 (always_instantiate_p): Always instantiate functions with deduced
1890 return type.
1891 (do_auto_deduction): Handle error_mark_node and lambda context.
1892 Don't check for use in initializer.
1893 (contains_auto_r): Remove.
1894 * search.c (lookup_conversions_r): Handle auto conversion function.
1895 * semantics.c (lambda_return_type): Handle null return. Don't mess
1896 with dependent_lambda_return_type_node.
1897 (apply_deduced_return_type): Rename from apply_lambda_return_type.
1898 * typeck.c (merge_types): Handle auto.
1899 (check_return_expr): Do auto deduction.
1900 * typeck2.c (add_exception_specifier): Fix complain check.
1901
1902 2012-03-22 Paolo Carlini <paolo.carlini@oracle.com>
1903
1904 PR c++/52487
1905 * class.c (check_field_decls): Call literal_type_p only
1906 on complete types.
1907
1908 2012-03-22 Jakub Jelinek <jakub@redhat.com>
1909
1910 PR c++/52671
1911 * decl.c (check_tag_decl): Only use CLASSTYPE_TEMPLATE_INSTANTIATION
1912 on CLASS_TYPE_P types.
1913
1914 2012-03-20 Jason Merrill <jason@redhat.com>
1915
1916 * lex.c (init_reswords): Use >= for cxx_dialect test.
1917 * parser.c (cp_parser_exception_specification_opt): Likewise.
1918
1919 * mangle.c (write_type): Handle 'auto'.
1920 * init.c (build_new): Don't do auto deduction where it might
1921 affect template mangling.
1922
1923 PR c++/52510
1924 * decl.c (reshape_init_class): Handle repeated reshaping.
1925 * search.c (lookup_field_1): Add sanity check.
1926
1927 2012-03-19 Paolo Carlini <paolo.carlini@oracle.com>
1928
1929 PR c++/14710
1930 * cp-tree.h (xvalue_p, maybe_warn_about_useless_cast): Declare.
1931 * tree.c (xvalue_p): Define.
1932 * typeck.c (maybe_warn_about_useless_cast): Define.
1933 (build_reinterpret_cast, build_const_cast,
1934 build_static_cast, cp_build_c_cast): Use maybe_warn_about_useless_cast.
1935 * rtti.c (build_dynamic_cast): Likewise.
1936 * pt.c (tsubst_copy_and_build, case CAST_EXPR): Increment/decrement
1937 c_inhibit_evaluation_warnings before/after the build_* calls.
1938
1939 2012-03-15 Jason Merrill <jason@redhat.com>
1940
1941 PR c++/52582
1942 * method.c (implicitly_declare_fn): Set DECL_EXTERNAL.
1943
1944 2012-03-15 Manuel López-Ibåñez <manu@gcc.gnu.org>
1945
1946 PR c++/44783
1947 * error.c (print_instantiation_partial_context): Use
1948 template_backtrace_limit.
1949
1950 2012-03-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1951
1952 * Make-lang.in (doc/g++.1): Remove IRIX 6.5 reference.
1953
1954 2012-03-14 Jakub Jelinek <jakub@redhat.com>
1955
1956 PR c++/52521
1957 * parser.c (lookup_literal_operator): Return fn only if
1958 processed all arguments from args vector and argtypes is
1959 void_list_node.
1960
1961 2012-01-30 Dodji Seketeli <dodji@redhat.com>
1962
1963 PR c++/51641
1964 * cp-tree.h (template_type_parameter_p): Declare new function.
1965 (parameter_of_template_p): Remove.
1966 * pt.c (template_type_parameter_p): Define new function.
1967 (parameter_of_template_p): Remove.
1968 * name-lookup.c (binding_to_template_parms_of_scope_p): Don't rely
1969 on parameter_of_template_p anymore. Compare the level of the
1970 template parameter to the depth of the template.
1971
1972 2011-12-15 Dodji Seketeli <dodji@redhat.com>
1973
1974 * call.c (standard_conversion, build_integral_nontype_arg_conv)
1975 (build_new_op_1, convert_like_real, is_subseq)
1976 (maybe_handle_implicit_object, maybe_handle_ref_bind, compare_ics)
1977 (joust): Use next_conversion instead of accessing fields of struct
1978 conversion directly.
1979
1980 2012-03-12 Paolo Carlini <paolo.carlini@oracle.com>
1981
1982 PR c++/52299
1983 * pt.c (tsubst_copy_and_build, case COND_EXPR): Avoid bogus
1984 division by zero warnings.
1985
1986 2012-03-08 Paolo Carlini <paolo.carlini@oracle.com>
1987
1988 * typeck.c (build_array_ref, cp_build_addr_expr_1, convert_ptrmem,
1989 build_ptrmemfunc): Consistently forward the tsubst_flags_t
1990 parameter.
1991 * call.c (resolve_args): Likewise.
1992
1993 2012-03-07 Jason Merrill <jason@redhat.com>
1994
1995 PR c++/52521
1996 * mangle.c (write_literal_operator_name): The length comes after the
1997 operator prefix.
1998
1999 2012-03-05 Jakub Jelinek <jakub@redhat.com>
2000
2001 * pt.c (local_specializations): Change from htab_t into
2002 struct pointer_map_t *.
2003 (retrieve_local_specializations, register_local_specialization,
2004 tsubst_pack_expansion, instantiate_decl): Adjust users.
2005 (eq_local_specializations, hash_local_specialization): Remove.
2006
2007 2012-03-05 Jason Merrill <jason@redhat.com>
2008
2009 PR c++/51930
2010 * decl2.c (determine_visibility): Correct calculation of class
2011 args depth.
2012 * decl.c (check_tag_decl): Adjust warning.
2013
2014 * method.c (synthesized_method_walk): Cleanups don't affect the EH
2015 spec either.
2016
2017 2012-03-03 Jason Merrill <jason@redhat.com>
2018
2019 * init.c (perform_member_init): Cope with uninstantiated NSDMI.
2020
2021 Core 1270
2022 * call.c (build_aggr_conv): Call reshape_init.
2023 (convert_like_real): Likewise.
2024 * typeck2.c (process_init_constructor): Clear TREE_CONSTANT if
2025 not all constant.
2026
2027 * mangle.c (write_nested_name): Use decl_mangling_context.
2028 (write_prefix, write_template_prefix): Likewise.
2029
2030 PR c++/36797
2031 * mangle.c (write_expression): Improve diagnostic for TRAIT_EXPR.
2032
2033 * class.c (add_method): Always build an OVERLOAD for using-decls.
2034 * search.c (lookup_member): Handle getting an OVERLOAD for a
2035 single function.
2036
2037 2012-03-02 Paolo Carlini <paolo.carlini@oracle.com>
2038
2039 PR c++/51989
2040 * typeck2.c (build_x_arrow): Take a tsubst_flags_t argument and
2041 propagate it.
2042 * cp-tree.h (build_x_arrow): Adjust prototype.
2043 * pt.c (tsubst_copy_and_build): Adjust call.
2044 * parser.c (cp_parser_postfix_dot_deref_expression): Likewise.
2045
2046 2012-03-02 Paolo Carlini <paolo.carlini@oracle.com>
2047
2048 * name-lookup.c (binding_to_template_parms_of_scope_p): Clean up.
2049
2050 2012-02-29 Jason Merrill <jason@redhat.com>
2051
2052 PR c++/51930
2053 * decl.c (check_tag_decl): Move warning for misplaced attributes here.
2054 (shadow_tag): From here.
2055 * parser.c (cp_parser_explicit_instantiation): Don't warn here.
2056
2057 2012-02-21 Jakub Jelinek <jakub@redhat.com>
2058
2059 PR c++/52312
2060 * typeck.c (check_literal_operator_args): Initialize *long_double_p
2061 and *long_long_unsigned_p even if processing_template_decl.
2062
2063 2012-02-16 Jason Merrill <jason@redhat.com>
2064
2065 PR c++/52248
2066 * decl.c (define_label): Use timevar_cond_start/stop.
2067
2068 2012-02-16 Fabien ChĂȘne <fabien@gcc.gnu.org>
2069
2070 PR c++/52126
2071 * decl.c (xref_basetypes): call dependent_scope_p instead of
2072 dependent_type_p.
2073
2074 2012-02-16 Jason Merrill <jason@redhat.com>
2075
2076 PR c++/51415
2077 * error.c (dump_expr): Handle lambda closures specifically.
2078
2079 2012-02-14 Jason Merrill <jason@redhat.com>
2080
2081 * parser.c (cp_parser_explicit_instantiation): Give a warning
2082 for ignored attributes on explicit class instantiation.
2083
2084 2012-02-14 Jakub Jelinek <jakub@redhat.com>
2085
2086 PR c++/52247
2087 * pt.c (tsubst_copy_asm_operands): For LABEL_DECL values call
2088 lookup_label on label's name and set TREE_USED.
2089
2090 2012-02-14 Jason Merrill <jason@redhat.com>
2091
2092 PR c++/39055
2093 * decl.c (local_variable_p_walkfn): Don't check DECL_ARTIFICIAL.
2094
2095 2012-02-14 Jakub Jelinek <jakub@redhat.com>
2096
2097 PR c/52181
2098 * decl.c (duplicate_decls): If olddecl has bigger DECL_ALIGN than
2099 newdecl, copy DECL_ALIGN to newdecl and or DECL_USER_ALIGN bits.
2100
2101 2012-02-07 Jason Merrill <jason@redhat.com>
2102
2103 PR c++/51675
2104 * semantics.c (cx_check_missing_mem_inits): Handle unions.
2105 Fix constexpr default constructor logic.
2106
2107 PR c++/52035
2108 * pt.c (tsubst): Strip uninstantiated typedef.
2109
2110 2012-02-06 Jason Merrill <jason@redhat.com>
2111
2112 PR c++/52088
2113 * cvt.c (build_expr_type_conversion): Check for template conversion.
2114
2115 2012-01-31 Jason Merrill <jason@redhat.com>
2116
2117 PR c++/52043
2118 * cp-tree.h (PACK_EXPANSION_LOCAL_P): New.
2119 * pt.c (make_pack_expansion, tsubst_initializer_list): Set it.
2120 (tsubst_pack_expansion): Check it.
2121
2122 2012-01-29 Paolo Carlini <paolo.carlini@oracle.com>
2123
2124 PR c++/51327
2125 * class.c (explain_non_literal_class): Correctly handle implicitly
2126 deleted constructors.
2127
2128 2012-01-27 Jakub Jelinek <jakub@redhat.com>
2129
2130 PR c++/51852
2131 * pt.c (tsubst_pack_expansion): Delete and restore
2132 local_specialization whenever need_local_specialization, not just
2133 when saved_local_specializations is non-NULL.
2134
2135 2012-01-26 Paolo Carlini <paolo.carlini@oracle.com>
2136
2137 PR c++/51370
2138 * error.c (dump_decl, [TEMPLATE_ID_EXPR]): Handle error_mark_node
2139 as TREE_OPERAND (t, 1).
2140
2141 2012-01-24 Jason Merrill <jason@redhat.com>
2142
2143 PR c++/51917
2144 * decl.c (xref_basetypes): Check VEC_length instead of VEC_space.
2145
2146 PR c++/51973
2147 * tree.c (called_fns_equal): Check template args.
2148 (cp_tree_equal): Call it.
2149
2150 2012-01-24 Aldy Hernandez <aldyh@redhat.com>
2151 Patrick Marlier <patrick.marlier@gmail.com>
2152
2153 PR c++/51928
2154 * class.c (set_method_tm_attributes): Use TARGET_THUNK instead of
2155 thunk for set_one_vmethod_tm_attributes.
2156
2157 2012-01-24 Paolo Carlini <paolo.carlini@oracle.com>
2158
2159 PR c++/51223
2160 * call.c (build_over_call): Check for error_mark_node as
2161 TREE_VALUE when default arguments are processed.
2162
2163 2012-01-23 Jason Merrill <jason@redhat.com>
2164
2165 PR c++/51930
2166 * decl2.c (determine_visibility): Check for visibility attribute
2167 on template specialization.
2168
2169 2012-01-23 Paolo Carlini <paolo.carlini@oracle.com>
2170
2171 PR c++/51398
2172 * pt.c (parameter_of_template_p): Skip error_mark_node parameters.
2173
2174 2012-01-23 Jason Merrill <jason@redhat.com>
2175
2176 PR c++/51925
2177 * class.c (add_method): Set OVL_USED for using-decls.
2178 * tree.c (ovl_scope): New.
2179 * cp-tree.h: Declare it.
2180 * parser.c (cp_parser_template_name): Use it.
2181 * semantics.c (baselink_for_fns): Likewise.
2182 * name-lookup.c (set_inherited_value_binding_p): Likewise.
2183
2184 2012-01-20 Paolo Carlini <paolo.carlini@oracle.com>
2185
2186 PR c++/51402
2187 * pt.c (lookup_template_class_1): Check context returned by
2188 tsubst for error_mark_node.
2189
2190 2012-01-19 Kai Tietz <ktietz@redhat.com>
2191
2192 PR c++/51344
2193 * decl2.c (save_template_attributes): Use merge_attributes
2194 instead of chaining up via TREE_CHAIN.
2195
2196 2012-01-19 Jason Merrill <jason@redhat.com>
2197
2198 PR c++/51889
2199 * class.c (finish_struct): Call add_method here for function usings.
2200 * semantics.c (finish_member_declaration): Not here.
2201
2202 2012-01-18 Paolo Carlini <paolo.carlini@oracle.com>
2203
2204 PR c++/51225
2205 * typeck2.c (store_init_value): Within a template guard
2206 cxx_constant_value with require_potential_constant_expression.
2207 * pt.c (convert_nontype_argument): Likewise.
2208
2209 2012-01-16 Jakub Jelinek <jakub@redhat.com>
2210
2211 PR c++/51854
2212 * mangle.c (write_template_arg_literal): Handle complex.
2213
2214 2012-01-16 Jason Merrill <jason@redhat.com>
2215
2216 PR c++/51827
2217 * mangle.c (mangle_decl): Don't mangle uninstantiated templates.
2218
2219 PR c++/51868
2220 * typeck.c (build_static_cast_1): Handle bit-fields properly.
2221
2222 2012-01-13 Ian Lance Taylor <iant@google.com>
2223
2224 PR c++/50012
2225 * typeck.c (enum_cast_to_int): New static function.
2226 (cp_build_binary_op): When handling warn_sign_compare, don't test
2227 for TREE_NO_WARNING. Do call enum_cast_to_int.
2228 * call.c (avoid_sign_compare_warnings): Remove static function.
2229 (build_new_op_1): Don't call avoid_sign_compare_warnings.
2230
2231 2012-01-13 Steven Bosscher <steven@gcc.gnu.org>
2232
2233 * decl2.c: Do not include tree-mudflap.h
2234 * semantics.c: Likewise.
2235
2236 2012-01-13 Jason Merrill <jason@redhat.com>
2237
2238 PR c++/20681
2239 * semantics.c (finish_break_stmt): Avoid adding an unreachable
2240 BREAK_STMT.
2241
2242 PR c++/51813
2243 * decl2.c (constrain_visibility): Clear DECL_VISIBILITY_SPECIFIED
2244 when reducing the visibility.
2245
2246 PR c++/51620
2247 * class.c (build_vtbl_initializer): Use __cxa_deleted_virtual.
2248
2249 2012-01-12 Jason Merrill <jason@redhat.com>
2250
2251 PR c++/51714
2252 * pt.c (value_dependent_expression_p): Treat STMT_EXPR as
2253 value-dependent.
2254
2255 2012-01-13 Dodji Seketeli <dodji@redhat.com>
2256
2257 PR c++/51633
2258 * semantics.c (cp_parser_ctor_initializer_opt_and_function_body):
2259 Set the pointer to the last block of the constructor to the
2260 current statement.
2261 (build_constexpr_constructor_member_initializers): Get
2262 build_data_member_initialization a chance to deal with more
2263 statements before we choke.
2264
2265 2012-01-12 Jason Merrill <jason@redhat.com>
2266
2267 PR c++/48051
2268 * mangle.c (write_expression): Mangle BASELINK scope if
2269 BASELINK_QUALIFIED_P.
2270 * search.c (adjust_result_of_qualified_name_lookup): Set
2271 BASELINK_QUALIFIED_P.
2272 * tree.c (cp_tree_equal) [BASELINK]: Compare BASELINK_QUALIFIED_P.
2273 * parser.c (cp_parser_postfix_dot_deref_expression): Don't call
2274 adjust_result_of_qualified_name_lookup for non-qualified names.
2275
2276 PR c++/51403
2277 * pt.c (unify): Handle error_mark_node.
2278
2279 2012-01-11 Jason Merrill <jason@redhat.com>
2280
2281 PR c++/51565
2282 * call.c (standard_conversion): For ptrmemfuncs, compare the
2283 static_fn_types.
2284
2285 PR c++/51818
2286 * mangle.c (find_substitution): A type is only a substitution
2287 match if we're looking for a type.
2288 (write_nested_name): Use decl_mangling_context.
2289
2290 * decl.c (decls_match): Assert that the arguments are decls.
2291
2292 PR c++/51613
2293 * pt.c (resolve_overloaded_unification): Compare types with
2294 same_type_p, not decls_match.
2295
2296 2012-01-10 Jason Merrill <jason@redhat.com>
2297
2298 PR c++/51614
2299 * class.c (build_base_path): Diagnose ambiguous base.
2300
2301 PR c++/51433
2302 * semantics.c (cxx_eval_call_expression): Always retry previously
2303 non-constant expressions.
2304
2305 2012-01-06 Jason Merrill <jason@redhat.com>
2306
2307 DR 686
2308 PR c++/47450
2309 * parser.c (cp_parser_new_expression): Set
2310 type_definition_forbidden_message.
2311
2312 PR c++/6057
2313 PR c++/48051
2314 PR c++/50855
2315 PR c++/51322
2316 * mangle.c (write_expression): Support NEW_EXPR, DELETE_EXPR,
2317 THROW_EXPR, CONSTRUCTOR, OVERLOAD. Fix PREINCREMENT_EXPR and
2318 PREDECREMENT_EXPR.
2319 (write_template_arg): Fix mangling of class-scope functions and
2320 argument packs.
2321 (mangle_decl): Update suggested -fabi-version argument.
2322 * operators.def: Add DOTSTAR_EXPR, REINTERPRET_CAST_EXPR,
2323 DYNAMIC_CAST_EXPR; correct CONST_CAST_EXPR, STATIC_CAST_EXPR.
2324 * tree.c (dependent_name): No longer static.
2325 * cp-tree.h: Declare it.
2326 * pt.c (unify): Defer handling of unconverted functions.
2327
2328 * mangle.c (mangle_decl): Don't generate mangling aliases
2329 for maybe-in-charge [cd]tors.
2330
2331 * error.c (dump_expr): Print type of CONSTRUCTOR.
2332
2333 2012-01-05 Dodji Seketeli <dodji@redhat.com>
2334
2335 PR c++/51541
2336 * parser.c (cp_parser_alias_declaration): Get out early upon
2337 errors in the identifier or the attributes.
2338
2339 2012-01-04 Paolo Carlini <paolo.carlini@oracle.com>
2340
2341 PR c++/51064
2342 * pt.c (tsubst_copy_and_build): Maybe set TREE_NO_WARNING on
2343 the tree returned by build_x_binary_op.
2344
2345 2012-01-03 Paolo Carlini <paolo.carlini@oracle.com>
2346
2347 PR c++/51738
2348 * parser.c (cp_parser_postfix_open_square_expression): Handle
2349 postfix-expression [ braced-init-list ].
2350
2351 2012-01-03 Paolo Carlini <paolo.carlini@oracle.com>
2352
2353 PR c++/29273
2354 * rtti.c (build_dynamic_cast_1): In case of T a pointer type,
2355 call decay_conversion on v.
2356
2357 2012-01-03 Paolo Carlini <paolo.carlini@oracle.com>
2358
2359 PR c++/15867
2360 * decl.c (duplicate_decls): With -Wredundant-decls don't warn for
2361 declaration followed by specialization.
2362
2363 2012-01-03 Jakub Jelinek <jakub@redhat.com>
2364
2365 PR c++/51669
2366 * semantics.c (finish_omp_clauses): Call fold_build_cleanup_point_expr
2367 on OMP_CLAUSE_{IF,FINAL,NUM_THREADS,SCHEDULE_CHUNK}_EXPR.
2368
2369 2012-01-02 Jason Merrill <jason@redhat.com>
2370
2371 DR 1359
2372 PR c++/51675
2373 * method.c (walk_field_subobs): Don't check for uninitialized
2374 fields in a union.
2375 (synthesized_method_walk): Check here.
2376
2377 DR 325
2378 PR c++/51666
2379 * parser.c (cp_parser_cache_defarg): Split out...
2380 (cp_parser_parameter_declaration): ...from here.
2381 (cp_parser_save_nsdmi): Use it.
2382 (cp_parser_cache_group): Remove CPP_COMMA support.
2383
2384 2012-01-02 Dodji Seketeli <dodji@redhat.com>
2385
2386 PR c++/51462
2387 * semantics.c (cx_check_missing_mem_inits): Don't assert in case
2388 of error.
2389
2390 2012-01-02 Paolo Carlini <paolo.carlini@oracle.com>
2391
2392 PR c++/20140
2393 * typeck2.c (digest_init_r): Use copy_init when initializing
2394 an array of chars.
2395
2396 2012-01-01 Paolo Carlini <paolo.carlini@oracle.com>
2397
2398 PR c++/16603
2399 * decl.c (build_enumerator): Don't call perform_integral_promotions
2400 on the value.
2401
2402 2012-01-01 Paolo Carlini <paolo.carlini@oracle.com>
2403
2404 PR c++/51379
2405 * typeck.c (build_reinterpret_cast_1): Implement resolution of
2406 DR 799.
2407
2408 2012-01-01 Fabien ChĂȘne <fabien@gcc.gnu.org>
2409
2410 * parser.c (cp_parser_using_declaration): Add a warning about
2411 deprecated access declarations when no errors were encountered
2412 while parsing the access declaration. Save the first token in
2413 order to emit the warning at the right place.
2414 \f
2415 Copyright (C) 2012 Free Software Foundation, Inc.
2416
2417 Copying and distribution of this file, with or without modification,
2418 are permitted in any medium without royalty provided the copyright
2419 notice and this notice are preserved.