1 2010-04-07 Jason Merrill <jason@redhat.com>
4 * decl.c (grokvardecl): Tweak warning message.
5 (grokfndecl): Likewise.
7 2010-04-07 Dodji Seketeli <dodji@redhat.com>
10 *pt.c (tsubst_decl): Get the arguments of a specialization from
11 the specialization template, not from the most general template.
13 2010-04-07 Dodji Seketeli <dodji@redhat.com>
16 * typeck2.c (process_init_constructor_record):
17 value-initialize members that are are not explicitely
20 2010-04-07 Jie Zhang <jie@codesourcery.com>
23 * typeck2.c (split_nonconstant_init_1): Drop empty CONSTRUCTOR
24 when all of its elements are non-constant and have been split out.
26 2010-04-06 Taras Glek <taras@mozilla.com>
27 Jason Merrill <jason@redhat.com>
29 * parser.c (cp_parser_class_specifier): Set class location to that
30 of IDENTIFIER_NODE instead of '{' when possible.
31 * semantics.c (begin_class_definition): Do not overide locations
32 with less precise ones.
34 2010-04-06 Jason Merrill <jason@redhat.com>
37 * name-lookup.c (constructor_name_p): Allow X::~X even for typedefs.
40 * pt.c (maybe_update_decl_type): Check the return value from
43 2010-04-01 Jason Merrill <jason@redhat.com>
45 * decl.c (next_initializable_field): No longer static.
46 * cp-tree.h: Declare it.
47 * call.c (build_aggr_conv): Fail if there are more initializers
48 than initializable fields.
50 * semantics.c (maybe_add_lambda_conv_op): Use null_pointer_node
51 instead of void_zero_node.
53 2010-03-31 Dodji Seketeli <dodji@redhat.com>
56 * cp-tree.h (TEMPLATE_TYPE_PARM_SIBLING_PARMS): New accessor macro.
57 * pt.c (end_template_parm_list): Store sibling template parms of
58 each TEMPLATE_TYPE_PARMs into its TEMPLATE_TYPE_PARM_SIBLING_PARMS.
59 (push_template_decl_real): Don't store the containing template decl
60 into the DECL_CONTEXT of TEMPLATE_TYPE_PARMs anymore.
61 * typeck.c (get_template_parms_of_dependent_type): Get sibling parms
62 of a TEMPLATE_TYPE_PARM from TEMPLATE_TYPE_PARM_SIBLING_PARMS.
65 2010-03-30 Jason Merrill <jason@redhat.com>
68 * pt.c (push_template_decl_real): Deal better with running out of
69 scopes before running out of template parms.
73 * parser.c (cp_parser_direct_declarator): Don't allow VLAs in
74 function parameter context. Don't print an error if parsing
78 * pt.c (more_specialized_fn): Don't control cv-qualifier check
81 2010-03-26 Jason Merrill <jason@redhat.com>
84 * parser.c (cp_parser_qualifying_entity): Do accept enum names in
85 c++0x mode, but not other type-names.
87 2010-03-26 Dodji Seketeli <dodji@redhat.com>
90 * pt.c (add_to_template_args): Support NULL ARGS;
91 (most_specialized_class): call coerce_template_parms on
92 template arguments passed to get_class_bindings. Use
94 (unify): Handle VAR_DECLs.
96 2010-03-26 Dodji Seketeli <dodji@redhat.com>
98 * cp-tree.h (get_template_parms_at_level): Change unsigned parm
100 * pt.c (get_template_parms_at_level): Adjust.
102 2010-03-25 Dodji Seketeli <dodji@redhat.com>
105 * cp-tree.h (get_template_parms_at_level): Declare ...
106 * pt.c (get_template_parms_at_level): ... new function.
107 * typeck.c (get_template_parms_of_dependent_type): If a template
108 type parm's DECL_CONTEXT isn't yet set, get its siblings from
109 current_template_parms. Use get_template_parms_at_level. Remove
111 (incompatible_dependent_types_p): If we get empty parms from just one
112 of the template type parms we are comparing then the template parms are
115 2010-03-24 Jason Merrill <jason@redhat.com>
118 * parser.c (make_declarator): Initialize id_loc.
119 (cp_parser_lambda_declarator_opt): And set it.
121 2010-03-23 Jason Merrill <jason@redhat.com>
123 Make lambda conversion op and op() non-static.
124 * semantics.c (maybe_add_lambda_conv_op): Make non-static.
125 Also add the thunk function returned by the conversion op.
126 Mark the conversion deleted if the op() is variadic.
127 * decl2.c (mark_used): Give helpful message about deleted conversion.
128 * parser.c (cp_parser_lambda_declarator_opt): Don't make op() static.
129 * semantics.c (finish_this_expr): Adjust.
130 * mangle.c (write_closure_type_name): Adjust.
131 * decl.c (grok_op_properties): Don't allow it.
132 * call.c (build_user_type_conversion_1): No static conversion ops.
133 (build_op_call): Or op().
135 * decl2.c (change_return_type): Fix 'this' quals.
137 2010-03-22 Jason Merrill <jason@redhat.com>
140 * tree.c (pod_type_p): Use old meaning in C++98 mode.
143 * pt.c (contains_auto_r): New fn.
144 (do_auto_deduction): Use it.
145 (tsubst): Don't look at TREE_TYPE of a TEMPLATE_TYPE_PARM.
147 2010-03-20 Simon Martin <simartin@users.sourceforge.net>
150 * decl2.c (grokfield): Handle invalid initializers for member
153 2010-03-20 Dodji Seketeli <dodji@redhat.com>
156 * method.c (make_alias_for): Avoid crashing when DECL_LANG_SPECIFIC
158 * decl2.c (vague_linkage_p): Likewise.
160 2010-03-18 Paolo Carlini <paolo.carlini@oracle.com>
163 * parser.c (cp_parser_for_init_statement): Use NULL_TREE, not
164 false, in the cp_parser_expression_statement call.
166 2010-03-05 Jason Merrill <jason@redhat.com>
168 * mangle.c (mangle_decl): Give name collision error even without
171 2010-03-04 Marco Poletti <poletti.marco@gmail.com>
173 * pt.c (process_partial_specialization): Use error_n instead of
176 2010-03-03 Jason Merrill <jason@redhat.com>
179 * mangle.c (mangle_decl): Handle VAR_DECL, too.
181 2010-03-03 Jason Merrill <jason@redhat.com>
184 * mangle.c (mangle_decl): Handle VAR_DECL, too.
186 2010-03-03 Jason Merrill <jason@redhat.com>
189 * mangle.c: Include cgraph.h.
190 (mangle_decl): If the mangled name will change in a later
191 ABI version, make the later mangled name an alias.
192 * method.c (make_alias_for): Copy DECL_ARGUMENTS.
193 * Make-lang.in (mangle.o): Depend on cgraph.h.
194 * method.c (make_alias_for): Handle VAR_DECL, too.
195 * decl2.c (vague_linkage_p): Rename from vague_linkage_fn_p.
196 * tree.c (no_linkage_check): Adjust.
197 * decl.c (maybe_commonize_var): Adjust.
200 2010-03-01 Marco Poletti <poletti.marco@gmail.com>
202 * pt.c (redeclare_class_template): Use error_n and inform_n.
204 2010-02-27 Mark Mitchell <mark@codesourcery.com>
207 * cp-tree.h (push_tinst_level): Declare.
208 (pop_tinst_level): Likewise.
209 * pt.c (push_tinst_level): Give it external linkage.
210 (pop_tinst_level): Likewise.
211 * mangle.c (mangle_decl_string): Set the source location to that
212 of the decl while mangling.
214 2010-02-27 Simon Martin <simartin@users.sourceforge.net>
217 * pt.c (redeclare_class_template): Return false if there are erroneous
220 2010-02-24 Manuel López-Ibáñez <manu@gcc.gnu.org>
222 * pt.c (push_tinst_level): Replace -ftemplate-depth- with
225 2010-02-24 Jason Merrill <jason@redhat.com>
228 * mangle.c (write_type): Give -Wabi warning for old vector mangling.
230 * class.c (layout_class_type): Don't give -Wabi warning for a bug
231 in a previous ABI version.
233 2010-02-23 Jason Merrill <jason@redhat.com>
236 * typeck2.c (digest_init_r): Accept value init of array.
238 2010-02-22 Manuel López-Ibáñez <manu@gcc.gnu.org>
241 * typeck.c (convert_arguments): Update error message.
243 2010-02-22 Mike Stump <mikestump@comcast.net>
246 * decl.c (duplicate_decls): Merge DECL_PRESERVE_P.
248 2010-02-21 Manuel López-Ibáñez <manu@gcc.gnu.org>
251 * error.c (print_instantiation_partial_context_line): New.
252 (print_instantiation_partial_context): Print at most 12 contexts,
253 skip the rest with a message.
255 2010-02-21 Dodji Seketeli <dodji@redhat.com>
258 * pt.c (lookup_template_class): Better support of specialization
259 of member of class template implicit instantiation.
261 2010-02-20 Manuel López-Ibáñez <manu@gcc.gnu.org>
264 * call.c (conversion_null_warnings): Replace -Wconversion with
266 * cvt.c (build_expr_type_conversion): Likewise.
268 2010-02-18 Jason Merrill <jason@redhat.com>
271 * class.c (create_vtable_ptr): Set DECL_PACKED if type is packed.
274 * typeck.c (cp_build_binary_op): Adapt mixed complex/non handling from
276 * cp-tree.h (WANT_VECTOR_OR_COMPLEX): Rename from WANT_VECTOR.
277 * cvt.c (build_expr_type_conversion): Allow COMPLEX_TYPE.
280 * semantics.c (finish_goto_stmt): Don't call decay_conversion.
284 * pt.c (tsubst_qualified_id): Do normal lookup in non-dependent scope.
285 (maybe_update_decl_type): New fn.
286 * parser.c (cp_parser_init_declarator): Use it.
289 * semantics.c (begin_class_definition): Don't crash on unnamed ns.
291 2010-02-17 Jason Merrill <jason@redhat.com>
294 * call.c (build_over_call): Don't create zero-sized assignments.
295 * cp-gimplify.c (cp_genericize_r): Don't remove them here.
296 * cp-objcp-common.c (cp_expr_size): Remove.
297 * cp-tree.h: Remove prototype.
300 * name-lookup.c (set_decl_namespace): Don't copy DECL_CONTEXT if the
301 decl we looked up doesn't match.
304 * cp-gimplify.c (cp_gimplify_expr) [INIT_EXPR]: Return if we don't
305 have an INIT_EXPR anymore.
308 * pt.c (convert_nontype_argument): Change assert to test.
310 2010-02-16 Jason Merrill <jason@redhat.com>
312 * cp-gimplify.c (cp_gimplify_expr): Fix error recovery.
315 * cp-gimplify.c (cp_gimplify_expr) [MODIFY_EXPR]: Use
316 VIEW_CONVERT_EXPR for conversions between structural equality types
317 that the back end can't tell are the same.
320 * tree.c (build_cplus_array_type): Set TYPE_MAIN_VARIANT to strip
321 cv-quals from element here.
322 (cp_build_qualified_type_real): Not here. Preserve typedef name.
324 2010-02-14 Jason Merrill <jason@redhat.com>
327 * semantics.c (finish_compound_literal): Use
328 cp_apply_type_quals_to_decl when creating a static variable.
330 2010-02-12 Jason Merrill <jason@redhat.com>
333 * name-lookup.h (current_binding_level): Check for null
336 2010-02-12 Jason Merrill <jason@redhat.com>
339 * tree.c (cp_tree_equal): Correct CALL_EXPR logic.
341 2010-02-12 Jakub Jelinek <jakub@redhat.com>
344 * name-lookup.c (pushdecl_maybe_friend): Check default args of t
347 2010-02-10 Jason Merrill <jason@redhat.com>
350 * semantics.c (outer_lambda_capture_p): Revert.
351 (add_capture): Only finish_member_declaration if
352 we're in the lambda class.
353 (register_capture_members): New.
354 * cp-tree.h: Declare it.
355 * parser.c (cp_parser_lambda_expression): Call it.
357 2010-02-10 Jason Merrill <jason@redhat.com>
360 * semantics.c (outer_lambda_capture_p): Use current_function_decl
361 instead of current_class_type.
363 2010-02-10 Jason Merrill <jason@redhat.com>
365 PR c++/42983, core issue 906
366 * method.c (defaultable_fn_check): Check virtualness.
368 2010-02-10 Jason Merrill <jason@redhat.com>
371 * semantics.c (maybe_add_lambda_conv_op): Set DECL_INTERFACE_KNOWN.
373 2010-02-10 Shujing Zhao <pearly.zhao@oracle.com>
375 * Make-lang.in (cp/cvt.o, cp/parser.o, cp/search.o): Depend on intl.h.
376 * cvt.c (warn_ref_binding): Wrap the messages into G_() for easy
378 * parser.c (cp_parser_postfix_expression, cp_parser_new_type_id)
379 (cp_parser_cast_expression, cp_parser_condition, cp_parser_decltype)
380 (cp_parser_parameter_declaration)
381 (cp_parser_exception_specification_opt)
382 (cp_parser_exception_declaration): Likewise.
383 * pt.c (check_default_tmpl_args): Likewise.
384 * search.c (lookup_field_r): Likewise.
386 2010-02-09 Jason Merrill <jason@redhat.com>
389 * pt.c (tsubst_copy_and_build): Propagate LAMBDA_EXPR_LOCATION.
391 2010-02-09 Jason Merrill <jason@redhat.com>
394 * decl2.c (change_return_type): New fn.
395 * semantics.c (apply_lambda_return_type): Use it.
396 * cp-tree.h: Declare it.
398 2010-02-05 Richard Guenther <rguenther@suse.de>
400 * Make-lang.in (cp/cp-lang.o): Depend on gt-cp-cp-lang.h.
401 * cp-lang.c: Include gt-cp-cp-lang.h.
402 * config-lang.in (gtfiles): Add cp/cp-lang.c.
404 2010-02-05 Dodji Seketeli <dodji@redhat.com>
407 * typeck.c (get_template_parms_of_dependent_type): Try getting
408 the template parameters fromt the type itself first.
410 2010-02-03 Jason Merrill <jason@redhat.com>
414 * mangle.c (write_unqualified_id): Split out from write_expression.
415 (write_unqualified_name): Call it.
416 (write_member_name): Likewise.
417 (write_expression): Support TEMPLATE_ID_EXPR.
418 Disambiguate operator names.
421 * mangle.c (write_type) [VECTOR_TYPE]: Change mangling with
424 2010-02-02 Jason Merrill <jason@redhat.com>
427 * decl.c (cp_finish_decl): Add local statics to cfun->local_decls.
428 * optimize.c (clone_body): Remap their initializers when making base
430 (maybe_clone_body): Complain if multiple clones aren't safe.
432 2010-01-29 Dodji Seketeli <dodji@redhat.com>
439 * cp-tree.h (NON_DEFAULT_TEMPLATE_ARGS_COUNT,
440 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT,
441 GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT): New accessor macros.
442 * pt.c (coerce_template_parms, type_unification_real,
443 expand_template_argument_pack, coerce_template_parameter_pack):
444 Set the non default template args count.
445 (current_template_args): Always set non defaulted
446 template args count when compiled with --enable-checking
447 (tsubst_template_args, type_unification_real): Propagate the non
448 defaulted template args count.
449 * error.c (get_non_default_template_args_count): Renamed
450 count_non_default_template_args into this. Don't calculate the
451 non default template argument count anymore. Use the new
452 accessor macros above to get it.
453 (dump_template_argument_list, dump_type, dump_decl,
454 dump_template_parms): Adjust.
455 * parser.c (cp_parser_template_argument_list): Always set defaulted
456 template args count when compiled with --enable-checking.
458 2010-01-29 Shujing Zhao <pearly.zhao@oracle.com>
460 * decl.c (redeclaration_error_message): Wrap the return messages into
461 G_() for easy translation.
463 2010-01-28 Jason Merrill <jason@redhat.com>
466 * semantics.c (begin_class_definition): Don't use type_as_string.
468 2010-01-28 Dodji Seketeli <dodji@redhat.com>
472 * typeck.c (get_template_parms_of_dependent_type): Factorized
473 this out of incompatible_template_type_parms_p
474 (incompatible_dependent_types_p): Renamed
475 incompatible_template_type_parms_p into this. Make it detect
476 two incompatible dependent typedefs too.
477 (structural_comptypes): Use incompatible_dependent_types_p.
478 * pt.c (get_template_info):
479 Handle BOUND_TEMPLATE_TEMPLATE_PARAM.
481 2010-01-20 Janis Johnson <janis187@us.ibm.com>
482 Jason Merrill <jason@redhat.com>
484 * mangle.c (write_type): Mangle transparent record as member type.
485 * semantics.c (begin_class_definition): Recognize decimal classes
486 and set TYPE_TRANSPARENT_AGGR.
488 2010-01-20 Jason Merrill <jason@redhat.com>
491 * mangle.c (write_expression): Handle tree codes that have extra
492 arguments in the middle-end.
494 2010-01-20 Paolo Carlini <paolo.carlini@oracle.com>
497 * except.c (expand_start_catch_block): Deal correctly with
498 do_begin_catch returning error_mark_node.
500 2010-01-20 Jason Merrill <jason@redhat.com>
503 * class.c (layout_class_type): Set packed_maybe_necessary for packed
507 * semantics.c (build_lambda_object): Call mark_used on captured
511 * decl.c (grokdeclarator): Clear type_quals for a member function
512 declared using a typedef. Don't complain about adding cv-quals
513 to a function typedef in C++0x mode.
515 2010-01-20 Jakub Jelinek <jakub@redhat.com>
517 * decl.c (create_array_type_for_decl): Remove set but not used
518 variable error_msg. Remove break stmts after return stmts.
520 2010-01-19 Dodji Seketeli <dodji@redhat.com>
522 * error.c (dump_template_parms, count_non_default_template_args):
523 Revert fix of PR c++/42634.
525 2010-01-18 Dodji Seketeli <dodji@redhat.com>
528 * error.c (dump_template_parms): Use innermost template
529 arguments before calling count_non_default_template_args.
530 (count_non_default_template_args): We are being called with
531 template innermost arguments now. There is no need to ensure
534 2010-01-18 Dodji Seketeli <dodji@redhat.com>
537 * cvt.c (build_expr_type_conversion): Look through OVERLOAD.
539 2010-01-17 Dodji Seketeli <dodji@redhat.com>
542 *pt.c (tsubst_decl): Revert commit for PR c++/42697.
544 2010-01-17 Dodji Seketeli <dodji@redhat.com>
547 *pt.c (tsubst_decl): Get the arguments of a specialization from
548 the specialization template, not from the most general template.
550 2010-01-16 Jason Merrill <jason@redhat.com>
553 * semantics.c (finish_decltype_type): Within a template, treat
554 unresolved CALL_EXPR as dependent.
556 2010-01-15 Dodji Seketeli <dodji@redhat.com>
558 * error.c (dump_template_parms,count_non_default_template_args):
559 Revert changes of PR c++/42634.
561 2010-01-14 Jakub Jelinek <jakub@redhat.com>
564 * decl.c (finish_function): Don't emit -Wreturn-type warnings in
565 functions with noreturn attribute.
567 2010-01-14 Jason Merrill <jason@redhat.com>
570 * call.c (build_new_method_call): Don't free the vec here.
573 * call.c (convert_like_real): Do full decay_conversion for ck_rvalue.
575 2010-01-13 Dodji Seketeli <dodji@redhat.com>
578 * error.c (dump_template_parms): Use innermost template
579 arguments before calling count_non_default_template_args.
580 (count_non_default_template_args): We are being called with
581 template innermost arguments now. There is no need to ensure
584 2010-01-07 Dodji Seketeli <dodji@redhat.com>
587 * pt.c (unify_pack_expansion): In non-deduced contexts, re-use template
588 arguments that were previously deduced.
590 2010-01-05 Jason Merrill <jason@redhat.com>
592 * pt.c (unify_pack_expansion): Handle deduction from init-list.
593 * call.c (build_over_call): Don't complain about it.
595 2010-01-04 Jason Merrill <jason@redhat.com>
598 * pt.c (tsubst_decl): Don't apply type attributes in place.
601 * semantics.c (describable_type): Remove decltype comment and
606 Copyright (C) 2010 Free Software Foundation, Inc.
608 Copying and distribution of this file, with or without modification,
609 are permitted in any medium without royalty provided the copyright
610 notice and this notice are preserved.