1 2010-04-07 Jason Merrill <jason@redhat.com>
3 * pt.c (print_template_statistics): New.
4 * cp-tree.h: Declare it.
5 * tree.c (cxx_print_statistics): Call it.
8 * decl.c (grokvardecl): Tweak warning message.
9 (grokfndecl): Likewise.
11 2010-04-07 Dodji Seketeli <dodji@redhat.com>
14 *pt.c (tsubst_decl): Get the arguments of a specialization from
15 the specialization template, not from the most general template.
17 2010-04-07 Dodji Seketeli <dodji@redhat.com>
20 * typeck2.c (process_init_constructor_record):
21 value-initialize members that are are not explicitely
24 2010-04-07 Jie Zhang <jie@codesourcery.com>
27 * typeck2.c (split_nonconstant_init_1): Drop empty CONSTRUCTOR
28 when all of its elements are non-constant and have been split out.
30 2010-04-06 Taras Glek <taras@mozilla.com>
31 Jason Merrill <jason@redhat.com>
33 * parser.c (cp_parser_class_specifier): Set class location to that
34 of IDENTIFIER_NODE instead of '{' when possible.
35 * semantics.c (begin_class_definition): Do not overide locations
36 with less precise ones.
38 2010-04-06 Jason Merrill <jason@redhat.com>
41 * name-lookup.c (constructor_name_p): Allow X::~X even for typedefs.
44 * pt.c (maybe_update_decl_type): Check the return value from
47 2010-04-01 Jason Merrill <jason@redhat.com>
49 * decl.c (next_initializable_field): No longer static.
50 * cp-tree.h: Declare it.
51 * call.c (build_aggr_conv): Fail if there are more initializers
52 than initializable fields.
54 * semantics.c (maybe_add_lambda_conv_op): Use null_pointer_node
55 instead of void_zero_node.
57 2010-03-31 Dodji Seketeli <dodji@redhat.com>
60 * cp-tree.h (TEMPLATE_TYPE_PARM_SIBLING_PARMS): New accessor macro.
61 * pt.c (end_template_parm_list): Store sibling template parms of
62 each TEMPLATE_TYPE_PARMs into its TEMPLATE_TYPE_PARM_SIBLING_PARMS.
63 (push_template_decl_real): Don't store the containing template decl
64 into the DECL_CONTEXT of TEMPLATE_TYPE_PARMs anymore.
65 * typeck.c (get_template_parms_of_dependent_type): Get sibling parms
66 of a TEMPLATE_TYPE_PARM from TEMPLATE_TYPE_PARM_SIBLING_PARMS.
69 2010-03-30 Jason Merrill <jason@redhat.com>
72 * pt.c (push_template_decl_real): Deal better with running out of
73 scopes before running out of template parms.
77 * parser.c (cp_parser_direct_declarator): Don't allow VLAs in
78 function parameter context. Don't print an error if parsing
82 * pt.c (more_specialized_fn): Don't control cv-qualifier check
85 2010-03-26 Jason Merrill <jason@redhat.com>
88 * parser.c (cp_parser_qualifying_entity): Do accept enum names in
89 c++0x mode, but not other type-names.
91 2010-03-26 Dodji Seketeli <dodji@redhat.com>
94 * pt.c (add_to_template_args): Support NULL ARGS;
95 (most_specialized_class): call coerce_template_parms on
96 template arguments passed to get_class_bindings. Use
98 (unify): Handle VAR_DECLs.
100 2010-03-26 Dodji Seketeli <dodji@redhat.com>
102 * cp-tree.h (get_template_parms_at_level): Change unsigned parm
104 * pt.c (get_template_parms_at_level): Adjust.
106 2010-03-25 Dodji Seketeli <dodji@redhat.com>
109 * cp-tree.h (get_template_parms_at_level): Declare ...
110 * pt.c (get_template_parms_at_level): ... new function.
111 * typeck.c (get_template_parms_of_dependent_type): If a template
112 type parm's DECL_CONTEXT isn't yet set, get its siblings from
113 current_template_parms. Use get_template_parms_at_level. Remove
115 (incompatible_dependent_types_p): If we get empty parms from just one
116 of the template type parms we are comparing then the template parms are
119 2010-03-24 Jason Merrill <jason@redhat.com>
122 * parser.c (make_declarator): Initialize id_loc.
123 (cp_parser_lambda_declarator_opt): And set it.
125 2010-03-23 Jason Merrill <jason@redhat.com>
127 Make lambda conversion op and op() non-static.
128 * semantics.c (maybe_add_lambda_conv_op): Make non-static.
129 Also add the thunk function returned by the conversion op.
130 Mark the conversion deleted if the op() is variadic.
131 * decl2.c (mark_used): Give helpful message about deleted conversion.
132 * parser.c (cp_parser_lambda_declarator_opt): Don't make op() static.
133 * semantics.c (finish_this_expr): Adjust.
134 * mangle.c (write_closure_type_name): Adjust.
135 * decl.c (grok_op_properties): Don't allow it.
136 * call.c (build_user_type_conversion_1): No static conversion ops.
137 (build_op_call): Or op().
139 * decl2.c (change_return_type): Fix 'this' quals.
141 2010-03-22 Jason Merrill <jason@redhat.com>
144 * tree.c (pod_type_p): Use old meaning in C++98 mode.
147 * pt.c (contains_auto_r): New fn.
148 (do_auto_deduction): Use it.
149 (tsubst): Don't look at TREE_TYPE of a TEMPLATE_TYPE_PARM.
151 2010-03-20 Simon Martin <simartin@users.sourceforge.net>
154 * decl2.c (grokfield): Handle invalid initializers for member
157 2010-03-20 Dodji Seketeli <dodji@redhat.com>
160 * method.c (make_alias_for): Avoid crashing when DECL_LANG_SPECIFIC
162 * decl2.c (vague_linkage_p): Likewise.
164 2010-03-18 Paolo Carlini <paolo.carlini@oracle.com>
167 * parser.c (cp_parser_for_init_statement): Use NULL_TREE, not
168 false, in the cp_parser_expression_statement call.
170 2010-03-05 Jason Merrill <jason@redhat.com>
172 * mangle.c (mangle_decl): Give name collision error even without
175 2010-03-04 Marco Poletti <poletti.marco@gmail.com>
177 * pt.c (process_partial_specialization): Use error_n instead of
180 2010-03-03 Jason Merrill <jason@redhat.com>
183 * mangle.c (mangle_decl): Handle VAR_DECL, too.
185 2010-03-03 Jason Merrill <jason@redhat.com>
188 * mangle.c (mangle_decl): Handle VAR_DECL, too.
190 2010-03-03 Jason Merrill <jason@redhat.com>
193 * mangle.c: Include cgraph.h.
194 (mangle_decl): If the mangled name will change in a later
195 ABI version, make the later mangled name an alias.
196 * method.c (make_alias_for): Copy DECL_ARGUMENTS.
197 * Make-lang.in (mangle.o): Depend on cgraph.h.
198 * method.c (make_alias_for): Handle VAR_DECL, too.
199 * decl2.c (vague_linkage_p): Rename from vague_linkage_fn_p.
200 * tree.c (no_linkage_check): Adjust.
201 * decl.c (maybe_commonize_var): Adjust.
204 2010-03-01 Marco Poletti <poletti.marco@gmail.com>
206 * pt.c (redeclare_class_template): Use error_n and inform_n.
208 2010-02-27 Mark Mitchell <mark@codesourcery.com>
211 * cp-tree.h (push_tinst_level): Declare.
212 (pop_tinst_level): Likewise.
213 * pt.c (push_tinst_level): Give it external linkage.
214 (pop_tinst_level): Likewise.
215 * mangle.c (mangle_decl_string): Set the source location to that
216 of the decl while mangling.
218 2010-02-27 Simon Martin <simartin@users.sourceforge.net>
221 * pt.c (redeclare_class_template): Return false if there are erroneous
224 2010-02-24 Manuel López-Ibáñez <manu@gcc.gnu.org>
226 * pt.c (push_tinst_level): Replace -ftemplate-depth- with
229 2010-02-24 Jason Merrill <jason@redhat.com>
232 * mangle.c (write_type): Give -Wabi warning for old vector mangling.
234 * class.c (layout_class_type): Don't give -Wabi warning for a bug
235 in a previous ABI version.
237 2010-02-23 Jason Merrill <jason@redhat.com>
240 * typeck2.c (digest_init_r): Accept value init of array.
242 2010-02-22 Manuel López-Ibáñez <manu@gcc.gnu.org>
245 * typeck.c (convert_arguments): Update error message.
247 2010-02-22 Mike Stump <mikestump@comcast.net>
250 * decl.c (duplicate_decls): Merge DECL_PRESERVE_P.
252 2010-02-21 Manuel López-Ibáñez <manu@gcc.gnu.org>
255 * error.c (print_instantiation_partial_context_line): New.
256 (print_instantiation_partial_context): Print at most 12 contexts,
257 skip the rest with a message.
259 2010-02-21 Dodji Seketeli <dodji@redhat.com>
262 * pt.c (lookup_template_class): Better support of specialization
263 of member of class template implicit instantiation.
265 2010-02-20 Manuel López-Ibáñez <manu@gcc.gnu.org>
268 * call.c (conversion_null_warnings): Replace -Wconversion with
270 * cvt.c (build_expr_type_conversion): Likewise.
272 2010-02-18 Jason Merrill <jason@redhat.com>
275 * class.c (create_vtable_ptr): Set DECL_PACKED if type is packed.
278 * typeck.c (cp_build_binary_op): Adapt mixed complex/non handling from
280 * cp-tree.h (WANT_VECTOR_OR_COMPLEX): Rename from WANT_VECTOR.
281 * cvt.c (build_expr_type_conversion): Allow COMPLEX_TYPE.
284 * semantics.c (finish_goto_stmt): Don't call decay_conversion.
288 * pt.c (tsubst_qualified_id): Do normal lookup in non-dependent scope.
289 (maybe_update_decl_type): New fn.
290 * parser.c (cp_parser_init_declarator): Use it.
293 * semantics.c (begin_class_definition): Don't crash on unnamed ns.
295 2010-02-17 Jason Merrill <jason@redhat.com>
298 * call.c (build_over_call): Don't create zero-sized assignments.
299 * cp-gimplify.c (cp_genericize_r): Don't remove them here.
300 * cp-objcp-common.c (cp_expr_size): Remove.
301 * cp-tree.h: Remove prototype.
304 * name-lookup.c (set_decl_namespace): Don't copy DECL_CONTEXT if the
305 decl we looked up doesn't match.
308 * cp-gimplify.c (cp_gimplify_expr) [INIT_EXPR]: Return if we don't
309 have an INIT_EXPR anymore.
312 * pt.c (convert_nontype_argument): Change assert to test.
314 2010-02-16 Jason Merrill <jason@redhat.com>
316 * cp-gimplify.c (cp_gimplify_expr): Fix error recovery.
319 * cp-gimplify.c (cp_gimplify_expr) [MODIFY_EXPR]: Use
320 VIEW_CONVERT_EXPR for conversions between structural equality types
321 that the back end can't tell are the same.
324 * tree.c (build_cplus_array_type): Set TYPE_MAIN_VARIANT to strip
325 cv-quals from element here.
326 (cp_build_qualified_type_real): Not here. Preserve typedef name.
328 2010-02-14 Jason Merrill <jason@redhat.com>
331 * semantics.c (finish_compound_literal): Use
332 cp_apply_type_quals_to_decl when creating a static variable.
334 2010-02-12 Jason Merrill <jason@redhat.com>
337 * name-lookup.h (current_binding_level): Check for null
340 2010-02-12 Jason Merrill <jason@redhat.com>
343 * tree.c (cp_tree_equal): Correct CALL_EXPR logic.
345 2010-02-12 Jakub Jelinek <jakub@redhat.com>
348 * name-lookup.c (pushdecl_maybe_friend): Check default args of t
351 2010-02-10 Jason Merrill <jason@redhat.com>
354 * semantics.c (outer_lambda_capture_p): Revert.
355 (add_capture): Only finish_member_declaration if
356 we're in the lambda class.
357 (register_capture_members): New.
358 * cp-tree.h: Declare it.
359 * parser.c (cp_parser_lambda_expression): Call it.
361 2010-02-10 Jason Merrill <jason@redhat.com>
364 * semantics.c (outer_lambda_capture_p): Use current_function_decl
365 instead of current_class_type.
367 2010-02-10 Jason Merrill <jason@redhat.com>
369 PR c++/42983, core issue 906
370 * method.c (defaultable_fn_check): Check virtualness.
372 2010-02-10 Jason Merrill <jason@redhat.com>
375 * semantics.c (maybe_add_lambda_conv_op): Set DECL_INTERFACE_KNOWN.
377 2010-02-10 Shujing Zhao <pearly.zhao@oracle.com>
379 * Make-lang.in (cp/cvt.o, cp/parser.o, cp/search.o): Depend on intl.h.
380 * cvt.c (warn_ref_binding): Wrap the messages into G_() for easy
382 * parser.c (cp_parser_postfix_expression, cp_parser_new_type_id)
383 (cp_parser_cast_expression, cp_parser_condition, cp_parser_decltype)
384 (cp_parser_parameter_declaration)
385 (cp_parser_exception_specification_opt)
386 (cp_parser_exception_declaration): Likewise.
387 * pt.c (check_default_tmpl_args): Likewise.
388 * search.c (lookup_field_r): Likewise.
390 2010-02-09 Jason Merrill <jason@redhat.com>
393 * pt.c (tsubst_copy_and_build): Propagate LAMBDA_EXPR_LOCATION.
395 2010-02-09 Jason Merrill <jason@redhat.com>
398 * decl2.c (change_return_type): New fn.
399 * semantics.c (apply_lambda_return_type): Use it.
400 * cp-tree.h: Declare it.
402 2010-02-05 Richard Guenther <rguenther@suse.de>
404 * Make-lang.in (cp/cp-lang.o): Depend on gt-cp-cp-lang.h.
405 * cp-lang.c: Include gt-cp-cp-lang.h.
406 * config-lang.in (gtfiles): Add cp/cp-lang.c.
408 2010-02-05 Dodji Seketeli <dodji@redhat.com>
411 * typeck.c (get_template_parms_of_dependent_type): Try getting
412 the template parameters fromt the type itself first.
414 2010-02-03 Jason Merrill <jason@redhat.com>
418 * mangle.c (write_unqualified_id): Split out from write_expression.
419 (write_unqualified_name): Call it.
420 (write_member_name): Likewise.
421 (write_expression): Support TEMPLATE_ID_EXPR.
422 Disambiguate operator names.
425 * mangle.c (write_type) [VECTOR_TYPE]: Change mangling with
428 2010-02-02 Jason Merrill <jason@redhat.com>
431 * decl.c (cp_finish_decl): Add local statics to cfun->local_decls.
432 * optimize.c (clone_body): Remap their initializers when making base
434 (maybe_clone_body): Complain if multiple clones aren't safe.
436 2010-01-29 Dodji Seketeli <dodji@redhat.com>
443 * cp-tree.h (NON_DEFAULT_TEMPLATE_ARGS_COUNT,
444 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT,
445 GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT): New accessor macros.
446 * pt.c (coerce_template_parms, type_unification_real,
447 expand_template_argument_pack, coerce_template_parameter_pack):
448 Set the non default template args count.
449 (current_template_args): Always set non defaulted
450 template args count when compiled with --enable-checking
451 (tsubst_template_args, type_unification_real): Propagate the non
452 defaulted template args count.
453 * error.c (get_non_default_template_args_count): Renamed
454 count_non_default_template_args into this. Don't calculate the
455 non default template argument count anymore. Use the new
456 accessor macros above to get it.
457 (dump_template_argument_list, dump_type, dump_decl,
458 dump_template_parms): Adjust.
459 * parser.c (cp_parser_template_argument_list): Always set defaulted
460 template args count when compiled with --enable-checking.
462 2010-01-29 Shujing Zhao <pearly.zhao@oracle.com>
464 * decl.c (redeclaration_error_message): Wrap the return messages into
465 G_() for easy translation.
467 2010-01-28 Jason Merrill <jason@redhat.com>
470 * semantics.c (begin_class_definition): Don't use type_as_string.
472 2010-01-28 Dodji Seketeli <dodji@redhat.com>
476 * typeck.c (get_template_parms_of_dependent_type): Factorized
477 this out of incompatible_template_type_parms_p
478 (incompatible_dependent_types_p): Renamed
479 incompatible_template_type_parms_p into this. Make it detect
480 two incompatible dependent typedefs too.
481 (structural_comptypes): Use incompatible_dependent_types_p.
482 * pt.c (get_template_info):
483 Handle BOUND_TEMPLATE_TEMPLATE_PARAM.
485 2010-01-20 Janis Johnson <janis187@us.ibm.com>
486 Jason Merrill <jason@redhat.com>
488 * mangle.c (write_type): Mangle transparent record as member type.
489 * semantics.c (begin_class_definition): Recognize decimal classes
490 and set TYPE_TRANSPARENT_AGGR.
492 2010-01-20 Jason Merrill <jason@redhat.com>
495 * mangle.c (write_expression): Handle tree codes that have extra
496 arguments in the middle-end.
498 2010-01-20 Paolo Carlini <paolo.carlini@oracle.com>
501 * except.c (expand_start_catch_block): Deal correctly with
502 do_begin_catch returning error_mark_node.
504 2010-01-20 Jason Merrill <jason@redhat.com>
507 * class.c (layout_class_type): Set packed_maybe_necessary for packed
511 * semantics.c (build_lambda_object): Call mark_used on captured
515 * decl.c (grokdeclarator): Clear type_quals for a member function
516 declared using a typedef. Don't complain about adding cv-quals
517 to a function typedef in C++0x mode.
519 2010-01-20 Jakub Jelinek <jakub@redhat.com>
521 * decl.c (create_array_type_for_decl): Remove set but not used
522 variable error_msg. Remove break stmts after return stmts.
524 2010-01-19 Dodji Seketeli <dodji@redhat.com>
526 * error.c (dump_template_parms, count_non_default_template_args):
527 Revert fix of PR c++/42634.
529 2010-01-18 Dodji Seketeli <dodji@redhat.com>
532 * error.c (dump_template_parms): Use innermost template
533 arguments before calling count_non_default_template_args.
534 (count_non_default_template_args): We are being called with
535 template innermost arguments now. There is no need to ensure
538 2010-01-18 Dodji Seketeli <dodji@redhat.com>
541 * cvt.c (build_expr_type_conversion): Look through OVERLOAD.
543 2010-01-17 Dodji Seketeli <dodji@redhat.com>
546 *pt.c (tsubst_decl): Revert commit for PR c++/42697.
548 2010-01-17 Dodji Seketeli <dodji@redhat.com>
551 *pt.c (tsubst_decl): Get the arguments of a specialization from
552 the specialization template, not from the most general template.
554 2010-01-16 Jason Merrill <jason@redhat.com>
557 * semantics.c (finish_decltype_type): Within a template, treat
558 unresolved CALL_EXPR as dependent.
560 2010-01-15 Dodji Seketeli <dodji@redhat.com>
562 * error.c (dump_template_parms,count_non_default_template_args):
563 Revert changes of PR c++/42634.
565 2010-01-14 Jakub Jelinek <jakub@redhat.com>
568 * decl.c (finish_function): Don't emit -Wreturn-type warnings in
569 functions with noreturn attribute.
571 2010-01-14 Jason Merrill <jason@redhat.com>
574 * call.c (build_new_method_call): Don't free the vec here.
577 * call.c (convert_like_real): Do full decay_conversion for ck_rvalue.
579 2010-01-13 Dodji Seketeli <dodji@redhat.com>
582 * error.c (dump_template_parms): Use innermost template
583 arguments before calling count_non_default_template_args.
584 (count_non_default_template_args): We are being called with
585 template innermost arguments now. There is no need to ensure
588 2010-01-07 Dodji Seketeli <dodji@redhat.com>
591 * pt.c (unify_pack_expansion): In non-deduced contexts, re-use template
592 arguments that were previously deduced.
594 2010-01-05 Jason Merrill <jason@redhat.com>
596 * pt.c (unify_pack_expansion): Handle deduction from init-list.
597 * call.c (build_over_call): Don't complain about it.
599 2010-01-04 Jason Merrill <jason@redhat.com>
602 * pt.c (tsubst_decl): Don't apply type attributes in place.
605 * semantics.c (describable_type): Remove decltype comment and
610 Copyright (C) 2010 Free Software Foundation, Inc.
612 Copying and distribution of this file, with or without modification,
613 are permitted in any medium without royalty provided the copyright
614 notice and this notice are preserved.