1 2010-04-12 Richard Guenther <rguenther@suse.de>
4 * semantics.c (expand_or_defer_fn_1): Do not keep extern
5 template inline functions.
7 2010-04-09 Manuel López-Ibáñez <manu@gcc.gnu.org>
10 * typeck.c (cp_build_c_cast): Warn for casting integer to larger
13 2010-04-07 Jason Merrill <jason@redhat.com>
16 * decl.c (start_preparsed_function): Do defer nested functions.
19 * cp-tree.h (VAR_HAD_UNKNOWN_BOUND, SET_VAR_HAD_UNKNOWN_BOUND): New.
20 * decl2.c (finish_static_data_member_decl): Set it.
21 * decl.c (duplicate_decls): Propagate it.
22 * pt.c (tsubst_decl): Don't substitute the domain of an array
24 (regenerate_decl_from_template): Substitute it here.
25 (type_dependent_expression_p): Return true if it's set.
26 * semantics.c (finish_decltype_type): Instantiate such a variable.
27 * typeck.c (cxx_sizeof_expr): Likewise.
28 (strip_array_domain): New.
30 * name-lookup.c (current_decl_namespace): Non-static.
31 (pop_nested_namespace): Sanity check.
32 * cp-tree.h: Declare current_decl_namespace.
33 * decl.c (grokvardecl): Use it instead of current_namespace.
34 (grokfndecl): Likewise.
37 * pt.c (tsubst_friend_function): Instatiate a friend that has already
40 * pt.c (print_template_statistics): New.
41 * cp-tree.h: Declare it.
42 * tree.c (cxx_print_statistics): Call it.
45 * decl.c (grokvardecl): Tweak warning message.
46 (grokfndecl): Likewise.
48 2010-04-07 Dodji Seketeli <dodji@redhat.com>
51 *pt.c (tsubst_decl): Get the arguments of a specialization from
52 the specialization template, not from the most general template.
54 2010-04-07 Dodji Seketeli <dodji@redhat.com>
57 * typeck2.c (process_init_constructor_record):
58 value-initialize members that are are not explicitely
61 2010-04-07 Jie Zhang <jie@codesourcery.com>
64 * typeck2.c (split_nonconstant_init_1): Drop empty CONSTRUCTOR
65 when all of its elements are non-constant and have been split out.
67 2010-04-06 Taras Glek <taras@mozilla.com>
68 Jason Merrill <jason@redhat.com>
70 * parser.c (cp_parser_class_specifier): Set class location to that
71 of IDENTIFIER_NODE instead of '{' when possible.
72 * semantics.c (begin_class_definition): Do not overide locations
73 with less precise ones.
75 2010-04-06 Jason Merrill <jason@redhat.com>
78 * name-lookup.c (constructor_name_p): Allow X::~X even for typedefs.
81 * pt.c (maybe_update_decl_type): Check the return value from
84 2010-04-01 Jason Merrill <jason@redhat.com>
86 * decl.c (next_initializable_field): No longer static.
87 * cp-tree.h: Declare it.
88 * call.c (build_aggr_conv): Fail if there are more initializers
89 than initializable fields.
91 * semantics.c (maybe_add_lambda_conv_op): Use null_pointer_node
92 instead of void_zero_node.
94 2010-03-31 Dodji Seketeli <dodji@redhat.com>
97 * cp-tree.h (TEMPLATE_TYPE_PARM_SIBLING_PARMS): New accessor macro.
98 * pt.c (end_template_parm_list): Store sibling template parms of
99 each TEMPLATE_TYPE_PARMs into its TEMPLATE_TYPE_PARM_SIBLING_PARMS.
100 (push_template_decl_real): Don't store the containing template decl
101 into the DECL_CONTEXT of TEMPLATE_TYPE_PARMs anymore.
102 * typeck.c (get_template_parms_of_dependent_type): Get sibling parms
103 of a TEMPLATE_TYPE_PARM from TEMPLATE_TYPE_PARM_SIBLING_PARMS.
106 2010-03-30 Jason Merrill <jason@redhat.com>
109 * pt.c (push_template_decl_real): Deal better with running out of
110 scopes before running out of template parms.
114 * parser.c (cp_parser_direct_declarator): Don't allow VLAs in
115 function parameter context. Don't print an error if parsing
119 * pt.c (more_specialized_fn): Don't control cv-qualifier check
122 2010-03-26 Jason Merrill <jason@redhat.com>
125 * parser.c (cp_parser_qualifying_entity): Do accept enum names in
126 c++0x mode, but not other type-names.
128 2010-03-26 Dodji Seketeli <dodji@redhat.com>
131 * pt.c (add_to_template_args): Support NULL ARGS;
132 (most_specialized_class): call coerce_template_parms on
133 template arguments passed to get_class_bindings. Use
134 add_to_template_args.
135 (unify): Handle VAR_DECLs.
137 2010-03-26 Dodji Seketeli <dodji@redhat.com>
139 * cp-tree.h (get_template_parms_at_level): Change unsigned parm
141 * pt.c (get_template_parms_at_level): Adjust.
143 2010-03-25 Dodji Seketeli <dodji@redhat.com>
146 * cp-tree.h (get_template_parms_at_level): Declare ...
147 * pt.c (get_template_parms_at_level): ... new function.
148 * typeck.c (get_template_parms_of_dependent_type): If a template
149 type parm's DECL_CONTEXT isn't yet set, get its siblings from
150 current_template_parms. Use get_template_parms_at_level. Remove
152 (incompatible_dependent_types_p): If we get empty parms from just one
153 of the template type parms we are comparing then the template parms are
156 2010-03-24 Jason Merrill <jason@redhat.com>
159 * parser.c (make_declarator): Initialize id_loc.
160 (cp_parser_lambda_declarator_opt): And set it.
162 2010-03-23 Jason Merrill <jason@redhat.com>
164 Make lambda conversion op and op() non-static.
165 * semantics.c (maybe_add_lambda_conv_op): Make non-static.
166 Also add the thunk function returned by the conversion op.
167 Mark the conversion deleted if the op() is variadic.
168 * decl2.c (mark_used): Give helpful message about deleted conversion.
169 * parser.c (cp_parser_lambda_declarator_opt): Don't make op() static.
170 * semantics.c (finish_this_expr): Adjust.
171 * mangle.c (write_closure_type_name): Adjust.
172 * decl.c (grok_op_properties): Don't allow it.
173 * call.c (build_user_type_conversion_1): No static conversion ops.
174 (build_op_call): Or op().
176 * decl2.c (change_return_type): Fix 'this' quals.
178 2010-03-22 Jason Merrill <jason@redhat.com>
181 * tree.c (pod_type_p): Use old meaning in C++98 mode.
184 * pt.c (contains_auto_r): New fn.
185 (do_auto_deduction): Use it.
186 (tsubst): Don't look at TREE_TYPE of a TEMPLATE_TYPE_PARM.
188 2010-03-20 Simon Martin <simartin@users.sourceforge.net>
191 * decl2.c (grokfield): Handle invalid initializers for member
194 2010-03-20 Dodji Seketeli <dodji@redhat.com>
197 * method.c (make_alias_for): Avoid crashing when DECL_LANG_SPECIFIC
199 * decl2.c (vague_linkage_p): Likewise.
201 2010-03-18 Paolo Carlini <paolo.carlini@oracle.com>
204 * parser.c (cp_parser_for_init_statement): Use NULL_TREE, not
205 false, in the cp_parser_expression_statement call.
207 2010-03-05 Jason Merrill <jason@redhat.com>
209 * mangle.c (mangle_decl): Give name collision error even without
212 2010-03-04 Marco Poletti <poletti.marco@gmail.com>
214 * pt.c (process_partial_specialization): Use error_n instead of
217 2010-03-03 Jason Merrill <jason@redhat.com>
220 * mangle.c (mangle_decl): Handle VAR_DECL, too.
222 2010-03-03 Jason Merrill <jason@redhat.com>
225 * mangle.c (mangle_decl): Handle VAR_DECL, too.
227 2010-03-03 Jason Merrill <jason@redhat.com>
230 * mangle.c: Include cgraph.h.
231 (mangle_decl): If the mangled name will change in a later
232 ABI version, make the later mangled name an alias.
233 * method.c (make_alias_for): Copy DECL_ARGUMENTS.
234 * Make-lang.in (mangle.o): Depend on cgraph.h.
235 * method.c (make_alias_for): Handle VAR_DECL, too.
236 * decl2.c (vague_linkage_p): Rename from vague_linkage_fn_p.
237 * tree.c (no_linkage_check): Adjust.
238 * decl.c (maybe_commonize_var): Adjust.
241 2010-03-01 Marco Poletti <poletti.marco@gmail.com>
243 * pt.c (redeclare_class_template): Use error_n and inform_n.
245 2010-02-27 Mark Mitchell <mark@codesourcery.com>
248 * cp-tree.h (push_tinst_level): Declare.
249 (pop_tinst_level): Likewise.
250 * pt.c (push_tinst_level): Give it external linkage.
251 (pop_tinst_level): Likewise.
252 * mangle.c (mangle_decl_string): Set the source location to that
253 of the decl while mangling.
255 2010-02-27 Simon Martin <simartin@users.sourceforge.net>
258 * pt.c (redeclare_class_template): Return false if there are erroneous
261 2010-02-24 Manuel López-Ibáñez <manu@gcc.gnu.org>
263 * pt.c (push_tinst_level): Replace -ftemplate-depth- with
266 2010-02-24 Jason Merrill <jason@redhat.com>
269 * mangle.c (write_type): Give -Wabi warning for old vector mangling.
271 * class.c (layout_class_type): Don't give -Wabi warning for a bug
272 in a previous ABI version.
274 2010-02-23 Jason Merrill <jason@redhat.com>
277 * typeck2.c (digest_init_r): Accept value init of array.
279 2010-02-22 Manuel López-Ibáñez <manu@gcc.gnu.org>
282 * typeck.c (convert_arguments): Update error message.
284 2010-02-22 Mike Stump <mikestump@comcast.net>
287 * decl.c (duplicate_decls): Merge DECL_PRESERVE_P.
289 2010-02-21 Manuel López-Ibáñez <manu@gcc.gnu.org>
292 * error.c (print_instantiation_partial_context_line): New.
293 (print_instantiation_partial_context): Print at most 12 contexts,
294 skip the rest with a message.
296 2010-02-21 Dodji Seketeli <dodji@redhat.com>
299 * pt.c (lookup_template_class): Better support of specialization
300 of member of class template implicit instantiation.
302 2010-02-20 Manuel López-Ibáñez <manu@gcc.gnu.org>
305 * call.c (conversion_null_warnings): Replace -Wconversion with
307 * cvt.c (build_expr_type_conversion): Likewise.
309 2010-02-18 Jason Merrill <jason@redhat.com>
312 * class.c (create_vtable_ptr): Set DECL_PACKED if type is packed.
315 * typeck.c (cp_build_binary_op): Adapt mixed complex/non handling from
317 * cp-tree.h (WANT_VECTOR_OR_COMPLEX): Rename from WANT_VECTOR.
318 * cvt.c (build_expr_type_conversion): Allow COMPLEX_TYPE.
321 * semantics.c (finish_goto_stmt): Don't call decay_conversion.
325 * pt.c (tsubst_qualified_id): Do normal lookup in non-dependent scope.
326 (maybe_update_decl_type): New fn.
327 * parser.c (cp_parser_init_declarator): Use it.
330 * semantics.c (begin_class_definition): Don't crash on unnamed ns.
332 2010-02-17 Jason Merrill <jason@redhat.com>
335 * call.c (build_over_call): Don't create zero-sized assignments.
336 * cp-gimplify.c (cp_genericize_r): Don't remove them here.
337 * cp-objcp-common.c (cp_expr_size): Remove.
338 * cp-tree.h: Remove prototype.
341 * name-lookup.c (set_decl_namespace): Don't copy DECL_CONTEXT if the
342 decl we looked up doesn't match.
345 * cp-gimplify.c (cp_gimplify_expr) [INIT_EXPR]: Return if we don't
346 have an INIT_EXPR anymore.
349 * pt.c (convert_nontype_argument): Change assert to test.
351 2010-02-16 Jason Merrill <jason@redhat.com>
353 * cp-gimplify.c (cp_gimplify_expr): Fix error recovery.
356 * cp-gimplify.c (cp_gimplify_expr) [MODIFY_EXPR]: Use
357 VIEW_CONVERT_EXPR for conversions between structural equality types
358 that the back end can't tell are the same.
361 * tree.c (build_cplus_array_type): Set TYPE_MAIN_VARIANT to strip
362 cv-quals from element here.
363 (cp_build_qualified_type_real): Not here. Preserve typedef name.
365 2010-02-14 Jason Merrill <jason@redhat.com>
368 * semantics.c (finish_compound_literal): Use
369 cp_apply_type_quals_to_decl when creating a static variable.
371 2010-02-12 Jason Merrill <jason@redhat.com>
374 * name-lookup.h (current_binding_level): Check for null
377 2010-02-12 Jason Merrill <jason@redhat.com>
380 * tree.c (cp_tree_equal): Correct CALL_EXPR logic.
382 2010-02-12 Jakub Jelinek <jakub@redhat.com>
385 * name-lookup.c (pushdecl_maybe_friend): Check default args of t
388 2010-02-10 Jason Merrill <jason@redhat.com>
391 * semantics.c (outer_lambda_capture_p): Revert.
392 (add_capture): Only finish_member_declaration if
393 we're in the lambda class.
394 (register_capture_members): New.
395 * cp-tree.h: Declare it.
396 * parser.c (cp_parser_lambda_expression): Call it.
398 2010-02-10 Jason Merrill <jason@redhat.com>
401 * semantics.c (outer_lambda_capture_p): Use current_function_decl
402 instead of current_class_type.
404 2010-02-10 Jason Merrill <jason@redhat.com>
406 PR c++/42983, core issue 906
407 * method.c (defaultable_fn_check): Check virtualness.
409 2010-02-10 Jason Merrill <jason@redhat.com>
412 * semantics.c (maybe_add_lambda_conv_op): Set DECL_INTERFACE_KNOWN.
414 2010-02-10 Shujing Zhao <pearly.zhao@oracle.com>
416 * Make-lang.in (cp/cvt.o, cp/parser.o, cp/search.o): Depend on intl.h.
417 * cvt.c (warn_ref_binding): Wrap the messages into G_() for easy
419 * parser.c (cp_parser_postfix_expression, cp_parser_new_type_id)
420 (cp_parser_cast_expression, cp_parser_condition, cp_parser_decltype)
421 (cp_parser_parameter_declaration)
422 (cp_parser_exception_specification_opt)
423 (cp_parser_exception_declaration): Likewise.
424 * pt.c (check_default_tmpl_args): Likewise.
425 * search.c (lookup_field_r): Likewise.
427 2010-02-09 Jason Merrill <jason@redhat.com>
430 * pt.c (tsubst_copy_and_build): Propagate LAMBDA_EXPR_LOCATION.
432 2010-02-09 Jason Merrill <jason@redhat.com>
435 * decl2.c (change_return_type): New fn.
436 * semantics.c (apply_lambda_return_type): Use it.
437 * cp-tree.h: Declare it.
439 2010-02-05 Richard Guenther <rguenther@suse.de>
441 * Make-lang.in (cp/cp-lang.o): Depend on gt-cp-cp-lang.h.
442 * cp-lang.c: Include gt-cp-cp-lang.h.
443 * config-lang.in (gtfiles): Add cp/cp-lang.c.
445 2010-02-05 Dodji Seketeli <dodji@redhat.com>
448 * typeck.c (get_template_parms_of_dependent_type): Try getting
449 the template parameters fromt the type itself first.
451 2010-02-03 Jason Merrill <jason@redhat.com>
455 * mangle.c (write_unqualified_id): Split out from write_expression.
456 (write_unqualified_name): Call it.
457 (write_member_name): Likewise.
458 (write_expression): Support TEMPLATE_ID_EXPR.
459 Disambiguate operator names.
462 * mangle.c (write_type) [VECTOR_TYPE]: Change mangling with
465 2010-02-02 Jason Merrill <jason@redhat.com>
468 * decl.c (cp_finish_decl): Add local statics to cfun->local_decls.
469 * optimize.c (clone_body): Remap their initializers when making base
471 (maybe_clone_body): Complain if multiple clones aren't safe.
473 2010-01-29 Dodji Seketeli <dodji@redhat.com>
480 * cp-tree.h (NON_DEFAULT_TEMPLATE_ARGS_COUNT,
481 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT,
482 GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT): New accessor macros.
483 * pt.c (coerce_template_parms, type_unification_real,
484 expand_template_argument_pack, coerce_template_parameter_pack):
485 Set the non default template args count.
486 (current_template_args): Always set non defaulted
487 template args count when compiled with --enable-checking
488 (tsubst_template_args, type_unification_real): Propagate the non
489 defaulted template args count.
490 * error.c (get_non_default_template_args_count): Renamed
491 count_non_default_template_args into this. Don't calculate the
492 non default template argument count anymore. Use the new
493 accessor macros above to get it.
494 (dump_template_argument_list, dump_type, dump_decl,
495 dump_template_parms): Adjust.
496 * parser.c (cp_parser_template_argument_list): Always set defaulted
497 template args count when compiled with --enable-checking.
499 2010-01-29 Shujing Zhao <pearly.zhao@oracle.com>
501 * decl.c (redeclaration_error_message): Wrap the return messages into
502 G_() for easy translation.
504 2010-01-28 Jason Merrill <jason@redhat.com>
507 * semantics.c (begin_class_definition): Don't use type_as_string.
509 2010-01-28 Dodji Seketeli <dodji@redhat.com>
513 * typeck.c (get_template_parms_of_dependent_type): Factorized
514 this out of incompatible_template_type_parms_p
515 (incompatible_dependent_types_p): Renamed
516 incompatible_template_type_parms_p into this. Make it detect
517 two incompatible dependent typedefs too.
518 (structural_comptypes): Use incompatible_dependent_types_p.
519 * pt.c (get_template_info):
520 Handle BOUND_TEMPLATE_TEMPLATE_PARAM.
522 2010-01-20 Janis Johnson <janis187@us.ibm.com>
523 Jason Merrill <jason@redhat.com>
525 * mangle.c (write_type): Mangle transparent record as member type.
526 * semantics.c (begin_class_definition): Recognize decimal classes
527 and set TYPE_TRANSPARENT_AGGR.
529 2010-01-20 Jason Merrill <jason@redhat.com>
532 * mangle.c (write_expression): Handle tree codes that have extra
533 arguments in the middle-end.
535 2010-01-20 Paolo Carlini <paolo.carlini@oracle.com>
538 * except.c (expand_start_catch_block): Deal correctly with
539 do_begin_catch returning error_mark_node.
541 2010-01-20 Jason Merrill <jason@redhat.com>
544 * class.c (layout_class_type): Set packed_maybe_necessary for packed
548 * semantics.c (build_lambda_object): Call mark_used on captured
552 * decl.c (grokdeclarator): Clear type_quals for a member function
553 declared using a typedef. Don't complain about adding cv-quals
554 to a function typedef in C++0x mode.
556 2010-01-20 Jakub Jelinek <jakub@redhat.com>
558 * decl.c (create_array_type_for_decl): Remove set but not used
559 variable error_msg. Remove break stmts after return stmts.
561 2010-01-19 Dodji Seketeli <dodji@redhat.com>
563 * error.c (dump_template_parms, count_non_default_template_args):
564 Revert fix of PR c++/42634.
566 2010-01-18 Dodji Seketeli <dodji@redhat.com>
569 * error.c (dump_template_parms): Use innermost template
570 arguments before calling count_non_default_template_args.
571 (count_non_default_template_args): We are being called with
572 template innermost arguments now. There is no need to ensure
575 2010-01-18 Dodji Seketeli <dodji@redhat.com>
578 * cvt.c (build_expr_type_conversion): Look through OVERLOAD.
580 2010-01-17 Dodji Seketeli <dodji@redhat.com>
583 *pt.c (tsubst_decl): Revert commit for PR c++/42697.
585 2010-01-17 Dodji Seketeli <dodji@redhat.com>
588 *pt.c (tsubst_decl): Get the arguments of a specialization from
589 the specialization template, not from the most general template.
591 2010-01-16 Jason Merrill <jason@redhat.com>
594 * semantics.c (finish_decltype_type): Within a template, treat
595 unresolved CALL_EXPR as dependent.
597 2010-01-15 Dodji Seketeli <dodji@redhat.com>
599 * error.c (dump_template_parms,count_non_default_template_args):
600 Revert changes of PR c++/42634.
602 2010-01-14 Jakub Jelinek <jakub@redhat.com>
605 * decl.c (finish_function): Don't emit -Wreturn-type warnings in
606 functions with noreturn attribute.
608 2010-01-14 Jason Merrill <jason@redhat.com>
611 * call.c (build_new_method_call): Don't free the vec here.
614 * call.c (convert_like_real): Do full decay_conversion for ck_rvalue.
616 2010-01-13 Dodji Seketeli <dodji@redhat.com>
619 * error.c (dump_template_parms): Use innermost template
620 arguments before calling count_non_default_template_args.
621 (count_non_default_template_args): We are being called with
622 template innermost arguments now. There is no need to ensure
625 2010-01-07 Dodji Seketeli <dodji@redhat.com>
628 * pt.c (unify_pack_expansion): In non-deduced contexts, re-use template
629 arguments that were previously deduced.
631 2010-01-05 Jason Merrill <jason@redhat.com>
633 * pt.c (unify_pack_expansion): Handle deduction from init-list.
634 * call.c (build_over_call): Don't complain about it.
636 2010-01-04 Jason Merrill <jason@redhat.com>
639 * pt.c (tsubst_decl): Don't apply type attributes in place.
642 * semantics.c (describable_type): Remove decltype comment and
647 Copyright (C) 2010 Free Software Foundation, Inc.
649 Copying and distribution of this file, with or without modification,
650 are permitted in any medium without royalty provided the copyright
651 notice and this notice are preserved.