OSDN Git Service

PR debug/41276
[pf3gnuchains/gcc-fork.git] / gcc / cp / ChangeLog
1 2009-09-09  Jason Merrill  <jason@redhat.com>
2
3         * error.c (find_typenames_r): Also add decltypes.
4
5 2009-09-09  Paolo Carlini  <paolo.carlini@oracle.com>
6
7         PR c++/28293
8         * decl2.c (grokfield): Check for explicit template argument lists.
9
10 2009-09-09  Jack Howarth  <howarth@bromo.med.uc.edu>
11
12         PR bootstrap/41180
13         * Make-lang.in: Remove redundant code from linkage for darwin10.
14
15 2009-09-08  Paolo Carlini  <paolo.carlini@oracle.com>
16
17         PR c++/39923
18         * decl.c (build_init_list_var_init): Check return value of
19         perform_implicit_conversion.
20
21 2009-09-03  Jason Merrill  <jason@redhat.com>
22
23         * class.c (currently_open_class): Make sure we're dealing with the
24         main variant.
25
26         * cp-tree.h (enum overload_flags): Remove OP_FLAG.
27         * method.c (lazily_declare_fn): Check for dtorness in ABI warning.
28
29         * name-lookup.c (is_class_level): Remove.
30         (push_binding_level, leave_scope, resume_scope): Adjust.
31         (pushlevel_class): Adjust.
32         (poplevel_class): Make sure we're on class_binding_level.
33
34         * decl.c (grokmethod): Rename from start_method.
35         (finish_method): Remove.
36         * cp-tree.h: Adjust.
37         * parser.c (cp_parser_save_member_function_body): Adjust.
38
39 2009-09-03  Doug Kwan  <dougkwan@google.com>
40
41         * tree.c (cp_fix_function_decl_p): New.
42         (cp_free_lang_data): New.
43
44 2009-09-03  Diego Novillo  <dnovillo@google.com>
45
46         * Make-lang.in (decl2.o): Add dependency on $(POINTER_SET_H).
47         * decl2.c: Include pointer-set.h.
48         (collect_candidates_for_java_method_aliases): New.
49         (cp_write_global_declarations): Call it.
50         Add local variable CANDIDATES.  If set, call
51         build_java_method_aliases.
52         (build_java_method_aliases): Add argument CANDIDATES.
53         Use it to determine if FNDECL should get a hidden alias.
54         * cp-objcp-common.h (LANG_HOOKS_FREE_LANG_DATA): Define.
55         * cp-tree.h (cp_free_lang_data): Declare.
56
57 2009-09-03  Richard Guenther  <rguenther@suse.de>
58
59         * method.c (use_thunk): Use cgraph_finalize_function to hand
60         off thunks to the cgraph.
61         * semantics.c (emit_associated_thunks): Do not emit thunks
62         for really extern functions.
63
64 2009-09-03  Diego Novillo  <dnovillo@google.com>
65
66         * cp-lang.c (lang_hooks): Remove const qualifier.
67
68 2009-09-02  Jason Merrill  <jason@redhat.com>
69
70         * semantics.c (describable_type): Don't pretend to be in a template.
71
72         * ptree.c (cxx_print_type) [DECLTYPE_TYPE]: Print the expression.
73
74 2009-09-01  Alexandre Oliva  <aoliva@redhat.com>
75
76         * cp-tree.h (TFF_NO_OMIT_DEFAULT_TEMPLATE_ARGUMENTS): New.
77         * cp-lang.c (cxx_dwarf_name): Pass it.
78         * error.c (count_non_default_template_args): Take flags as
79         argument.  Adjust all callers.  Skip counting of default
80         arguments if the new flag is given.
81
82 2009-09-01  Dodji Seketeli  <dodji@redhat.com>
83
84         PR bootstrap/41205
85         * pt.c (make_ith_pack_parameter_name): Don't use strnlen that is a
86         GNU extension.
87
88 2009-09-01  Richard Guenther  <rguenther@suse.de>
89
90         * cp-objcp-common.c (cp_expr_size): Use tree_expr_size.
91         * cp-objcp-common.h (LANG_HOOKS_EXPR_SIZE): Do not define.
92
93 2009-09-01  Richard Guenther  <rguenther@suse.de>
94
95         * cp-objcp-common.h (LANG_HOOKS_MARK_ADDRESSABLE): Remove.
96
97 2009-08-31  Dodji Seketeli  <dodji@redhat.com>
98
99         PR debug/30161
100         * cp-tree.h (get_template_info): Parameter should be const.
101         (CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P): Fix typo.
102         (get_template_argument_pack_elems,
103         get_primary_template_innermost_parameters,
104         get_template_innermost_arguments, template_template_parameter_p):
105         Declare ...
106         * pt.c (get_template_argument_pack_elems,
107         get_template_innermost_parameters, get_template_innermost_arguments,
108         template_template_parameter_p):
109         ... New C++ front end implementation of new language hooks.
110         (primary_template_instantiation_p): New private helper.
111         (make_ith_pack_parameter_name): Use snprintf and strnlen instead of
112         printf and strlen.
113         (get_template_info): Const-ify parameter.
114         * cp-lang.c (LANG_HOOKS_GET_INNERMOST_GENERIC_PARMS,
115         LANG_HOOKS_GET_INNERMOST_GENERIC_ARGS,
116         LANG_HOOKS_GET_ARGUMENT_PACK_ELEMS,
117         LANG_HOOKS_GENERIC_TYPE_PARAMETER_DECL_P): Initialize these
118         interfaces for the C++ front-end.
119
120 2009-08-31  Jason Merrill  <jason@redhat.com>
121
122         PR c++/41127
123         * parser.c (cp_parser_enum_specifier): Make sure the : is followed by a
124         type-specifier-seq before we commit.
125
126 2009-08-28  Richard Guenther  <rguenther@suse.de>
127
128         PR lto/41058
129         * cp-gimplify.c (cp_genericize_r): Do not leak zero-sized stores
130         into the generic IL.
131
132 2009-08-27  Richard Guenther  <rguenther@suse.de>
133
134         * class.c (build_vtbl_ref_1): Remove excess vertical space.
135         * Make-lang.in (CXX_TREE_H): Remove c-common.def dependency
136         tracked by $(TREE_H).
137         * semantics.c (expand_or_defer_fn): Zero DECL_SAVED_TREE.
138
139 2009-08-26  Jason Merrill  <jason@redhat.com>
140
141         * call.c (build_builtin_candidate): Don't set LOOKUP_ONLYCONVERTING
142         if we're contextually converting to bool.
143         (build_conditional_expr): Likewise.
144         * typeck.c (condition_conversion): Likewise.
145
146         * call.c (build_conditional_expr): Fix logic errors.
147         (build_new_op): Remove dead COND_EXPR handling.
148
149 2009-08-24  Jason Merrill  <jason@redhat.com>
150
151         * cp-tree.h (DECL_DEFERRED_FN): Remove.
152         (struct lang_decl_fn): Remove deferred flag.
153         * class.c (build_clone): Don't set it.
154         * decl2.c (note_vague_linkage_fn): Don't check or set it.
155         (mark_used): Don't check it.
156         * method.c (make_thunk, make_alias_for): Don't set it.
157
158         * decl2.c (mark_used): Streamline logic.
159
160         PR c++/41109
161         PR c++/41110
162         PR c++/41134
163         * cp-tree.h (DECL_ODR_USED): New macro.
164         (struct lang_decl_base): Add odr_used flag.
165         * decl.c (duplicate_decls): Propagate it.  Use it for error.
166         * pt.c (register_specialization): Use it for error.
167         * decl2.c (mark_used): Use it as gating flag rather than TREE_USED.
168         (cp_write_global_declarations): Use it for error.
169         (tree_used_ok): Remove.
170         * cp-tree.h: Remove tree_used_ok.
171         * call.c (build_call_a): Don't call it.
172         * init.c (build_offset_ref): Likewise.
173
174 2009-08-21  Jakub Jelinek  <jakub@redhat.com>
175
176         PR c++/41131
177         * tree.c (lvalue_p_1) <case CONST_DECL>: Return clk_none if
178         not TREE_STATIC.
179
180 2009-08-19  Jason Merrill  <jason@redhat.com>
181
182         PR c++/41119
183         PR c++/41120
184         * decl2.c (mark_used): Increment function_depth during synthesis.
185         * parser.c (cp_parser_default_argument): Not here.
186
187 2009-08-19  Jakub Jelinek  <jakub@redhat.com>
188
189         * method.c (use_thunk): Call free_after_compilation after
190         assemble_end_function.
191
192 2009-08-17  Richard Guenther  <rguenther@suse.de>
193
194         * decl.c (build_ptrmemfunc_type): Keep variant chain intact.
195         Avoid useless copy.
196         (finish_enum): Keep variant chain intact.
197         * tree.c (cp_build_reference_type): Likewise.
198
199 2009-08-16  Jason Merrill  <jason@redhat.com>
200
201         Make TREE_USED match the [basic.def.odr] concept for FUNCTION_DECL
202         and VAR_DECL, so mark_used only has effect the first time.
203         * decl2.c (mark_used): Just return if TREE_USED is already set.
204         Don't set TREE_USED if cp_unevaluated_operand is set.
205         (tree_used_ok): New fn.
206         * init.c (build_offset_ref): Check it instead of TREE_USED.
207         * call.c (build_call_a): Likewise.
208         * cp-tree.h: Declare it.
209         (DECL_NO_LINKAGE_CHECKED): No longer needed.
210         (struct lang_decl_base): Remove no_linkage_checked bitfield.
211
212         * decl2.c (finish_static_data_member_decl): Don't set TREE_USED.
213
214         * decl2.c (mark_used): It's ok to synthesize for default args now.
215
216 2009-08-10  Jason Merrill  <jason@redhat.com>
217
218         Implement DR 757: It's OK for a decl to use a type without linkage
219         so long as the decl is defined in the current translation unit.
220         * decl2.c (no_linkage_decls): New vector.
221         (mark_used): Add decls that use types with no linkage.
222         (cp_write_global_declarations): Check that they are defined.
223         (decl_defined_p, no_linkage_error): New fns.
224         * cp-tree.h (DECL_NO_LINKAGE_CHECKED): New macro.
225         (struct lang_decl_base): Add flag.
226         * decl.c (grokfndecl): Don't check type linkage.
227         (grokvardecl): If the type has no linkage, just make sure
228         DECL_LANG_SPECIFIC is set.
229         * pt.c (check_instantiated_arg): Don't check type linkage.
230         * name-lookup.c (is_local_extern): New fn.
231         * name-lookup.h: Declare it.
232
233 2009-08-05  Jason Merrill  <jason@redhat.com>
234
235         PR c++/40948
236         * init.c (build_vec_init): Evaluate the initializer before
237         starting the initialization try block.
238
239 2009-08-05  Manuel López-Ibáñez  <manu@gcc.gnu.org>
240
241         PR c++/36069
242         * typeck.c (convert_for_assignment): Do not warn for any boolean
243         variant. Use explicit location.
244
245 2009-08-04  Dodji Seketeli  <dodji@redhat.com>
246
247         PR c++/39987
248         * pt.c (tsubst_default_argument): Let access checks of the
249         default argument happen in the context of the current function.
250
251 2009-08-04  Manuel López-Ibáñez  <manu@gcc.gnu.org>
252
253         PR c++/16696
254         * call.c (build_new_op): Only try prefix operator if -fpermissive,
255         otherwise just error.
256
257 2009-08-04  Dodji Seketeli  <dodji@redhat.com>
258
259         PR debug/39706
260         * error.c (lang_decl_name): Print qualified names for decls
261         in  namespace scope.
262
263 2009-08-03  Jason Merrill  <jason@redhat.com>
264             Jakub Jelinek  <jakub@redhat.com>
265
266         PR c++/40948
267         * init.c (build_vec_init): Look through a TARGET_EXPR around a
268         CONSTRUCTOR.
269
270 2009-07-31  Jason Merrill  <jason@redhat.com>
271             Douglas Gregor  <doug.gregor@gmail.com>
272
273         Remove implicit binding of lvalues to rvalue references (N2831)
274         * call.c (convert_class_to_reference): Binding an lvalue to an
275         rvalue reference is bad.  If the user-defined conversion is bad,
276         set bad_p before merging conversions.
277         (maybe_handle_ref_bind): Don't push down bad_p.
278         (reference_binding): Binding an lvalue to an rvalue reference is bad.
279         (convert_like_real): Give a helpful error about binding lvalue
280         to rvalue reference.
281         (reference_related_p): No longer static.
282         * typeck.c (build_typed_address): New.
283         (build_static_cast_1): Add static_cast from lvalue to &&.
284         * cp-tree.h: Adjust.
285
286 2009-07-31  Jason Merrill  <jason@redhat.com>
287
288         * call.c (reference_binding): Rename lvalue_p to is_lvalue.
289         Do direct binding of "rvalues" in memory to rvalue references.
290         * tree.c (lvalue_p_1): Can't be both non-addressable lvalue and
291         "rvalue" in memory.
292         * typeck.c (build_static_cast_1): Do direct binding of memory
293         "rvalues" to rvalue references.
294         * cvt.c (cp_fold_convert): New.
295         * cp-tree.h: Declare it.
296
297 2009-07-31  Jason Merrill  <jason@redhat.com>
298
299         * typeck.c (build_address): Do fold away ADDR_EXPR of INDIRECT_REF.
300         * tree.c (rvalue): Use cp_build_qualified_type, not TYPE_MAIN_VARIANT.
301
302 2009-07-29  Jason Merrill  <jason@redhat.com>
303
304         PR c++/14912
305         * cp-tree.h (enum tsubst_flags): Add tf_no_class_instantiations.
306         * error.c (count_non_default_template_args): Pass it.
307         * pt.c (tsubst) [TYPENAME_TYPE]: Don't complete type if it's set.
308
309 2009-07-29  Richard Guenther  <rguenther@suse.de>
310
311         PR c++/40834
312         * cp-gimplify.c (cp_genericize_r): Properly walk the BIND_EXPR
313         vars.
314
315 2009-07-26  Simon Martin  <simartin@users.sourceforge.net>
316
317         PR c++/40749
318         * decl.c (grokdeclarator): Do not set TREE_NO_WARNING for functions
319         with a qualified return type.
320
321 2009-07-24  Jason Merrill  <jason@redhat.com>
322
323         Core issue 901
324         * call.c (build_op_delete_call): If this is for a new-expression
325         and the op delete is deleted, do nothing.
326
327         Core issue 702
328         * call.c (compare_ics): Give list-initialization of std::init_list
329         priority over conversion to scalar, too.
330
331 2009-07-22  Jason Merrill  <jason@redhat.com>
332
333         * mangle.c (mangle_type_string_for_rtti): Rename to be clearer.
334         (needs_fake_anon): New.
335         (write_name): Check it.
336         (write_nested_name): Add a fake anonymous namespace scope if true.
337         * name-lookup.c (get_anonymous_namespace_name): No longer static.
338         * rtti.c, cp-tree.h: Adjust.
339
340 2009-07-22  Richard Guenther  <rguenther@suse.de>
341
342         PR c++/40799
343         * cp-gimplify.c (cp_gimplify_expr): Move handling of using
344         related exprs to ...
345         (cp_genericize_r): ... genericization stage.
346         (cp_genericize): Adjust.
347
348 2009-07-21  Jason Merrill  <jason@redhat.com>
349
350         Core issue 934
351         * call.c (reference_binding): Implement binding to { }.
352         (initialize_reference): Binding temporary to non-const && is fine.
353         * decl.c (grok_reference_init): Remove error for CONSTRUCTOR.
354
355         * decl.c (reshape_init_r): { T } is not an aggregate initializer
356         for class T.
357
358 2009-07-17  Richard Guenther  <rguenther@suse.de>
359
360         PR c/40401
361         * decl.c (finish_function): Do not emit unused result warnings
362         from here.
363         * cp-objcp-common.h (LANG_HOOKS_POST_GIMPLIFY_PASS): Use
364         c_warn_unused_result_pass.
365         * semantics.c (expand_or_defer_fn): Adjust assertion about IL status.
366         * optimize.c (clone_body): Clone in GENERIC.
367         (maybe_clone_body): Do not clear DECL_SAVED_TREE.
368         * decl2.c (cp_write_global_declarations): Fix body test.
369         Do not call cgraph_optimize.
370         * Make-lang.in (optimize.o): Add tree-iterator.h dependency.
371         * method.c (use_thunk): Register thunk with
372         cgraph_finalize_function.
373         * error.c (function_category): Guard access of DECL_LANG_SPECIFIC.
374
375 2009-07-17  Richard Guenther  <rguenther@suse.de>
376
377         * init.c (build_vec_delete_1): Do not set DECL_REGISTER on the
378         temporary pointer.
379
380 2009-07-17  Aldy Hernandez  <aldyh@redhat.com>
381             Manuel López-Ibáñez  <manu@gcc.gnu.org>
382
383         PR 40435 
384         * typeck.c, init.c, class.c, method.c, rtti.c, except.c, error.c,
385         tree.c, cp-gimplify.c, cxx-pretty-print.c, pt.c, semantics.c,
386         call.c, cvt.c, mangle.c: Add location argument to
387         fold_{unary,binary,ternary}, fold_build[123], build_call_expr,
388         build_size_arg, build_fold_addr_expr, build_call_array,
389         non_lvalue, size_diffop, fold_build1_initializer,
390         fold_build2_initializer, fold_build3_initializer,
391         fold_build_call_array, fold_build_call_array_initializer,
392         fold_single_bit_test, omit_one_operand, omit_two_operands,
393         invert_truthvalue, fold_truth_not_expr, build_fold_indirect_ref,
394         fold_indirect_ref, combine_comparisons, fold_builtin_*,
395         fold_call_expr, build_range_check, maybe_fold_offset_to_address,
396         round_up, round_down.
397
398 2009-07-16  Jason Merrill  <jason@redhat.com>
399
400         PR libstdc++/37907
401         Split POD into "standard-layout" and "trivial" as per N2230,
402         Support std::is_standard_layout and std::is_trivial traits.
403         * cp-tree.h (enum cp_trait_kind): Add CPTK_IS_STD_LAYOUT,
404         CPTK_IS_TRIVIAL.
405         (struct lang_type_class): Add non_std_layout.
406         (CLASSTYPE_NON_STD_LAYOUT): New.
407         * class.c (check_bases): Set it.
408         (check_field_decls): Likewise.
409         (check_bases_and_members): Likewise.
410         * parser.c (cp_parser_primary_expression): Handle RID_IS_STD_LAYOUT,
411         RID_IS_TRIVIAL.
412         (cp_parser_trait_expr): Likewise.
413         * semantics.c (trait_expr_value): Handle CPTK_IS_STD_LAYOUT,
414         CPTK_IS_TRIVIAL.
415         (finish_trait_expr): Likewise.
416         * tree.c (scalarish_type_p, trivial_type_p, std_layout_type_p): New.
417         (pod_type_p): Use them.
418         (type_has_nontrivial_copy_init, type_has_nontrivial_default_init): New.
419
420         Adjust bits of the language that no longer refer to POD types.
421         * call.c (convert_arg_to_ellipsis): Use type_has_nontrivial_copy_init
422         and TYPE_HAS_NONTRIVIAL_DESTRUCTOR rather than pod_type_p.
423         (build_x_va_arg): Likewise.
424         (call_builtin_trap): Remove.
425         * decl.c (declare_local_label): Use type_has_nontrivial_default_init
426         and TYPE_HAS_NONTRIVIAL_DESTRUCTOR rather than pod_type_p.
427         (cp_finish_decl): Likewise.
428         (check_previous_goto_1, check_goto): Adjust error.
429         * typeck.c (build_class_member_access_expr): Check
430         CLASSTYPE_NON_STD_LAYOUT rather than CLASSTYPE_NON_POD_P.
431
432 2009-07-14  Taras Glek  <tglek@mozilla.com>
433             Rafael Espindola  <espindola@google.com>
434
435         * Make-lang.in: Added CP_PLUGIN_HEADERS and
436         c.install-target to export cp-tree.h cxx-pretty-print.h
437         name-lookup.h headers for plugins.
438
439 2009-07-14  Jason Merrill  <jason@redhat.com>
440
441         PR c++/37276
442         * decl.c (decls_match): A non-extern-C declaration doesn't match
443         a builtin extern-C declaration.
444
445         PR c++/40746
446         * name-lookup.c (qualified_lookup_using_namespace): Don't stop
447         looking in used namespaces just because we found something on
448         another branch.
449
450         PR c++/40740
451         * semantics.c (perform_koenig_lookup): Handle empty template args.
452
453         * call.c (build_over_call): Use can_trust_pointer_alignment.
454
455 2009-07-14  Dodji Seketeli  <dodji@redhat.com>
456
457         PR debug/40705
458         PR c++/403057
459         * decl2.c (grokfield): Don't call set_underlying_type on typedef
460         decls that are type names.
461
462 2009-07-13  Andrew Pinski  <andrew_pinski@playstation.sony.com>
463
464         PR C++/22154
465         * parser.c (cp_parser_elaborated_type_specifier): Accept typename in
466         front of qualified names.
467
468 2009-07-12  Jason Merrill  <jason@redhat.com>
469
470         PR c++/36628
471         * tree.c (rvalue): Use lvalue_or_rvalue_with_address_p.
472
473         PR c++/37206
474         * cp-tree.h (enum cp_lvalue_kind_flags): Add clk_rvalueref.
475         * tree.c (lvalue_p_1): Return it.  Remove
476         treat_class_rvalues_as_lvalues parm.
477         (real_lvalue_p): Disallow pseudo-lvalues here.
478         (lvalue_or_rvalue_with_address_p): New fn.
479         * call.c (initialize_reference): Use it instead of real_lvalue_p.
480
481         PR c++/40689
482         * init.c (build_new_1): Handle initializer list as array initializer.
483         (build_vec_init): Likewise.
484         * typeck.c (cp_build_modify_expr): Likewise.
485         * typeck2.c (process_init_constructor_array): Error rather than abort
486         if too many initializers.
487
488 2009-07-10  Jakub Jelinek  <jakub@redhat.com>
489
490         PR c++/40502
491         * error.c (cp_print_error_function): Check for NULL block.
492
493 2008-07-09  Simon Martin  <simartin@users.sourceforge.net>
494             Jason Merrill  <jason@redhat.com>
495
496         * pt.c (perform_typedefs_access_check, get_types_needing_access_check,
497         append_type_to_template_for_access_check_1): Use CLASS_TYPE_P.
498
499 2009-07-09  Dodji Seketeli  <dodji@redhat.com>
500
501         PR c++/40684
502         * pt.c (type_unification_real): Use tsubst_template_arg instead
503         of tsubst to substitute default template arguments.
504
505 2009-07-08  Manuel López-Ibáñez  <manu@gcc.gnu.org>
506
507         PR c++/31246
508         * init.c (build_new_1): Set TREE_NO_WARNING for compiler-generated
509         code.
510         * cp-gimplify.c (genericize_eh_spec_block): Likewise.
511         
512
513 2009-07-07  Jason Merrill  <jason@redhat.com>
514
515         PR c++/35828
516         * pt.c (tsubst_decl): Don't abort if we didn't change anything
517         in a TEMPLATE_DECL's args.
518
519 2009-07-07  Manuel López-Ibáñez  <manu@gcc.gnu.org>
520
521         * semantics.c (finalize_nrv_r): Replace EXPR_LOCUS by
522         EXPR_LOCATION.
523         
524 2009-07-07  Jason Merrill  <jason@redhat.com>
525
526         PR c++/37816
527         * decl.c (build_enumerator): Don't add enumerators for a
528         scoped enum to the enclosing class.
529
530         PR c++/40639
531         * decl.c (start_enum): Allow dependent underlying type.
532
533         PR c++/40633
534         * decl.c (finish_enum): Finish scope even in a template.
535
536 2009-07-07  Manuel López-Ibáñez  <manu@gcc.gnu.org>
537
538         * init.c: Replace %J by an explicit location. Update all calls.
539         * decl.c: Likewise.
540         * typeck2.c: Likewise.
541         * pt.c: Likewise.
542         * name-lookup.c: Likewise.
543         
544 2009-07-06  Manuel López-Ibáñez  <manu@gcc.gnu.org>
545
546         * decl.c: Replace %H by an explicit location. Update all calls.
547         * except.c: Likewise.
548         * semantics.c: Likewise.
549         * parser.c: Likewise.
550
551 2009-07-06  Simon Martin  <simartin@users.sourceforge.net>
552
553         PR c++/40557
554         * pt.c (perform_typedefs_access_check, get_types_needing_access_check,
555         append_type_to_template_for_access_check_1): Use
556         RECORD_OR_UNION_CODE_P.
557
558 2009-07-04  Jason Merrill  <jason@redhat.com>
559
560         * pt.c (retrieve_specialization): Don't get confused by a
561         using-declaration that brings in another instance of this template
562         from a base class.
563
564         * ptree.c (cxx_print_type): Fix logic.
565
566         * cp-tree.h (LANG_DECL_FN_CHECK): Fix non-checking version.
567
568         PR c++/40619
569         * cp-tree.h (struct lang_decl_parm): New.
570         (struct lang_decl): Add it.
571         (LANG_DECL_PARM_CHECK): New.
572         (DECL_PARM_INDEX): New.
573         * decl2.c (parm_index): Remove.
574         * lex.c (retrofit_lang_decl): Handle parms.
575         (cxx_dup_lang_specific_decl): Likewise.
576         * mangle.c (write_expression): Adjust.
577         * tree.c (cp_tree_equal): Adjust.
578         (decl_linkage): Only check DECL_COMDAT for functions and variables.
579         * parser.c (cp_parser_parameter_declaration_list): Set
580         DECL_PARM_INDEX.
581         * pt.c (iterative_hash_template_arg): Hash it.
582
583 2009-07-03  Jason Merrill  <jason@redhat.com>
584
585         * cp-tree.h (struct lang_decl): Overhaul.
586         (struct lang_decl_flags): Remove.
587         (struct lang_decl_base): New.
588         (struct lang_decl_min): New.
589         (struct lang_decl_fn): New.
590         (struct lang_decl_ns): New.
591         (CAN_HAVE_FULL_LANG_DECL_P): Replace with LANG_DECL_HAS_MIN.
592         (LANG_DECL_MIN_CHECK): New.
593         (LANG_DECL_FN_CHECK): New.
594         (LANG_DECL_NS_CHECK): New.
595         (STRIP_TEMPLATE): New.
596         (NON_THUNK_FUNCTION_CHECK): Remove.
597         (DECL_DECLARES_FUNCTION_P): New.
598         (lots): Adjust.
599         * lex.c (retrofit_lang_decl, cxx_dup_lang_specific_decl): Adjust.
600         * decl.c (push_local_name, duplicate_decls): Adjust.
601         * decl2.c (start_objects): Don't set u2sel.
602         * semantics.c (finish_omp_threadprivate): Adjust.
603         * class.c (build_clone): Don't do much on TEMPLATE_DECLs.
604         (decl_cloned_function_p): Out-of-line implementation of macros.
605         (clone_function_decl, adjust_clone_args): Use DECL_CLONED_FUNCTION_P.
606         * mangle.c (write_unqualified_name): Don't check function flags
607         on non-functions.
608         * method.c (make_alias_for): Don't set DECL_CLONED_FUNCTION.
609         * pt.c (build_template_decl): Don't set function flags.
610         (check_default_tmpl_args): Check that it's a function.
611         (instantiate_template): Use DECL_ABSTRACT_ORIGIN to find the
612         cloned template.
613
614         * pt.c (tsubst_decl) [FUNCTION_DECL]: Don't tsubst
615         DECL_CLONED_FUNCTION.
616
617         * cp-tree.h (struct lang_type_class): Move sorted_fields here.
618         * class.c (finish_struct_1): Adjust.
619         * ptree.c (cxx_print_decl, cxx_print_type): Adjust.
620         * search.c (lookup_field_1): Adjust.
621
622         * cp-tree.h (CLASSTYPE_INLINE_FRIENDS): Remove.
623         * decl.c (finish_method): Don't add to it.
624         * class.c (fixup_pending_inline): Remove.
625         (fixup_inline_methods): Remove.
626         (finish_struct_1): Don't call it.
627
628         * error.c (dump_function_name): Handle null name.
629
630 2009-07-02  Mark Mitchell  <mark@codesourcery.com>
631
632         * typeck.c (cp_build_binary_op): Move warnings about use of NULL
633         in arithmetic earlier and allow comparisions of NULL with
634         pointers-to-members.
635
636 2009-07-02  Jason Merrill  <jason@redhat.com>
637
638         Use hash tables for template specialization lookup.
639         * pt.c (struct spec_entry): New type.
640         (decl_specializations, type_specializations): New hash tables.
641         (register_specialization, retrieve_specialization): Use them.
642         (reregister_specialization, lookup_template_class): Use them.
643         (eq_specializations, hash_tmpl_and_args, hash_specialization): New.
644         (iterative_hash_template_arg): New.
645         (init_template_processing): New
646         (process_partial_specialization): Don't look to see if we already
647         have this partial specialization.
648         (maybe_process_partial_specialization): Handle reassigning
649         full specializations when we get an explicit specialization
650         of the partial instantiation.
651         (tsubst_friend_function): Adjust specialization reassignment code.
652         (instantiate_template): Only do one lookup.
653         (instantiate_decl): Don't do any lookup.
654         * cp-tree.h: Declare init_template_processing.
655         * decl.c (duplicate_decls): Pass args to reregister_specialization.
656
657 2009-07-01  Jason Merrill  <jason@redhat.com>
658
659         * cp-tree.h (DECL_CLASS_TEMPLATE_P): Use DECL_IMPLICIT_TYPEDEF_P.
660
661         * pt.c (register_specialization): Use duplicate_decls to merge
662         the argument with a previous specialization.
663         (check_explicit_specialization): Call register_specialization to
664         merge the TEMPLATE_DECL with a previous version.
665         (determine_specialization): Return the args even if fn is a template.
666
667 2009-07-01  Ian Lance Taylor  <iant@google.com>
668
669         * g++spec.c (lang_specific_driver): Bump num_args by 1.
670
671 2009-06-30  Jason Merrill  <jason@redhat.com>
672
673         PR c++/40595
674         * pt.c (tsubst_pack_expansion): Handle unexpanded packs in an
675         EXPR_PACK_EXPANSION.
676
677 2009-06-29  Jason Merrill  <jason@redhat.com>
678
679         PR c++/40274
680         * error.c (dump_template_parms): Pass all args to
681         count_non_default_template_args.
682         (count_non_default_template_args): Pull out the inner ones.
683
684 2009-06-26  H.J. Lu  <hongjiu.lu@intel.com>
685
686         * decl.c (duplicate_decls): Re-indent.
687
688 2009-06-25  Ian Lance Taylor  <iant@google.com>
689
690         * call.c (avoid_sign_compare_warnings): New static function.
691         (build_new_op): Call it.
692         * typeck.c (cp_build_binary_op): Don't call warn_sign_compare if
693         TREE_NO_WARNING is set on either operand.
694
695 2009-06-25  Ian Lance Taylor  <iant@google.com>
696
697         * g++spec.c (SKIPOPT): define.
698         (lang_specific_driver): Handle -static-libstdc++.  Only add
699         LIBSTDCXX_STATIC if we add LIBSTDCXX.
700
701 2009-06-25  Ian Lance Taylor  <iant@google.com>
702
703         * cvt.c (convert_to_void): Only warn about COND_EXPR if neither
704         the second nor third operand has side effects.
705
706 2009-06-25  Ian Lance Taylor  <iant@google.com>
707
708         * parser.c (cp_parser_binary_expression): Increment
709         c_inhibit_evaluation_warnings while parsing the right hand side of
710         "true || x" or "false && x".
711         * typeck.c (cp_build_binary_op): Only call warn_for_sign_compare
712         if c_inhibit_evaluation_warnings is zero.
713
714 2009-06-24  Jason Merrill  <jason@redhat.com>
715
716         * error.c (dump_decl): Do say "typedef" for the injected class name.
717
718         * pt.c (lookup_template_class): Use currently_open_class,
719         compare template args later.
720
721         PR c++/40342
722         * decl.c (decls_match): Check DECL_TI_TEMPLATE too.
723         * class.c (resolve_address_of_overloaded_function): Fix typo.
724
725 2009-06-18  Aldy Hernandez  <aldyh@redhat.com>
726
727         * class.c (get_vtable_decl): Replace finish_decl with cp_finish_decl.
728         * decl.c (finish_decl): Remove.
729         (declare_global_var): Replace finish_decl with cp_finish_decl.
730         (start_method): Same.
731         * rtti.c (emit_tinfo_decl): Same.
732         * pt.c (tsubst_expr): Same.
733         (instantiate_decl): Same.
734         * decl2.c (grokbitfield): Same.
735         * name-lookup.c (pushdecl_top_level_1): Same.
736         * cp-tree.h: Remove finish_decl.
737
738 2009-06-16  David Edelsohn  <edelsohn@gnu.org>
739
740         * g++-spec.c (LIBSTDCXX_STATIC): Default to NULL.
741         (lang_specific_driver): Always allocate extra argument.
742         Add LIBSTDCXX_STATIC to arglist if defined and linking
743         statically.
744
745 2009-06-16  Ian Lance Taylor  <iant@google.com>
746
747         * Make-lang.in (cp/class.o): Depend upon gt-cp-class.h.
748         (cp/semantics.o): Depend upon gt-cp-semantics.h.
749
750 2009-06-16  Ian Lance Taylor  <iant@google.com>
751
752         * parser.c (cp_unevaluated_operand): Define global variable.
753         (cp_parser_question_colon_clause): Increment
754         c_inhibit_evaluation_warnings when evaluating an expression which
755         will never be executed.
756         (cp_parser_decltype): Increment cp_unevaluated_operand and
757         c_inhibit_evaluation_warnings, not skip_evaluation.
758         (cp_parser_sizeof_operand): Likewise.
759         (cp_parser_enclosed_template_argument_list): Save
760         cp_unevaluated_operand and c_inhibit_evaluation_warnings, not
761         skip_evaluation.
762         * cp-tree.h (struct saved_scope): Remove skip_evaluation field.
763         Add unevaluated_operand and inhibit_evaluation_warnings fields.
764         (cp_unevaluated_operand): Declare.
765         * name-lookup.c (push_to_top_level): Save cp_unevaluated_operand
766         and c_inhibit_evaluation_warnings rather than skip_evaluation.
767         (pop_from_top_level): Restore cp_unevaluated_operand and
768         c_inhibit_evaluation_warnings rather than skip_evaluation.
769         * class.c (build_base_path): Check cp_unevaluated_operand rather
770         than skip_evaluation.
771         * typeck.c (build_class_member_access_expr): Likewise.
772         (cp_build_binary_op): Don't warn about bad shift counts if
773         c_inhibit_evaluation_warnings is non-zero.
774         * pt.c (coerce_template_parms): Save state of
775         cp_unevaluated_operand and c_inhibit_evaluation_warnings, not
776         skip_evaluation.
777         (tsubst_aggr_type): Likewise.
778         (tsubst_pack_expansion): Check cp_unevaluated_operand rather than
779         skip_evaluation.
780         (tsubst_copy): Likewise.
781         (tsubst): Set cp_unevaluated_operand and
782         c_inhibit_evaluation_warnings, not skip_evaluation.
783         (tsubst_copy_and_build): Likewise.
784         * call.c (convert_arg_to_ellipsis): Check cp_unevaluated_operand
785         rather than skip_evaluation.
786         * decl2.c (mark_used): Likewise.
787         * semantics.c (finish_non_static_data_member): Likewise.
788         * cvt.c (cp_convert_and_check): Check
789         c_inhibit_evaluation_warnings rather than skip_evaluation.
790         * mangle.c (write_type): Set cp_unevaluated_operand rather than
791         skip_evaluation.
792
793 2009-06-15  Ian Lance Taylor  <iant@google.com>
794
795         * parser.c (cp_parser_direct_declarator): Add braces around
796         variables declared before label.
797
798 2009-06-15  Rafael Avila de Espindola  <espindola@google.com>
799
800         * cp-objcp-common.h (LANG_HOOKS_COMDAT_GROUP): Remove.
801         * cp-tree.h (cxx_comdat_group): Change signature.
802         * decl.c (duplicate_decls): Use DECL_COMDAT_GROUP.
803         (cxx_comdat_group): Change signature.
804         * decl2.c (comdat_linkage, maybe_make_one_only): Update call to
805         make_decl_one_only.
806         (constrain_visibility, get_guard): Use DECL_COMDAT_GROUP.
807         * method.c (use_thunk): Update call to make_decl_one_only.
808         * optimize.c (maybe_clone_body): Use DECL_COMDAT_GROUP
809
810 2009-06-12  Aldy Hernandez  <aldyh@redhat.com>
811
812         * typeck.c (cp_build_binary_op): Pass location to overflow_warning.
813         (build_modify_expr): New arg.
814         * semantics.c (finish_unary_op_expr): Pass location to
815         overflow_warning.
816         (handle_omp_for_class_iterator): Pass location to build_modify_expr.
817         * typeck.c (cxx_sizeof_or_alignof_type): Pass location to
818         c_sizeof_or_alignof_type.
819         (build_array_ref): New argument.
820         (build_compound_expr): Same.
821         (build_const_cast): Same.
822         (build_ptrmemfunc): Pass location to build_c_cast.
823         * init.c (avoid_placement_new_aliasing): Pass location to
824         build_stmt.
825         (build_vec_delete_1): Pass location to cp_build_modify_expr,
826         build_compound_expr.
827         * class.c (build_vtbl_ref_1): Pass location to build_array_ref.
828         * decl.c (poplevel): Pass location to c_build_bind_expr.
829         (finish_case_label): Pass location to build_case_label.
830         (finish_constructor_body): Same.
831         (finish_destructor_body): Pass location to build_stmt.
832         (cxx_maybe_build_cleanup): Same, but to build_compound_expr.
833         * call.c (build_new_op): Pass location to build_array_ref.
834         (build_x_va_arg): Pass location to build_va_arg.
835         * except.c (expand_end_catch_block): Pass location to
836         build_stmt.
837         * cp-tree.h (build_array_ref): New argument.
838         (build_compound_expr): Same.
839         (build_c_cast): Same.
840         * cp-gimplify.c (gimplify_if_stmt): Pass location on down.
841         (gimplify_switch_stmt): Same.
842         * typeck2.c (split_nonconstant_init_1): Same.
843         * pt.c (tsubst_copy): Same.
844         * semantics.c (add_decl_expr): Same.
845         (do_poplevel): Same.
846         (push_cleanup): Same.
847         (finish_goto_stmt): Same.
848         (finish_expr_stmt): Same.
849         (begin_if_stmt): Same.
850         (begin_while_stmt): Same.
851         (begin_do_stmt): Same.
852         (finish_return_stmt): Same.
853         (begin_for_stmt): Same.
854         (finish_break_stmt): Same.
855         (finish_continue_stmt): Same.
856         (begin_switch_stmt): Same.
857         (begin_try_block): Same.
858         (begin_handler): Same.
859         (finish_asm_stmt): Same.
860         (finish_label_stmt): Same.
861         (finish_stmt_expr_expr): Same.
862         (finalize_nrv_r): Same.
863         (finish_omp_atomic): Same.
864         * name-lookup.c (do_using_directive): Same.
865         * decl2.c (grok_array_decl): Same.
866         * parser.c (cp_parser_cast_expression): Same.
867         (cp_parser_selection_statement): Same.
868         (cp_parser_implicitly_scoped_statement): Same.
869         (cp_parser_objc_selector_expression): Same.
870         (cp_parser_objc_synchronized_statement): Same.
871         (cp_parser_objc_throw_statement): Same.
872         (cp_parser_omp_critical): Same.
873         (cp_parser_omp_master): Same.
874         * typeck.c (build_function_call): Add location argument.
875         * init.c: Add location argument to all build_decl calls.
876         * class.c: Same.
877         * method.c: Same.
878         * rtti.c: Same.
879         * tree.c: Same.
880         * pt.c: Same.
881         * semantics.c: Same.
882         * lex.c: Same.
883         * decl2.c: Same.
884         * cp-gimplify.c: Same.
885         * decl.c: Same.
886         (cp_make_fname_decl): Add location argument.  Pass location ot
887         build_decl.
888         (finish_case_label): Same.
889         * cp-tree.h (finish_case_label): Add location argument.
890         * parser.c (cp_parser_label_for_labeled_statement): Pass location to
891         finish_case_label.
892         
893 2009-06-09  Jason Merrill  <jason@redhat.com>
894
895         PR c++/40381
896         * decl2.c (mark_used): Return after complaining about deleted fn.
897
898 2009-06-08  Jason Merrill  <jason@redhat.com>
899
900         * parser.c (cp_parser_type_id_1): 'auto' type is ok with a
901         late-specified return type.
902
903 2009-06-08  Jakub Jelinek  <jakub@redhat.com>
904
905         PR c++/40373
906         * call.c (check_dtor_name): Return false even if
907         get_type_value (name) is error_mark_node.
908
909         PR c++/40370
910         PR c++/40372
911         * parser.c (cp_parser_direct_declarator): Don't set TREE_SIDE_EFFECTS
912         on error_mark_node.  Check for VLAs outside of function context
913         before check whether to wrap bounds into a NOP_EXPR with
914         TREE_SIDE_EFFECTS.
915
916 2009-06-08  Alexandre Oliva  <aoliva@redhat.com>
917
918         * repo.c (get_base_filename): Use aux_base_name rather than
919         alternate temporary file during second compare debug compilation.
920         (finish_repo): Skip during -fcompare-debug-second.
921
922 2009-06-06  Ian Lance Taylor  <iant@google.com>
923
924         * parser.c (cp_parser_label_for_labeled_statement): Support
925         attribute on labels if immediately followed by semicolon.
926         * semantics.c (finish_label_stmt): Return new label.
927         * pt.c (tsubst_expr): Handle attributes for LABEL_EXPR.
928
929 2009-06-03  Ian Lance Taylor  <iant@google.com>
930
931         * Make-lang.in (cc1plus-checksum.o): Depend upon $(CONFIG_H) and
932         $(SYSTEM_H).
933
934 2009-06-02  Mark Mitchell  <mark@codesourcery.com>
935
936         * decl.c (maybe_deduce_size_from_array_init): Use relayout_decl.
937
938 2009-06-02  Jason Merrill  <jason@redhat.com>
939
940         PR c++/40308
941         PR c++/40311
942         * typeck.c (cp_build_modify_expr): Always pass init-lists to the
943         conversion code.
944         * call.c (implicit_conversion): Allow init-list conversion to scalar
945         during direct-initialization, too.  Mark the conversion bad if it
946         has too many levels of braces.
947         (convert_like_real): And give a helpful error.
948
949         PR c++/40306
950         PR c++/40307
951         * decl.c (cp_finish_decl): Handle auto deduction from ().
952         * typeck.c (build_x_indirect_ref): Handle dereferencing an operand
953         with dependent type that is known to be a pointer.
954
955 2009-06-02  Simon Martin  <simartin@users.sourceforge.net>
956
957         PR c++/38089
958         * pt.c (register_specialization): Properly setup DECL_CONTEXT for
959         specializations in an invalid namespace.
960
961 2009-06-01  Aldy Hernandez  <aldyh@redhat.com>
962
963         * error.c (print_instantiation_partial_context): Print column
964         numbers.
965
966 2009-05-29  Ian Lance Taylor  <iant@google.com>
967
968         * error.c (cp_printer): Don't use va_arg with enum type.
969
970 2009-05-28  Dodji Seketeli  <dodji@redhat.com>
971
972         PR c++/39754
973         * cp-tree.h (canonical_type_variant): Remove this function declaration.
974         (strip_typedefs): New function declaration.
975         * tree.c (strip_typedefs): New function definition.
976         (canonical_type_variant): Remove function definition.
977         * cvt.c (convert_from_reference): No need to use
978         canonical_type_variant.
979         * typeck.c (cp_build_indirect_ref): Likewise.
980         * error.c (dump_template_bindings): Use strip_typedefs instead of
981         canonical_type_variant.
982         * pt.c (convert_template_argument, unify): Likewise.
983         * mangle.c (canonicalize_for_substitution): Don't use
984         canonical_type_variant.
985
986 2009-05-27  Jason Merrill  <jason@redhat.com>
987
988         * call.c (implicit_conversion): Handle conversion from
989         initializer-list to scalar.
990         (convert_like_real): Likewise.  Avoid crashing on list
991         initialization with bad conversions.
992         (can_convert): Use LOOKUP_EXPLICIT.
993         (can_convert_arg_bad): Add flags parm.
994         * cp-tree.h: Adjust.
995         * typeck.c (convert_for_assignment): Pass flags.
996
997 2009-05-27  Ian Lance Taylor  <iant@google.com>
998
999         * Make-lang.in (g++$(exeext)): Change $(COMPILER) to $(LINKER).
1000         (cc1plus-dummy$(exeext), cc1plus$(exeext)): Likewise.
1001
1002 2009-05-26  Ian Lance Taylor  <iant@google.com>
1003
1004         * Make-lang.in (g++spec.o): Use $(COMPILER).
1005         (g++$(exeext), cc1plus-dummy$(exeext)): Likewise.
1006         (cc1plus$(exeext)): Likewise.
1007
1008 2009-05-26  Dodji Seketeli  <dodji@redhat.com>
1009
1010         PR c++/40007
1011         * cp-tree.h (MEMBER_TYPES_NEEDING_ACCESS_CHECK): Remove this accessor.
1012         (TI_TYPEDEFS_NEEDING_ACCESS_CHECKING): New accessor.
1013         (get_types_needing_access_check): Declare new entry point.
1014         * pt.c (append_type_to_template_for_access_check_1,
1015         get_types_needing_access_check): New functions.
1016         (perform_typedefs_access_check): Accept FUNCTION_DECLs and
1017         RECORD_TYPEs rather than TEMPLATE_DECLs. Use the new
1018         get_types_needing_access_check, no more
1019         MEMBER_TYPES_NEEDING_ACCESS_CHECK.
1020         (instantiate_class_template): Set input_location to the source
1021         location of the most specialized template definition.
1022         Perform access check using the RECORD_TYPE of the template, not its
1023         associated most generic TEMPLATE_DECL.
1024         (append_type_to_template_for_access_check): Augment function
1025         comments. Use the new get_types_needing_access_check, not
1026         MEMBER_TYPE_NEEDING_ACCESS_CHECK. Use the new
1027         append_type_to_template_for_access_check_1 subroutine.
1028
1029 2009-05-22  Jason Merrill  <jason@redhat.com>
1030
1031         PR c++/38064
1032         * typeck.c (cp_build_binary_op): Allow ENUMERAL_TYPE in
1033         arithmetic comparisons.
1034         (cp_common_type): Handle scoped enums.
1035
1036         * call.c (promoted_arithmetic_type_p): Don't use INTEGRAL_TYPE_P.
1037         (add_builtin_candidate, add_builtin_candidates): Likewise.
1038         (convert_like_real): Likewise.
1039         * class.c (check_bitfield_decl): Likewise.
1040         * decl.c (check_static_variable_definition): Likewise.
1041         (compute_array_index_type): Likewise.
1042         * decl2.c (grokbitfield): Likewise.
1043         * init.c (build_new_1): Likewise.
1044         * pt.c (convert_nontype_argument): Likewise.
1045         (current_instantiation): Likewise.
1046         * tree.c (pod_type_p): Likewise.
1047         * typeck.c (build_static_cast_1): Likewise.
1048         (build_reinterpret_cast_1): Likewise.
1049
1050 2009-05-22  Richard Guenther  <rguenther@suse.de>
1051
1052         PR middle-end/38964
1053         * init.c (avoid_placement_new_aliasing): Remove.
1054         (build_new_1): Do not call it.
1055
1056 2009-05-22  Mark Mitchell  <mark@codesourcery.com>
1057
1058         * decl2.c (decl_needed_p): Consider dllexport'd functions needed.
1059         * semantics.c (expand_or_defer_fn): Similarly.
1060
1061 2009-05-20  Ian Lance Taylor  <iant@google.com>
1062
1063         * parser.c (cp_parser_postfix_expression): Change args to a vec.
1064         Release it when done.
1065         (tree_vector): Define typedef.  Define VEC functions.
1066         (cp_parser_parenthesized_expression_list): Change return type to
1067         vec.  Change all callers.
1068         (cp_parser_new_expression): Change placement and initializer to
1069         vecs.  Release them when done.
1070         (cp_parser_new_placement): Change return type to vec.  Change all
1071         callers.
1072         (cp_parser_new_initializer): Likewise.
1073         * typeck.c (build_function_call_vec): Just call
1074         cp_build_function_call_vec.
1075         (cp_build_function_call): Just build a vec and call
1076         cp_build_function_call_vec.
1077         (cp_build_function_call_vec): New function based on old
1078         cp_build_function_call.
1079         (convert_arguments): Remove nargs and argarray parameters.  Change
1080         values to a vec.  Change caller.
1081         (build_x_compound_expr_from_vec): New function.
1082         (cp_build_modify_expr): Build vec to pass to
1083         build_special_member_call.
1084         * call.c (struct z_candidate): Add first_arg field.  Change args
1085         field to vec.
1086         (convert_class_to_reference): Handle first argument separately.
1087         (add_candidate): Add first_arg parameter.  Change args parameter
1088         to vec.  Change all callers.
1089         (add_function_candidate, add_conv_candidate): Likewise.
1090         (add_template_candidate_real, add_template_candidate): Likewise.
1091         (add_template_conv_candidate): Likewise.
1092         (build_user_type_conversion_1): Handle first argument separately.
1093         (resolve_args): Change return type and parameter type to vecs.
1094         Change all callers.
1095         (perform_overload_resolution): Change args parameter to vec.
1096         Change all callers.
1097         (build_new_function_call, build_operator_new_call): Likewise.
1098         (add_candidates): Likewise.
1099         (build_op_call): New globally visible function, built from and
1100         replacing static function build_object_call.
1101         (build_new_op): Don't handle CALL_EXPR.  Build vec, not tree_list,
1102         of arguments.
1103         (build_op_delete_call): Build vec to pass to
1104         cp_build_function_call_vec.
1105         (build_temp): Build vec to pass to build_special_member_call.
1106         (convert_like_real): Likewise.
1107         (perform_direct_initialization_if_possible): Likewise.
1108         (build_over_call): Handle first_arg field.  Use build_call_array
1109         rather than build_call_list.
1110         (build_special_member_call): Change args parameter to vec.  Change
1111         all callers.
1112         (build_new_method_call): Likewise.
1113         * init.c (expand_default_init): Change parms to vec.
1114         (build_raw_new_expr): Change placement and init to vecs.  Change
1115         all callers.
1116         (build_new_1, build_new): Likewise.
1117         * class.c (resolve_address_of_overloaded_function): Build array to
1118         pass to fn_type_unification.
1119         * pt.c (tsubst_copy_and_build): For NEW_EXPR build vecs to pass to
1120         build_new.  For CALL_EXPR create a vec rather than a tree_list;
1121         expand a pack if necessary.
1122         (fn_type_unification): Change args parameter to const tree *.  Add
1123         nargs parameter.  Change all callers.
1124         (type_unification_real): Likewise.
1125         (unify): Build array to pass to type_unification_real.
1126         (get_bindings): Build array to pass to fn_type_unification.
1127         (any_type_dependent_arguments_p): Change args parameter to a vec.
1128         Change all callers.
1129         (make_args_non_dependent): Renamed from build_non_dependent_args.
1130         Change return type to void.  Change parameter type to vec.  Change
1131         all callers.
1132         (do_auto_deduction): Pass an array to type_unification_real.
1133         * semantics.c (perform_koenig_lookup): Change args to vec.  Change
1134         all callers.
1135         (finish_call_expr): Change args to vec.  Change all callers.  Call
1136         build_op_call instead of passing CALL_EXPR to build_new_op.
1137         (cxx_omp_create_clause_info): Allocate vec to pass to
1138         build_special_member_call.
1139         * decl2.c (build_offset_ref_call_from_tree): Change args parameter
1140         to vec.  Change all callers.
1141         * name-lookup.c (lookup_function_nonclass): Likewise.
1142         (struct arg_lookup): Change args to vec.
1143         (arg_assoc_namespace): Handle args as a vec.
1144         (arg_assoc_args_vec): New static function.
1145         (lookup_arg_dependent): Change args parameter to vec.  Change all
1146         callers.
1147         * method.c (do_build_assign_ref): Allocate vec to pass to
1148         build_special_member_call.
1149         * except.c (build_throw): Likewise.
1150         * typeck2.c (build_functional_cast): Likewise.
1151         * cvt.c (ocp_convert): Likewise.
1152         * tree.c (build_min_non_dep_call_vec): Change last parameter to
1153         vec.  Change all callers.
1154         * cp-tree.h: Update declarations.
1155         * name-lookup.h: Update declarations.
1156
1157 2009-05-20  Sandra Loosemore  <sandra@codesourcery.com>
1158
1159         * typeck.c (default_conversion): Check targetm.promoted_type.
1160         * decl.c (grokdeclarator): Check targetm.invalid_return_type.
1161         (grokparms): Check targetm.invalid_parameter_type.
1162         * cvt.c (ocp_convert): Check targetm.convert_to_type.
1163         (build_expr_type_conversion): Check targetm.promoted_type.
1164
1165 2009-05-19  Andrew Pinski  <andrew_pinski@playstation.sony.com>
1166
1167         * typeck.c (build_binary_op): Allow % on integal vectors.
1168
1169 2009-05-18  Jason Merrill  <jason@redhat.com>
1170
1171         Implement explicit conversions ops as specified in N2437.
1172         * decl.c (grokdeclarator): Handle explicit conversion ops.
1173         (check_initializer): Pass flags to store_init_value.
1174         * decl2.c (maybe_emit_vtables): Likewise.
1175         * init.c (expand_aggr_init_1): Likewise.
1176         * call.c (convert_class_to_reference): Take flags parm,
1177         check DECL_NONCONVERTING_P.
1178         (build_user_type_conversion_1): Check DECL_NONCONVERTING_P.
1179         (add_builtin_candidates): Simplify getting type of conversion.
1180         (build_object_call): Likewise.  Check DECL_NONCONVERTING_P.
1181         (implicit_conversion): Pass through LOOKUP_ONLYCONVERTING.
1182         (reference_binding): Take flags parm.  Direct-initialize copy parm.
1183         (add_function_candidate): Direct-initialize the copy parm.
1184         (add_conv_candidate): Use LOOKUP_IMPLICIT, not LOOKUP_NORMAL.
1185         (build_builtin_candidate): Add LOOKUP_ONLYCONVERTING.
1186         (conditional_conversion): Likewise.
1187         (convert_like_real): Only complain about DECL_NONCONVERTING_P
1188         constructors.
1189         (perform_implicit_conversion_flags): Add flags parm to
1190         perform_implicit_conversion.  Improve diagnostics.
1191         * cp-tree.h (LOOKUP_IMPLICIT): New macro.
1192         (LOOKUP_COPY_PARM): New bit macro.
1193         * cvt.c (build_expr_type_conversion): Check DECL_NONCONVERTING_P.
1194         * typeck.c (convert_for_assignment): Take flags parm, pass it to
1195         perform_implicit_conversion_flags.
1196         (cp_build_modify_expr): Pass flags to convert_for_assignment.
1197         (convert_for_initialization): Likewise.
1198         * typeck2.c (store_init_value): Take flags parm, pass to
1199         digest_init_flags.
1200         (digest_init_flags): Add flags parm to digest_init.
1201         (digest_init_r): Take flags parm, pass to convert_for_initialization.
1202         (process_init_constructor_array): Pass it.
1203         (process_init_constructor_record): Likewise.
1204         (process_init_constructor_union): Likewise.
1205
1206 2009-05-16  Jason Merrill  <jason@redhat.com>
1207
1208         PR c++/40139
1209         * pt.c (tsubst_qualified_id): Retain the type if we aren't dealing
1210         with a dependent type.  Actually look up the destructor.
1211         * semantics.c (finish_id_expression): Fix logic.
1212         (finish_qualified_id_expr): Don't try to use 'this' if we aren't in
1213         a function.
1214         * typeck.c (build_x_unary_op): Diagnose taking the address of a
1215         constructor or destructor.
1216         * tree.c (get_first_fn): Handle OFFSET_REF.
1217
1218 2009-05-17  Joseph Myers  <joseph@codesourcery.com>
1219
1220         * tree.c (cxx_printable_name_internal): Allow consecutive
1221         translated and untranslated cached copies of the name of the
1222         current function.
1223
1224 2009-05-15  Ian Lance Taylor  <iant@google.com>
1225
1226         * cp-tree.h (enum cp_lvalue_kind_flags): Rename from
1227         cp_lvalue_kind.  Change all uses.
1228         (enum base_access_flags): Rename from enum base_access.  Change
1229         all uses.
1230         * parser.c (enum cp_parser_flags): Remove enum tag.
1231
1232 2009-05-15  Manuel López-Ibáñez  <manu@gcc.gnu.org>
1233
1234         PR 16302
1235         * call.c (build_new_op): Update calls to warn_logical_operator.
1236
1237 2009-05-14  Ian Lance Taylor  <iant@google.com>
1238
1239         * class.c (layout_class_type): Change itk to unsigned int.
1240         * decl.c (finish_enum): Change itk to unsigned int.
1241         * parser.c (cp_parser_check_decl_spec): Change ds to int.  Remove
1242         casts.
1243
1244 2009-05-13  David Mandelin <dmandelin@mozilla.com>:
1245
1246         * decl.c (duplicate_decls): Preserve parameter attributes.
1247
1248 2009-05-10  Jan Hubicka  <jh@suse.cz>
1249
1250         * decl2.c (cxx_callgraph_analyze_expr): Use
1251         cgraph_mark_address_taken.
1252
1253 2009-05-10  Joseph Myers  <joseph@codesourcery.com>
1254
1255         * call.c (name_as_c_string): Call type_as_string_translate.
1256         Translate identifiers to locale character set.
1257         * cp-tree.h (lang_decl_name): Update prototype.
1258         (type_as_string_translate, decl_as_string_translate,
1259         cxx_printable_name_translate): Declare.
1260         * cxx-pretty-print.c (M_): Define.
1261         (pp_cxx_unqualified_id, pp_cxx_canonical_template_parameter): Mark
1262         English fragments for conditional translation with M_.
1263         * decl.c (grokdeclarator): Translate identifiers to locale
1264         character set for diagnostics.
1265         * error.c (M_): Define.
1266         (dump_template_bindings, dump_type, dump_aggr_type,
1267         dump_type_prefix, dump_global_iord, dump_simple_decl, dump_decl,
1268         dump_function_decl, dump_template_parms, dump_expr,
1269         dump_binary_op, op_to_string, assop_to_string): Mark English
1270         fragments for conditional translation with M_.
1271         (type_as_string): Disable translation of identifiers.
1272         (type_as_string_translate): New.
1273         (expr_as_string): Disable translation of identifiers.
1274         (decl_as_string): Disable translation of identifiers.
1275         (decl_as_string_translate): New.
1276         (lang_decl_name): Add parameter translate.
1277         (args_to_string): Call type_as_string_translate.
1278         (cp_print_error_function): Call cxx_printable_name_translate.
1279         (print_instantiation_full_context,
1280         print_instantiation_partial_context): Call
1281         decl_as_string_translate.
1282         * parser.c (cp_lexer_get_preprocessor_token): Use %qE for
1283         identifier in diagnostic.
1284         * tree.c (cxx_printable_name): Change to
1285         cxx_printable_name_internal.  Add parameter translate.
1286         (cxx_printable_name, cxx_printable_name_translate): New wrappers
1287         round cxx_printable_name_internal.
1288
1289 2009-05-08  H.J. Lu  <hongjiu.lu@intel.com>
1290
1291         PR c/36892
1292         * call.c (build_call_a): Updated warn_deprecated_use call.
1293         (build_over_call): Likewise.
1294         * decl.c (grokdeclarator): Likewise.
1295         (grokparms): Likewise.
1296         * semantics.c (finish_id_expression): Likewise.
1297         * typeck.c (build_class_member_access_expr): Likewise.
1298         (finish_class_member_access_expr): Likewise.
1299
1300 2009-05-06  Dodji Seketeli  <dodji@redhat.com>
1301
1302         PR c++/17395
1303         * pt.c (tsubst_copy) <case PARM_DECL>: We don't want to tsubst the
1304         whole list of PARM_DECLs, just the current one.
1305
1306 2009-05-05  Shujing Zhao  <pearly.zhao@oracle.com>
1307
1308         * cp-tree.h:
1309         (opname_tab, assignop_tab, update_member_visibility, yyerror, yyhook,
1310         mangle_compound_literal): Remove unused declarations.
1311         (build_vfield_ref, cxx_print_statistics, clone_function_decl,
1312         adjust_clone_args, maybe_push_cleanup_level, pushtag, make_anon_name,
1313         pushdecl_top_level_maybe_friend, pushdecl_top_level_and_finish,
1314         check_for_out_of_scope_variable, print_other_binding_stack,
1315         maybe_push_decl, cxx_mark_addressable, force_target_expr,
1316         build_target_expr_with_type, finish_case_label,
1317         cxx_maybe_build_cleanup, begin_eh_spec_block, finish_eh_spec_block,
1318         check_template_keyword, cxx_omp_predetermined_sharing,
1319         cxx_omp_clause_default_ctor, cxx_omp_clause_copy_ctor,
1320         cxx_omp_clause_assign_op, cxx_omp_clause_dtor, cxx_omp_finish_clause,
1321         cxx_omp_privatize_by_reference): Rearrange the declarations line to
1322         match the comment that indicates the .c file which the functions are
1323         defined.
1324         (cxx_print_xnode, cxx_print_decl, cxx_print_type,
1325         cxx_print_identifier, cxx_print_error_function, pushdecl): Add comment.
1326
1327 2009-05-05  Nathan Sidwell  <nathan@codesourcery.com>
1328
1329         * typeck.c (cp_build_compound_expr): Require RHS to have a known
1330         type.
1331         * class.c (resolve_address_of_overloaded_function): Use
1332         OVL_CURRENT for error message.
1333         (instantiate_type): Forbid COMPOUND_EXPRs and remove code dealing
1334         with them.  Do not copy the node.
1335
1336 2009-05-05  Jakub Jelinek  <jakub@redhat.com>
1337
1338         PR c++/40013
1339         * pt.c (tsubst): If magic NOP_EXPR with side-effects has no type,
1340         set it from its operand's type after tsubst_expr.
1341
1342 2009-05-04  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
1343
1344         PR c++/28152
1345         * parser.c (cp_lexer_get_preprocessor_token):  Do not store the
1346         canonical spelling for keywords.
1347         (cp_parser_attribute_list): Use the canonical spelling for
1348         keywords in attributes.
1349
1350 2009-05-01  Joseph Myers  <joseph@codesourcery.com>
1351
1352         * cxx-pretty-print.c (is_destructor_name, pp_cxx_unqualified_id,
1353         pp_cxx_template_keyword_if_needed, pp_cxx_postfix_expression,
1354         pp_cxx_new_expression, pp_cxx_delete_expression,
1355         pp_cxx_unary_expression, pp_cxx_assignment_operator,
1356         pp_cxx_assignment_expression, pp_cxx_expression,
1357         pp_cxx_function_specifier, pp_cxx_decl_specifier_seq,
1358         pp_cxx_simple_type_specifier, pp_cxx_type_specifier_seq,
1359         pp_cxx_exception_specification, pp_cxx_direct_declarator,
1360         pp_cxx_ctor_initializer, pp_cxx_type_id, pp_cxx_statement,
1361         pp_cxx_namespace_alias_definition, pp_cxx_template_parameter,
1362         pp_cxx_canonical_template_parameter, pp_cxx_template_declaration,
1363         pp_cxx_declaration, pp_cxx_typeid_expression,
1364         pp_cxx_va_arg_expression, pp_cxx_offsetof_expression,
1365         pp_cxx_trait_expression): Mostly use pp_string and
1366         pp_cxx_ws_string in place of pp_identifier and pp_cxx_identifier
1367         for non-identifiers.  Mark English strings for translation.
1368         * cxx-pretty-print.h (pp_cxx_ws_string): Define.
1369         * error.c (dump_template_parameter, dump_template_bindings,
1370         dump_type, dump_aggr_type, dump_type_prefix, dump_simple_decl,
1371         dump_decl, dump_template_decl, dump_function_decl,
1372         dump_parameters, dump_exception_spec, dump_template_parms,
1373         dump_expr, dump_binary_op, dump_unary_op, op_to_string,
1374         assop_to_string, args_to_string, cp_print_error_function,
1375         print_instantiation_full_context,
1376         print_instantiation_partial_context): Mostly use pp_string and
1377         pp_cxx_ws_string in place of pp_identifier and pp_cxx_identifier
1378         for non-identifiers.  Mark English strings for translation.
1379         (dump_global_iord): Mark strings for translation; use longer
1380         strings instead of substituting single words.
1381         (function_category): Return a format string marked for
1382         translation, not a single word or phrase to substitute in a longer
1383         phrase.
1384
1385 2009-04-28  Ben Elliston  <bje@au.ibm.com>
1386
1387         PR c++/35652
1388         Revert:
1389
1390         2009-03-27  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
1391
1392         * typeck.c (cp_pointer_sum): Adjust call to pointer_int_sum.
1393
1394 2009-04-27  Ian Lance Taylor  <iant@google.com>
1395
1396         * semantics.c (finish_omp_clauses): Change type of c_kind to enum
1397         omp_clause_code.
1398
1399 2009-04-27  Jakub Jelinek  <jakub@redhat.com>
1400
1401         PR c++/39875
1402         * cvt.c (convert_to_void) <case INDIRECT_REF>: Only warn about
1403         -Wunused-value if implicit.
1404
1405 2009-04-24  Ian Lance Taylor  <iant@google.com>
1406
1407         * call.c (build_temp): Change 0 to enum constant.
1408         * cp-tree.h (cp_lvalue_kind): Typedef to int rather than enum
1409         type.
1410         * cp-gimplify.c (cp_gimplify_expr): Add cast to enum type.
1411         * decl2.c (constrain_visibility): Likewise.
1412         * parser.c (cp_lexer_get_preprocessor_token): Likewise.
1413         (cp_parser_flags): Typedef to int rather than enum type.
1414         (cp_parser_expression_stack_entry): Change prec field to enum
1415         cp_parser_prec.
1416
1417         * typeck.c (build_modify_expr): Add lhs_origtype parameter.
1418         Change all callers.
1419
1420 2009-04-22  Dodji Seketeli  <dodji@redhat.com>
1421
1422         PR c++/39639
1423         * parser.c (cp_parser_template_argument_list): Display an error
1424         when an ellipsis is not preceded by a parameter pack. Also, warn
1425         about variadic templates usage without -std=c++0x.
1426
1427 2009-04-21  Taras Glek <tglek@mozilla.com>
1428
1429         * cp-tree.h: Update GTY annotations to new syntax.
1430         * decl.c: Likewise.
1431         * mangle.c: Likewise.
1432         * name-lookup.c: Likewise.
1433         * name-lookup.h: Likewise.
1434         * parser.c: Likewise.
1435         * pt.c: Likewise.
1436         * rtti.c: Likewise.
1437         * semantics.c: Likewise.
1438         * typeck2.c: Likewise.
1439
1440 2009-04-22  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
1441
1442         PR c++/14875
1443         * parser.c (cp_parser_error): Pass token->flags to c_parse_error.
1444
1445 2009-04-21  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
1446
1447         PR c++/35711
1448         * typeck.c (check_for_casting_away_constness): We diagnose casting
1449         away any qualifiers not just constness.
1450         (casts_away_constness): Mention that it handles more than just
1451         constness.
1452         
1453 2009-04-21  Joseph Myers  <joseph@codesourcery.com>
1454
1455         * ChangeLog, ChangeLog-1993, ChangeLog-1994, ChangeLog-1995,
1456         ChangeLog-1996, ChangeLog-1997, ChangeLog-1998, ChangeLog-1999,
1457         ChangeLog-2000, ChangeLog-2001, ChangeLog-2002, ChangeLog-2003,
1458         ChangeLog-2004, ChangeLog-2005, ChangeLog-2006, ChangeLog-2007,
1459         ChangeLog-2008, ChangeLog.ptr, ChangeLog.tree-ssa, NEWS,
1460         cfns.gperf: Add copyright and license notices.
1461         * cfns.h: Regenerate.
1462         * ChangeLog, ChangeLog-2004: Correct dates.
1463
1464 2009-04-21  Manuel López-Ibáñez  <manu@gcc.gnu.org>
1465
1466         PR 16202
1467         * tree.c (lvalue_p_1): Use const_tree.
1468         Use CONST_CAST_TREE to avoid warning.
1469         (lvalue_p): Returns bool, receives const_tree.
1470
1471 2009-04-21  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
1472
1473         PR c++/13358
1474         * parser.c (cp_parser_check_decl_spec): Drop redundant flags.
1475         * error.c (pedwarn_cxx98): New.
1476         * cp-tree.h (pedwarn_cxx98): Declare.
1477
1478 2009-04-20  Le-Chun Wu  <lcwu@google.com>
1479
1480         PR c++/39803
1481         * init.c (build_vec_init): Set TREE_NO_WARNING on the
1482         compiler-generated INDIRECT_REF expression.
1483
1484 2009-04-20  Ian Lance Taylor  <iant@google.com>
1485
1486         * typeck.c (build_function_call_vec): New function.
1487         (cp_build_function_call): Only pass first parameter to
1488         objc_rewrite_function_call.
1489         (build_modify_expr): Add rhs_origtype parameter.  Change all
1490         callers.
1491         * decl.c (finish_decl): Add origtype parameter.  Change all
1492         callers.
1493         * semantics.c (finish_call_expr): Pass VEC to
1494         resolve_overloaded_builtin.
1495
1496 2009-04-20  Ian Lance Taylor  <iant@google.com>
1497
1498         * cp-tree.h (base_access): Change typedef to int.
1499         * parser.c (cp_parser_omp_flush): Change 0 to OMP_CLAUSE_ERROR.
1500         (cp_parser_omp_threadprivate): Likewise.
1501         * pt.c (unify_pack_expansion): Add casts to enum type.
1502
1503 2009-04-19  Manuel López-Ibáñez  <manu@gcc.gnu.org>
1504
1505         PR c/32061
1506         PR c++/36954
1507         * call.c (build_new_op): Save the original codes of operands
1508         before folding.
1509
1510 2009-04-18  Kazu Hirata  <kazu@codesourcery.com>
1511
1512         * cp-tree.h: Remove the prototype for insert_block.
1513         * decl.c (insert_block): Remove.
1514
1515 2009-04-16  Ian Lance Taylor  <iant@google.com>
1516
1517         * cp-tree.h (enum tsubst_flags): Rename from enum tsubst_flags_t.
1518         (tsubst_flags_t): Change typedef from enum type to int.
1519
1520 2009-04-16  Paolo Bonzini  <bonzini@gnu.org>
1521
1522         * decl.c (check_initializer): Use TYPE_VECTOR_OPAQUE
1523         instead of targetm.vector_opaque_p.
1524
1525 2009-04-15  Le-Chun Wu  <lcwu@google.com>
1526
1527         PR c++/39551
1528         * call.c (build_over_call): Set TREE_NO_WARNING on the
1529         compiler-generated INDIRECT_REF expression.
1530         * cvt.c (convert_to_void): Emit warning when stripping off
1531         INDIRECT_REF.
1532
1533 2009-04-14  Diego Novillo  <dnovillo@google.com>
1534
1535         * parser.c (cp_parser_type_specifier_seq): Move call to
1536         invoke_plugin_callbacks ...
1537         (cp_parser_type_specifier_seq): ... here.
1538
1539 2009-04-14  Le-Chun Wu  <lcwu@google.com>
1540
1541         * Make-lang.in: Modify dependencies of files including plugin.h.
1542         * decl.c (finish_function): Call invoke_plugin_callbacks.
1543         * parser.c (cp_parser_type_specifier): Call invoke_plugin_callbacks.
1544
1545 2009-04-14  Jason Merrill  <jason@redhat.com>
1546
1547         PR c++/39763
1548         * name-lookup.c (pushdecl_maybe_friend): Avoid all warnings
1549         about shadowing by tentative parms.
1550
1551 2009-04-13  Jason Merrill  <jason@redhat.com>
1552
1553         PR c++/39480
1554         * call.c (build_over_call): Don't call memcpy if the target is
1555         the same as the source.
1556
1557 2009-04-13  Jason Merrill  <jason@redhat.com>
1558
1559         PR c++/39750
1560         * pt.c (uses_template_parms): Handle CONSTRUCTOR.
1561
1562 2009-04-12  Jason Merrill  <jason@redhat.com>
1563
1564         PR c++/39742
1565         * call.c (joust): Don't crash on variadic fn.
1566
1567 2009-04-10  Jason Merrill  <jason@redhat.com>
1568
1569         PR c++/28301
1570         * parser.c (cp_parser_skip_to_end_of_block_or_statement): Return
1571         if we see a close brace without an open brace.
1572
1573 2009-04-10  H.J. Lu  <hongjiu.lu@intel.com>
1574
1575         * parser.c (cp_parser_class_specifier): Remove the unused
1576         has_trailing_semicolon.
1577
1578 2009-04-10  Manuel López-Ibáñez  <manu@gcc.gnu.org>
1579
1580         PR  c++/20118
1581         * parser.c (cp_parser_check_template_parameters): Take a
1582         cp_declarator parameter.
1583         (cp_parser_elaborated_type_specifier): Update to
1584         cp_parser_check_template_parameters.
1585         (cp_parser_class_head): Likewise.
1586         (cp_parser_check_declarator_template_parameters): Likewise.
1587         (cp_parser_check_template_parameters): Handle first the non-error
1588         conditions. Give more accurate diagnostics if a declarator is
1589         given. 
1590
1591 2009-04-08  Jason Merrill  <jason@redhat.com>
1592
1593         PR c++/25185
1594         * error.c (dump_aggr_type): Chase template typedefs if
1595         -fno-pretty-templates.
1596
1597 2009-04-08  Dodji Seketeli  <dodji@redhat.com>
1598
1599         PR c++/39637
1600         * parser.c (cp_parser_enumerator_definition): Make sure the
1601         initializer of the enumerator doesn't contain any bare parameter pack.
1602
1603 2009-04-07  Jason Merrill  <jason@redhat.com>
1604
1605         PR c++/34691
1606         * name-lookup.c (merge_functions): Keep multiple extern "C" functions.
1607         * call.c (joust): Complain about mismatched default arguments
1608         in extern "C" functions.
1609         * class.c (resolve_address_of_overloaded_function): Handle multiple
1610         extern "C" functions.
1611         * pt.c (resolve_overloaded_unification): Likewise.
1612
1613 2009-04-07  Jason Merrill  <jason@redhat.com>
1614
1615         PR c++/25185
1616         * error.c (dump_function_decl): Don't pretty-print templates
1617         if -fno-pretty-templates.
1618         (count_non_default_template_args): Print all args if
1619         -fno-pretty-templates.
1620
1621 2009-04-06  Jason Merrill  <jason@redhat.com>
1622
1623         PR c++/35146
1624         * pt.c (fn_type_unification): For DEDUCE_EXACT check that
1625         the deduced template arguments give us the parameter types
1626         we're looking for.
1627
1628 2009-04-05  Giovanni Bajo <giovannibajo@libero.it>
1629             Jason Merrill  <jason@redhat.com>
1630
1631         PR c++/14912
1632         * error.c (count_non_default_template_args): New fn.
1633         (dump_template_parms): Call it.
1634         (dump_template_argument_list): Call it.  Add parms parm.
1635         (dump_template_argument): Adjust call to dump_template_argument_list.
1636         (dump_type, dump_decl): Likewise.
1637         (dump_template_bindings): Refactor logic.
1638
1639 2009-04-03  Jason Merrill  <jason@redhat.com>
1640
1641         PR c++/25185
1642         * error.c (dump_template_bindings): Look through typedefs in
1643         typename results.
1644         (dump_type) [TYPENAME_TYPE]: Print the typedef name if any.
1645         (find_typenames_r): Also collect typedefs.
1646         * pt.c (unify): Strip typedefs.
1647
1648         PR c++/39608
1649         * semantics.c (finish_id_expression): Don't assume a dependent
1650         member of the current instantiation isn't a valid integral
1651         constant expression.  Check dependent_scope_p.
1652         * pt.c (dependent_scope_p): Check TYPE_P.
1653         (tsubst_copy): If args is null, just return.
1654
1655 2009-04-02  Jason Merrill  <jason@redhat.com>
1656
1657         PR c++/25185
1658         * error.c (find_typenames, find_typenames_r): New fns.
1659         (dump_function_decl): Call find_typenames.
1660         (dump_template_bindings): Print typenames as well.
1661         * pt.c (tsubst): Non-static.
1662         * cp-tree.h: Declare it.
1663
1664 2009-04-02  Dodji Seketeli  <dodji@redhat.com>
1665
1666         PR c++/26693
1667         * decl2.c (grokfield): when a typedef appears in a
1668         class, create the typedef variant type node for it.
1669         (save_template_attributes): Creating typedef variant type node
1670          here is now useless.
1671         * decl.c (grokdeclarator): If the typedef'ed struct/class was
1672         anonymous, set the proper type name to all its type variants.
1673         (xref_basetypes) : Fixup the variant types after setting
1674         TYPE_BINFO on REF.
1675         * name-lookup.c (pushdecl_maybe_friend): Reuse the
1676         set_underlying_type function to install typedef variant types.
1677         * cp-tree.h (MEMBER_TYPES_NEEDING_ACCESS_CHECK): New template accessor
1678         macro.
1679         (append_type_to_template_for_access_check): New entry points.
1680         * semantics.c (check_accessibility_of_qualified_id):
1681         When a typedef that is a member of a class appears in a template,
1682         add it to the template. It will be ...
1683         * class.c (finish_struct_bits): Split type variant fixup into ...
1684         (fixup_type_variants): A new entry point.
1685         * pt.c (instantiate_class_template, instantiate_template ): ... access
1686         checked at template instantiation time.
1687         (resolve_type_name_type): The type name should be the name of the
1688         main type variant.
1689         (retrieve_specialization): Specializations of template typedefs aren't
1690         to looked up in DECL_TEMPLATE_INSTANTIATIONS (tmpl).
1691         (append_type_to_template_for_access_check): New entry point.
1692         (tsubst_decl): For typedefs, build the variant type from the correct
1693         original type.
1694         (get_class_bindings): Fix function comment.
1695         (perform_typedefs_access_check): New entry point.
1696
1697 2009-03-31  Jason Merrill  <jason@redhat.com>
1698
1699         PR c++/34691
1700         * name-lookup.c (pushdecl_maybe_friend): Diagnose mismatched
1701         extern "C" declarations.
1702
1703         C++ DR 613
1704         * semantics.c (finish_non_static_data_member): Allow such references
1705         without an associated object in sizeof/decltype/alignof.
1706
1707         * ptree.c (cxx_print_decl): Pretty-print full name of
1708         function/template.
1709         (cxx_print_type): Pretty-print full name of class.
1710
1711         * decl.c (grokdeclarator): Reject pointer to qualified function
1712         type.
1713
1714         PR c++/37806, core issue 547
1715         * typeck.c (cp_apply_type_quals_to_decl): Don't apply any quals
1716         to a typedef.
1717         * tree.c (cp_build_qualified_type_real): Don't apply restrict to a 
1718         function type.
1719         * decl.h (enum decl_context): Add TEMPLATE_TYPE_ARG.
1720         * decl.c (groktypename): Add is_template_arg parameter.
1721         (grokdeclarator): Allow function cv-quals on a template type arg.
1722         * parser.c (cp_parser_new_type_id, cp_parser_type_id): Add
1723         is_template_arg argument in calls to groktypename.
1724         * cp-tree.h: Adjust prototype.
1725         * error.c (dump_type_prefix, dump_type_suffix): Fix plain 
1726         FUNCTION_TYPE printing.
1727         
1728         * mangle.c (write_expression): Mangle dependent name as
1729         source-name.
1730
1731         PR c++/38030, 38850, 39070
1732         * pt.c (type_dependent_expression_p_push): New fn.
1733         (tsubst_copy_and_build) [CALL_EXPR]: Only do arg-dep lookup when the
1734         substitution makes the call non-dependent.  Preserve koenig_p.
1735         * parser.c (cp_parser_postfix_expression): Only do arg-dep lookup
1736         for non-dependent calls.
1737         * semantics.c (finish_call_expr): Revert earlier changes.
1738         * cp-tree.h: Revert change to finish_call_expr prototype.
1739
1740 2009-03-29  Joseph Myers  <joseph@codesourcery.com>
1741
1742         PR preprocessor/34695
1743         * cp-tree.h (cp_cpp_error): Remove.
1744         * error.c (cp_cpp_error): Remove.
1745         * parser.c (cp_lexer_new_main): Set done_lexing instead of
1746         client_diagnostic and error callback.
1747
1748 2009-03-28  Paolo Bonzini  <bonzini@gnu.org>
1749
1750         * cp/cp-objcp-common.h (LANG_HOOKS_STATICP): Remove.
1751         * cp/cp-objcp-common.c (cxx_staticp): Remove.
1752         * cp/cp-tree.h (cxx_staticp): Remove.
1753
1754 2009-03-28  Jakub Jelinek  <jakub@redhat.com>
1755
1756         PR c++/39554
1757         * parser.c (cp_parser_postfix_expression): Don't call
1758         warning_if_disallowed_function_p.
1759
1760 2009-03-27  Jan Hubicka  <jh@suse.cz>
1761
1762         * except.c (choose_personality_routine): Set terminate_node to abort
1763         for java exceptions.
1764
1765 2009-03-27  Dodji Seketeli  <dodji@redhat.com>
1766             Jakub Jelinek  <jakub@redhat.com>
1767
1768         PR debug/37959
1769         * cp-objcp-common.h (LANG_HOOKS_FUNCTION_DECL_EXPLICIT_P): Define.
1770         (cp_function_decl_explicit_p): New prototype.
1771         * cp-objcp-common.c (cp_function_decl_explicit_p): New function.
1772
1773 2009-03-27  Andrew Pinski  <andrew_pinski@playstation.sony.com>
1774
1775         PR c++/38638
1776         * parser.c (cp_parser_elaborated_type_specifier): If we have a
1777         typename tag and don't have either a TYPE_DECL or a
1778         TEMPLATE_ID_EXPR, set the type to NULL.
1779
1780 2009-03-27  Simon Martin  <simartin@users.sourceforge.net>
1781
1782         PR c++/37647
1783         * decl.c (grokdeclarator): Reject [con|de]stuctors in a non-class
1784         scope.
1785
1786 2009-03-27  Simon Martin  <simartin@users.sourceforge.net>
1787
1788         PR c++/29727
1789         * decl.c (check_array_designated_initializer): Handle error_mark_node.
1790
1791 2009-03-27  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
1792
1793         PR c++/35652
1794         * typeck.c (cp_pointer_sum): Adjust call to pointer_int_sum.
1795
1796 2009-03-26  Andrew Haley  <aph@redhat.com>
1797
1798         PR C++/39380
1799         * decl2.c (possibly_inlined_p): If java exceptions are in use
1800         don't inline a decl unless it is explicitly marked inline.
1801         * lex.c: (pragma_java_exceptions): New variable.
1802         (handle_pragma_java_exceptions): Set pragma_java_exceptions.
1803         * cp-tree.h (pragma_java_exceptions): Declare new variable.
1804
1805 2009-03-24  Jason Merrill  <jason@redhat.com>
1806
1807         PR c++/28274
1808         * name-lookup.c (pushdecl_maybe_friend): Check default args later.
1809
1810 2009-03-23  Jakub Jelinek  <jakub@redhat.com>
1811
1812         PR c/39495
1813         * semantics.c (handle_omp_for_class_iterator): Swap cond operands and
1814         code if iter is the second operand.
1815         * parser.c (cp_parser_binary_expression): Add no_toplevel_fold_p
1816         argument.  If it is set, don't build the toplevel expression with
1817         build_x_binary_op, but build2.
1818         (cp_parser_assignment_expression,  cp_parser_omp_for_incr): Adjust
1819         callers.
1820         (cp_parser_omp_for_cond): Don't assume the first operand of the
1821         comparison must be decl.
1822
1823 2009-03-23  Jason Merrill  <jason@redhat.com>
1824
1825         PR c++/37729
1826         * pt.c (make_fnparm_pack): Split out from...
1827         (instantiate_decl): ...here.
1828         (tsubst_pack_expansion): Handle being called in a late-specified
1829         return type.
1830
1831         PR c++/39526
1832         * name-lookup.c (pushdecl_maybe_friend): Don't warn about shadowing
1833         a parm with a parm.
1834
1835 2009-03-20  Jason Merrill  <jason@redhat.com>
1836
1837         PR c++/28879
1838         * parser.c (cp_parser_direct_declarator): In a template, wrap 
1839         non-constant expression in NOP_EXPR with TREE_SIDE_EFFECTS set.
1840         * pt.c (tsubst): Preserve it in a partial instantiation.
1841         (dependent_type_p_r): Don't check value_dependent_expression_p.
1842         * decl.c (compute_array_index_type): Don't check
1843         value_dependent_expression_p if TREE_SIDE_EFFECTS.
1844
1845         C++ core issue 703
1846         * typeck2.c (check_narrowing): Don't complain about loss of 
1847         precision when converting a floating-point constant.
1848
1849 2009-03-19  Jakub Jelinek  <jakub@redhat.com>
1850
1851         PR c/39495
1852         * parser.c (cp_parser_omp_for_cond): Don't check lhs if decl is NULL.
1853         (cp_parser_omp_for_loop): Always use cp_parser_omp_for_cond.
1854
1855 2009-03-18  Jakub Jelinek  <jakub@redhat.com>
1856
1857         * parser.c (struct cp_token): Reorder fields for 64-bit hosts.
1858         (eof_token): Adjust.
1859
1860 2009-03-18  H.J. Lu  <hongjiu.lu@intel.com>
1861
1862         PR c++/39425
1863         * parser.c (cp_parser_explicit_specialization): Don't skip the
1864         rest of the specialization when begin_specialization returns
1865         false.
1866
1867 2009-03-17  Jason Merrill  <jason@redhat.com>
1868
1869         * decl.c (grokfndecl): Set DECL_CONTEXT on parms.
1870         (duplicate_decls): Adjust DECL_CONTEXT of newdecl's parms.
1871         * pt.c (check_explicit_specialization): Likewise.
1872         (tsubst_copy) [PARM_DECL]: Return a dummy parm if we don't have a
1873         local specialization.
1874         * tree.c (cp_tree_equal) [PARM_DECL]: Check type and index, not name.
1875         * decl2.c (parm_index): New fn.
1876         * semantics.c (finish_decltype_type): Don't use describable_type.
1877         * mangle.c (write_expression): Likewise.  Mangle ALIGNOF_EXPR.
1878         Give a sorry for unsupported codes rather than crash.  Mangle
1879         conversions with other than 1 operand.  New mangling for PARM_DECL.
1880         * operators.def (ALIGNOF_EXPR): Mangle as "az".
1881
1882 2009-03-17  Jing Yu  <jingyu@google.com>
1883
1884         PR middle-end/39378
1885         * method.c (use_thunk): Change is_thunk from crtl to cfun.
1886
1887 2009-03-17  Paolo Carlini  <paolo.carlini@oracle.com>
1888
1889         PR c++/39475
1890         * semantics.c (check_trait_type): New.
1891         (finish_trait_expr): Use it.
1892
1893 2009-03-17  Jakub Jelinek  <jakub@redhat.com>
1894
1895         * name-lookup.c (cp_emit_debug_info_for_using): Emit USING_STMTs
1896         instead of calling imported_module_or_decl debug hook if
1897         building_stmt_tree ().
1898         * cp-gimplify.c (cp_gimplify_expr): Don't assert the first operand
1899         is a NAMESPACE_DECL.
1900
1901         PR debug/37890
1902         * name-lookup.c (do_namespace_alias): Don't call global_decl debug
1903         hook at function scope.
1904
1905         PR debug/39471
1906         * cp-gimplify.c (cp_gimplify_expr): Don't set DECL_NAME
1907         on IMPORTED_DECL.
1908
1909 2009-03-09  Jakub Jelinek  <jakub@redhat.com>
1910
1911         PR c++/39371
1912         * semantics.c (finish_switch_cond): Don't call get_unwidened.
1913         * decl.c (finish_case_label): Pass SWITCH_STMT_TYPE as 3rd argument
1914         instead of TREE_TYPE (cond).
1915
1916 2009-03-08  H.J. Lu  <hongjiu.lu@intel.com>
1917
1918         PR c++/39060
1919         * parser.c (cp_parser_late_parsing_default_args): Continue
1920         the loop when cp_parser_assignment_expression returns
1921         error_mark_node.
1922
1923 2009-03-07  Jason Merrill  <jason@redhat.com>
1924
1925         PR c++/39367
1926         * init.c (build_new_1): Don't use a VLA type.
1927         (build_vec_init): Handle getting a pointer for BASE.
1928
1929 2009-03-06  H.J. Lu  <hongjiu.lu@intel.com>
1930
1931         PR c++/37520
1932         * cp-tree.h: Check NO_DOT_IN_LABEL before NO_DOLLAR_IN_LABEL
1933         when mangling symbols.
1934
1935 2009-03-06  Paolo Carlini  <paolo.carlini@oracle.com>
1936
1937         PR c++/33492
1938         * error.c (dump_expr): Don't try to print THROW_EXPRs in full.
1939
1940 2009-03-06  Alexandre Oliva  <aoliva@redhat.com>
1941
1942         * decl.c (record_builtin_java_type): Use canonicalized integer
1943         types.
1944
1945 2009-03-04  Jason Merrill  <jason@redhat.com>
1946
1947         PR c++/38908
1948         * class.c (is_really_empty_class): New fn.
1949         * cp-tree.h: Declare it.
1950         * cp-objcp-common.c (cp_expr_size): Use it.
1951
1952         PR c++/13549
1953         * semantics.c (perform_koenig_lookup): Handle TEMPLATE_ID_EXPR.
1954         * parser.c (cp_parser_postfix_expression): Call it for 
1955         TEMPLATE_ID_EXPR.
1956         * tree.c (is_overloaded_fn): Look through TEMPLATE_ID_EXPR.
1957         (get_first_fn): Likewise.
1958
1959         PR c++/9634
1960         PR c++/29469
1961         PR c++/29607
1962         Implement DR 224.
1963         * decl.c (make_typename_type): Do look inside currently open classes.
1964         * parser.c (cp_parser_lookup_name): Likewise.
1965         (cp_parser_template_name): Likewise.
1966         * pt.c (dependent_scope_p): New function.
1967         * cp-tree.h: Declare it.
1968         * class.c (currently_open_class): Return fast if T isn't a class.
1969
1970 2009-02-26  H.J. Lu  <hongjiu.lu@intel.com>
1971
1972         PR c++/37789
1973         * parser.c (cp_parser_mem_initializer): Return error_mark_node
1974         if cp_parser_mem_initializer_id returns error_mark_node.
1975
1976 2009-02-24  Richard Guenther  <rguenther@suse.de>
1977
1978         PR c++/39242
1979         * pt.c (instantiate_decl): Do not instantiate extern, non-inline
1980         declared functions.
1981
1982 2009-02-23  H.J. Lu  <hongjiu.lu@intel.com>
1983
1984         PR c++/36411
1985         * pt.c (coerce_template_template_parms): Return 0 if parameter
1986         is error_mark_node.
1987
1988 2009-02-23  Jason Merrill  <jason@redhat.com>
1989
1990         * pt.c (unify): Call maybe_adjust_types_for_deduction when
1991         deducing from an initializer list.
1992
1993 2009-02-20  Jason Merrill  <jason@redhat.com>
1994
1995         PR c++/39225
1996         * decl.c (grokdeclarator): Handle ~identifier.
1997
1998 2009-02-19  Jakub Jelinek  <jakub@redhat.com>
1999
2000         PR target/39175
2001         * decl2.c (determine_visibility): If visibility changed and
2002         DECL_RTL has been already set, call make_decl_rtl to update symbol
2003         flags.
2004
2005 2009-02-19  H.J. Lu  <hongjiu.lu@intel.com>
2006
2007         PR c++/39188
2008         * cp-tree.h (maybe_commonize_var): New.
2009
2010         * decl.c (maybe_commonize_var): Make it extern.
2011
2012         * decl2.c (finish_anon_union): Call maybe_commonize_var.
2013
2014 2009-02-18  H.J. Lu  <hongjiu.lu@intel.com>
2015
2016         PR c++/39219
2017         * parser.c (cp_parser_enum_specifier): Apply all attributes.
2018
2019 2009-02-18  Jason Merrill  <jason@redhat.com>
2020
2021         * cfns.h: Tweak pathname for cfns.gperf.
2022
2023 2009-02-13  Jason Merrill  <jason@redhat.com>
2024
2025         PR c++/39070
2026         * semantics.c (finish_call_expr): Change koenig_p parm to int.
2027         If -1, don't set KOENIG_LOOKUP_P but do keep hidden candidates.
2028         * cp-tree.h: Adjust prototype.
2029         * pt.c (tsubst_copy_and_build) [CALL_EXPR]: Pass -1.
2030
2031 2009-02-12  Jason Merrill  <jason@redhat.com>
2032
2033         PR c++/38950
2034         * pt.c (unify)[TEMPLATE_PARM_INDEX]: Convert to the tsubsted type.
2035
2036 2009-02-11  Jason Merrill  <jason@redhat.com>
2037
2038         PR c++/39153
2039         * decl2.c (cp_write_global_declarations): 
2040         Check DECL_DEFAULTED_FN, not DECL_ARTIFICIAL.
2041
2042         PR c++/30111
2043         * init.c (build_value_init_noctor): Split out from...
2044         (build_value_init): ...here.
2045         (expand_aggr_init_1): Handle value-initialization.
2046         * cp-tree.h: Add declaration.
2047         * class.c (type_has_user_provided_constructor): 
2048         Handle non-class arguments.
2049
2050 2009-02-10  Jason Merrill  <jason@redhat.com>
2051
2052         PR c++/38649
2053         * class.c (defaultable_fn_p): Handle ... properly.
2054
2055         PR c++/36744
2056         * tree.c (lvalue_p_1): Condition rvalue ref handling on
2057         treat_class_rvalues_as_lvalues, too.
2058
2059 2009-02-10  Paolo Carlini  <paolo.carlini@oracle.com>
2060
2061         PR c++/34397
2062         * typeck.c (build_x_array_ref): New.
2063         * cp-tree.h: Declare it.
2064         * pt.c (tsubst_copy_and_build): Use it for case ARRAY_REF.
2065
2066 2009-02-09  Jason Merrill  <jason@redhat.com>
2067
2068         PR c++/39109
2069         * semantics.c (simplify_aggr_init_expr): Do zero-initialization here.
2070         * init.c (build_value_init): Not here. Don't build a TARGET_EXPR.
2071         * tree.c (get_target_expr): Handle AGGR_INIT_EXPR.
2072         * cp-gimplify.c (cp_gimplify_init_expr): Remove special handling
2073         for build_value_init TARGET_EXPR.
2074         * cp-tree.h (AGGR_INIT_ZERO_FIRST): New macro.
2075
2076 2009-02-06  Paolo Carlini  <paolo.carlini@oracle.com>
2077
2078         PR c++/35147
2079         PR c++/37737
2080         * cp-tree.h (TMPL_ARGS_HAVE_MULTIPLE_LEVELS): Check TREE_VEC_LENGTH.
2081
2082 2009-02-04  Jakub Jelinek  <jakub@redhat.com>
2083
2084         PR c++/39095
2085         * operators.def: Use COMPONENT_REF code for ->/pt operator again,
2086         remove ./dt operator.
2087         * mangle.c (write_expression): Handle COMPONENT_REF after handling
2088         ADDR_EXPR, for COMPONENT_REF without ARROW_EXPR inside of it
2089         write_string ("dt") instead of using operators.def.
2090
2091 2009-02-03  Jason Merrill  <jason@redhat.com>
2092
2093         * typeck.c (cp_build_unary_op): Only complain about taking address
2094         of main if pedantic.
2095
2096 2009-02-03  Jakub Jelinek  <jakub@redhat.com>
2097
2098         PR inline-asm/39059
2099         * parser.c (cp_parser_primary_expression): Reject FIXED_CSTs.
2100
2101         PR c++/39056
2102         * typeck2.c (digest_init_r): Don't call process_init_constructor
2103         for COMPLEX_TYPE.
2104
2105 2009-02-03  Paolo Bonzini  <bonzini@gnu.org>
2106
2107         PR c++/36897
2108         * pt.c (convert_nontype_argument_function): Expect expr to be an
2109         ADDR_EXPR.
2110
2111         PR c++/37314
2112         * typeck.c (merge_types): Call resolve_typename_type if only
2113         one type is a typename.
2114
2115 2009-02-02  Jason Merrill  <jason@redhat.com>
2116
2117         PR c++/39054
2118         * parser.c (cp_parser_unqualified_id): Don't wrap error_mark_node 
2119         in BIT_NOT_EXPR.
2120
2121 2009-02-01  Paolo Carlini  <paolo.carlini@oracle.com>
2122
2123         PR c++/39053
2124         * parser.c (cp_parser_pure_specifier): If there are no tokens left
2125         do not call cp_lexer_consume_token.
2126
2127 2009-01-30  Jakub Jelinek  <jakub@redhat.com>
2128
2129         PR c++/39028
2130         * parser.c (cp_parser_already_scoped_statement): Handle __label__
2131         declarations.
2132
2133 2009-01-30  Paolo Carlini  <paolo.carlini@oracle.com>
2134
2135         PR c++/33465
2136         * error.c (dump_expr): Handle FIX_TRUNC_EXPR and FLOAT_EXPR.
2137
2138 2009-01-30  Paolo Carlini  <paolo.carlini@oracle.com>
2139
2140         PR c++/38655
2141         * error.c (dump_type_prefix, dump_type_suffix): Handle FIXED_POINT_TYPE.
2142
2143 2009-01-29  Paolo Carlini  <paolo.carlini@oracle.com>
2144
2145         * typeck.c (invalid_nonstatic_memfn_p): Use
2146         DECL_NONSTATIC_MEMBER_FUNCTION_P.
2147
2148 2009-01-27  Paolo Carlini  <paolo.carlini@oracle.com>
2149
2150         PR c++/37554
2151         * call.c (build_over_call): If convert_for_arg_passing returns
2152         error_mark_node unconditionally return it.
2153
2154 2009-01-22  Adam Nemet  <anemet@caviumnetworks.com>
2155
2156         * class.c (check_field_decls): Also inherit packed for bitfields
2157         regardless of their type.
2158
2159 2009-01-22  Dodji Seketeli  <dodji@redhat.com>
2160
2161         PR c++/38930
2162         * decl2.c (grokfield): Reverting changes of PR c++/26693
2163         (save_template_attributes): Likewise.
2164         * decl.c (grokdeclarator): Likewise.
2165         * name-lookup.c (pushdecl_maybe_friend): Likewise.
2166         * cp-tree.h (MEMBER_TYPES_NEEDING_ACCESS_CHECK): Likewise.
2167         (append_type_to_template_for_access_check): Likewise.
2168         * semantics.c (check_accessibility_of_qualified_id): Likewise.
2169         * pt.c (instantiate_class_template, instantiate_template ): Likewise.
2170         (tsubst): Likewise.
2171         (resolve_type_name_type): Likewise.
2172         (append_type_to_template_for_access_check): Likewise.
2173
2174 2009-01-21  Dodji Seketeli  <dodji@redhat.com>
2175
2176         PR c++/26693
2177         * decl2.c (grokfield): when a typedef appears in a
2178         class, create the typedef variant type node for it.
2179         (save_template_attributes): Creating typedef variant type node
2180          here is now useless.
2181         * decl.c (grokdeclarator): If the typedef'ed struct/class was
2182         anonymous, set the proper type name to all its type variants.
2183         * name-lookup.c (pushdecl_maybe_friend): Reuse the
2184         set_underlying_type function to install typedef variant types.
2185         * cp-tree.h (MEMBER_TYPES_NEEDING_ACCESS_CHECK): New template accessor
2186         macro.
2187         (append_type_to_template_for_access_check): New entry points.
2188         * semantics.c (check_accessibility_of_qualified_id):
2189         When a typedef that is a member of a class appears in a template,
2190         add it to the template. It will be ...
2191         * pt.c (instantiate_class_template, instantiate_template ): ... access
2192         checked at template instantiation time.
2193         (tsubst): Handle the case of being called with NULL args.
2194         (resolve_type_name_type): The type name should be the name of the
2195         main type variant.
2196         (append_type_to_template_for_access_check): New entry point.
2197
2198 2009-01-19  Jason Merrill  <jason@redhat.com>
2199
2200         PR c++/23287
2201         * parser.c (cp_parser_unqualified_id): In a template,
2202         accept ~identifier.
2203         * typeck.c (lookup_destructor): Handle IDENTIFIER_NODE.
2204
2205 2009-01-16  Jason Merrill  <jason@redhat.com>
2206
2207         PR c++/38877
2208         * tree.c (lvalue_p_1): Allow non-fields in COMPONENT_REF.
2209         * init.c (build_new): Don't call describable_type unless we
2210         have an auto.
2211
2212         PR c++/29470
2213         * pt.c (tsubst_decl) [USING_DECL]: Propagate access flags.
2214
2215         PR c++/38579
2216         * search.c (protected_accessible_p): N doesn't vary.
2217
2218 2009-01-15  Jason Merrill  <jason@redhat.com>
2219
2220         PR c++/38850
2221         * pt.c (tsubst_copy_and_build): Tell finish_call_expr to
2222         accept hidden friends.
2223
2224 2009-01-15  Andrew Pinski  <andrew_pinski@playstation.sony.com>
2225
2226         PR C++/29388
2227         * decl.c (grokdeclarator): Check for a non namespace/class context.
2228
2229 2009-01-15  Jason Merrill  <jason@redhat.com>
2230
2231         PR c++/36334
2232         PR c++/37646
2233         * tree.c (lvalue_p_1): Handle BASELINK.  A COMPONENT_REF to
2234         a function isn't necessarily an lvalue. Take tree, not const_tree.
2235         (lvalue_p, real_lvalue_p): Take tree, not const_tree.
2236         * typeck.c (lvalue_or_else): Likewise.
2237         * cp-tree.h: Adjust prototypes.
2238
2239 2009-01-15  Steve Ellcey  <sje@cup.hp.com>
2240
2241         PR c++/38357
2242         * pt.c (tsubst): Check for NULL args.
2243
2244 2009-01-15  Dodji Seketeli  <dodji@redhat.com>
2245
2246         PR c++/38636
2247         * name-lookup.c (pushtag): Don't create members to types that are not
2248         being created.
2249
2250 2009-01-14  Nick Clifton  <nickc@redhat.com>
2251
2252         PR c++/37862
2253         * parser.c: Pass cp_id_kind computed in
2254         cp_parser_postfix_dot_deref_expression to
2255         cp_parser_primary_expression.
2256
2257 2009-01-13  Jakub Jelinek  <jakub@redhat.com>
2258
2259         PR c++/38795
2260         * tree.c (cp_walk_subtrees): Handle REINTERPRET_CAST_EXPR,
2261         STATIC_CAST_EXPR, CONST_CAST_EXPR and DYNAMIC_CAST_EXPR the same
2262         as CAST_EXPR.
2263
2264 2009-01-12  Jason Merrill  <jason@redhat.com>
2265             Steve Ellcey  <sje@cup.hp.com>
2266
2267         PR c++/35109
2268         * name-lookup.c (lookup_name_real): Keep looking past a hidden 
2269         binding.
2270
2271 2009-01-12  Dodji Seketeli  <dodji@redhat.com>
2272
2273         PR c++/36019
2274         * pt.c (parameter_of_template_p): New function.
2275         * cp-tree.h: Declare it.
2276         * name-lookup.c (binding_to_template_parms_of_scope_p): New
2277         function.
2278         (outer_binding): Take template parameters in account when looking for
2279         a name binding.
2280
2281 2009-01-12  Jason Merrill  <jason@redhat.com>
2282
2283         PR c++/31488
2284         * tree.c (pod_type_p): Return 1 for structs created by the back end.
2285
2286 2009-01-12  Jakub Jelinek  <jakub@redhat.com>
2287
2288         PR c/32041
2289         * parser.c (cp_parser_builtin_offsetof): Allow `->' in
2290         offsetof member-designator, handle it as `[0].'.
2291
2292         PR c++/38794
2293         * decl.c (start_function): If grokdeclarator hasn't returned
2294         FUNCTION_DECL nor error_mark_node, issue diagnostics.
2295
2296 2009-01-11  Jakub Jelinek  <jakub@redhat.com>
2297
2298         PR c++/36254
2299         * cp-gimplify.c (genericize_if_stmt): Renamed from ...
2300         (gimplify_if_stmt): ... this.
2301         (cp_gimplify_expr): Don't handle IF_STMT here.
2302         (cp_genericize_r): Call genericize_if_stmt for IF_STMT.
2303
2304 2009-01-10  Andrew Pinski  <pinskia@gmail.com>
2305
2306         PR c++/38648
2307         * typeck.c (cp_build_modify_expr): Check for NULL current_function_decl.
2308
2309         PR c++/36695
2310         * typeck2.c (build_functional_cast): Check for reference type and NULL
2311         PARMS.
2312
2313 2009-01-09  Steve Ellcey  <sje@cup.hp.com>
2314
2315         * typeck.c (cp_build_unary_op): Check for ERROR_MARK.
2316
2317 2009-01-09  Jakub Jelinek  <jakub@redhat.com>
2318
2319         PR c++/35335
2320         * error.c (dump_expr): Handle EXPR_STMT like BIND_EXPR.
2321
2322 2009-01-09  John F. Carr  <jfc@mit.edu>
2323
2324         PR c++/37877
2325         * parser.c (cp_parser_class_specifier): Clear
2326         parser->in_unbraced_linkage_specification_p while parsing class
2327         specifiers.
2328
2329 2009-01-07  Jakub Jelinek  <jakub@redhat.com>
2330
2331         PR c++/38725
2332         * semantics.c (finish_goto_stmt): Convert destination to
2333         void *.
2334
2335 2009-01-06  Jason Merrill  <jason@redhat.com>
2336
2337         PR c++/35297
2338         PR c++/35477
2339         PR c++/35784
2340         PR c++/36846
2341         PR c++/38276
2342         * pt.c (check_default_tmpl_args): Don't complain about
2343         out-of-order parameter packs in the enclosing class
2344         or parameter packs after default args.
2345         (coerce_template_parms): If we have more than one
2346         parameter pack, don't flatten argument packs.
2347         (template_args_equal): Handle argument packs.
2348         (comp_template_args): Don't flatten argument packs.
2349         (check_instantiated_arg): Split out from...
2350         (check_instantiated_args): Here.  Handle arg packs.
2351         (convert_template_argument): Just check that nontype argument
2352         packs have the right type.
2353
2354 2009-01-05  Dodji Seketeli  <dodji@redhat.com>
2355
2356         PR c++/38472
2357         * typeck.c (type_after_usual_arithmetic_conversions): Fix a typo.
2358
2359 2009-01-05  Jason Merrill  <jason@redhat.com>
2360
2361         PR c++/38698
2362         * typeck2.c (process_init_constructor_union): Handle union with
2363         no fields.
2364
2365         * mangle.c (write_expression): Remove mangling for zero-operand
2366         casts.
2367
2368         PR c++/38701
2369         * decl.c (cp_finish_decl): Clear DECL_INITIAL for invalid
2370         defaulting.
2371
2372         PR c++/38702
2373         * class.c (defaultable_fn_p): Only operator== can be a copy
2374         assignment operator.
2375
2376 2009-01-02  Jason Merrill  <jason@redhat.com>
2377
2378         PR c++/38698
2379         * typeck2.c (process_init_constructor_union): Handle excess
2380         initializers.
2381         (process_init_constructor_record): Likewise.
2382
2383         PR c++/38684
2384         * typeck2.c (digest_init_r): Don't use process_init_constructor
2385         for non-aggregate classes.
2386
2387 \f
2388 Copyright (C) 2009 Free Software Foundation, Inc.
2389
2390 Copying and distribution of this file, with or without modification,
2391 are permitted in any medium without royalty provided the copyright
2392 notice and this notice are preserved.