OSDN Git Service

6d09c80c434b05a3f5e13db015fe1f3a07ab5402
[pf3gnuchains/gcc-fork.git] / gcc / cp / ChangeLog
1 2010-04-27  Jason Merrill  <jason@redhat.com>
2
3         * init.c (perform_member_init): Check CLASS_TYPE_P.
4
5 2010-04-27  Fabien Chêne  <fabien.chene@gmail.com>
6
7         PR c++/29043
8         * init.c (perform_member_init): check for uninitialized const or
9         reference members, including array types.
10
11 2010-04-24  Jason Merrill  <jason@redhat.com>
12
13         * tree.c (get_fns): Split out from get_first_fn.
14         * cp-tree.h: Declare it.
15         * search.c (shared_member_p): Use it.
16         * semantics.c (finish_qualified_id_expr): Simplify.
17         (finish_id_expression): Simplify.
18
19         * semantics.c (finish_non_static_data_member): Call maybe_dummy_object
20         whenever object is NULL_TREE.  Don't do 'this' capture here.
21         (finish_qualified_id_expr): Pass NULL_TREE.
22         (finish_id_expression): Likewise.
23         (lambda_expr_this_capture): Likewise.
24
25         * semantics.c (finish_qualified_id_expr): Use maybe_dummy_object
26         rather than checking current_class_ref directly.
27         (finish_call_expr): Likewise.
28
29         PR c++/43856
30         * name-lookup.c (qualify_lookup): Disqualify lambda op().
31         * class.c (current_nonlambda_class_type): New fn.
32         * semantics.c (nonlambda_method_basetype): New.
33         * cp-tree.h: Declare them.
34         * tree.c (maybe_dummy_object): Handle implicit 'this' capture.
35
36         * semantics.c (baselink_for_fns): Correct BASELINK_BINFO.
37
38         PR c++/43875
39         * semantics.c (lambda_return_type): Complain about
40         braced-init-list.
41
42         PR c++/43790
43         * tree.c (cv_unqualified): Handle error_mark_node.
44
45         PR c++/41468
46         * call.c (convert_like_real) [ck_ambig]: Just return error_mark_node
47         if we don't want errors.
48
49         PR c++/41468
50         * class.c (convert_to_base): Add complain parameter.  Pass
51         ba_quiet to lookup_base if we don't want errors.
52         (build_vfield_ref): Pass complain to convert_to_base.
53         * call.c (convert_like_real): Likewise.
54         (initialize_reference): Likewise.
55         (perform_direct_initialization_if_possible): Pass complain to
56         convert_like_real.
57         * cp-tree.h: Adjust.
58
59 2010-04-27  Fabien Chêne  <fabien.chene@gmail.com>
60             Jason Merrill  <jason@redhat.com>
61
62         PR c++/42844
63         * decl.c (check_for_uninitialized_const_var): Handle classes that need
64         constructing, too.
65         (check_initializer): Call it for classes that need constructing, too.
66         * class.c (in_class_defaulted_default_constructor): New.
67         * cp-tree.h: Declare it.
68
69 2010-04-20  Jason Merrill  <jason@redhat.com>
70
71         PR c++/9335
72         * init.c (constant_value_1): Treat error_mark_node as a constant
73         if DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P is set.
74         * cvt.c (ocp_convert): Handle getting error_mark_node from
75         integral_constant_value.
76         * decl.c (compute_array_index_type): Likewise.
77
78 2010-04-20  Dodji Seketeli  <dodji@redhat.com>
79
80         PR c++/43800
81         PR c++/43704
82         * typeck.c (incompatible_dependent_types_p): If one of the
83         compared types if not a typedef then honour their main variant
84         equivalence.
85
86 2010-04-20  Jakub Jelinek  <jakub@redhat.com>
87
88         * cp-tree.h (TYPE_REF_IS_RVALUE): Remove.
89
90 2010-04-19  Dodji Seketeli  <dodji@redhat.com>
91
92         PR c++/43704
93         * typeck.c (structural_comptypes): Test dependent typedefs
94         incompatibility before testing for their main variant based
95         equivalence.
96
97 2010-04-19  Jakub Jelinek  <jakub@redhat.com>
98
99         * cp-tree.h (SCOPED_ENUM_P, UNSCOPED_ENUM_P, SET_SCOPED_ENUM_P): Use
100         ENUM_IS_SCOPED bit instead of TYPE_LANG_FLAG_5.
101
102 2010-04-18  Eric Botcazou  <ebotcazou@adacore.com>
103
104         * decl.c (cxx_init_decl_processing): Remove second argument in call to
105         build_common_tree_nodes.
106
107 2010-04-14  Jason Merrill  <jason@redhat.com>
108
109         PR c++/36625
110         * parser.c (cp_parser_parenthesized_expression_list): Change
111         is_attribute_list parm to int to indicate whether or not to
112         handle initial identifier specially.
113         (cp_parser_attribute_list): Use attribute_takes_identifier_p.
114
115 2010-04-13  Jason Merrill  <jason@redhat.com>
116
117         * call.c (type_decays_to): Check MAYBE_CLASS_TYPE_P instead of
118         CLASS_TYPE_P.
119         * parser.c (cp_parser_lambda_expression): Complain about lambda in
120         unevaluated context.
121         * pt.c (iterative_hash_template_arg): Don't crash on lambda.
122
123 2010-04-12  Jason Merrill  <jason@redhat.com>
124
125         PR c++/43641
126         * semantics.c (maybe_add_lambda_conv_op): Use build_call_a and tweak
127         return value directly.
128
129         * call.c (type_decays_to): Call cv_unqualified for non-class type.
130
131 2010-04-12  Fabien Chene  <fabien.chene@gmail.com>
132
133         PR c++/25811
134         * cp-tree.h (diagnose_uninitialized_cst_or_ref_member): Declare.
135         * init.c (build_new_1): Check for uninitialized const members and
136         uninitialized reference members, when using new without
137         new-initializer. Call diagnose_uninitialized_cst_or_ref_member.
138         (diagnose_uninitialized_cst_or_ref_member): Define, call
139         diagnose_uninitialized_cst_or_ref_member_1.
140         (diagnose_uninitialized_cst_or_ref_member_1): New function.
141
142 2010-04-12  Richard Guenther  <rguenther@suse.de>
143
144         PR c++/43611
145         * semantics.c (expand_or_defer_fn_1): Do not keep extern
146         template inline functions.
147
148 2010-04-09  Manuel López-Ibáñez  <manu@gcc.gnu.org>
149
150         PR c++/28584
151         * typeck.c (cp_build_c_cast): Warn for casting integer to larger
152         pointer type.
153
154 2010-04-07  Jason Merrill  <jason@redhat.com>
155
156         PR c++/43016
157         * decl.c (start_preparsed_function): Do defer nested functions.
158
159         PR c++/11094, DR 408
160         * cp-tree.h (VAR_HAD_UNKNOWN_BOUND, SET_VAR_HAD_UNKNOWN_BOUND): New.
161         * decl2.c (finish_static_data_member_decl): Set it.
162         * decl.c (duplicate_decls): Propagate it.
163         * pt.c (tsubst_decl): Don't substitute the domain of an array
164         VAR_DECL if it's set.
165         (regenerate_decl_from_template): Substitute it here.
166         (type_dependent_expression_p): Return true if it's set.
167         * semantics.c (finish_decltype_type): Instantiate such a variable.
168         * typeck.c (cxx_sizeof_expr): Likewise.
169         (strip_array_domain): New.
170
171         * name-lookup.c (current_decl_namespace): Non-static.
172         (pop_nested_namespace): Sanity check.
173         * cp-tree.h: Declare current_decl_namespace.
174         * decl.c (grokvardecl): Use it instead of current_namespace.
175         (grokfndecl): Likewise.
176
177         PR c++/38392
178         * pt.c (tsubst_friend_function): Instatiate a friend that has already
179         been used.
180
181         * pt.c (print_template_statistics): New.
182         * cp-tree.h: Declare it.
183         * tree.c (cxx_print_statistics): Call it.
184
185         PR c++/41970
186         * decl.c (grokvardecl): Tweak warning message.
187         (grokfndecl): Likewise.
188
189 2010-04-07  Dodji Seketeli  <dodji@redhat.com>
190
191         PR c++/42697
192         *pt.c (tsubst_decl): Get the arguments of a specialization from
193         the specialization template, not from the most general template.
194
195 2010-04-07  Dodji Seketeli  <dodji@redhat.com>
196
197         PR c++/40239
198         * typeck2.c (process_init_constructor_record):
199         value-initialize members that are are not explicitely
200         initialized.
201
202 2010-04-07  Jie Zhang  <jie@codesourcery.com>
203
204         PR c++/42556
205         * typeck2.c (split_nonconstant_init_1): Drop empty CONSTRUCTOR
206         when all of its elements are non-constant and have been split out.
207
208 2010-04-06  Taras Glek  <taras@mozilla.com>
209             Jason Merrill  <jason@redhat.com>
210
211         * parser.c (cp_parser_class_specifier): Set class location to that
212         of IDENTIFIER_NODE instead of '{' when possible.
213         * semantics.c (begin_class_definition): Do not overide locations
214         with less precise ones.
215
216 2010-04-06  Jason Merrill  <jason@redhat.com>
217
218         PR c++/43648
219         * name-lookup.c (constructor_name_p): Allow X::~X even for typedefs.
220
221         PR c++/43621
222         * pt.c (maybe_update_decl_type): Check the return value from
223         push_scope.
224
225 2010-04-01  Jason Merrill  <jason@redhat.com>
226
227         * decl.c (next_initializable_field): No longer static.
228         * cp-tree.h: Declare it.
229         * call.c (build_aggr_conv): Fail if there are more initializers
230         than initializable fields.
231
232         * semantics.c (maybe_add_lambda_conv_op): Use null_pointer_node
233         instead of void_zero_node.
234
235 2010-03-31  Dodji Seketeli  <dodji@redhat.com>
236
237         PR c++/43558
238         * cp-tree.h (TEMPLATE_TYPE_PARM_SIBLING_PARMS): New accessor macro.
239         * pt.c (end_template_parm_list): Store sibling template parms of
240         each TEMPLATE_TYPE_PARMs into its TEMPLATE_TYPE_PARM_SIBLING_PARMS.
241         (push_template_decl_real): Don't store the containing template decl
242         into the DECL_CONTEXT of TEMPLATE_TYPE_PARMs anymore.
243         * typeck.c (get_template_parms_of_dependent_type): Get sibling parms
244         of a TEMPLATE_TYPE_PARM from TEMPLATE_TYPE_PARM_SIBLING_PARMS.
245         Simplify the logic.
246
247 2010-03-30  Jason Merrill  <jason@redhat.com>
248
249         PR c++/43076
250         * pt.c (push_template_decl_real): Deal better with running out of
251         scopes before running out of template parms.
252
253         PR c++/41185
254         PR c++/41786
255         * parser.c (cp_parser_direct_declarator): Don't allow VLAs in
256         function parameter context.  Don't print an error if parsing
257         tentatively.
258
259         PR c++/43559
260         * pt.c (more_specialized_fn): Don't control cv-qualifier check
261         with same_type_p.
262
263 2010-03-26  Jason Merrill  <jason@redhat.com>
264
265         PR c++/43509
266         * parser.c (cp_parser_qualifying_entity): Do accept enum names in
267         c++0x mode, but not other type-names.
268
269 2010-03-26  Dodji Seketeli  <dodji@redhat.com>
270
271         PR c++/43327
272         * pt.c (add_to_template_args): Support NULL ARGS;
273         (most_specialized_class): call coerce_template_parms on
274         template arguments passed to get_class_bindings. Use
275         add_to_template_args.
276         (unify): Handle VAR_DECLs.
277
278 2010-03-26  Dodji Seketeli  <dodji@redhat.com>
279
280         * cp-tree.h (get_template_parms_at_level): Change unsigned parm
281         into int.
282         * pt.c (get_template_parms_at_level): Adjust.
283
284 2010-03-25  Dodji Seketeli  <dodji@redhat.com>
285
286         PR c++/43206
287         * cp-tree.h (get_template_parms_at_level): Declare ...
288         * pt.c (get_template_parms_at_level): ... new function.
289         * typeck.c (get_template_parms_of_dependent_type): If a template
290         type parm's DECL_CONTEXT isn't yet set, get its siblings from
291         current_template_parms. Use get_template_parms_at_level. Remove
292         useless test.
293         (incompatible_dependent_types_p): If we get empty parms from just one
294         of the template type parms we are comparing then the template parms are
295         incompatible.
296
297 2010-03-24  Jason Merrill  <jason@redhat.com>
298
299         PR c++/43502
300         * parser.c (make_declarator): Initialize id_loc.
301         (cp_parser_lambda_declarator_opt): And set it.
302
303 2010-03-23  Jason Merrill  <jason@redhat.com>
304
305         Make lambda conversion op and op() non-static.
306         * semantics.c (maybe_add_lambda_conv_op): Make non-static.
307         Also add the thunk function returned by the conversion op.
308         Mark the conversion deleted if the op() is variadic.
309         * decl2.c (mark_used): Give helpful message about deleted conversion.
310         * parser.c (cp_parser_lambda_declarator_opt): Don't make op() static.
311         * semantics.c (finish_this_expr): Adjust.
312         * mangle.c (write_closure_type_name): Adjust.
313         * decl.c (grok_op_properties): Don't allow it.
314         * call.c (build_user_type_conversion_1): No static conversion ops.
315         (build_op_call): Or op().
316
317         * decl2.c (change_return_type): Fix 'this' quals.
318
319 2010-03-22  Jason Merrill  <jason@redhat.com>
320
321         PR c++/43333
322         * tree.c (pod_type_p): Use old meaning in C++98 mode.
323
324         PR c++/43281
325         * pt.c (contains_auto_r): New fn.
326         (do_auto_deduction): Use it.
327         (tsubst): Don't look at TREE_TYPE of a TEMPLATE_TYPE_PARM.
328
329 2010-03-20  Simon Martin  <simartin@users.sourceforge.net>
330
331         PR c++/43081:
332         * decl2.c (grokfield): Handle invalid initializers for member
333         functions.
334
335 2010-03-20  Dodji Seketeli  <dodji@redhat.com>
336
337         PR c++/43375
338         * method.c (make_alias_for): Avoid crashing when DECL_LANG_SPECIFIC
339         is NULL.
340         * decl2.c (vague_linkage_p): Likewise.
341
342 2010-03-18  Paolo Carlini  <paolo.carlini@oracle.com>
343
344         PR c++/43418
345         * parser.c (cp_parser_for_init_statement): Use NULL_TREE, not
346         false, in the cp_parser_expression_statement call.
347
348 2010-03-05  Jason Merrill  <jason@redhat.com>
349
350         * mangle.c (mangle_decl): Give name collision error even without
351         ASM_OUTPUT_DEF.
352
353 2010-03-04  Marco Poletti  <poletti.marco@gmail.com>
354
355         * pt.c (process_partial_specialization): Use error_n instead of
356         error.
357
358 2010-03-03  Jason Merrill  <jason@redhat.com>
359
360         PR c++/12909
361         * mangle.c (mangle_decl): Handle VAR_DECL, too.
362
363 2010-03-03  Jason Merrill  <jason@redhat.com>
364
365         PR c++/12909
366         * mangle.c: Include cgraph.h.
367         (mangle_decl): If the mangled name will change in a later
368         ABI version, make the later mangled name an alias.
369         * method.c (make_alias_for): Copy DECL_ARGUMENTS.
370         * Make-lang.in (mangle.o): Depend on cgraph.h.
371         * method.c (make_alias_for): Handle VAR_DECL, too.
372         * decl2.c (vague_linkage_p): Rename from vague_linkage_fn_p.
373         * tree.c (no_linkage_check): Adjust.
374         * decl.c (maybe_commonize_var): Adjust.
375         * cp-tree.h: Adjust.
376
377 2010-03-01  Marco Poletti  <poletti.marco@gmail.com>
378
379         * pt.c (redeclare_class_template): Use error_n and inform_n.
380
381 2010-02-27  Mark Mitchell  <mark@codesourcery.com>
382
383         PR c++/42748
384         * cp-tree.h (push_tinst_level): Declare.
385         (pop_tinst_level): Likewise.
386         * pt.c (push_tinst_level): Give it external linkage.
387         (pop_tinst_level): Likewise.
388         * mangle.c (mangle_decl_string): Set the source location to that
389         of the decl while mangling.
390
391 2010-02-27  Simon Martin  <simartin@users.sourceforge.net>
392
393         PR c++/42054
394         * pt.c (redeclare_class_template): Return false if there are erroneous
395         template parameters.
396
397 2010-02-24  Manuel López-Ibáñez  <manu@gcc.gnu.org>
398
399         * pt.c (push_tinst_level): Replace -ftemplate-depth- with 
400         -ftemplate-depth=.
401
402 2010-02-24  Jason Merrill  <jason@redhat.com>
403
404         PR c++/12909
405         * mangle.c (write_type): Give -Wabi warning for old vector mangling.
406
407         * class.c (layout_class_type): Don't give -Wabi warning for a bug
408         in a previous ABI version.
409
410 2010-02-23  Jason Merrill  <jason@redhat.com>
411
412         PR c++/43143
413         * typeck2.c (digest_init_r): Accept value init of array.
414
415 2010-02-22  Manuel López-Ibáñez  <manu@gcc.gnu.org>
416
417         PR c++/43126
418         * typeck.c (convert_arguments): Update error message.
419
420 2010-02-22  Mike Stump  <mikestump@comcast.net>
421
422         PR c++/43125
423         * decl.c (duplicate_decls): Merge DECL_PRESERVE_P.
424
425 2010-02-21  Manuel López-Ibáñez  <manu@gcc.gnu.org>
426
427         PR c++/23510
428         * error.c (print_instantiation_partial_context_line): New.
429         (print_instantiation_partial_context): Print at most 12 contexts,
430         skip the rest with a message.
431
432 2010-02-21  Dodji Seketeli  <dodji@redhat.com>
433
434         PR c++/42824
435         * pt.c (lookup_template_class): Better support of specialization
436         of member of class template implicit instantiation.
437
438 2010-02-20  Manuel López-Ibáñez  <manu@gcc.gnu.org>
439
440         PR c++/35669
441         * call.c (conversion_null_warnings): Replace -Wconversion with
442         -Wconversion-null.
443         * cvt.c (build_expr_type_conversion): Likewise.
444
445 2010-02-18  Jason Merrill  <jason@redhat.com>
446
447         PR c++/42837
448         * class.c (create_vtable_ptr): Set DECL_PACKED if type is packed.
449
450         PR c++/43108
451         * typeck.c (cp_build_binary_op): Adapt mixed complex/non handling from
452         C build_binary_op.
453         * cp-tree.h (WANT_VECTOR_OR_COMPLEX): Rename from WANT_VECTOR.
454         * cvt.c (build_expr_type_conversion): Allow COMPLEX_TYPE.
455
456         PR c++/43070
457         * semantics.c (finish_goto_stmt): Don't call decay_conversion.
458
459         PR c++/26261
460         PR c++/43101
461         * pt.c (tsubst_qualified_id): Do normal lookup in non-dependent scope.
462         (maybe_update_decl_type): New fn.
463         * parser.c (cp_parser_init_declarator): Use it.
464
465         PR c++/43109
466         * semantics.c (begin_class_definition): Don't crash on unnamed ns.
467
468 2010-02-17  Jason Merrill  <jason@redhat.com>
469
470         PR c++/43075
471         * call.c (build_over_call): Don't create zero-sized assignments.
472         * cp-gimplify.c (cp_genericize_r): Don't remove them here.
473         * cp-objcp-common.c (cp_expr_size): Remove.
474         * cp-tree.h: Remove prototype.
475
476         PR c++/43069
477         * name-lookup.c (set_decl_namespace): Don't copy DECL_CONTEXT if the
478         decl we looked up doesn't match.
479
480         PR c++/43093
481         * cp-gimplify.c (cp_gimplify_expr) [INIT_EXPR]: Return if we don't
482         have an INIT_EXPR anymore.
483
484         PR c++/43079
485         * pt.c (convert_nontype_argument): Change assert to test.
486
487 2010-02-16  Jason Merrill  <jason@redhat.com>
488
489         * cp-gimplify.c (cp_gimplify_expr): Fix error recovery.
490
491         PR c++/43031
492         * cp-gimplify.c (cp_gimplify_expr) [MODIFY_EXPR]: Use
493         VIEW_CONVERT_EXPR for conversions between structural equality types
494         that the back end can't tell are the same.
495
496         PR c++/43036
497         * tree.c (build_cplus_array_type): Set TYPE_MAIN_VARIANT to strip
498         cv-quals from element here.
499         (cp_build_qualified_type_real): Not here.  Preserve typedef name.
500
501 2010-02-14  Jason Merrill  <jason@redhat.com>
502
503         PR c++/41997
504         * semantics.c (finish_compound_literal): Use
505         cp_apply_type_quals_to_decl when creating a static variable.
506
507 2010-02-12  Jason Merrill  <jason@redhat.com>
508
509         PR c++/43024
510         * name-lookup.h (current_binding_level): Check for null
511         cp_function_chain.
512
513 2010-02-12  Jason Merrill  <jason@redhat.com>
514
515         PR c++/43054
516         * tree.c (cp_tree_equal): Correct CALL_EXPR logic.
517
518 2010-02-12  Jakub Jelinek  <jakub@redhat.com>
519
520         PR c++/43033
521         * name-lookup.c (pushdecl_maybe_friend): Check default args of t
522         instead of x.
523
524 2010-02-10  Jason Merrill  <jason@redhat.com>
525
526         PR c++/41896
527         * semantics.c (outer_lambda_capture_p): Revert.
528         (add_capture): Only finish_member_declaration if
529         we're in the lambda class.
530         (register_capture_members): New.
531         * cp-tree.h: Declare it.
532         * parser.c (cp_parser_lambda_expression): Call it.
533
534 2010-02-10  Jason Merrill  <jason@redhat.com>
535
536         PR c++/41896
537         * semantics.c (outer_lambda_capture_p): Use current_function_decl
538         instead of current_class_type.
539
540 2010-02-10  Jason Merrill  <jason@redhat.com>
541
542         PR c++/42983, core issue 906
543         * method.c (defaultable_fn_check): Check virtualness.
544
545 2010-02-10  Jason Merrill  <jason@redhat.com>
546
547         PR c++/43016
548         * semantics.c (maybe_add_lambda_conv_op): Set DECL_INTERFACE_KNOWN.
549
550 2010-02-10  Shujing Zhao  <pearly.zhao@oracle.com>
551
552         * Make-lang.in (cp/cvt.o, cp/parser.o, cp/search.o): Depend on intl.h.
553         * cvt.c (warn_ref_binding): Wrap the messages into G_() for easy
554         translation.
555         * parser.c (cp_parser_postfix_expression, cp_parser_new_type_id)
556         (cp_parser_cast_expression, cp_parser_condition, cp_parser_decltype)
557         (cp_parser_parameter_declaration)
558         (cp_parser_exception_specification_opt)
559         (cp_parser_exception_declaration): Likewise.
560         * pt.c (check_default_tmpl_args): Likewise.
561         * search.c (lookup_field_r): Likewise.
562
563 2010-02-09  Jason Merrill  <jason@redhat.com>
564
565         PR c++/42399
566         * pt.c (tsubst_copy_and_build): Propagate LAMBDA_EXPR_LOCATION.
567
568 2010-02-09  Jason Merrill  <jason@redhat.com>
569
570         PR c++/42370
571         * decl2.c (change_return_type): New fn.
572         * semantics.c (apply_lambda_return_type): Use it.
573         * cp-tree.h: Declare it.
574
575 2010-02-05  Richard Guenther  <rguenther@suse.de>
576
577         * Make-lang.in (cp/cp-lang.o): Depend on gt-cp-cp-lang.h.
578         * cp-lang.c: Include gt-cp-cp-lang.h.
579         * config-lang.in (gtfiles): Add cp/cp-lang.c.
580
581 2010-02-05  Dodji Seketeli  <dodji@redhat.com>
582
583         PR c++/42915
584         * typeck.c (get_template_parms_of_dependent_type): Try getting
585         the template parameters fromt the type itself first.
586
587 2010-02-03  Jason Merrill  <jason@redhat.com>
588
589         PR c++/4926
590         PR c++/38600
591         * mangle.c (write_unqualified_id): Split out from write_expression.
592         (write_unqualified_name): Call it.
593         (write_member_name): Likewise.
594         (write_expression): Support TEMPLATE_ID_EXPR.
595         Disambiguate operator names.
596
597         PR c++/12909
598         * mangle.c (write_type) [VECTOR_TYPE]: Change mangling with
599         -fabi-version=4.
600
601 2010-02-02  Jason Merrill  <jason@redhat.com>
602
603         PR c++/41090
604         * decl.c (cp_finish_decl): Add local statics to cfun->local_decls.
605         * optimize.c (clone_body): Remap their initializers when making base
606         variants.
607         (maybe_clone_body): Complain if multiple clones aren't safe.
608
609 2010-01-29  Dodji Seketeli  <dodji@redhat.com>
610
611         PR c++/42758
612         PR c++/42634
613         PR c++/42336
614         PR c++/42797
615         PR c++/42880
616         * cp-tree.h (NON_DEFAULT_TEMPLATE_ARGS_COUNT,
617         SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT,
618         GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT): New accessor macros.
619         * pt.c (coerce_template_parms, type_unification_real,
620         expand_template_argument_pack, coerce_template_parameter_pack):
621         Set the non default template args count.
622         (current_template_args): Always set non defaulted
623         template args count when compiled with --enable-checking
624         (tsubst_template_args, type_unification_real): Propagate the non
625         defaulted template args count.
626         * error.c (get_non_default_template_args_count): Renamed
627         count_non_default_template_args into this. Don't calculate the
628         non default template argument count anymore. Use the new
629         accessor macros above to get it.
630         (dump_template_argument_list, dump_type, dump_decl,
631         dump_template_parms): Adjust.
632         * parser.c (cp_parser_template_argument_list): Always set defaulted
633         template args count when compiled with --enable-checking.
634
635 2010-01-29  Shujing Zhao  <pearly.zhao@oracle.com>
636
637         * decl.c (redeclaration_error_message): Wrap the return messages into
638         G_() for easy translation.
639
640 2010-01-28  Jason Merrill  <jason@redhat.com>
641
642         PR c++/42880
643         * semantics.c (begin_class_definition): Don't use type_as_string.
644
645 2010-01-28  Dodji Seketeli  <dodji@redhat.com>
646
647         PR c++/42713
648         PR c++/42820
649         * typeck.c (get_template_parms_of_dependent_type): Factorized
650         this out of incompatible_template_type_parms_p
651         (incompatible_dependent_types_p): Renamed
652         incompatible_template_type_parms_p into this. Make it detect
653         two incompatible dependent typedefs too.
654         (structural_comptypes): Use incompatible_dependent_types_p.
655         * pt.c (get_template_info):
656         Handle BOUND_TEMPLATE_TEMPLATE_PARAM.
657
658 2010-01-20  Janis Johnson  <janis187@us.ibm.com>
659             Jason Merrill  <jason@redhat.com>
660
661         * mangle.c (write_type): Mangle transparent record as member type.
662         * semantics.c (begin_class_definition): Recognize decimal classes
663         and set TYPE_TRANSPARENT_AGGR.
664
665 2010-01-20  Jason Merrill  <jason@redhat.com>
666
667         PR c++/42338
668         * mangle.c (write_expression): Handle tree codes that have extra
669         arguments in the middle-end.
670
671 2010-01-20  Paolo Carlini  <paolo.carlini@oracle.com>
672
673         PR c++/42038
674         * except.c (expand_start_catch_block): Deal correctly with
675         do_begin_catch returning error_mark_node.
676
677 2010-01-20  Jason Merrill  <jason@redhat.com>
678
679         PR c++/41788
680         * class.c (layout_class_type): Set packed_maybe_necessary for packed
681         non-PODs.
682
683         PR c++/41920
684         * semantics.c (build_lambda_object): Call mark_used on captured
685         variables.
686
687         PR c++/40750
688         * decl.c (grokdeclarator): Clear type_quals for a member function
689         declared using a typedef.  Don't complain about adding cv-quals
690         to a function typedef in C++0x mode.
691
692 2010-01-20  Jakub Jelinek  <jakub@redhat.com>
693
694         * decl.c (create_array_type_for_decl): Remove set but not used
695         variable error_msg.  Remove break stmts after return stmts.
696
697 2010-01-19  Dodji Seketeli  <dodji@redhat.com>
698
699         * error.c (dump_template_parms, count_non_default_template_args):
700         Revert fix of PR c++/42634.
701
702 2010-01-18  Dodji Seketeli  <dodji@redhat.com>
703
704         PR c++/42634
705         * error.c (dump_template_parms): Use innermost template
706         arguments before calling count_non_default_template_args.
707         (count_non_default_template_args): We are being called with
708         template innermost arguments now. There is no need to ensure
709         that again.
710
711 2010-01-18  Dodji Seketeli  <dodji@redhat.com>
712
713         PR c++/42766
714         * cvt.c (build_expr_type_conversion): Look through OVERLOAD.
715
716 2010-01-17  Dodji Seketeli  <dodji@redhat.com>
717
718         PR c++/42697
719         *pt.c (tsubst_decl):  Revert commit for PR c++/42697.
720
721 2010-01-17  Dodji Seketeli  <dodji@redhat.com>
722
723         PR c++/42697
724         *pt.c (tsubst_decl): Get the arguments of a specialization from
725         the specialization template, not from the most general template.
726
727 2010-01-16  Jason Merrill  <jason@redhat.com>
728
729         PR c++/42761
730         * semantics.c (finish_decltype_type): Within a template, treat
731         unresolved CALL_EXPR as dependent.
732
733 2010-01-15  Dodji Seketeli  <dodji@redhat.com>
734
735         * error.c (dump_template_parms,count_non_default_template_args):
736         Revert changes of PR c++/42634.
737
738 2010-01-14  Jakub Jelinek  <jakub@redhat.com>
739
740         PR middle-end/42674
741         * decl.c (finish_function): Don't emit -Wreturn-type warnings in
742         functions with noreturn attribute.
743
744 2010-01-14  Jason Merrill  <jason@redhat.com>
745
746         PR c++/42701
747         * call.c (build_new_method_call): Don't free the vec here.
748
749         PR c++/42655
750         * call.c (convert_like_real): Do full decay_conversion for ck_rvalue.
751
752 2010-01-13  Dodji Seketeli  <dodji@redhat.com>
753
754         PR c++/42634
755         * error.c (dump_template_parms): Use innermost template
756         arguments before calling count_non_default_template_args.
757         (count_non_default_template_args): We are being called with
758         template innermost arguments now. There is no need to ensure
759         that again.
760
761 2010-01-07  Dodji Seketeli  <dodji@redhat.com>
762
763         c++/40155
764         * pt.c (unify_pack_expansion): In non-deduced contexts, re-use template
765         arguments that were previously deduced.
766
767 2010-01-05  Jason Merrill  <jason@redhat.com>
768
769         * pt.c (unify_pack_expansion): Handle deduction from init-list.
770         * call.c (build_over_call): Don't complain about it.
771
772 2010-01-04  Jason Merrill  <jason@redhat.com>
773
774         PR c++/42555
775         * pt.c (tsubst_decl): Don't apply type attributes in place.
776
777         PR c++/42567
778         * semantics.c (describable_type): Remove decltype comment and
779         semantics.
780
781
782 \f
783 Copyright (C) 2010 Free Software Foundation, Inc.
784
785 Copying and distribution of this file, with or without modification,
786 are permitted in any medium without royalty provided the copyright
787 notice and this notice are preserved.