1 2010-04-09 Manuel López-Ibáñez <manu@gcc.gnu.org>
4 * typeck.c (cp_build_c_cast): Warn for casting integer to larger
7 2010-04-07 Jason Merrill <jason@redhat.com>
10 * decl.c (start_preparsed_function): Do defer nested functions.
13 * cp-tree.h (VAR_HAD_UNKNOWN_BOUND, SET_VAR_HAD_UNKNOWN_BOUND): New.
14 * decl2.c (finish_static_data_member_decl): Set it.
15 * decl.c (duplicate_decls): Propagate it.
16 * pt.c (tsubst_decl): Don't substitute the domain of an array
18 (regenerate_decl_from_template): Substitute it here.
19 (type_dependent_expression_p): Return true if it's set.
20 * semantics.c (finish_decltype_type): Instantiate such a variable.
21 * typeck.c (cxx_sizeof_expr): Likewise.
22 (strip_array_domain): New.
24 * name-lookup.c (current_decl_namespace): Non-static.
25 (pop_nested_namespace): Sanity check.
26 * cp-tree.h: Declare current_decl_namespace.
27 * decl.c (grokvardecl): Use it instead of current_namespace.
28 (grokfndecl): Likewise.
31 * pt.c (tsubst_friend_function): Instatiate a friend that has already
34 * pt.c (print_template_statistics): New.
35 * cp-tree.h: Declare it.
36 * tree.c (cxx_print_statistics): Call it.
39 * decl.c (grokvardecl): Tweak warning message.
40 (grokfndecl): Likewise.
42 2010-04-07 Dodji Seketeli <dodji@redhat.com>
45 *pt.c (tsubst_decl): Get the arguments of a specialization from
46 the specialization template, not from the most general template.
48 2010-04-07 Dodji Seketeli <dodji@redhat.com>
51 * typeck2.c (process_init_constructor_record):
52 value-initialize members that are are not explicitely
55 2010-04-07 Jie Zhang <jie@codesourcery.com>
58 * typeck2.c (split_nonconstant_init_1): Drop empty CONSTRUCTOR
59 when all of its elements are non-constant and have been split out.
61 2010-04-06 Taras Glek <taras@mozilla.com>
62 Jason Merrill <jason@redhat.com>
64 * parser.c (cp_parser_class_specifier): Set class location to that
65 of IDENTIFIER_NODE instead of '{' when possible.
66 * semantics.c (begin_class_definition): Do not overide locations
67 with less precise ones.
69 2010-04-06 Jason Merrill <jason@redhat.com>
72 * name-lookup.c (constructor_name_p): Allow X::~X even for typedefs.
75 * pt.c (maybe_update_decl_type): Check the return value from
78 2010-04-01 Jason Merrill <jason@redhat.com>
80 * decl.c (next_initializable_field): No longer static.
81 * cp-tree.h: Declare it.
82 * call.c (build_aggr_conv): Fail if there are more initializers
83 than initializable fields.
85 * semantics.c (maybe_add_lambda_conv_op): Use null_pointer_node
86 instead of void_zero_node.
88 2010-03-31 Dodji Seketeli <dodji@redhat.com>
91 * cp-tree.h (TEMPLATE_TYPE_PARM_SIBLING_PARMS): New accessor macro.
92 * pt.c (end_template_parm_list): Store sibling template parms of
93 each TEMPLATE_TYPE_PARMs into its TEMPLATE_TYPE_PARM_SIBLING_PARMS.
94 (push_template_decl_real): Don't store the containing template decl
95 into the DECL_CONTEXT of TEMPLATE_TYPE_PARMs anymore.
96 * typeck.c (get_template_parms_of_dependent_type): Get sibling parms
97 of a TEMPLATE_TYPE_PARM from TEMPLATE_TYPE_PARM_SIBLING_PARMS.
100 2010-03-30 Jason Merrill <jason@redhat.com>
103 * pt.c (push_template_decl_real): Deal better with running out of
104 scopes before running out of template parms.
108 * parser.c (cp_parser_direct_declarator): Don't allow VLAs in
109 function parameter context. Don't print an error if parsing
113 * pt.c (more_specialized_fn): Don't control cv-qualifier check
116 2010-03-26 Jason Merrill <jason@redhat.com>
119 * parser.c (cp_parser_qualifying_entity): Do accept enum names in
120 c++0x mode, but not other type-names.
122 2010-03-26 Dodji Seketeli <dodji@redhat.com>
125 * pt.c (add_to_template_args): Support NULL ARGS;
126 (most_specialized_class): call coerce_template_parms on
127 template arguments passed to get_class_bindings. Use
128 add_to_template_args.
129 (unify): Handle VAR_DECLs.
131 2010-03-26 Dodji Seketeli <dodji@redhat.com>
133 * cp-tree.h (get_template_parms_at_level): Change unsigned parm
135 * pt.c (get_template_parms_at_level): Adjust.
137 2010-03-25 Dodji Seketeli <dodji@redhat.com>
140 * cp-tree.h (get_template_parms_at_level): Declare ...
141 * pt.c (get_template_parms_at_level): ... new function.
142 * typeck.c (get_template_parms_of_dependent_type): If a template
143 type parm's DECL_CONTEXT isn't yet set, get its siblings from
144 current_template_parms. Use get_template_parms_at_level. Remove
146 (incompatible_dependent_types_p): If we get empty parms from just one
147 of the template type parms we are comparing then the template parms are
150 2010-03-24 Jason Merrill <jason@redhat.com>
153 * parser.c (make_declarator): Initialize id_loc.
154 (cp_parser_lambda_declarator_opt): And set it.
156 2010-03-23 Jason Merrill <jason@redhat.com>
158 Make lambda conversion op and op() non-static.
159 * semantics.c (maybe_add_lambda_conv_op): Make non-static.
160 Also add the thunk function returned by the conversion op.
161 Mark the conversion deleted if the op() is variadic.
162 * decl2.c (mark_used): Give helpful message about deleted conversion.
163 * parser.c (cp_parser_lambda_declarator_opt): Don't make op() static.
164 * semantics.c (finish_this_expr): Adjust.
165 * mangle.c (write_closure_type_name): Adjust.
166 * decl.c (grok_op_properties): Don't allow it.
167 * call.c (build_user_type_conversion_1): No static conversion ops.
168 (build_op_call): Or op().
170 * decl2.c (change_return_type): Fix 'this' quals.
172 2010-03-22 Jason Merrill <jason@redhat.com>
175 * tree.c (pod_type_p): Use old meaning in C++98 mode.
178 * pt.c (contains_auto_r): New fn.
179 (do_auto_deduction): Use it.
180 (tsubst): Don't look at TREE_TYPE of a TEMPLATE_TYPE_PARM.
182 2010-03-20 Simon Martin <simartin@users.sourceforge.net>
185 * decl2.c (grokfield): Handle invalid initializers for member
188 2010-03-20 Dodji Seketeli <dodji@redhat.com>
191 * method.c (make_alias_for): Avoid crashing when DECL_LANG_SPECIFIC
193 * decl2.c (vague_linkage_p): Likewise.
195 2010-03-18 Paolo Carlini <paolo.carlini@oracle.com>
198 * parser.c (cp_parser_for_init_statement): Use NULL_TREE, not
199 false, in the cp_parser_expression_statement call.
201 2010-03-05 Jason Merrill <jason@redhat.com>
203 * mangle.c (mangle_decl): Give name collision error even without
206 2010-03-04 Marco Poletti <poletti.marco@gmail.com>
208 * pt.c (process_partial_specialization): Use error_n instead of
211 2010-03-03 Jason Merrill <jason@redhat.com>
214 * mangle.c (mangle_decl): Handle VAR_DECL, too.
216 2010-03-03 Jason Merrill <jason@redhat.com>
219 * mangle.c (mangle_decl): Handle VAR_DECL, too.
221 2010-03-03 Jason Merrill <jason@redhat.com>
224 * mangle.c: Include cgraph.h.
225 (mangle_decl): If the mangled name will change in a later
226 ABI version, make the later mangled name an alias.
227 * method.c (make_alias_for): Copy DECL_ARGUMENTS.
228 * Make-lang.in (mangle.o): Depend on cgraph.h.
229 * method.c (make_alias_for): Handle VAR_DECL, too.
230 * decl2.c (vague_linkage_p): Rename from vague_linkage_fn_p.
231 * tree.c (no_linkage_check): Adjust.
232 * decl.c (maybe_commonize_var): Adjust.
235 2010-03-01 Marco Poletti <poletti.marco@gmail.com>
237 * pt.c (redeclare_class_template): Use error_n and inform_n.
239 2010-02-27 Mark Mitchell <mark@codesourcery.com>
242 * cp-tree.h (push_tinst_level): Declare.
243 (pop_tinst_level): Likewise.
244 * pt.c (push_tinst_level): Give it external linkage.
245 (pop_tinst_level): Likewise.
246 * mangle.c (mangle_decl_string): Set the source location to that
247 of the decl while mangling.
249 2010-02-27 Simon Martin <simartin@users.sourceforge.net>
252 * pt.c (redeclare_class_template): Return false if there are erroneous
255 2010-02-24 Manuel López-Ibáñez <manu@gcc.gnu.org>
257 * pt.c (push_tinst_level): Replace -ftemplate-depth- with
260 2010-02-24 Jason Merrill <jason@redhat.com>
263 * mangle.c (write_type): Give -Wabi warning for old vector mangling.
265 * class.c (layout_class_type): Don't give -Wabi warning for a bug
266 in a previous ABI version.
268 2010-02-23 Jason Merrill <jason@redhat.com>
271 * typeck2.c (digest_init_r): Accept value init of array.
273 2010-02-22 Manuel López-Ibáñez <manu@gcc.gnu.org>
276 * typeck.c (convert_arguments): Update error message.
278 2010-02-22 Mike Stump <mikestump@comcast.net>
281 * decl.c (duplicate_decls): Merge DECL_PRESERVE_P.
283 2010-02-21 Manuel López-Ibáñez <manu@gcc.gnu.org>
286 * error.c (print_instantiation_partial_context_line): New.
287 (print_instantiation_partial_context): Print at most 12 contexts,
288 skip the rest with a message.
290 2010-02-21 Dodji Seketeli <dodji@redhat.com>
293 * pt.c (lookup_template_class): Better support of specialization
294 of member of class template implicit instantiation.
296 2010-02-20 Manuel López-Ibáñez <manu@gcc.gnu.org>
299 * call.c (conversion_null_warnings): Replace -Wconversion with
301 * cvt.c (build_expr_type_conversion): Likewise.
303 2010-02-18 Jason Merrill <jason@redhat.com>
306 * class.c (create_vtable_ptr): Set DECL_PACKED if type is packed.
309 * typeck.c (cp_build_binary_op): Adapt mixed complex/non handling from
311 * cp-tree.h (WANT_VECTOR_OR_COMPLEX): Rename from WANT_VECTOR.
312 * cvt.c (build_expr_type_conversion): Allow COMPLEX_TYPE.
315 * semantics.c (finish_goto_stmt): Don't call decay_conversion.
319 * pt.c (tsubst_qualified_id): Do normal lookup in non-dependent scope.
320 (maybe_update_decl_type): New fn.
321 * parser.c (cp_parser_init_declarator): Use it.
324 * semantics.c (begin_class_definition): Don't crash on unnamed ns.
326 2010-02-17 Jason Merrill <jason@redhat.com>
329 * call.c (build_over_call): Don't create zero-sized assignments.
330 * cp-gimplify.c (cp_genericize_r): Don't remove them here.
331 * cp-objcp-common.c (cp_expr_size): Remove.
332 * cp-tree.h: Remove prototype.
335 * name-lookup.c (set_decl_namespace): Don't copy DECL_CONTEXT if the
336 decl we looked up doesn't match.
339 * cp-gimplify.c (cp_gimplify_expr) [INIT_EXPR]: Return if we don't
340 have an INIT_EXPR anymore.
343 * pt.c (convert_nontype_argument): Change assert to test.
345 2010-02-16 Jason Merrill <jason@redhat.com>
347 * cp-gimplify.c (cp_gimplify_expr): Fix error recovery.
350 * cp-gimplify.c (cp_gimplify_expr) [MODIFY_EXPR]: Use
351 VIEW_CONVERT_EXPR for conversions between structural equality types
352 that the back end can't tell are the same.
355 * tree.c (build_cplus_array_type): Set TYPE_MAIN_VARIANT to strip
356 cv-quals from element here.
357 (cp_build_qualified_type_real): Not here. Preserve typedef name.
359 2010-02-14 Jason Merrill <jason@redhat.com>
362 * semantics.c (finish_compound_literal): Use
363 cp_apply_type_quals_to_decl when creating a static variable.
365 2010-02-12 Jason Merrill <jason@redhat.com>
368 * name-lookup.h (current_binding_level): Check for null
371 2010-02-12 Jason Merrill <jason@redhat.com>
374 * tree.c (cp_tree_equal): Correct CALL_EXPR logic.
376 2010-02-12 Jakub Jelinek <jakub@redhat.com>
379 * name-lookup.c (pushdecl_maybe_friend): Check default args of t
382 2010-02-10 Jason Merrill <jason@redhat.com>
385 * semantics.c (outer_lambda_capture_p): Revert.
386 (add_capture): Only finish_member_declaration if
387 we're in the lambda class.
388 (register_capture_members): New.
389 * cp-tree.h: Declare it.
390 * parser.c (cp_parser_lambda_expression): Call it.
392 2010-02-10 Jason Merrill <jason@redhat.com>
395 * semantics.c (outer_lambda_capture_p): Use current_function_decl
396 instead of current_class_type.
398 2010-02-10 Jason Merrill <jason@redhat.com>
400 PR c++/42983, core issue 906
401 * method.c (defaultable_fn_check): Check virtualness.
403 2010-02-10 Jason Merrill <jason@redhat.com>
406 * semantics.c (maybe_add_lambda_conv_op): Set DECL_INTERFACE_KNOWN.
408 2010-02-10 Shujing Zhao <pearly.zhao@oracle.com>
410 * Make-lang.in (cp/cvt.o, cp/parser.o, cp/search.o): Depend on intl.h.
411 * cvt.c (warn_ref_binding): Wrap the messages into G_() for easy
413 * parser.c (cp_parser_postfix_expression, cp_parser_new_type_id)
414 (cp_parser_cast_expression, cp_parser_condition, cp_parser_decltype)
415 (cp_parser_parameter_declaration)
416 (cp_parser_exception_specification_opt)
417 (cp_parser_exception_declaration): Likewise.
418 * pt.c (check_default_tmpl_args): Likewise.
419 * search.c (lookup_field_r): Likewise.
421 2010-02-09 Jason Merrill <jason@redhat.com>
424 * pt.c (tsubst_copy_and_build): Propagate LAMBDA_EXPR_LOCATION.
426 2010-02-09 Jason Merrill <jason@redhat.com>
429 * decl2.c (change_return_type): New fn.
430 * semantics.c (apply_lambda_return_type): Use it.
431 * cp-tree.h: Declare it.
433 2010-02-05 Richard Guenther <rguenther@suse.de>
435 * Make-lang.in (cp/cp-lang.o): Depend on gt-cp-cp-lang.h.
436 * cp-lang.c: Include gt-cp-cp-lang.h.
437 * config-lang.in (gtfiles): Add cp/cp-lang.c.
439 2010-02-05 Dodji Seketeli <dodji@redhat.com>
442 * typeck.c (get_template_parms_of_dependent_type): Try getting
443 the template parameters fromt the type itself first.
445 2010-02-03 Jason Merrill <jason@redhat.com>
449 * mangle.c (write_unqualified_id): Split out from write_expression.
450 (write_unqualified_name): Call it.
451 (write_member_name): Likewise.
452 (write_expression): Support TEMPLATE_ID_EXPR.
453 Disambiguate operator names.
456 * mangle.c (write_type) [VECTOR_TYPE]: Change mangling with
459 2010-02-02 Jason Merrill <jason@redhat.com>
462 * decl.c (cp_finish_decl): Add local statics to cfun->local_decls.
463 * optimize.c (clone_body): Remap their initializers when making base
465 (maybe_clone_body): Complain if multiple clones aren't safe.
467 2010-01-29 Dodji Seketeli <dodji@redhat.com>
474 * cp-tree.h (NON_DEFAULT_TEMPLATE_ARGS_COUNT,
475 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT,
476 GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT): New accessor macros.
477 * pt.c (coerce_template_parms, type_unification_real,
478 expand_template_argument_pack, coerce_template_parameter_pack):
479 Set the non default template args count.
480 (current_template_args): Always set non defaulted
481 template args count when compiled with --enable-checking
482 (tsubst_template_args, type_unification_real): Propagate the non
483 defaulted template args count.
484 * error.c (get_non_default_template_args_count): Renamed
485 count_non_default_template_args into this. Don't calculate the
486 non default template argument count anymore. Use the new
487 accessor macros above to get it.
488 (dump_template_argument_list, dump_type, dump_decl,
489 dump_template_parms): Adjust.
490 * parser.c (cp_parser_template_argument_list): Always set defaulted
491 template args count when compiled with --enable-checking.
493 2010-01-29 Shujing Zhao <pearly.zhao@oracle.com>
495 * decl.c (redeclaration_error_message): Wrap the return messages into
496 G_() for easy translation.
498 2010-01-28 Jason Merrill <jason@redhat.com>
501 * semantics.c (begin_class_definition): Don't use type_as_string.
503 2010-01-28 Dodji Seketeli <dodji@redhat.com>
507 * typeck.c (get_template_parms_of_dependent_type): Factorized
508 this out of incompatible_template_type_parms_p
509 (incompatible_dependent_types_p): Renamed
510 incompatible_template_type_parms_p into this. Make it detect
511 two incompatible dependent typedefs too.
512 (structural_comptypes): Use incompatible_dependent_types_p.
513 * pt.c (get_template_info):
514 Handle BOUND_TEMPLATE_TEMPLATE_PARAM.
516 2010-01-20 Janis Johnson <janis187@us.ibm.com>
517 Jason Merrill <jason@redhat.com>
519 * mangle.c (write_type): Mangle transparent record as member type.
520 * semantics.c (begin_class_definition): Recognize decimal classes
521 and set TYPE_TRANSPARENT_AGGR.
523 2010-01-20 Jason Merrill <jason@redhat.com>
526 * mangle.c (write_expression): Handle tree codes that have extra
527 arguments in the middle-end.
529 2010-01-20 Paolo Carlini <paolo.carlini@oracle.com>
532 * except.c (expand_start_catch_block): Deal correctly with
533 do_begin_catch returning error_mark_node.
535 2010-01-20 Jason Merrill <jason@redhat.com>
538 * class.c (layout_class_type): Set packed_maybe_necessary for packed
542 * semantics.c (build_lambda_object): Call mark_used on captured
546 * decl.c (grokdeclarator): Clear type_quals for a member function
547 declared using a typedef. Don't complain about adding cv-quals
548 to a function typedef in C++0x mode.
550 2010-01-20 Jakub Jelinek <jakub@redhat.com>
552 * decl.c (create_array_type_for_decl): Remove set but not used
553 variable error_msg. Remove break stmts after return stmts.
555 2010-01-19 Dodji Seketeli <dodji@redhat.com>
557 * error.c (dump_template_parms, count_non_default_template_args):
558 Revert fix of PR c++/42634.
560 2010-01-18 Dodji Seketeli <dodji@redhat.com>
563 * error.c (dump_template_parms): Use innermost template
564 arguments before calling count_non_default_template_args.
565 (count_non_default_template_args): We are being called with
566 template innermost arguments now. There is no need to ensure
569 2010-01-18 Dodji Seketeli <dodji@redhat.com>
572 * cvt.c (build_expr_type_conversion): Look through OVERLOAD.
574 2010-01-17 Dodji Seketeli <dodji@redhat.com>
577 *pt.c (tsubst_decl): Revert commit for PR c++/42697.
579 2010-01-17 Dodji Seketeli <dodji@redhat.com>
582 *pt.c (tsubst_decl): Get the arguments of a specialization from
583 the specialization template, not from the most general template.
585 2010-01-16 Jason Merrill <jason@redhat.com>
588 * semantics.c (finish_decltype_type): Within a template, treat
589 unresolved CALL_EXPR as dependent.
591 2010-01-15 Dodji Seketeli <dodji@redhat.com>
593 * error.c (dump_template_parms,count_non_default_template_args):
594 Revert changes of PR c++/42634.
596 2010-01-14 Jakub Jelinek <jakub@redhat.com>
599 * decl.c (finish_function): Don't emit -Wreturn-type warnings in
600 functions with noreturn attribute.
602 2010-01-14 Jason Merrill <jason@redhat.com>
605 * call.c (build_new_method_call): Don't free the vec here.
608 * call.c (convert_like_real): Do full decay_conversion for ck_rvalue.
610 2010-01-13 Dodji Seketeli <dodji@redhat.com>
613 * error.c (dump_template_parms): Use innermost template
614 arguments before calling count_non_default_template_args.
615 (count_non_default_template_args): We are being called with
616 template innermost arguments now. There is no need to ensure
619 2010-01-07 Dodji Seketeli <dodji@redhat.com>
622 * pt.c (unify_pack_expansion): In non-deduced contexts, re-use template
623 arguments that were previously deduced.
625 2010-01-05 Jason Merrill <jason@redhat.com>
627 * pt.c (unify_pack_expansion): Handle deduction from init-list.
628 * call.c (build_over_call): Don't complain about it.
630 2010-01-04 Jason Merrill <jason@redhat.com>
633 * pt.c (tsubst_decl): Don't apply type attributes in place.
636 * semantics.c (describable_type): Remove decltype comment and
641 Copyright (C) 2010 Free Software Foundation, Inc.
643 Copying and distribution of this file, with or without modification,
644 are permitted in any medium without royalty provided the copyright
645 notice and this notice are preserved.