2007-11-01 Douglas Gregor <doug.gregor@gmail.com>
[official-gcc.git] / gcc / cp / ChangeLog
blobc784c31f0661c3f95c282629b27324cc77ec030e
1 2007-11-01  Douglas Gregor  <doug.gregor@gmail.com>
3         PR c++/33955
4         * pt.c (find_parameter_packs_r): Handle TYPENAME_TYPE.
6 2007-11-01  Jakub Jelinek  <jakub@redhat.com>
8         PR c++/32384
9         * parser.c (cp_parser_postfix_dot_deref_expression): If
10         POSTFIX_EXPRESSION is type dependent, try to parse it as pseudo dtor
11         first and if that succeeds and type is SCALAR_TYPE_P, create
12         PSEUDO_DTOR_EXPR.
14         PR c++/32260
15         * rtti.c (enum_tinfo_kind): Fix TK_TYPE_INFO_TYPE comment.
16         (typeid_ok_p): Use the same alias set for abi::__type_info_pseudo
17         as for std::type_info.
19 2007-10-31  Paolo Carlini  <pcarlini@suse.de>
21         PR c++/33494
22         * cxx-pretty-print.c (pp_cxx_typeid_expression,
23         pp_cxx_delete_expression): Change to static linkage.
24         * cxx-pretty-print.h: Adjust declarations.
25         * error.c (dump_expr, case EXPR_PACK_EXPANSION, TYPEID_EXPR,
26         MEMBER_REF, DOTSTAR_EXPR, DELETE_EXPR, VEC_DELETE_EXPR,
27         MODOP_EXPR): Forward to pp_expression.
29         * cxx-pretty-print.c (pp_cxx_expression, case NON_DEPENDENT_EXPR):
30         Fix typo.
32 2007-10-31 Christian Bruel  <christian.bruel@st.com>
33            Mark Mitchell  <mark@codesourcery.com>
35         PR c++/19531
36         * cp/typeck.c (check_return_expr): Don't set named_return_value_okay_p
37         if retval is volatile. 
38         
39 2007-10-30  Jakub Jelinek  <jakub@redhat.com>
41         PR c++/33616
42         * decl2.c (build_offset_ref_call_from_tree): Call
43         build_non_dependent_expr on object prior to building ADDR_EXPR from it
44         if FN is DOTSTAR_EXPR.
46 2007-10-30  Douglas Gregor  <doug.gregor@gmail.com>
48         PR c++/31993
49         PR c++/32252
50         * pt.c (find_parameter_packs_r): Fix typo in comment.
51         (convert_template_argument): Look at the pattern of a pack
52         expansion to determine what kind of entity we're converting.
53         (coerce_template_parameter_pack): When we have coerced a non-type
54         template parameter pack, substitute into the type of that pack.
55         (tsubst_pack_expansion): When our substitution of a parameter pack
56         is a "trivial" substitution of itself, just substitute into the
57         pack expansion rather than actually expanding.
59 2007-10-29  Jakub Jelinek  <jakub@redhat.com>
61         PR c++/33841
62         * class.c (check_bitfield_decl): Don't set field's type to error_mark_node
63         for non-integral type bitfields.  Return true if bitfield is correct, false
64         error has been diagnosed.
65         (check_field_decls): If check_bitfield_decl returned false, call also
66         check_field_decl.
68 2007-10-28  Paolo Carlini  <pcarlini@suse.de>
69             Mark Mitchell  <mark@codesourcery.com>
71         PR c++/30659
72         * pt.c (do_decl_instantiation): If the VAR_DECL is not a
73         class member error out and return.
75 2007-10-27  Jakub Jelinek  <jakub@redhat.com>
77         * error.c (reinit_cxx_pp): Initialize cxx_pp->enclosing_scope
78         to current_function_decl rather than 0.
80         PR c++/33844
81         * cxx-pretty-print.c (pp_cxx_pm_expression) <case MEMBER_REF>: Print
82         ->* rather than .*.
83         * error.c (dump_expr): Handle MEMBER_REF and DOTSTAR_EXPR.
85 2007-10-27  Jason Merrill  <jason@redhat.com>
87         PR c++/5247
88         * call.c (convert_default_arg): Detect recursion.
90 2007-10-27  Jakub Jelinek  <jakub@redhat.com>
92         PR c++/33842
93         * cxx-pretty-print.h (pp_cxx_offsetof_expression): New prototype.
94         * cxx-pretty-print.c (pp_cxx_primary_expression): Handle
95         OFFSETOF_EXPR.
96         (pp_cxx_offsetof_expression_1, pp_cxx_offsetof_expression): New
97         functions.
98         * error.c (dump_expr): Handle OFFSETOF_EXPR.
100 2007-10-26  Jason Merrill  <jason@redhat.com>
102         PR c++/24791
103         * pt.c (get_template_info): New fn.
104         (template_class_depth): Use it.
105         (push_template_decl_real): Check that the template args of the 
106         definition match the args of the previous declaration.
108 2007-10-26  Paolo Carlini  <pcarlini@suse.de>
110         PR c++/31988
111         * decl2.c (coerce_new_type): Do not allow a default argument for
112         the first parameter.
114 2007-10-26  Douglas Gregor  <doug.gregor@gmail.com>
116         PR c++/33839
117         * parser.c (cp_parser_decltype): Return ERROR_MARK_NODE if we
118         don't see the leading '('. Only lookup names if we get an
119         IDENTIFIER_NODE.
121 2007-10-26  Jakub Jelinek  <jakub@redhat.com>
123         PR c++/33744
124         * parser.c (cp_parser_parenthesized_expression_list): Set
125         greater_than_is_operator_p to true in between the parens.
127 2007-10-26  Paolo Carlini  <pcarlini@suse.de>
129         PR c++/31747
130         * decl.c (grokdeclarator): In case of conflicting specifiers
131         just return error_mark_node.
133 2007-10-26  Ollie Wild  <aaw@google.com>
135         * expr.c (cxx_expand_expr): Removed.
136         * cp-tree.h (exx_expand_expr): Removed.
137         * cp-objcp-common.h (LANK_HOOKS_EXPAND_EXPR): Replace cxx_expand_expr
138         with c_expand_expr.
140 2007-10-25  Paolo Carlini  <pcarlini@suse.de>
142         PR c++/33843
143         * cxx-pretty-print.c (pp_cxx_unqualified_id): Deal with BIT_NOT_EXPR.
145 2007-10-23  Jason Merrill  <jason@redhat.com>
147         PR c++/25950 (DR 391)
148         * call.c (struct conversion): Remove check_copy_constructor_p.
149         (reference_binding): Always bind a reference directly to a 
150         compatible class rvalue.  Pass down LOOKUP_NO_TEMP_BIND during 
151         temporary creation.
152         (check_constructor_callable): Remove.
153         (convert_like_real): Don't call it.
154         (initialize_reference): Don't call check_constructor_callable.
155         (standard_conversion): Check LOOKUP_NO_CONVERSION instead of
156         LOOKUP_CONSTRUCTOR_CALLABLE.  Don't require a temporary for base
157         conversions if LOOKUP_NO_TEMP_BIND.
158         (implicit_conversion): Pass through LOOKUP_NO_TEMP_BIND.
159         (build_user_type_conversion_1): Pass through LOOKUP_NO_TEMP_BIND for
160         second conversion.
161         * cp-tree.h (LOOKUP_CONSTRUCTOR_CALLABLE): Remove.
163 2007-10-22  Jakub Jelinek  <jakub@redhat.com>
165         PR c++/33372
166         * semantics.c (finish_omp_clauses): Check !type_dependent_expression_p
167         before checking if its type is integral.
169 2007-10-22  Jason Merrill  <jason@redhat.com>
171         PR c++/33620
172         * class.c (finish_struct_bits): Copy TYPE_ATTRIBUTES.
173         * pt.c (apply_late_template_attributes): Splice out dependent
174         attributes from DECL_ATTRIBUTES.
176         * decl.c (cxx_maybe_build_cleanup): Use build_address.
178 2007-10-17  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
180         * typeck.c (build_binary_op) : Use appropriate warning option
181         instead of unnamed warning.
183 2007-10-16  Paolo Carlini  <pcarlini@suse.de>
185         PR c++/31446
186         * pt.c (current_template_args): Do not change TREE_LIST elements
187         with a TREE_VALUE of error_mark_node.
189 2007-10-16  Mark Mitchell  <mark@codesourcery.com>
191         * typeck.c (cp_apply_type_quals_to_decl): Expand documentation.
192         * decl.c (start_decl): Tidy.
193         (start_decl_1): Call cp_apply_type_quals_to_decl after completing
194         the type.
195         (grokdeclarator): Clarify comment.
197 2007-10-14  Andrew Pinski  <pinskia@gmail.com>
199         PR c++/30303
200         * decl.c (grokfndecl): Return NULL after the "definition of
201         implicitly-declared" error happened.
203 2007-10-12  Simon Martin  <simartin@users.sourceforge.net>
205         PR c++/26698
206         * call.c (build_user_type_conversion_1): Do not consider conversion
207         functions to convert a (possibly cv-qualified) object to the (possibly
208         cv-qualified) same object type (or a reference to it), to a (possibly
209         cv-qualified) base class of that type (or a reference to it).
211 2007-10-12  Paolo Carlini  <pcarlini@suse.de>
213         * pt.c (tsubst): Use template_parm_level_and_index.
215 2007-10-12  Jakub Jelinek  <jakub@redhat.com>
217         PR c++/32121
218         * parser.c (cp_parser_compound_statement): Handle label-declarations
219         at the beginning of the compound statement.
220         (cp_parser_block_declaration): Issue diagnostics about __label__
221         not at the beginning of a block.
223 2007-10-11  Paolo Carlini  <pcarlini@suse.de>
225         PR c++/33461
226         * pt.c (coerce_template_parameter_pack): Do not pass error_mark_node
227         to convert_template_argument.
228         (coerce_template_parms): Return error_mark_node after fixed-length
229         error.
230         (tsubst_decl): Check for error_mark_node the return value of the
231         first tsubst in 'case VAR_DECL'.
233 2007-10-08  Ollie Wild  <aaw@google.com>
235         * typeck2.c (digest_init): Call cplus_expand_constant after
236         convert_for_initialization.
237         * cp-objcp-common.h (LANG_HOOKS_EXPAND_CONSTANT): Removed.
238         * expr.c (cplus_expand_constant): Updated function description.
240 2007-10-04  Jason Merrill  <jason@redhat.com>
242         PR c++/20416
243         * call.c (initialize_reference): Handle local static reference
244         temps properly.
246 2007-10-03  Jason Merrill  <jason@redhat.com>
248         PR c++/32470
249         * name-lookup.c (push_namespace_with_attrs): Fold back into...
250         (push_namespace): Here.
251         (handle_namespace_attrs): New fn for the attr code.
252         (leave_scope): Don't pop_visibility.
253         * name-lookup.h (struct cp_binding_level): Remove has_visibility.
254         * parser.c (cp_parser_namespace_definition): Call
255         handle_namespace_attrs and pop_visibility as appropriate. 
257         PR c++/11756
258         * mangle.c (write_type) [TYPEOF_TYPE]: Just sorry.
260 2007-10-03  Alexandre Oliva  <aoliva@redhat.com>
262         * decl.c (duplicate_decls): Preserve linkage flags for mere
263         redeclarations of gnu_inline definitions.
265 2007-10-03  Jason Merrill  <jason@redhat.com>
267         PR c++/15764
268         * decl.c (wrap_cleanups_r): New fn.
269         (wrap_temporary_cleanups): New fn.
270         (initialize_local_var): Call it.
272 2007-09-29  Jason Merrill  <jason@redhat.com>
274         PR c++/33094
275         * decl.c (make_rtl_for_nonlocal_decl): It's ok for a member 
276         constant to not have DECL_EXTERNAL if it's file-local.
278 2007-09-28  Ollie Wild  <aaw@google.com>
280         Revert
281         2007-09-27  Ollie Wild  <aaw@google.com>
283         * typeck2.c (digest_init): Call cplus_expand_constant after
284         convert_for_initialization.
285         * cp-objcp-common.h (LANG_HOOKS_EXPAND_CONSTANT): Removed.
286         * expr.c (cplus_expand_constant): Updated function description.
288 2007-09-28  Jason Merrill  <jason@redhat.com>
290         PR c++/10179
291         * class.c (layout_empty_base): Take rli parameter, update
292         rli->record_align if empty base has user-specified alignment.
293         (build_base_field): Pass rli to it.
295 2007-09-28  Paolo Carlini  <pcarlini@suse.de>
297         PR c++/33213
298         * error.c (dump_decl): Deal with TYPE_PACK_EXPANSION.
300 2007-09-28  Paolo Carlini  <pcarlini@suse.de>
302         PR c++/33118
303         * error.c (dump_expr): Deal with ARGUMENT_PACK_SELECT.
304         (dump_type): Use dump_template_argument for TYPE_ARGUMENT_PACK.
305         (dump_parameters): Just call dump_type for argument packs too.
307 2007-09-28  Jakub Jelinek  <jakub@redhat.com>
309         PR c++/31434
310         * tree.c (cp_build_qualified_type_real): Handle TYPE_PACK_EXPANSION
311         qualification by creating qualified PACK_EXPANSION_PATTERN and
312         then calling make_pack_expansion on it.
314 2007-09-27  Ollie Wild  <aaw@google.com>
316         * typeck2.c (digest_init): Call cplus_expand_constant after
317         convert_for_initialization.
318         * cp-objcp-common.h (LANG_HOOKS_EXPAND_CONSTANT): Removed.
319         * expr.c (cplus_expand_constant): Updated function description.
321 2007-09-27  Jason Merrill  <jason@redhat.com>
323         PR c++/33571
324         * decl2.c (is_late_template_attribute): Don't crash on unknown
325         attribute.
327 2007-09-27  Paolo Carlini  <pcarlini@suse.de>
329         PR c++/33493
330         * error.c (dump_expr): Deal with DELETE_EXPR and VEC_DELETE_EXPR.
331         * cxx-pretty-print.c (pp_cxx_delete_expression): Add missing
332         spaces in the formatting.
333         * cxx-pretty-print.h (pp_cxx_delete_expression): Declare.
335 2007-09-27  Jakub Jelinek  <jakub@redhat.com>
337         * error.c (cxx_print_error_function): Add third argument, pass
338         it over to lhd_print_error_function.
339         (cp_print_error_function): If diagnostic->abstract_origin, print
340         virtual backtrace.
341         * cp-tree.h (struct diagnostic_info): New forward decl.
342         (cxx_print_error_function): Add third argument.
344 2007-09-25  Simon Martin  <simartin@users.sourceforge.net>
346         PR c++/33207
347         * name-lookup.c (pushtag): Do not create an implicit typedef before
348         the associated type declaration is known to be valid.
350 2007-09-25  Jakub Jelinek  <jakub@redhat.com>
352         * tree.c (cxx_printable_name): Compare FUNCTION_DECL uids
353         rather than pointers.
355 2007-09-24  Danny Smith  <dannysmith@user.sourceforge.net>
357         PR c++/14688
358         * search.c (check_final_overrider): Fail if
359         targetm.comp_type_attributes returns 0.
361 2007-09-24  Jason Merrill  <jason@redhat.com>
363         PR c++/33239
364         * pt.c (resolve_typename_type): Don't look things up in the original
365         template if it would mean losing template arguments.    
367 2007-09-24  Jakub Jelinek  <jakub@redhat.com>
369         PR c++/33506
370         * cp-tree.h (cxx_type_hash_eq): New prototype.
371         * cp-objcp-common.h (LANG_HOOKS_TYPE_HASH_EQ): Redefine.
372         * tree.c (cxx_type_hash_eq): New function.
374 2007-09-24  Douglas Gregor  <doug.gregor@gmail.com>
376         PR c++/33185    
377         * tree.c (cp_build_qualified_type_real): Build a canonical
378         ARRAY_TYPE if the original ARRAY_TYPE was not a canonical type.
379         
380 2007-09-24  Douglas Gregor  <doug.gregor@gmail.com>
382         PR c++/33112
383         PR c++/33185    
384         * tree.c (cplus_array_compare): Compare pointers, not types.
385         (build_cplus_array_type_1): Store new array type into the hash
386         table before building the canonical type; build the canonical type
387         correctly.
388         (cp_build_qualified_type_real): Put all of the array types with
389         cv-qualified element types into the C++ array hash table, built as 
390         variants of the unqualified versions.
391         
392 2007-09-23  Jason Merrill  <jason@redhat.com>
394         PR c++/16370
395         * decl.c (grokdeclarator): Look through implicit TYPE_DECLs
396         for deprecation warnings.
398 2007-09-22  Jason Merrill  <jason@redhat.com>
400         PR c++/15269
401         * call.c (build_over_call): Warn about deprecated virtuals.
403         PR c++/19407
404         * cp-tree.h (ATTR_IS_DEPENDENT): New macro.
405         (MAYBE_TAGGED_TYPE_P): Remove.
406         * pt.c (apply_late_template_attributes): Check ATTR_IS_DEPENDENT
407         instead of calling is_late_template_attribute again.
408         (tsubst_decl) [TYPE_DECL]: Just check if the name is the tag.
409         (tsubst): A typedef is a TYPE_NAME != TYPE_MAIN_DECL.
410         Don't crash on typedefs from non-template classes.
411         * decl2.c (grokfield): Don't sorry about attrs on template parms.
412         (is_late_template_attribute): All attributes applied to template
413         parms or typename types are dependent.  Static.
414         (splice_template_attributes): Pass decl through.
415         (save_template_attributes): Likewise.
417 2007-09-20  Jakub Jelinek  <jakub@redhat.com>
419         PR c++/33496
420         * pt.c (tsubst_copy) <case SIZEOF_EXPR>: Handle error_mark_node
421         returned from tsubst_pack_expansion.
422         (tsubst_copy_and_build) <case SIZEOF_EXPR>: Likewise.
423         (tsubst_copy_and_build) <case CONSTRUCTOR>: Likewise.
425 2007-09-20  Paolo Carlini  <pcarlini@suse.de>
427         PR c++/33460
428         * semantics.c (finish_id_expression): Use consistently
429         context_for_name_lookup.
430         * decl.c (fixup_anonymous_aggr): Fix error message for
431         anonymous struct (vs union).
433 2007-09-19  Jason Merrill  <jason@redhat.com>
435         PR c++/7586
436         * pt.c (tsubst): Handle typedefs by looking for the specialization.
437         (retrieve_specialization): Only tagged types use 
438         DECL_TEMPLATE_INSTANTIATIONS.
439         (instantiate_class_template): Push nested classes too.
440         (tsubst_decl) [TYPE_DECL]: Only check for canonical decl for
441         tagged types.
442         * cp-tree.h (MAYBE_TAGGED_TYPE_P): New macro.
443         * init.c (is_aggr_type): Remove redundant tests.
444         * class.c (push_nested_class): Use CLASS_TYPE_P.
446 2007-09-20  Paolo Carlini  <pcarlini@suse.de>
448         PR c++/33459
449         * init.c (build_zero_init): If, recursively, build_zero_init
450         returns a NULL_TREE, do not append it to the VEC of constructors.
452 2007-09-18  Jason Merrill  <jason@redhat.com>
454         PR c++/17743
455         * pt.c (apply_late_template_attributes): Set processing_template_decl.
456         (tsubst_decl) [TYPE_DECL]: Preserve naming typedef, pass
457         ATTR_FLAG_TYPE_IN_PLACE.
458         (tsubst): Do unqualified lookup to find typedefs from current class.
459         [ARRAY_TYPE]: Propagate alignment info.
460         * decl2.c (is_late_template_attribute): Only defer handling of
461         attribute aligned if the expression is dependent.
462         (save_template_attributes): If we're deferring any attributes,
463         make this a naming typedef.
465 2007-09-18  Paolo Carlini  <pcarlini@suse.de>
467         PR c++/33462 (again)
468         * cxx-pretty-print.c (pp_cxx_va_arg_expression): Print
469         va_arg instead of __builtin_va_arg.
471 2007-09-18  Paolo Carlini  <pcarlini@suse.de>
473         PR c++/33462
474         * cxx-pretty-print.c (pp_cxx_va_arg_expression): Add.
475         (pp_cxx_primary_expression): Use it.
476         * cxx-pretty-print.h (pp_cxx_va_arg_expression): Declare.
477         * error.c (dump_expr): Use it.
479 2007-09-18  Paolo Carlini  <pcarlini@suse.de>
481         PR c++/33463
482         * cxx-pretty-print.c (pp_cxx_postfix_expression): Split
483         out case TYPEID_EXPR to...
484         (pp_cxx_typeid_expression): ... here; use pp_cxx_left_paren
485         and pp_cxx_right_paren.
486         * cxx-pretty-print.h (pp_cxx_typeid_expression): Declare.
487         * error.c (dump_expr): Use it.
489 2007-09-18  Paolo Carlini  <pcarlini@suse.de>
491         PR c++/33464
492         * cxx-pretty-print.c (pp_cxx_trait_expression): Add.
493         (pp_cxx_primary_expression): Use it.
494         * cxx-pretty-print.h (pp_cxx_trait_expression): Declare.
495         * error.c (dump_expr): Use it.
497 2007-09-16  Paolo Carlini  <pcarlini@suse.de>
499         PR c++/33124
500         * init.c (build_new): Remove warning for zero-element
501         allocations.
503 2007-09-16  Nathan Sidwell  <nathan@codesourcery.com>
505         PR c++/32756
506         * call.c (maybe_handle_implicit_object): Set this_p, clear
507         rvaluedness_matches_p.
508         (compare_ics): Do not compare rvaluedness matching when one of the
509         operands is an implicit object.
511 2007-09-14  Jason Merrill  <jason@redhat.com>
513         PR c++/17743, c++/19163
514         * decl2.c (is_late_template_attribute): New fn.
515         (splice_template_attributes, save_template_attributes): New fns.
516         (cplus_decl_attributes): Call save_template_attributes.
517         * pt.c (apply_late_template_attributes): New fn.
518         (instantiate_class_template, tsubst_decl): Use it.
519         * cp-tree.h: Declare is_late_template_attribute.
521 2007-09-13  Tom Tromey  <tromey@redhat.com>
523         * parser.c (cp_lexer_new_main): Don't use
524         c_lex_return_raw_strings.
525         (cp_lexer_get_preprocessor_token): Update.  Add special case when
526         lexer is NULL.
528 2007-09-11  Jan Hubicka <jh@suse.cz>
530         * method.c (use_thunk): Use tree_rest_of_compilation
531         * cp-objecp-common.h (LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION): Kill.
532         (LANG_HOOKS_CALLGRAPH_EMIT_ASSOCIATED_THUNKS): Define.
533         * cp-tree.h (expand_body): Kill.
534         (emit_associated_thunks): Declare.
535         * semantics.c (emit_associated_thunks): Export.
536         (expand_body): Kill.
538 2007-09-09  David Daney  <ddaney@avtrex.com>
540         PR c++/33324
541         * init.c (build_new_1):  Use POINTER_PLUS_EXPR instead of MINUS_EXPR
542         to calculate cookie_ptr.
544 2007-09-08  Jason Merrill  <jason@redhat.com>
546         PR c++/33342
547         * pt.c (most_specialized_class): Set processing_template_decl
548         while tsubsting partial spec args.
550 2007-09-06  Jason Merrill  <jason@redhat.com>
552         * decl2.c (get_guard): Copy visibility from the guarded variable.
554 2007-09-06  Jan Hubicka  <jh@suse.cz>
556         * semantics.c (expand_body): Do not mark arguments of clones used.
558 2007-09-06  Paolo Carlini  <pcarlini@suse.de>
560         PR c++/32674
561         * decl.c (cp_finish_decl): When processing_template_decl,
562         deal correctly with init as TREE_LIST.
564 2007-09-06  Tom Tromey  <tromey@redhat.com>
566         * decl.c (finish_function): Put return's location on line zero of
567         file.
569 2007-09-05  Jason Merrill  <jason@redhat.com>
571         PR c++/15745
572         * except.c (prepare_eh_type): Use type_decays_to.
574         PR c++/15097
575         * init.c (build_delete): Use build_headof to get the address of the
576         complete object if we aren't using the deleting destructor.
577         * rtti.c (build_headof): No longer static.
578         * cp-tree.h: Declare it.
580 2007-09-06  Jakub Jelinek  <jakub@redhat.com>
582         * decl.c (duplicate_decls): Set TREE_NOTHROW on __builtin_XX
583         decl if a prototype for XX is provided with throw().
585         PR c++/33289
586         * decl.c (builtin_function_1): Set DECL_ANTICIPATED also
587         on __*_chk non-__builtin_* decls.
589 2007-09-05  Paolo Carlini  <pcarlini@suse.de>
591         PR c++/30302
592         * semantics.c (finish_id_expression): Use context_for_name_lookup
593         insted of DECL_CONTEXT, to see through anonymous structs and unions.
594         * class.c (finish_struct_anon): Deal correctly with anonymous
595         structs (vs unions, as GNU extension) in error messages.
597 2007-09-05  Jan Hubicka  <jh@suse.cz>
599         * cp/sematics.c (expand_body): Remove unnecesary import_export_decl
600         call, DECL_EXTERNAL checks and current_function_decl saving.
602 2007-09-05  Paolo Carlini  <pcarlini@suse.de>
604         PR c++/29731 (again)
605         * parser.c (cp_parser_primary_expression): Return error_mark_node
606         when a statement-expression is found in a template-argument list.
608 2007-09-04  Jason Merrill  <jason@redhat.com>
610         * except.c (initialize_handler_parm): Use
611         fold_build_cleanup_point_expr.
613         PR c++/31419
614         * call.c (reference_binding): Don't look for user-defined conversions
615         to the same type.
617         PR c++/31411
618         * except.c (initialize_handler_parm): Put a CLEANUP_POINT_EXPR inside
619         the MUST_NOT_THROW_EXPR.
621 2007-09-04  Richard Sandiford  <richard@codesourcery.com>
623         * decl.c (cp_finish_decl): Call determine_visibility before
624         make_rtl_for_nonlocal_decl.
626 2007-09-04  Jason Merrill  <jason@redhat.com>
628         PR c++/14032
629         * pt.c (most_specialized_class): Substitute outer template
630         arguments into the arguments of a member template partial
631         specialization.
632         (strip_innermost_template_args): New fn.
634 2007-09-03  Daniel Jacobowitz  <dan@codesourcery.com>
636         * Make-lang.in (g++spec.o): Remove SHLIB_MULTILIB.
638 2007-09-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
640         * call.c (name_as_c_string): Supply a TYPE for CONST_CAST.
641         * decl.c (cp_make_fname_decl): Likewise,
642         * parser.c (cp_parser_string_literal): Likewise,
643         * tree.c (pod_type_p, zero_init_p): Use CONST_CAST_TREE.
644         * typeck.c (cp_type_quals, cp_type_readonly, cp_has_mutable_p):
645         Likewise,
647 2007-09-02  Paolo Carlini  <pcarlini@suse.de>
649         PR c++/33208
650         * typeck.c (build_unary_op): Fix error message for
651         Boolean expression as operand to operator--.
653 2007-09-01  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
655         * tree.c (pod_type_p, zero_init_p): Use strip_array_types.
656         * typeck.c (cp_type_quals, cp_type_readonly, cp_has_mutable_p):
657         Likewise.
659 2007-08-31 Douglas Gregor <doug.gregor@gmail.com>
661         PR c++/32597
662         * init.c (build_default_init): Make extern.
663         * cp-tree.h (build_default_init): Declare here.
664         * pt.c (tsubst_expr): When the instantiation of the initializer of
665         a variable results in an empty list, default-initialize the
666         variable.
667         (tsubst_copy_and_build): When the instantiation of the initializer
668         in a new expression results in an empty initializer list,
669         default-initialize it.
671 2007-08-31  Douglas Gregor  <doug.gregor@gmail.com>
673         * mangle.c (write_type): Change mangling of rvalue reference from
674         `RR' to `O'. 
676 2007-08-31  Jakub Jelinek  <jakub@redhat.com>
678         * decl.c (duplicate_decls): Remove duplicated line.
680 2007-08-31  Paolo Carlini  <pcarlini@suse.de>
682         PR c++/33210
683         * cxx-pretty-print.c (pp_cxx_unqualified_id): Deal with
684         BOUND_TEMPLATE_TEMPLATE_PARM.
686 2007-08-31  Paolo Carlini  <pcarlini@suse.de>
688         PR c++/32113
689         * search.c (lookup_member): Check the name argument for
690         error_mark_node.
692 2007-08-31  Paolo Carlini  <pcarlini@suse.de>
694         PR c++/33212
695         * parser.c (cp_parser_trait_expr): Check rerurn value of
696         cp_parser_type_id.
698 2007-08-30  Ollie Wild  <aaw@google.com>
700         * cvt.c (cp_convert_to_pointer): Remove force parameter. Call
701         convert_ptrmem for pointer to member conversions.
702         (convert_to_pointer_force): Update cp_convert_to_pointer call.
703         (ocp_convert): Update cp_convert_to_pointer call.
704         * typeck.c (convert_ptrmem): Add conditional for null pointers to
705         members.
706         (build_static_cast_1): Check can_convert for conversions in either
707         direction.
708         (get_delta_difference_1): New function.
709         (get_delta_difference): Refactor to call get_delta_difference_1.
711 2007-08-30  Jakub Jelinek  <jakub@redhat.com>
713         * decl.c (start_preparsed_function): Set
714         DECL_DISREGARD_INLINE_LIMITS for GNU_INLINE_P functions.
716 2007-08-28  Paolo Carlini  <pcarlini@suse.de>
718         PR c++/33209
719         * error.c (dump_expr): Deal with TEMPLATE_TYPE_PARM and
720         BOUND_TEMPLATE_TEMPLATE_PARM.
722 2007-08-28  Jakub Jelinek  <jakub@redhat.com>
724         PR c++/32596
725         PR c++/32400
726         * pt.c (check_explicit_specialization): Set DECL_INTERFACE_KNOWN
727         and DECL_NOT_REALLY_EXTERN if tmpl_func is not public.
729 2007-08-27  Jason Merrill  <jason@redhat.com>
731         PR c++/29000
732         * pt.c (build_non_dependent_expr, type_dependent_expression_p): 
733         Look inside STMT_EXPR.
734         * semantics.c (stmt_expr_value_expr): New fn.
735         * cp-tree.h: Declare it.
737         PR c++/28558
738         * decl.c (groktypename): Ignore attributes applied to class type.
740 2007-08-28  Richard Guenther  <rguenther@suse.de>
742         * decl.c (duplicate_decls): Merge DECL_DISREGARD_INLINE_LIMITS.
744 2007-08-28  Gabriel Dos Reis  <gdr@integrable-solutions.net>
745         
746         * error.c (dump_expr): Handle COMPLEX_CST.
747         * cxx-pretty-print.c (pp_cxx_primary_expression): Likewise.
748         (pp_cxx_expression): Likewise.
750 2007-08-27  Alexandre Oliva  <aoliva@redhat.com>
752         * decl.c (GNU_INLINE_P): New.
753         (duplicate_decls): Handle gnu_inline.  Merge attributes and
754         some flags in overriding definitions.
755         (redeclaration_error_message): Handle gnu_inline.
756         (start_preparsed_function): Likewise.
758 2007-08-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
760         * call.c (sufficient_parms_p): Constify.
761         * class.c (same_signature_p): Likewise.
762         * cp-gimplify.c (is_invisiref_parm,
763         cxx_omp_privatize_by_reference): Likewise.
764         * cp-objcp-common.c (has_c_linkage): Likewise.
765         * cp-tree.h (NON_THUNK_FUNCTION_CHECK, THUNK_FUNCTION_CHECK,
766         sufficient_parms_p, same_signature_p, copy_fn_p, move_fn_p,
767         grok_ctor_properties, nothrow_libfn_p, skip_artificial_parms_for,
768         num_artificial_parms_for, comp_template_parms,
769         template_parameter_pack_p, any_dependent_template_arguments_p,
770         any_type_dependent_arguments_p, any_value_dependent_elements_p,
771         repo_export_class_p, cxx_omp_privatize_by_reference, pod_type_p,
772         zero_init_p, member_p, cp_lvalue_kind,
773         builtin_valid_in_constant_expr_p, decl_anon_ns_mem_p,
774         varargs_function_p, is_dummy_object, special_function_kind,
775         string_conv_p, type_unknown_p, comp_except_specs, compparms,
776         comp_cv_qualification, is_bitfield_expr_with_lowered_type,
777         unlowered_expr_type, ptr_reasonably_similar, cp_type_readonly,
778         cp_has_mutable_p, at_least_as_qualified_p,
779         invalid_nonstatic_memfn_p, lvalue_or_else, lvalue_p): Likewise.
780         * decl.c (copy_fn_p, move_fn_p, grok_ctor_properties): Likewise.
781         * except.c (nothrow_libfn_p): Likewise.
782         * method.c (skip_artificial_parms_for, num_artificial_parms_for):
783         Likewise.
784         * pt.c (comp_template_parms, template_parameter_pack_p,
785         any_type_dependent_arguments_p, any_value_dependent_elements_p,
786         any_dependent_template_arguments_p): Likewise.
787         * repo.c (repo_export_class_p): Likewise.
788         * semantics.c (anon_aggr_type_p): Likewise.
789         * tree.c (lvalue_p_1, real_lvalue_p, lvalue_p,
790         builtin_valid_in_constant_expr_p, decl_anon_ns_mem_p,
791         varargs_function_p, member_p, is_dummy_object, pod_type_p,
792         zero_init_p, special_function_p): Likewise.
793         * typeck.c (comp_array_types, type_unknown_p, comp_except_specs,
794         comp_array_types, at_least_as_qualified_p, comp_cv_qualification,
795         compparms, invalid_nonstatic_memfn_p,
796         is_bitfield_expr_with_lowered_type, unlowered_expr_type,
797         string_conv_p, ptr_reasonably_similar, cp_type_readonly,
798         cp_has_mutable_p, lvalue_or_else): Likewise.
800 2007-08-25  Paolo Bonzini  <bonzini@gnu.org>
802         * decl.c (cp_tree_node_structure): Kill TINST_LEVEL case.
803         * cp-objcp-common.c (cp_tree_size): Ditto.
804         * tree.c (cp_walk_subtrees): Ditto
805         * cp-tree.def (TINST_LEVEL): Go away.
806         * cp-tree.h (struct tinst_level_s): Rename to struct tinst_level,
807         move together with other non-tree structs.
808         (enum cp_tree_node_structure_enum): Nuke TS_CP_TINST_LEVEL.
809         (union lang_tree_node): Eliminate tinst_level field.
810         (TINST_DECL, TINST_LOCATION, TINST_IN_SYSTEM_HEADER_P): Annihilate.
811         (current_instantiation, outermost_tinst_level): Return
812         a "struct tinst_level *".
814         * error.c (print_instantiation_partial_context): Change second
815         parameter to a "struct tinst_level *".  Replace accessor macros
816         with field access.
817         (print_instantiation_full_context): Likewise.
818         * lex.c (in_main_input_context): Likewise.
820         * pt.c (struct pending_templates): New.
821         (pending_templates, last_pending_template): Use it as a type.
822         (current_tinst_level): Change typo to "struct tinst_level *"
823         (reopen_tinst_level): Accept "struct tinst_level *", return decl.
824         (add_pending_template): Construct a "struct pending_template".
825         Replace TINST_LEVEL accessor macros with field access.
826         (push_tinst_level): Likewise, using GGC_NEW instead of make_node.
827         (pop_tinst_level): Likewise.
828         (instantiate_pending_templates): Likewise.  Factor common code used
829         when an instantiation has been done.
830         (outermost_tinst_level): Replace tree_last with loop.
831         (current_instantiation): Return a "struct tinst_level *".
833 2007-08-24  Ollie Wild  <aaw@google.com>
835         * name-lookup.c (add_decl_to_level): Remove addition to vtables chain.
836         * name-lookup.h (cp_binding_level): Remove vtables member.
838 2007-08-24  Richard Guenther  <rguenther@suse.de>
840         * tree.c (cp_cannot_inline_tree_fn): Remove.
841         * cp-tree.h (cp_cannot_inline_tree_fn): Likewise.
842         * cp-objcp-common.h (LANG_HOOKS_TREE_INLINING_CANNOT_INLINE_TREE_FN):
843         Remove define.
845 2007-08-24  Jakub Jelinek  <jakub@redhat.com>
847         PR c++/32567
848         * typeck.c (build_unary_op) <case PREINCREMENT_EXPR>: Return
849         error_mark_node right away if build_expr_type_conversion
850         returned it.
852         PR c++/32898
853         * name-lookup.c (set_decl_namespace): lookup_qualified_name failure
854         is error_mark_node rather than NULL_TREE.
855         * pt.c (check_explicit_specialization): Likewise.
857         PR c++/31941
858         * error.c (resolve_virtual_fun_from_obj_type_ref): Handle
859         TARGET_VTABLE_USES_DESCRIPTORS targets properly.
861 2007-08-22  Jason Merrill  <jason@redhat.com>
863         PR c++/29365
864         * pt.c (outermost_tinst_level): New function.
865         * lex.c (in_main_input_context): New function.
866         * cp-tree.h: Declare it.
867         * decl2.c (constrain_class_visibility): Use it to avoid warning
868         about uses of the anonymous namespace in the main input file.
870 2007-08-21  Jakub Jelinek  <jakub@redhat.com>
872         * init.c (build_new_1): Use get_target_expr instead of save_expr.
874 2007-08-20  Pawel Sikora  <pluto@pld-linux.org>
876         PR c++/7302
877         * class.c (finish_struct_1): Warn when a class has virtual
878         functions and accessible non-virtual destructor.
880 2007-08-20  Richard Guenther  <rguenther@suse.de>
882         PR c++/22369
883         PR c++/22451
884         * call.c (build_new_method_call): Convert initializer to
885         the basetype.
886         * init.c (build_aggr_init): Do not fiddle with types.
887         (build_vec_delete_1): Use correct type for POINTER_PLUS_EXPR.
888         * except.c (build_throw): Do not drop qualifiers for the
889         pointer type.
890         * typeck.c (get_member_function_from_ptrfunc): Do not
891         fiddle with types, instead convert.
892         (build_ptrmemfunc1): Convert to the target type for
893         initialization.
894         (gfc_trans_allocate): Convert result to target type.
895         * cp-objcp-common.c (cxx_get_alias_set): Pointers to
896         pointer-to-member structures shall have alias set zero as well.
898 2007-08-20  Richard Guenther  <rguenther@suse.de>
900         * cp-objcp-common.h (LANG_HOOKS_TREE_INLINING_AUTO_VAR_IN_FN_P):
901         Remove.
902         * cp-tree.h (cp_auto_var_in_fn_p): Remove.
903         (nonstatic_local_decl_p): Likewise.
904         * tree.c (cp_auto_var_in_fn_p): Remove.
905         * decl.c (nonstatic_local_decl_p): Remove.
907 2007-08-20  Richard Guenther  <rguenther@suse.de>
909         * cp-objcp-common.h (LANG_HOOKS_TREE_INLINING_WALK_SUBTREES):
910         Remove define.
911         * tree.h (cp_walk_tree): New define to walk_tree_1 with
912         cp_walk_subtrees lh parameter.
913         (cp_walk_tree_without_duplicates): New define to
914         walk_tree_without_duplicates_1 with cp_walk_subtrees lh parameter.
915         * tree.c (count_trees): Call
916         cp_walk_tree_without_duplicates.
917         (verify_stmt_tree): Call cp_walk_tree.
918         (break_out_target_exprs): Likewise.
919         (WALK_SUBTREE): Likewise.
920         * cp-gimplify.c (cp_genericize): Likewise.
921         * cp-pt.c (find_parameter_packs_r): Likewise.
922         (uses_parameter_packs): Likewise.
923         (make_pack_expansion): Likewise.
924         (check_for_bare_parameter_packs): Likewise.
925         (for_each_template_parm): Likewise.
926         * decl.c (check_default_argument): Call
927         cp_walk_tree_without_duplicates.
928         * except.c (build_throw): Likewise.
929         * decl2.c (type_visibility): Likewise.
930         * semantics.c (expand_or_defer_fn): Likewise.
931         (finalize_nrv): Call cp_walk_tree.
933 2007-08-20  Jakub Jelinek  <jakub@redhat.com>
935         PR c++/33025
936         * init.c (build_new_1): Rename placement_var variable to placement_expr.
937         Initialize it with save_expr rather than get_temp_regvar.
939 2007-08-17  Andrew Pinski  <andrew_pinski@playstation.sony.com>
941         PR c++/28989
942         * tree.c (lvalue_p_1 <case SAVE_EXPR>): SAVE_EXPRs are never
943         lvalues.
945 2007-08-17  Ollie Wild  <aaw@google.com>
947         PR c++/31749
948         * name-lookup.c (do_nonmember_using_decl): Shift implicit type
949         declarations into appropriate slots for comparison.  Fix type
950         comparison.
952 2007-08-17  Paolo Carlini  <pcarlini@suse.de>
954         PR c++/32112
955         * error.c (dump_decl): Deal with UNBOUND_CLASS_TEMPLATE.
956         * cxx-pretty-print.c (pp_cxx_unqualified_id): Likewise.
958 2007-08-17  Paolo Carlini  <pcarlini@suse.de>
960         PR c++/32870
961         * parser.c (cp_parser_class_head): Improve error message.
963 2007-08-16  Seongbae Park  <seongbae.park@gmail.com>
965         * pt.c (instantiate_decl): Set input_location
966         for the function end.
968 2007-08-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
970         * cp-objcp-common.c (cxx_warn_unused_global_decl, cp_expr_size):
971         Constify.
972         * cp-tree.h (local_variable_p, nonstatic_local_decl_p,
973         class_tmpl_impl_spec_p, cp_auto_var_in_fn_p, cp_type_quals,
974         cxx_incomplete_type_diagnostic, cxx_incomplete_type_error,
975         cxx_warn_unused_global_decl, cp_expr_size): Likewise.
976         * decl.c (local_variable_p, nonstatic_local_decl_p): Likewise.
977         * tree.c (class_tmpl_impl_spec_p, cp_auto_var_in_fn_p): Likewise.
978         * typeck.c (cp_type_quals): Likewise.
979         * typeck2.c (cxx_incomplete_type_diagnostic,
980         cxx_incomplete_type_error): Likewise.
982 2007-08-16  Paolo Carlini  <pcarlini@suse.de>
984         PR c++/31132
985         * pt.c (tsubst_friend_function): When check_classfn
986         returns error_mark_node likewise return it.
988 2007-08-15  Jakub Jelinek  <jakub@redhat.com>
990         PR c++/32992
991         * typeck.c (check_return_expr): Don't NRV optimize vars in
992         anonymous unions.
993         * decl.c (finish_function): Comment fix.
995 2007-08-15  Paolo Carlini  <pcarlini@suse.de>
997         PR c++/33035
998         * pt.c (push_template_decl_real): Depending on TYPE_P
999         use either TYPE_CONTEXT or DECL_CONTEXT.
1001 2007-08-14  Mark Mitchell  <mark@codesourcery.com>
1003         * semantics.c (finish_omp_clauses): Strip a NOP_EXPR if
1004         constructors and destructors return this.
1006 2007-08-14  Paolo Carlini  <pcarlini@suse.de>
1008         PR c++/27211
1009         * decl2.c (check_classfn): Return error_mark_node in case of error;
1010         in that case, do not call add_method.
1011         * decl.c (start_decl): Deal with check_classfn returning
1012         error_mark_node.
1013         (grokfndecl): Likewise.
1014         * pt.c (tsubst_friend_function): Likewise.
1016 2007-08-14  Andrew Pinski  <pinskia@gmail.com>
1018         PR c++/30428
1019         * typeck.c (build_binary_op): Disallow vector float types with
1020         BIT_IOR_EXPR, BIT_AND_EXPR, and BIT_XOR_EXPR.
1022 2007-08-11  Ian Lance Taylor  <iant@google.com>
1024         * cp-objcp-common.c (cxx_get_alias_set): Change return type to
1025         alias_set_type.
1026         * cp/cp-tree.h (cxx_get_alias_set): Update declaration.
1028 2007-08-10  Ollie Wild  <aaw@google.com>
1030         * name-lookup.c (do_nonmember_using_decl): Print an error for ambiguous
1031         type lookups.
1032         (ambiguous_decl): Construct tree of ambiguous types.  Remove extaneous
1033         function parameter.
1034         (unqualified_namespace_lookup): Fix ambiguous_decl call.
1035         (lookup_using_namespace): Fix ambiguous_decl call.
1036         (qualified_lookup_using_namespace): Fix ambiguous_decl call.
1038 2007-08-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1040         * call.c (name_as_c_string): Use CONST_CAST.
1041         * decl.c (build_decl): Likewise.
1042         * parser.c (cp_parser_string_literal): Likewise.
1044 2007-08-10  Paolo Carlini  <pcarlini@suse.de>
1046         PR c++/17763
1047         * error.c (dump_expr): Consistently use the *_cxx_*
1048         variants of the pretty-print functions.
1050 2007-08-10  Paolo Carlini  <pcarlini@suse.de>
1052         PR c++/22256
1053         * decl.c (check_special_function_return_type): Just error
1054         on return type specified for conversion operator.
1056 2007-08-09  Daniel Berlin  <dberlin@dberlin.org>
1058         * typeck2.c (readonly_error): Handle general expressions.
1059         * error.c (dump_expr): Handle POINTER_PLUS_EXPR
1061 2007-08-06  Dan Hipschman  <dsh@google.com>
1063         * method.c (use_thunk): Use DECL_NAME instead of DECL_RTL to
1064         access function name.
1066 2007-08-04  Alfred Minarik  <a.minarik@aon.at>
1068         PR pch/13676
1069         * lang-specs.h: Add .hp, .hxx, .hpp, .h, .HPP, .tcc as c++ header.
1070         * g++spec.c (lang_specific_driver): Check them.
1072 2007-08-06  Paolo Carlini  <pcarlini@suse.de>
1074         PR c++/19532
1075         * pt.c (inline_needs_template_parms): Fix comment; change return type
1076         to bool.
1078 2007-08-05  Volker Reichelt  <v.reichelt@netcologne.de>
1080         Revert:
1081         2007-03-26  Dirk Mueller  <dmueller@suse.de>
1083         * parser.c (cp_parser_member_declaration): Pedwarn
1084         about stray semicolons after member declarations.
1086 2007-08-02  Lee Millward  <lee.millward@gmail.com>
1088         PR c++/30849
1089         PR c++/30850
1090         PR c++/30851
1091         * parser.c (cp_parser_asm_definition): Detect and discard asm
1092         statements with invalid inputs or outputs.
1093         (cp_parser_asm_operand_list): Return error mark node if any
1094         of the operands are invalid. Adjust documentation.
1095         
1096 2007-08-02  Nick Clifton  <nickc@redhat.com>
1098         * typeck.c: Change copyright header to refer to version 3 of the
1099         GNU General Public License and to point readers at the COPYING3
1100         file and the FSF's license web page.
1101         * optimize.c, lang-specs.h, init.c, class.c, repo.c, decl.c,
1102         config-lang.in, cp-tree.def, call.c, decl.h, ptree.c,
1103         Make-lang.in, method.c, rtti.c, cp-objcp-common.c, g++spec.c,
1104         cp-objcp-common.h, except.c, error.c, operators.def, cvt.c,
1105         tree.c, mangle.c, cp-tree.h, dump.c, search.c, friend.c, expr.c,
1106         cp-gimplify.c, cxx-pretty-print.c, cp-lang.c, typeck2.c, pt.c,
1107         cxx-pretty-print.h, semantics.c, name-lookup.c, lex.c, decl2.c,
1108         name-lookup.h, parser.c: Likewise.
1110 2007-08-01  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1112         PR middle-end/32668
1113         * call.c (magic_varargs_p): Honor the "type generic" attribute.
1115 2007-07-30  Paolo Carlini  <pcarlini@suse.de>
1117         PR c++/32108
1118         * semantics.c (finish_label_stmt): Reject the __label__
1119         extension outside function scopes.
1121 2007-07-29  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1123         * parser.c (eof_token): Un-constify.
1124         (cp_lexer_new_main, cp_lexer_new_from_tokens, VEC_alloc,
1125         cp_lexer_consume_token, cp_lexer_purge_token): Remove spurious
1126         casts.
1128 2007-07-28  Kazu Hirata  <kazu@codesourcery.com>
1130         * pt.c, tree.c, typeck2.c: Fix comment typos.
1132 2007-07-28  Simon Martin  <simartin@users.sourceforge.net>
1133             Mark Mitchell  <mark@codesourcery.com>
1135         PR c++/30917
1136         * name-lookup.c (lookup_name_real): Non namespace-scope bindings can be
1137         hidden due to friend declarations in local classes.
1139 2007-07-27  Douglas Gregor  <doug.gregor@gmail.com>
1141         * typeck.c (structural_comptypes): Compare DECLTYPE_TYPE nodes.
1142         * cp-tree.def (DECLTYPE_TYPE): New.
1143         * error.c (dump_type): Dump DECLTYPE_TYPE nodes.
1144         (dump_type_prefix): Ditto.
1145         (dump_type_suffix): Ditto.
1146         * tree.c (DECLTYPE_TYPE): Walk DECLTYPE_TYPE nodes.
1147         * mangle.c (write_type): Handle DECLTYPE_TYPE.
1148         * cp-tree.h (IS_AGGR_TYPE): DECLTYPE_TYPE nodes can be aggregate
1149         types.
1150         (DECLTYPE_TYPE_EXPR): New.
1151         (DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P): New.
1152         (finish_declared_type): Declare.
1153         * cxx-pretty-print.c (pp_cxx_type_specifier_seq): Print
1154         DECLTYPE_TYPE nodes.
1155         (pp_cxx_type_id): Ditto.
1156         * pt.c (for_each_template_parm_r): Walk DECLTYPE_TYPE children.
1157         (tsubst): Substitute into a DECLTYPE_TYPE node.
1158         (tsubst_copy): Ditto.
1159         (unify): Cannot deduce anything from TYPEOF_TYPE or DECLTYPE_TYPE
1160         nodes.
1161         (dependent_type_p_r): DECLTYPE_TYPE types are always dependent.
1162         * semantics.c (finish_typeof): TYPEOF_TYPE types need to use
1163         structural equality (because we can't hash the expressions).
1164         (finish_declared_type): New.
1165         * lex.c (reswords): Add "decltype" keyword.
1166         * parser.c cp_lexer_next_token_is_decl_specifier_keyword
1167         (cp_parser_postfix_expression): Add member_access_only_p to
1168         restrict postfix expression to member access expressions.
1169         (cp_parser_unary_expression): Update call to
1170         cp_parser_postfix_expression to reflect new parameter.
1171         (cp_parser_declared_type): New.
1172         (cp_parser_simple_type_specifier): Parse decltype types.
1174 2007-07-27  Mark Mitchell  <mark@codesourcery.com>
1176         PR c++/32346
1177         * call.c (convert_for_arg_passing): Only widen bitfields to their
1178         declared types if necessary.
1180 2007-07-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1182         * parser.c (cp_parser_string_literal, cp_parser_sizeof_operand):
1183         Constify.
1185 2007-07-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1187         * decl.c (typename_hash, typename_compare): Constify.
1188         * mangle.c (hash_type, compare_type): Likewise.
1189         * pt.c (eq_local_specializations, hash_local_specialization):
1190         Likewise.
1191         * tree.c (cplus_array_hash, cplus_array_compare, list_hash_eq,
1192         list_hash): Likewise.
1193         * typeck2.c (pat_compare): Likewise.
1195 2007-07-24  Nathan Sidwell  <nathan@codesourcery.com>
1197         * method.c (implicitly_declare_fn): Increase alignment if member
1198         function pointer format requires it.
1200 2007-07-24  Paolo Carlini  <pcarlini@suse.de>
1202         PR c++/29001
1203         * typeck.c (check_return_expr): Do not pass a null argument
1204         to null_ptr_cst_p.
1206 2007-07-24  Paolo Carlini  <pcarlini@suse.de>
1208         PR c++/32561
1209         * decl.c (redeclaration_error_message): Call DECL_ANON_UNION_VAR_P
1210         only on VAR_DECL.
1212 2007-07-22  Nathan Sidwell  <nathan@codesourcery.com>
1214         PR c++/32839
1215         * typeck.c (convert_arguments): Only use default args if we have
1216         a function decl.
1218         PR c++/30818
1219         * typeck.c (structural_comptypes): No need to check
1220         resolve_typename_type return value here.
1221         * cp-tree.h (TYPENAME_IS_RESOLVING_P): New.
1222         * pt.c (resolve_typename_type): Follow typename typedefs.  Return
1223         original type rather than error_mark_node in case of failure.
1224         * parser.c (cp_parser_nested_name_specifier_opt): Adjust
1225         resolve_typename_type result check.
1226         (cp_parser_direct_declarator, cp_parser_head,
1227         cp_parser_constructor_declarator_p): Likewise.
1229 2007-07-12  Kazu Hirata  <kazu@codesourcery.com>
1231         * pt.c (template_parms_variadic_p): Remove.
1232         * cp-tree.h: Remove the prototype for template_parms_variadic_p.
1234 2007-07-12  Jakub Jelinek  <jakub@redhat.com>
1236         PR c++/30854
1237         * error.c (dump_expr) <case AGGR_INIT_EXPR>: Pass true as last
1238         argument to dump_aggr_init_expr_args instead of false.
1240 2007-07-11  Douglas Gregor  <doug.gregor@gmail.com>
1242         * typeck.c (comptypes): When USE_CANONICAL_TYPES, use the
1243         canonical types; otherwise, fall back to structural type
1244         comparisons. If ENABLE_CHECKING and USE_CANONICAL_TYPES, give an
1245         internal compiler error if the canonical types are wrong.
1246         
1247 2007-07-11  Paolo Carlini  <pcarlini@suse.de>
1249         PR c++/32560
1250         * parser.c (cp_parser_make_indirect_declarator): When the
1251         the code argument is ERROR_MARK return cp_error_declarator.
1253 2007-07-09  Geoffrey Keating  <geoffk@apple.com>
1255         PR 32617
1256         * decl.c (cxx_init_decl_processing): Don't set
1257         force_align_functions_log.
1258         (grokfndecl): Honour ptrmemfunc_vbit_in_pfn.
1259         * typeck.c (cxx_alignof_expr): When alignof is used on a plain
1260         FUNCTION_DECL, return its alignment.
1262 2007-07-09  Richard Guenther  <rguenther@suse.de>
1264         * decl.c (start_preparsed_function): Do not promote return type.
1266 2007-07-08  Paolo Carlini  <pcarlini@suse.de>
1268         PR c++/30535
1269         * pt.c (unify): Never pass error_mark_node to template_decl_level.
1271 2007-07-07  Mark Mitchell  <mark@codesourcery.com>
1273         PR c++/32232
1274         * pt.c (resolve_overloaded_unification): Robustify.  Return a
1275         bool, not an int.
1276         (type_unification_real): Adjust accordingly.
1278 2007-07-06  Richard Guenther  <rguenther@suse.de>
1280         * init.c (build_new_1): Use the correct pointer type.
1281         * typeck2.c (build_m_component_ref): Likewise.
1283 2007-07-05  Mark Mitchell  <mark@codesourcery.com>
1285         PR c++/32245
1286         * init.c (build_zero_init): Always build an initializer for
1287         non-static storage.
1288         * typeck2.c (build_functional_cast): Use build_zero_init.
1290         PR c++/32251
1291         * init.c (build_new_1): Always pass the allocation function to
1292         build_op_delete_call.
1293         * call.c (build_op_delete_call): Handle operator delete with a
1294         variable-argument list.  Do not issue an error when no matching
1295         deallocation function is available for a new operator.
1297         PR c++/31992
1298         * cp-tree.h (any_value_dependent_elements_p): Declare it.
1299         * decl.c (value_dependent_init_p): New function.
1300         (cp_finish_decl): Use it.
1301         * pt.c (value_dependent_expression_p): Use
1302         any_value_dependent_elements_p.
1303         * parser.c (cp_parser_primary_expression): Add comment about
1304         treating dependent qualified names as integral
1305         constant-expressions.
1307 2007-07-04  Douglas Gregor  <doug.gregor@gmail.com>
1309         * decl.c (build_ptrmemfunc_type): Always use structural equality
1310         tests when comparing pointer-to-member-function types, because the
1311         handling of TYPE_GET_PTRMEMFUNC_TYPE currently defeats canonical
1312         types.
1313         
1314 2007-07-03  Mark Mitchell  <mark@codesourcery.com>
1316         * init.c (build_new): Tweak comment.
1318 2007-06-29  Dave Brolley  <brolley@redhat.com>
1320         PR c++/31743
1321         * parser.c (cp_parser_new_type_id): Don't reduce a named array
1322         type to its base type and number of elements here.
1323         * init.c (build_new): Call complete_type_or_else to ensure that the
1324         type is complete and to issue a diagnostic if it is not.
1325         (build_new_1): Don't call complete_type_or_else here.
1327 2007-07-03  Richard Guenther  <rguenther@suse.de>
1329         PR c++/32609
1330         * class.c (fixed_type_or_null): Re-lookup the hashtable slot
1331         after recursing.
1333 2007-07-02  Simon Baldwin  <simonb@google.com>
1335         * parser.c (cp_parser_elaborated_type_specifier): Added a warning
1336         for inner-style nested forward declarations that don't declare
1337         anything useful.
1339 2007-07-02  Jakub Jelinek  <jakub@redhat.com>
1341         PR c++/31748
1342         * semantics.c (finish_omp_clauses): Use %qD instead of %qE for
1343         DECL_P in not a variable and appears more than once error messages.
1345 2007-07-01  Ollie Wild  <aaw@google.com>
1347         * name-lookup.c (ambiguous_decl): Fix case when new->value is hidden.
1348         (select_decl): Remove function.
1349         (unqualified_namespace_lookup): Populate binding by calling
1350         ambiguous_decl.  Remove select_decl call.
1351         (lookup_qualified_name): Remove select_decl call.
1352         * decl.c (lookup_and_check_tag): Check for ambiguous references.
1353         * parser.c (cp_parser_elaborated_type_specifier): Skip redundant error
1354         generation when name lookup is ambiguous.
1356 2007-06-29  Douglas Gregor  <doug.gregor@gmail.com>
1358         PR c++/31724
1359         * init.c (build_new_1): Use structural equality on the copy of the
1360         array type.
1362 2007-06-28  Geoffrey Keating  <geoffk@apple.com>
1364         * decl2.c (determine_visibility): Implement
1365         flag_visibility_ms_compat effect on type info.
1366         * decl.c (cxx_init_decl_processing): Implement
1367         global effect of flag_visibility_ms_compat.
1369 2007-06-28  Geoffrey Keating  <geoffk@apple.com>
1371         * decl2.c (start_objects): Mark constructor-running function
1372         as artificial.
1374 2007-06-26  Simon Martin  <simartin@users.sourceforge.net>
1376         PR c++/32111
1377         * decl.c (grokdeclarator): Reset friendp for member functions declared
1378         friend of their own class.
1380 2007-06-23  Mark Mitchell  <mark@codesourcery.com>
1382         * decl2.c (determine_visibility): Don't look for dllexport here.
1383         (determine_visibility_from_class): Tidy.
1385 2007-06-18  Simon Baldwin <simonb@google.com>
1387         PR c++/31923
1388         * parser.c (cp_parser_single_declaration): Added check for storage
1389         class other than sc_none in parsed declaration, and a flag to indicate
1390         if the call is part of an explicit template specialization parse.
1391         * (cp_parser_explicit_specialization): Specialization check flag added
1392         to call to cp_parser_single_declaration(), set true.
1393         * (cp_parser_template_declaration_after_export): Specialization check
1394         flag added to call to cp_parser_single_declaration(), set false.
1395         * pt.c (check_explicit_specialization): Added code to copy visiblity
1396         and linkage from the templated function to the explicit specialization.
1398 2007-06-15  Andrew Pinski  <andrew_pinski@playstation.sony.com>
1400         * typeck.c (build_binary_op): For templates build the
1401         expression in pieces to avoid the assert in build2_stat.
1402         (get_member_function_from_ptrfunc):
1403         Change over to using POINTER_PLUS_EXPR and convert
1404         the second operand to sizetype.
1405         * typeck2.c (build_m_component_ref):  Likewise.
1406         * init.c (expand_virtual_init): Create a POINTER_PLUS_EXPR
1407         instead of PLUS_EXPR for pointers.
1408         (build_new_1): Likewise.
1409         (build_vec_delete_1): Likewise.
1410         (build_vec_delete): Likewise.
1411         * class.c (build_base_path): Likewise.
1412         (build_base_path): Likewise.
1413         (convert_to_base_statically): Likewise.
1414         (fixed_type_or_null): Handle POINTER_PLUS_EXPR.
1415         (get_vtbl_decl_for_binfo): Handle POINTER_PLUS_EXPR
1416         instead of PLUS_EXPR.
1417         (dfs_accumulate_vtbl_inits): Create a POINTER_PLUS_EXPR
1418         instead of PLUS_EXPR for pointers.
1419         * call.c (build_special_member_call): Likewise.
1420         * rtti.c (build_headof): Likewise.
1421         Use sizetype instead of ptrdiff_type_node.
1422         (tinfo_base_init): Create a POINTER_PLUS_EXPR
1423         instead of PLUS_EXPR for pointers.
1424         * except.c (expand_start_catch_block):  Do a
1425         NEGATIVE and then a POINTER_PLUS_EXPR instead
1426         of a MINUS_EXPR.
1427         * cp-gimplify.c (cxx_omp_clause_apply_fn): Convert
1428         PLUS_EXPR on pointer types over to use
1429         POINTER_PLUS_EXPR and remove the conversion
1430         to the pointer types.
1431         * method.c (thunk_adjust): Use POINTER_PLUS_EXPR for
1432         adding to a pointer type. Use size_int instead of
1433         ssize_int. Convert the index to sizetype before
1434         adding it to the pointer.
1436 2007-06-15  Mark Mitchell  <mark@codesourcery.com>
1438         * cp-tree.h (DECL_VAR_MARKED_P): Remove.
1439         (DECL_ANON_UNION_VAR_P): New macro.
1440         * class.c (fixed_type_or_null): Tidy.  Use a hash table, rather
1441         than DECL_VAR_MARKED_P, to keep track of which variables we have
1442         seen.
1443         * decl.c (redeclaration_error_message): Complain about redeclaring
1444         anonymous union members at namespace scope.
1445         * decl2.c (build_anon_union_vars): Set DECL_ANON_UNION_VAR_P.
1447 2007-06-14  Geoff Keating  <geoffk@apple.com>
1449         * decl2.c (determine_visibility): Ensure that functions with
1450         hidden types as parameters are hidden.
1452         PR 31093
1453         * decl2.c (determine_visibility): Remove duplicate code for
1454         handling type info.
1456 2007-06-12  Ian Lance Taylor  <iant@google.com>
1458         PR libstdc++/29286
1459         * init.c (avoid_placement_new_aliasing): New static function.
1460         (build_new_1): Call it.
1462 2007-06-11  Rafael Avila de Espindola  <espindola@google.com>
1464         * cp-objcp-common.h (LANG_HOOKS_SIGNED_TYPE): Remove.
1465         (LANG_HOOKS_SIGNED_OR_UNSIGNED_TYPE): Remove.
1467 2007-06-08  Jakub Jelinek  <jakub@redhat.com>
1469         PR c++/32177
1470         * semantics.c (finish_omp_for): Call fold_build_cleanup_point_expr
1471         on init, the non-decl cond operand and increment value.
1473 2007-06-07  Simon Martin  <simartin@users.sourceforge.net>
1475         PR c++/30759
1476         * decl.c (check_initializer): Report an error when a brace enclosed
1477         initializer is used for a non-aggregate type in C++98.
1478         (redeclaration_error_message): Rewrote flag_cpp0x in terms of
1479         cxx_dialect.
1480         (grokdeclarator): Likewise.
1481         (move_fn_p): Likewise.
1482         * typeck.c (check_return_expr): Likewise.
1483         * call.c (reference_binding): Likewise.
1484         * error.c (cp_cpp_error): Likewise.
1485         * pt.c (check_default_tmpl_args): Likewise.
1486         (tsubst): Likewise.
1487         * lex.c (init_reswords): Likewise.
1488         * parser.c (p_parser_primary_expression): Likewise.
1489         (TOKEN_PRECEDENCE): Likewise.
1490         (cp_parser_init_declarator): Likewise.
1491         (cp_parser_ptr_operator): Likewise.
1492         (cp_parser_parameter_declaration): Likewise.
1493         (cp_parser_enclosed_template_argument_list): Likewise.
1494         (cp_parser_skip_to_end_of_template_parameter_list): Likewise.
1495         (cp_parser_next_token_ends_template_argument_p): Likewise.
1497 2007-06-04  Simon Baldwin  <simonb@google.com>
1499         * decl.c (grokdeclarator): Readability change.  Moved case labels
1500         into direct switch statement scope.
1502 2007-06-04  Paolo Carlini  <pcarlini@suse.de>
1504         * call.c (convert_like_real): Remove pointless code.
1506 2007-05-31  Mark Mitchell  <mark@codesourcery.com>
1508         * decl.c (get_atexit_fn_ptr_type): New function.
1509         (get_atexit_node): Use it.
1510         (start_cleanup_fn): Likewise.
1511         (register_dtor_fn): Use the object's destructor, instead of a
1512         separate cleanup function, where possible.
1513         * cp-tree.h (CPTI_ATEXIT_FN_PTR_TYPE): New enumerator.
1514         (atexit_fn_ptr_type_node): New macro.
1515         * decl2.c (build_cleanup): Use build_address.
1517 2007-05-31  Daniel Berlin  <dberlin@dberlin.org>
1519         * typeck.c (build_binary_op): Include types in error.
1521 2007-05-31  Jakub Jelinek  <jakub@redhat.com>
1523         PR c++/31806
1524         * decl.c (cp_finish_decl): Also clear was_readonly if a static var
1525         needs runtime initialization.
1527 2007-05-31  Paolo Carlini  <pcarlini@suse.de>
1529         PR c++/32158
1530         * semantics.c (finish_trait_expr): Complete the types.
1532 2007-05-30  Russell Yanofsky <russ@yanofsky.org>
1533             Douglas Gregor <doug.gregor@gmail.com>
1534             Pedro Lamarao <pedro.lamarao@mndfck.org>
1535             Howard Hinnant <howard.hinnant@gmail.com>
1537         PR c++/7412
1538         PR c++/29939
1539         * typeck.c (comptypes): Don't consider rvalue and lvalue
1540         reference types to be equivalent.
1541         (check_return_expr): Move from certain lvalues when returning
1542         them.
1543         * decl.c (grokdeclarator): Implement reference collapsing.
1544         (copy_fn_p): Don't consider constructors taking rvalue references
1545         to be copy constructors.
1546         (move_fn_p): New.
1547         * call.c (conversion): New "rvaluedness_matches_p" member.
1548         (convert_class_to_reference): Require reference type as first
1549         parameter instead of base type.
1550         (reference_binding): Add logic to handle rvalue references.
1551         (implicit_conversion): Update inaccurate comment.
1552         (convert_like_real): Disable creation of temporaries that are
1553         impossible to initialize for types with move constructors.
1554         (build_over_call): Elide move constructors when possible.
1555         (maybe_handle_implicit_object): Set "rvaluedness_matches_p".
1556         (maybe_handle_ref_bind): Return conversion instead of type node.
1557         (compare_ics): Add logic to use "rvaluedness_matches_p" values to
1558         determine preferred conversion sequences.
1559         * cp-tree.h (TYPE_REF_IS_RVALUE): New.
1560         (LOOKUP_PREFER_RVALUE): New.
1561         (DECL_MOVE_CONSTRUCTOR_P): New.
1562         (struct cp_declarator): Add "reference" member for reference
1563         types, with new "rvalue_ref" flag.
1564         (cp_build_reference_type): Declare.
1565         (move_fn_p): Declare.
1566         * error.c (dump_type_prefix): Format rvalue reference types
1567         correctly in error messages.
1568         * except.c (build_throw): Move from certain lvalues when
1569         throwing.
1570         * mangle.c (write_type): Mangle rvalue references differently
1571         than regular references.
1572         * parser.c (make_reference_declarator): Add boolean parameter for
1573         rvalue references.
1574         (cp_parser_make_indirect_declarator): New.
1575         (cp_parser_new_declarator_opt): Call
1576         cp_parser_make_indirect_declarator. 
1577         (cp_parser_conversion_declarator_opt): Ditto.
1578         (cp_parser_declarator): Ditto.
1579         (cp_parser_ptr_operator): Parse "&&" tokens into rvalue reference
1580         declarators.
1581         * pt.c (tsubst): Implement reference collapsing.
1582         (maybe_adjust_types_for_deduction): Implement special template
1583         parameter deduction rule for rvalue references.
1584         (type_unification_real): Update calls to
1585         maybe_adjust_types_for_deduction.
1586         (try_one_overload): Ditto.
1587         (unify_pack_expansion): Ditto.
1588         * tree.c (lvalue_p_1): Handle rvalue reference types.
1589         (cp_build_reference_type): New.
1591 2007-05-30  Jakub Jelinek  <jakub@redhat.com>
1593         PR c++/31809
1594         * decl.c (cp_finish_decl): Clear TREE_READONLY flag on TREE_STATIC
1595         variables that need runtime initialization.
1597 2007-05-28  Andrew Pinski  <Andrew_pinski@playstation.sony.com>
1599         PR c++/31339
1600         * typeck.c (build_unary_op <case PREINCREMENT_EXPR,
1601         case POSTINCREMENT_EXPR, case PREDECREMENT_EXPR,
1602         case POSTDECREMENT_EXPR>): Return the error_mark_node
1603         if either the real or imaginary parts would an
1604         error_mark_node.
1605         
1606 2007-05-25  Simon Martin  <simartin@users.sourceforge.net>
1607             Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
1609         PR c++/31745
1610         * parser.c (cp_parser_skip_to_closing_brace): Return true if the next
1611         token is a closing brace, false if there are no tokens left.
1612         (cp_parser_namespace_alias_definition): Only consume the next token if
1613         it is a closing brace.
1615         * parser.c (cp_parser_class_specifier): Likewise.
1617 2007-05-25  H.J. Lu  <hongjiu.lu@intel.com>
1619         * semantics.c (finish_member_declaration): Fix a typo in the
1620         last checkin.
1622 2007-05-25  Douglas Gregor <doug.gregor@gmail.com>
1624         PR c++/31431
1625         PR c++/31432
1626         PR c++/31434
1627         PR c++/31435
1628         PR c++/31437
1629         PR c++/31438
1630         PR c++/31442
1631         PR c++/31443
1632         PR c++/31444
1633         PR c++/31445
1634         * error.c (dump_type): Dump TYPE_ARGUMENT_PACK nodes.
1635         * cp-tree.h (check_for_bare_parameter_packs): Returns bool.
1636         * pt.c (check_for_bare_parameter_packs): Return bool indicated
1637         whether everything was okay. Fix indentation.
1638         (push_template_decl_real): Check for bare parameter packs in
1639         function parameters; where errors occur, mark the parameter types
1640         with ERROR_MARK_NODEs to avert ICEs.
1641         (coerce_template_parameter_pack): New.
1642         (coerce_template_parms): Moved parameter pack coercion into
1643         coerce_template_parameter_pack, and permit it anywhere in the
1644         template parameter list (not just at the end). Parameter and
1645         argument indices can vary (somewhat) separately now, so add
1646         PARM_IDX and ARG_IDX.
1647         (fn_type_unification): Don't set an argument pack as incomplete if
1648         no argument pack was deduced.
1649         (type_unification_real): If a type parameter is a parameter pack
1650         and has not otherwise been deduced, it will be deduced to an empty
1651         parameter pack.
1652         (more_specialized_fn): Use the actual lengths of the argument
1653         lists when comparing against expansions.
1654         * semantics.c (finish_member_declaration): If a field's type has
1655         bare parameter packs, error and set its type to ERROR_MARK_NODE.
1657 2007-05-24  Danny Smith  <dannysmith@users.sourceforge.net>
1659         PR target/27067
1660         * mangle.c (mangle_decl): Call targetm.mangle_decl_assembler_name.
1662 2007-05-22  Ollie Wild  <aaw@google.com>
1664         * name-lookup.c (ambiguous_decl): Adds check for hidden types.
1665         (unqualified_namespace_lookup): Adds check for hidden types.
1667 2007-05-22  Ollie Wild  <aaw@google.com>
1669         * decl.c (duplicate_decls): Verify namespace names are unique.
1671 2007-05-21  Mark Mitchell  <mark@codesourcery.com>
1673         * decl.c (cxx_maybe_build_cleanup): Handle
1674         __attribute__((cleanup)).
1676 2007-05-19  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
1678         * cvt.c (cp_convert_and_check): Don't check warnings if the
1679         conversion failed.
1681 2007-05-18  Geoffrey Keating  <geoffk@apple.com>
1683         * mangle.c (write_real_cst): Use 'unsigned long' for %lx.
1685 2007-05-14  Paolo Carlini  <pcarlini@suse.de>
1687         PR c++/29928
1688         * rtti.c (get_tinfo_decl_dynamic, get_typeid): Try to complete the
1689         type only if is a class type (5.2.8/4).
1691 2007-05-14  Rafael Avila de Espindola  <espindola@google.com>
1693         * cp-objcp-common.h (LANG_HOOKS_UNSIGNED_TYPE): Remove.
1694         * decl.c (grokdeclarator): Use unsigned_type_for instead of
1695         c_common_unsigned_type.
1697 2007-05-11  Silvius Rus  <rus@google.com>
1699         * cp/typeck.c (build_indirect_ref): Add call to
1700         strict_aliasing_warning.
1701         (build_reinterpret_cast_1): Condition call to
1702         strict_aliasing_warning. 
1704 2007-05-11  Jan Hubicka  <jh@suse.cz>
1706         * semantics.c (expand_or_defer_fn): Do not call c_record_cdtor_fn.
1707         * decl2.c (start_objects): ctors and dtors are no longer public.
1708         (cp_write_global_declarations): Do not call c_build_cdtor_fns.
1709         
1710 2007-05-07  Andrew Pinski  <andrew_pinski@playstation.sony.com>
1712         * typeck.c (build_unary_op): Remove code that used to
1713         handle non lvalue increments/decrements.
1715 2007-05-07  Mike Stump  <mrs@apple.com>
1717         * parser.c (check_empty_body): Add.
1718         (cp_parser_iteration_statement): Add call to check_empty_body.
1720 2007-05-05  Geoffrey Keating  <geoffk@apple.com>
1722         PR 31775
1723         * mangle.c (write_mangled_name): Mangle static variable names.
1724         (write_unqualified_name): Use local-source-name for
1725         namespace-scope static variables.
1727 2007-05-04  Dirk Mueller  <dmueller@suse.de>
1729         * cp-tree.h (DECL_MAIN_P): only if -ffreestanding is
1730         not in effect.
1732 2007-05-02  Seongbae Park  <seongbae.park@gmail.com>
1734         PR c++/31663
1735         * decl2.c (constrain_class_visibility): 
1736         Use strip_pointer_or_array_types instead of strip_array_types.
1738 2007-04-28  Andrew Pinski  <andrew_pinski@playstation.sony.com>
1740         PR C++/30221
1741         * decl.c (reshape_init_r): Don't reshape the first element if it
1742         is a pointer to member function.
1744 2007-04-27  Simon Baldwin  <simonb@google.com>
1746         * decl.c (grokparms): Changed message format from %qD to %qE.
1748 2007-04-27  Douglas Gregor  <doug.gregor@gmail.com>
1750         * error.c (maybe_warn_variadic_templates): Variadic templates are
1751        now in C++0x, so only warn about them in C++98 mode.
1752         
1753 2007-04-26  Andrew Pinski  <andrew_pinski@playstation.sony.com>
1755         PR C++/30016
1756         * typeck.c (build_reinterpret_cast_1): Only allow conversion to
1757         integeral types from vectors types.
1759 2007-04-26  Jakub Jelinek  <jakub@redhat.com>
1761         PR c++/31598
1762         * semantics.c (finish_omp_clauses): Don't create CP_OMP_CLAUSE_INFO
1763         for type dependent OMP_CLAUSE_DECLs.
1765 2007-04-24  Mark Mitchell  <mark@codesourcery.com>
1767         PR c++/31338
1768         * cp-tree.h (ARITHMETIC_TYPE): Include COMPLEX_TYPE.
1769         * typeck.c (type_after_usual_arithmetic_conversions): Adjust, as
1770         COMPLEX_TYPE is now an ARITHMETIC_TYPE.
1771         * init.c (build_zero_init): Adjust, as
1772         COMPLEX_TYPE is now a SCALAR_TYPE.
1773         * typeck2.c (digest_init): Allow brace-enclosed initializers for
1774         COMPLEX_TYPE, even though that is now a SCALAR_TYPE.
1776 2007-04-25  Paolo Carlini  <pcarlini@suse.de>
1778         * semantics.c (classtype_has_nothrow_copy_or_assign_p): Adjust
1779         per N2255; rename as classtype_has_nothrow_assign_or_copy_p.
1780         (trait_expr_value): Adjust.
1782 2007-04-23  Simon Baldwin  <simonb@google.com>
1784         * decl.c (grokparms): Added new error for duplicate function
1785         parameters names in function prototypes, to match gcc behavior.
1787 2007-04-23  Jan Hubicka  <jh@suse.cz>
1789         * cp/decl2.c (finish_objects): Do not call target constructor/destructor
1790         bits dirrectly.
1792 2007-04-21  Andrew Pinski  <andrew_pinski@playstation.sony.com>
1794         * cp-tree.h (lang_tree_node): Use GENERIC_NEXT
1795         instead of checking GIMPLE_STMT_P in chain_next.
1797 2007-04-17  Mark Mitchell  <mark@codesourcery.com>
1799         PR c++/31513
1800         * call.c (convert_for_arg_passing): Convert bitfields to their
1801         declared types.
1803 2007-04-17  Simon Martin  <simartin@users.sourceforge.net>
1805         PR c++/31517
1806         * pt.c (value_dependent_expression_p): Handle MODOP_EXPRs.
1808 2007-04-16  Seongbae Park <seongbae.park@gmail.com>
1810         PR c++/29365
1811         * cp/decl2.c (constrain_class_visibility):
1812         Do not warn about the use of anonymous namespace in the main input file.
1814 2007-04-15  Mark Mitchell  <mark@codesourcery.com>
1816         * cp-tree.h (current_template_parms): Fix typo in comment.
1818 2007-04-15  Kazu Hirata  <kazu@codesourcery.com>
1820         * cp-tree.h, error.c: Fix comment typos.
1822 2007-04-13  Jason Merrill  <jason@redhat.com>
1824         PR c++/31074
1825         * call.c (reference_binding): Add c_cast_p parm.  If true,
1826         add quals to TO as needed to make it reference-compatible.
1828 2007-04-11  Jan Hubicka  <jh@suse.cz>
1830         * cp/class.c (convert_to_base_statically): Fold produced tree; verify
1831         that we are not processing template_decl.
1833 2007-04-09  Mark Mitchell  <mark@codesourcery.com>
1835         PR c++/31449
1836         * class.c (build_base_path): Ensure that the converted pointer has
1837         the same cv-qualification as the input.
1839 2007-04-09  Paolo Carlini  <pcarlini@suse.de>
1841         * tree.c (cp_tree_equal): Deal with TRAIT_EXPR.
1843 2007-04-08  Steven Bosscher  <steven@gcc.gnu.org>
1845         * cp-objcp-common.h (LANG_HOOKS_TREE_INLINING_ADD_PENDING_FN_DECLS):
1846         Do not set it.
1847         (LANG_HOOKS_TREE_INLINING_ANON_AGGR_TYPE_P): Do not set it.
1848         * tree.c (cp_add_pending_fn_decls): Remove.
1849         * cp-tree.h (cp_add_pending_fn_decls): Remove prototype.
1851 2007-04-07  Daniel Berlin  <dberlin@dberlin.org>
1853         Revert change removing staticp.
1855 2007-04-06  Daniel Berlin  <dberlin@dberlin.org>
1857         * cp-objcp-common.c (cxx_staticp): Remove.
1858         * cp-objcp-common.h (LANG_HOOKS_STATICP): Remove.
1859         * cp-tree.h (cxx_staticp):      
1861 2007-04-04  Danny Smith  <dannysmith.users.sourceforge.net>
1863         * class.c (check_for_override): Don't remove dllmport attribute
1864         of virtual methods.
1866 2007-04-03  Jakub Jelinek  <jakub@redhat.com>
1868         PR c++/30847
1869         * typeck.c (build_modify_expr): For COND_EXPR on LHS, if RHS has void
1870         type issue error and return early.
1872 2007-03-30  Jason Merrill  <jason@redhat.com>
1874         PR c++/31187
1875         * typeck.c (cp_type_readonly): New fn.
1876         * cp-tree.h: Declare it.
1877         * decl.c (start_decl): Set implicit DECL_THIS_STATIC here.
1878         (cp_finish_decl): Not here.
1880 2007-03-31  Richard Guenther  <rguenther@suse.de>
1882         * optimize.c (maybe_clone_body): Replace splay-tree usage by
1883         pointer-map.
1885 2007-03-31  Douglas Gregor  <doug.gregor@gmail.com>
1887         PR c++/31138
1888         PR c++/31140
1889         PR c++/31141
1890         * parser.c (declarator_can_be_parameter_pack): New.
1891         (cp_parser_template_parameter): Only parse the `...' if the
1892         declarator can be a parameter pack.
1893         (cp_parser_parameter_declaration): Ditto. Also, handle when TYPE
1894         is NULL.
1895         * pt.c (find_parameter_packs_r): Look into the bounds on integer
1896         types (they could be used as array bounds). 
1897         (check_for_bare_parameter_packs): Deal with TEMPLATE_PARM_INDEX.
1898         (tsubst_pack_expansion): Handle failure to expand parameter
1899         packs.
1900         
1901 2007-03-30  Paolo Carlini  <pcarlini@suse.de>
1903         PR c++/26099
1904         * cp-tree.h (enum cp_trait_kind, struct tree_trait_expr,
1905         TRAIT_EXPR_TYPE1, TRAIT_EXPR_TYPE2, TRAIT_EXPR_KIND): Add.
1906         (enum cp_tree_node_structure_enum, union lang_tree_node): Update.
1907         (CLASS_TYPE_NON_UNION_P): Add.
1908         (struct lang_type_class): Add has_complex_dflt.
1909         (TYPE_HAS_COMPLEX_DFLT, TYPE_HAS_TRIVIAL_DFLT): Add.
1910         (locate_copy, locate_ctor, locate_dtor, finish_trait_expr): Declare.
1911         * cp-tree.def: Add TRAIT_EXPR.
1912         * cp-objcp-common.c (cp_tree_size): Add TRAIT_EXPR case.
1913         * lex.c (struct resword): Add __has_nothrow_assign,
1914         __has_nothrow_constructor, __has_nothrow_copy, __has_trivial_assign,
1915         __has_trivial_constructor, __has_trivial_copy,
1916         __has_trivial_destructor, __has_virtual_destructor, __is_abstract,
1917         __is_base_of, __is_class, __is_convertible_to, __is_empty, __is_enum,
1918         __is_pod, __is_polymorphic, __is_union.
1919         * parser.c (cp_parser_primary_expression): Deal with the new RIDs.
1920         (cp_parser_trait_expr): New.
1921         * semantics.c (finish_trait_expr, trait_expr_value
1922         classtype_has_nothrow_copy_or_assign_p): New.
1923         * method.c (locate_copy, locate_ctor, locate_dtor): Do not define
1924         as static.
1925         * decl.c (cp_tree_node_structure): Add TRAIT_EXPR.
1926         * class.c (check_bases, check_field_decl, check_bases_and_members):
1927         Deal with TYPE_HAS_COMPLEX_DFLT (t) too.
1928         * pt.c (uses_template_parms, tsubst_copy_and_build,
1929         value_dependent_expression_p, type_dependent_expression_p): Deal with
1930         TRAIT_EXPR.
1931         * tree.c (cp_walk_subtrees): Deal with TRAIT_EXPR.
1933 2007-03-29  Richard Guenther  <rguenther@suse.de>
1935         * tree.c (cp_walk_subtrees): Do not set input_location.
1937 2007-03-28  Simon Martin  <simartin@users.sourceforge.net>
1939         PR c++/29077
1940         * decl.c (grokfndecl): Properly setup decl if it is a constructor or a
1941         destructor.
1943 2007-03-28 Douglas Gregor <doug.gregor@gmail.com>
1945         * parser.c (struct cp_parser): Update comment for
1946         greater_than_is_operator_p.
1947         (cp_parser_primary_expression): In C++0x mode, a cast operator can
1948         be terminated with a `>>' token when !GREATER_THAN_IS_OPERATOR_P.
1949         (TOKEN_PRECEDENCE): In C++0x mode, `>>' is treated like `>' when
1950         !GREATER_THAN_IS_OPERATOR_P.
1951         (cp_parser_binary_expression): When -Wc++0x-compat, warn about
1952         `>>' operators that will become two `>' tokens in C++0x.
1953         (cp_parser_parameter_declaration): Treat `>>' like `>' in C++0x
1954         mode, allowing it to terminate default arguments.
1955         (cp_parser_enclosed_template_argument_list): In C++0x mode, treat
1956         `>>' like two consecutive `>' tokens.
1957         (cp_parser_skip_to_end_of_template_parameter_list): Ditto.
1958         (cp_parser_next_token_ends_template_argument_p): In C++0x, `>>'
1959         ends a template argument.
1961 2007-03-28  Douglas Gregor  <doug.gregor@gmail.com>
1963         * decl.c (redeclaration_error_message): Complain when redeclaring
1964         a friend function with default template arguments (C++0x mode only).
1965         * cp-tree.h (check_default_tmpl_args): Declare.
1966         * pt.c (check_default_tmpl_args): In C++0x mode, permit default
1967         template arguments in function templates. Add support for checking
1968         the default template arguments of friend templates.
1969         (push_template_decl_real): Fix call to check_default_tmpl_args.
1970         (type_unification_real): If a template parameter has not been
1971         deduced but provides a default template argument, substitute into
1972         that default template argument.
1973         * parser.c (cp_parser_init_declarator): When declaring (but not
1974         defining!) a function template in C++0x mode, check for default
1975         template arguments.
1977 2007-03-28 Douglas Gregor <doug.gregor@gmail.com>
1979         PR c++/29993
1980         * decl.c (grokdeclarator): Deal with cv-qualified function type
1981         typedefs in the same way for member and non-member functions.
1983 2007-03-26  Dirk Mueller  <dmueller@suse.de>
1985         * parser.c (cp_parser_member_declaration): Pedwarn
1986         about stray semicolons after member declarations.
1988 2007-03-26  Paolo Carlini  <pcarlini@suse.de>
1990         PR c++/30500
1991         * pt.c (instantiate_decl): Set in_system_header.
1993 2007-03-22  Mark Mitchell  <mark@codesourcery.com>
1995         * cp-tree.h (current_tempalte_parms): Improve documentation.
1996         * pt.c (current_template_args): Likewise.
1998         PR c++/30863
1999         * parser.c (cp_parser_parse_and_diagnose_invalid_type_name): Do
2000         not consume tokens when failing.
2002 2007-03-22  Jim Wilson  <wilson@specifix.com>
2003             Mark Mitchell  <mark@codesourcery.com>
2005         PR c++/31273
2006         * call.c (standard_conversion): Use type_decays_to.  Keep FCODE
2007         consistent with FROM.
2009 2007-03-22  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2011         * error.c (dump_expr): Handle dependent names that designate types.
2012         * cxx-pretty-print.c (pp_cxx_unqualified_id): Handle TYPENAME_TYPE.
2014 2007-03-17  Kazu Hirata  <kazu@codesourcery.com>
2016         * cp-tree.def, parser.c, pt.c: Fix comment typos.
2018 2007-03-16  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2020         * cvt.c (cp_convert_and_check) : Define.
2021         * cp-tree.h (cp_convert_and_check): Declare.
2022         * call.c (convert_conversion_warnings): Rename to
2023         conversion_null_warnings.  The warning for floating-point to
2024         integer is handled by convert_and_check in convert_like_real.
2025         (convert_like_real): convert_conversion_warnings was renamed as
2026         conversion_null_warnings.
2027         * typeck.c (build_binary_op): Use cp_convert_and_check to warn for
2028         overflow and changes of value during conversion.
2030 2007-03-15  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2032         PR c++/30891
2033         * parser.c (cp_parser_statement): If 'namespace' is found, this
2034         only can be a namespace alias definition, so parse it now.
2035         (cp_parser_namespace_alias_definition): if we find an open brace
2036         instead of '=', then this is actually a misplaced namespace
2037         definition.
2038         
2039 2007-03-15  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2041         PR c++/24924
2042         * decl.c (cxx_init_decl_processing): Move command-line options
2043         processing to c-opts.c.
2044         
2045 2007-03-15  Douglas Gregor  <doug.gregor@gmail.com>
2047         * ptree.c (cxx_print_type): Use formatting markup for integers
2048         when printing template parameter index/level/orig level.
2049         (cxx_print_xnode): Ditto.
2050         * cp-tree.h (TEMPLATE_PARM_PARAMETER_PACK): Use TREE_LANG_FLAG_0.
2051         (struct template_parm_index_s): Remove the PARAMETER_PACK member.
2052         Make INDEX, LEVEL, and ORIG_LEVEL integers instead of
2053         HOST_WIDE_INTs.
2054         (struct saved_scope): Make X_PROCESSING_TEMPLATE_DECL an int,
2055         rather than a HOST_WIDE_INT.
2056         Turn X_PROCESSING_EXPLICIT_INSTANTIATION, SKIP_EVALUATION, and
2057         NEED_POP_FUNCTION_CONTEXT into bool bitfields; reorder fields for
2058         better bit-packing.
2059         (struct language_function): Make RETURNS_VALUE, RETURNS_NULL,
2060         RETURNS_ABNORMALLY, IN_FUNCTION_TRY_HANDLER, and
2061         IN_BASE_INITIALIZER bool bitfields.
2062         (struct cp_declarator): Make KIND a 4-bit field. Make
2063         PARAMETER_PACK_P a bool bitfield just after KIND.
2064         * pt.c (uses_parameter_packs): Destroy the pointer set.
2065         (make_pack_expansion): Ditto.
2066         (check_for_bare_parameter_packs): Ditto.
2067         * name-lookup.c (push_to_top_level): Make need_pop a bool value.
2068         
2069 2007-03-14  Andrew Pinski  <andrew_pinski@playstation.sony.com>
2071         PR c++/31165
2072         * call.c  (convert_default_arg): Instead of copying the node,
2073         unshare it.
2075 2007-03-15  Dirk Mueller  <dmueller@suse.de>
2077         PR c++/30860
2078         * call.c (convert_conversion_warnings): New..
2079         (convert_like_real): .. factored out from here.
2080         (convert_conversion_warnings): Add warning about
2081         false being converted to NULL in argument passing.
2083 2007-03-14  Dirk Mueller  <dmueller@suse.de>
2085         * cp/semantics.c (c_finish_if_stmt): Call empty_if_body_warning.
2086         (finish_do_body): Warn about empty body in do/while statement.
2088 2007-03-14  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2090         * class.c (warn_hidden): Add OPT_Woverloaded_virtual to warning.
2091         
2092 2007-03-14  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2094         PR c/21438
2095         * typeck.c (build_binary_op): Call warn_for_div_zero instead of
2096         warning.
2097         
2098 2007-03-13  Alexandre Oliva  <aoliva@redhat.com>
2100         * cp/repo.c (init_repo): Initialize random_seed saved options.
2101         (finish_repo): Adjust.
2103 2007-03-13  Mark Mitchell  <mark@codesourcery.com>
2105         PR bootstrap/30899
2106         * Make-lang.in (doc/g++.1): Use $< to specify the location from
2107         which to copy.
2109 2007-03-12  Seongbae Park <seongbae.park@gmail.com>
2111         * decl.c (compute_array_index_type): New warning flag warn_vla.
2113 2007-03-12  Mark Mitchell  <mark@codesourcery.com>
2115         PR c++/30108
2116         * call.c (convert_default_arg): Copy non-constant arguments.
2118 2007-03-11  Mark Mitchell  <mark@codesourcery.com>
2120         PR c++/31038
2121         * parser.c (cp_parser_postfix_expression): Disallow compound
2122         literals in constant expressions.
2124         PR c++/30328
2125         * semantics.c (finish_typeof): Use unlowered_expr_type.
2126         
2127 2007-03-10  Mark Mitchell  <mark@codesourcery.com>
2129         PR c++/30274
2130         * cp-tree.h (unlowered_expr_type): New function.
2131         * typeck.c (is_bitfield_expr_with_lowered_type): Handle
2132         COMPOUND_EXPR, MODIFY_EXPR, and SAVE_EXPR.
2133         (unlowered_expr_type): New function.
2134         (build_unary_op): Disallow predecrements of bool bitfields.
2135         * call.c (build_conditional_expr): Use unlowered_expr_type.
2136         * pt.c (type_unification_real): Likewise.
2138 2007-03-09  Douglas Gregor  <doug.gregor@gmail.com>
2140         PR c++/20599
2141         * typeck.c (check_return_expr): Check for bare parameter packs.
2142         (comptypes): Compare template parameter packs and
2143         type pack expansions.
2144         * decl.c (grokdeclarator): Deal with the declaration of function
2145         parameter packs.
2146         (grokparms): Verify that the (optional) function parameter pack is
2147         at the end of the parameter list.
2148         (xref_basetypes): Handle pack expansions in the base class.
2149         (cp_tree_node_structure): Handle ARGUMENT_PACK_SELECT.
2150         * cp-tree.def (TYPE_ARGUMENT_PACK): New.
2151         (NONTYPE_ARGUMENT_PACK): New.
2152         (TYPE_PACK_EXPANSION): New.
2153         (EXPR_PACK_EXPANSION): New.
2154         (ARGUMENT_PACK_SELECT): New.
2155         * cp-objcp-common.c (cp_tree_size): Compute size of
2156         (NON)TYPE_ARGUMENT_PACK, (TYPE|EXPR)_PACK_EXPANSION, and
2157         ARGUMENT_PACK_SELECT.
2158         * error.c (dump_template_argument): Print template argument packs.
2159         (dump_template_argument_list): Ditto.
2160         (dump_template_parameter): Dump `...' for template type parameter
2161         packs.
2162         (dump_type): Dump TYPE_PACK_EXPANSION nodes.
2163         (dump_parameters): Print function parameter packs.
2164         (dump_template_parms): Print template argument packs.
2165         (dump_expr): Dump EXPR_PACK_EXPANSION nodes.
2166         (maybe_warn_variadic_templates): New.
2167         * operators.def: Add ellipsis operator for EXPR_PACK_EXPANSION.
2168         * tree.c (cp_walk_subtrees): Walk BASELINK, TYPE_ARGUMENT_PACK,
2169         NONTYPE_ARGUMENT_PACK, TYPE_PACK_EXPANSION, EXPR_PACK_EXPANSION,
2170         CAST_EXPR. 
2171         * mangle.c (write_type): Mangle TYPE_PACK_EXPANSION.
2172         (write_template_arg): Write argument packs as separate arguments.
2173         * cp-tree.h (struct template_parm_index_s): Add flag that
2174         indicates that the template parameter is actually a parameter
2175         pack.
2176         (struct tree_argument_pack_select): New.
2177         (enum cp_tree_node_structure_enum): Add TS_CP_ARGUMENT_PACK_SELECT.
2178         (union lang_tree_node): Add argument_pack_select.
2179         (FUNCTION_PARAMETER_PACK_P): New.
2180         (PACK_EXPANSION_P): New.
2181         (PACK_EXPANSION_PATTERN): New.
2182         (SET_PACK_EXPANSION_PATTERN): New.
2183         (PACK_EXPANSION_PARAMETER_PACKS): New.
2184         (ARGUMENT_PACK_P): New.
2185         (ARGUMENT_PACK_ARGS): New.
2186         (SET_ARGUMENT_PACK_ARGS): New.
2187         (ARGUMENT_PACK_INCOMPLETE_P): New.
2188         (ARGUMENT_PACK_EXPLICIT_ARGS): New.
2189         (TEMPLATE_PARM_PARAMETER_PACK): New.
2190         (TEMPLATE_TYPE_PARAMETER_PACK): New.
2191         (ARGUMENT_PACK_SELECT_FROM_PACK): New.
2192         (ARGUMENT_PACK_SELECT_INDEX): New.
2193         (ARGUMENT_PACK_SELECT_ARG): New.
2194         (struct cp_declarator): Add parameter_pack_p flag.
2195         (maybe_warn_variadic_templates): Declare.
2196         (process_template_parm): Add bool parameter IS_PARAMETER_PACK, to
2197         indicate a template parameter pack. 
2198         (uses_parameter_packs): Declare.
2199         (template_parameter_pack_p): Declare.
2200         (template_parms_variadic_p): Declare.
2201         (make_pack_expansion): Declare.
2202         (check_for_bare_parameter_packs): Declare.
2203         * cxx-pretty-print.c (pp_cxx_unary_expression): Print
2204         sizeof... expressions. 
2205         (pp_cxx_expression): Print pack expansions and non-type argument
2206         packs.
2207         (pp_cxx_exception_specification): Print pack expansions. 
2208         (pp_cxx_direct_declarator): Print ellipsis for parameter packs.
2209         (pp_cxx_ctor_initializer): Print pack expansions.
2210         (pp_cxx_type_id): Print pack expansions.
2211         (pp_cxx_template_argument_list): Print argument packs.
2212         (pp_cxx_template_parameter): Print ellipsis for template parameter
2213         packs.
2214         * pt.c (comp_template_parms): Compare template parameter packs.
2215         (template_parameter_pack_p): New.
2216         (template_parms_variadic_p): New.
2217         (template_args_variadic_p): New.
2218         (make_ith_pack_parameter_name): New.
2219         (struct find_parameter_pack_data): New.
2220         (find_parameter_packs_r): New.
2221         (uses_parameter_packs): New.
2222         (make_pack_expansion): New.
2223         (check_for_bare_parameter_packs): New.
2224         (expand_template_argument_pack): New.
2225         (reduce_template_parm_level): Propagate parameter pack flag.
2226         (process_template_parm): Add is_parameter_pack parameter to state
2227         when the parameter is actually a parameter pack. Create template
2228         parameter packs when is_parameter_pack is true.
2229         (current_template_args): The argument for a template parameter
2230         pack is an argument pack containing a single pack expansion.
2231         (process_partial_specialization): When checking that non-type
2232         argument expressions do not involve template parameters, loop over
2233         the arguments in argument packs separately.
2234         (push_template_decl_real): Check that the type of the declaration
2235         does not have any bare parameter packs. Check that primary
2236         templates have no more than one parameter pack, and that it comes
2237         at the end of the template parameter list.
2238         (convert_template_argument): Handle coercions for pack expansion
2239         expressions by coercing the pattern then rebuilding the expansion.
2240         (coerce_template_parms): When coercing the arguments for a
2241         variadic template, pack "extra" arguments into an argument pack.
2242         (coerce_template_template_parms): Cannot coerce between parameter
2243         packs and non-pack parameters.
2244         (template_args_equal): Compare PACK_EXPANSION_P expressions.
2245         (comp_template_args): Expand all template arguments packs before
2246         comparing template argument lists.
2247         (mangle_class_name_for_template): Make argument packs as separate
2248         template arguments.
2249         (for_each_template_parm_r): No need to handle BASELINK. 
2250         (instantiate_class_template): Handle pack expansions in the base
2251         class list.
2252         (tsubst_pack_expansion): New.
2253         (tsubst_template_args): Handle substitutions of argument packs and
2254         pack expansion into template argument lists.
2255         (tsubst_decl): Expand function parameter packs into separate
2256         function parameters.
2257         (tsubst_arg_types): Expand a type pack expansion into separate
2258         argument types.
2259         (tsubst_exception_specification): Handle pack expansions in
2260         exception specifiers.
2261         (tsubst): See through ARGUMENT_PACK_SELECT arguments when 
2262         replacing a template parameter with its argument. If we encounter
2263         a substitution for an argument pack, just return the parameter
2264         itself. 
2265         (tsubst_copy): sizeof(X...) returns the number of elements in
2266         parameter pack X.  See through ARGUMENT_PACK_SELECT when the
2267         PARM_DECL is a parameter pack.
2268         (tsubst_expr): Expression pack expansions and argument packs
2269         cannot show up here; they will all be handled through function
2270         calls, sizeof, and template argument lists.
2271         (tsubst_copy_and_build): sizeof(X...) returns the number of
2272         elements in parameter pack X.  Handle pack expansions in TREE_LIST
2273         and CONSTRUCTOR nodes.
2274         (fn_type_unification): Handle "incomplete" explicit template
2275         argument lists that specify some of the arguments for a template
2276         parameter pack.
2277         (type_unification_real): Unify arguments against pack expansions.
2278         (template_parm_level_and_index): New, helper function.
2279         (unify_pack_expansion): New.
2280         (unify): Unify argument packs on an argument-by-argument basis,
2281         handling variadic argument packs as well.
2282         (more_specialized_fn): Handle unification of function parameter
2283         packs. All things being equal, prefer non-variadic function
2284         templates to variadic function templates.
2285         (more_specialized_class): Prefer the variadic class template
2286         partial specialization that binds fewer arguments to a parameter
2287         pack.
2288         (regenerate_decl_from_template): Expand function parameter packs
2289         into separate parameters.
2290         (instantiate_decl): Ditto.
2291         (tsubst_initializer_list): Handle pack expansions for base-class
2292         initializers.
2293         (dependent_type_p_r): Determine dependent types in argument packs
2294         and pack expansions.
2295         (value_dependent_expression_p): Determine value-dependence of
2296         non-type argument packs.
2297         (dependent_template_arg_p): Handle argument packs.
2298         * semantics.c (finish_cond): Check for bare parameter packs.
2299         (finish_expr_stmt): Ditto.
2300         (finish_for_expr): Ditto.
2301         (finish_switch_cond): Ditto.
2302         (finish_mem_initializers): Ditto.
2303         * name-lookup.c (arg_assoc_type): Handle pack expansions and
2304         argument packs.
2305         * decl2.c (cp_build_parm_decl): Mark function parameter packs.
2306         * parser.c (make_declarator): Declarator is not an expansion.
2307         (make_pointer_declarator): Transfer parameter pack flag to outer
2308         declarator.
2309         (make_reference_declarator): Ditto.
2310         (make_ptrmem_declarator): Ditto.
2311         (make_call_declarator): Ditto.
2312         (make_array_declarator): Ditto.
2313         (cp_parser_postfix_expression): Allow pack expansion expressions
2314         in the argument list for a call expression.
2315         (cp_parser_parenthesized_expression_list): Add new parameter
2316         ALLOW_EXPANSION_P. When true, parse the ellipsis to mean "expand
2317         into separate arguments."
2318         (cp_parser_new_placement): Allow pack expansion expressions.
2319         (cp_parser_new_initializer): Ditto.
2320         (cp_parser_mem_initializer_list): Allow ellipsis to create a
2321         base-class initializer expansion.
2322         (cp_parser_mem_initializer): Ditto.
2323         (cp_parser_template_parameter_list): Keep track of whether the
2324         template parameter is a template parameter pack.
2325         (cp_parser_template_parameter): Parse the ellipsis to indicate a
2326         template parameter pack.
2327         (cp_parser_type_parameter): Ditto.
2328         (cp_parser_template_argument_list): Parse the ellipsis to indicate
2329         a pack expansion.
2330         (cp_parser_direct_declarator): Parse the ellipsis to indicate that
2331         this declarator is a parameter pack.
2332         (cp_parser_parameter_declaration): The ellipsis does not end the
2333         parameter declaration, because it might be a parameter pack. Parse
2334         the ellipsis to indicate a parameter pack.
2335         (cp_parser_initializer): Allow pack expansions.
2336         (cp_parser_initializer_list): Allow ellipsis to create an
2337         initializer expansion.
2338         (cp_parser_base_clause): Allow ellipsis to create a base specifier
2339         expansion.
2340         (cp_parser_type_id_list): Allow ellipsis to create an exception
2341         specifier expansion.
2342         (cp_parser_attribute_list): Don't allow pack expansions.
2343         (cp_parser_functional_cast): Allow pack expansions.
2344         (cp_parser_sizeof_operand): Allow ellipsis following "sizeof" to
2345         compute the length of a parameter pack.
2346         (cp_parser_next_token_ends_template_argument_p): An ellipsis can
2347         end a template argument.
2348         * tree.c (cp_walk_subtrees): Walk BASELINK, TYPE_ARGUMENT_PACK,
2349         NONTYPE_ARGUMENT_PACK, TYPE_PACK_EXPANSION, EXPR_PACK_EXPANSION,
2350         CAST_EXPR. 
2352 2007-03-09  Dirk Mueller  <dmueller@suse.de>
2354         * cp/call.c (build_new_op): Call warn_logical_operator.
2356 2007-03-08  Volker Reichelt  <reichelt@netcologne.de>
2358         PR c++/30852
2359         * semantics.c (finish_offsetof): Handle COMPOUND_EXPR.
2361         PR c++/30534
2362         * pt.c (any_template_arguments_need_structural_equality_p):
2363         Robustify.
2365 2007-03-08  Alexandre Oliva  <aoliva@redhat.com>
2367         * decl.c (grokdeclarator): Disable warnings for anonymous
2368         bitfields.
2370 2007-03-05  Volker Reichelt  <reichelt@netcologne.de>
2372         * typeck2.c (readonly_error): Always emit a hard error.
2373         Remove last argument.
2374         * cp-tree.h (readonly_error): Adjust prototype.
2375         * semantics.c (finish_asm_stmt): Adjust call to readonly_error.
2376         * typeck.c (build_unary_op): Likewise.
2377         (build_modify_expr): Likewise.
2379 2007-03-04  Simon Martin  <simartin@users.sourceforge.net>
2381         PR c++/30895
2382         * tree.c (cp_tree_equal): Properly handle COMPLEX_CST trees.
2384 2007-03-03  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2386         PR c++/15787
2387         * parser.c (struct cp_parser): New IN_IF_STMT.
2388         (cp_parser_statement_seq_opt): Handle an unexpected 'else',
2389         returning if parsing the body of an 'if' statement or issuing an
2390         error and continuing.
2391         (cp_parser_selection_statement): Set IN_IF_STMT bit when parsing
2392         body of 'if'.
2393         (cp_parser_jump_statement): Mask new IN_IF_STMT bit.
2394         
2395 2007-03-02  Simon Martin  <simartin@users.sourceforge.net>
2397         PR c++/28253
2398         * class.c (update_vtable_entry_for_fn): Properly handle invalid overriders
2399         for thunks.
2401 2007-03-02  Geoffrey Keating  <geoffk@apple.com>
2403         * g++spec.c (lang_specific_driver): Add -lstdc++ when compiling
2404         Objective-C++.  Don't exit early if -shared-libgcc needs to be
2405         added.
2407 2007-03-02  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2409         * typeck.c (common_base_type): Delete unused function.
2410         
2411 2007-03-01  Brooks Moses  <brooks.moses@codesourcery.com>
2413         * Make-lang.in: Add dummy lang.install-pdf target.
2415 2007-03-01  Simon Baldwin <simonb@google.com>
2417         PR c++/23689
2418         * decl.c (check_tag_decl): Added new warning for typedef ignored
2419         when it precedes an otherwise valid non-typedef declaration.
2421 2007-02-28  Sandra Loosemore  <sandra@codesourcery.com>
2423         * typeck.c (build_function_call): Store converted arguments
2424         in a stack-allocated array instead of building a list.
2425         (convert_arguments): Store arguments in the array passed in as an
2426         argument, and return the actual number of arguments.
2427         * call.c (build_call): Delete, and replace with...
2428         (build_call_n, build_call_a): New.
2429         (build_op_delete_call): Rewrite to avoid constructing argument lists.
2430         (build_over_call): Store converted arguments in a stack-allocated
2431         array instead of building a list.
2432         (build_cxx_call): Pass arguments in an array instead of as a list.
2433         (build_java_interface_fn_ref): Rewrite to avoid constructing
2434         argument lists.
2435         * tree.h: Update declarations to reflect above changes.
2436         * method.c (use_thunk): Use a stack-allocated array to hold
2437         the arguments instead of a list.
2438         * rtti.c (throw_bad_cast): Update call to cxx_call.
2439         (throw_bad_typeid): Likewise.
2440         (build_dynamic_cast_1): Likewise.
2441         * init.c (build_builtin_delete_call): Use build_call_n.
2442         * decl.c (expand_static_init): Likewise.
2443         * except.c (cp_protect_cleanup_actions): Likewise.
2444         * cp-gimplify.c (genericize_eh_spec_block): Likewise.
2445         (gimplify_must_not_throw_expr): Likewise.
2446         (cxx_omp_apply_fn): Use build_call_a.
2448 2007-02-26  Mark Mitchell  <mark@codesourcery.com>
2450         * semantics.c (expand_or_defer_fn): Call c_record_cdtor_fn.
2451         * decl2.c (cp_write_gloabl_declarations): Call c_build_cdtor_fns.
2453 2007-02-25  Mark Mitchell  <mark@codesourcery.com>
2455         * cp-tree.h (static_ctors): Remove.
2456         * cp-tree.h (static_dtors): Likewise.
2457         * cp-objcp-common.c (decl_shadowed_for_var_lookup): Adjust for
2458         refactoring of tree_map hierarchy.
2459         (decl_shadowed_for_var_insert): Likewise.
2460         * semantics.c (expand_body): Use c_expand_body.
2461         (expand_or_defer_fn): Don't update static_ctors or static_dtors.
2462         * decl2.c (static_ctors): Remove.
2463         (static_dtors): Likewise.
2464         (generate_ctor_or_dtor_function): Pass NULL_TREE to
2465         objc_generate_static_init_call.  Do not call static_[cd]tors.
2466         (generate_ctor_and_dtor_functions_for_priority): Do not check for
2467         static_[cd]tors.
2468         (cp_write_global_declarations): Likewise.
2470 2007-02-23  Richard Guenther  <rguenther@suse.de>
2472         * class.c (note_name_declared_in_class): Make declaration
2473         changes meaning a pedwarn.
2475 2007-02-22  Michael Matz  <matz@suse.de>
2477         PR c++/29433
2478         * cp-tree.h (TFF_UNQUALIFIED_NAME): New formatting flag.
2479         * error.c (dump_aggr_type, dump_simple_decl, dump_decl,
2480         dump_function_decl): Guard emitting outer scopes by new flag.
2481         * cp-lang.c (cxx_dwarf_name): New function.
2482         (LANG_HOOKS_DWARF_NAME): Define to cxx_dwarf_name.
2483         * pt.c (classtype_mangled_name, mangle_class_name_for_template):
2484         Remove functions.
2485         (push_template_decl_real, lookup_template_class): Remove calls
2486         to above functions.
2488 2007-02-19  Mark Mitchell  <mark@codesourcery.com>
2490         * call.c (build_new_method_call): Ensure that explicit calls of
2491         destructors have type "void".
2493 2007-02-19  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2495         * typeck.c (build_binary_op): Replace -Wstring-literal-comparison
2496         and -Walways-true with -Waddress.
2497         * cvt.c (convert_to_void): Replace unconditional warning with
2498         -Waddress.
2500 2007-02-18  Kazu Hirata  <kazu@codesourcery.com>
2502         * decl.c, tree.c: Fix comment typos.
2504 2007-02-15  Andrew Pinski  <andrew_pinski@playstation.sony.com>
2506         PR C++/30158
2507         * semantics.c (finish_stmt_expr_expr): Set TREE_TYPE of the 
2508         statement expression if we had an error mark node.
2510 2007-02-15  Sandra Loosemore  <sandra@codesourcery.com>
2511             Brooks Moses  <brooks.moses@codesourcery.com>
2512             Lee Millward  <lee.millward@codesourcery.com>
2514         * cp-tree.def (AGGR_INIT_EXPR): Adjust documentation.
2515         Change class to tcc_vl_exp.
2517         * call.c (build_call): Use build_call_list instead 
2518         of build3. 
2519         (build_over_call): Likewise.
2520         (build_new_method_call): Use build_min_non_dep_call_list 
2521         instead of build_min_non_dep.
2523         * error.c (dump_call_expr_args): New function.
2524         (dump_aggr_init_expr_args): New function.
2525         (dump_expr) <AGGR_INIT_EXPR, CALL_EXPR, INDIRECT_REF>: Use them. 
2526         Update to use new CALL_EXPR and AGGR_INIT_EXPR accessor macros.
2528         * cvt.c (convert_to_void): Use build_call_array instead
2529         of build3; use new AGGR_INIT_EXPR accessor macros.
2531         * mangle.c (write_expression): Use TREE_OPERAND_LENGTH
2532         instead of TREE_CODE_LENGTH.
2534         * dump.c (cp_dump_tree) <AGGR_INIT_EXPR>: Update to use new
2535         AGGR_INIT_EXPR accessor macros.
2537         * cp-gimplify.c (cp_gimplify_init_expr): Use 
2538         AGGR_INIT_EXPR_SLOT to set the slot operand.
2540         * cp-tree.h (AGGR_INIT_EXPR_FN): New macro.
2541         (AGGR_INIT_EXPR_SLOT): New macro.
2542         (AGGR_INIT_EXPR_ARG): New macro.
2543         (aggr_init_expr_nargs): New macro.
2544         (AGGR_INIT_EXPR_ARGP): New macro.
2545         (aggr_init_expr_arg_iterator): New.
2546         (init_aggr_init_expr_arg_iterator): New.
2547         (next_aggr_init_expr_arg): New.
2548         (first_aggr_init_expr_arg): New.
2549         (more_aggr_init_expr_args_p): New.
2550         (FOR_EACH_AGGR_INIT_EXPR_ARG): New.
2551         (stabilize_aggr_init): New declaration.
2552         (build_min_non_dep_call_list): Likewise.
2554         * tree.c (process_aggr_init_operands): New function.
2555         (build_aggr_init_array) New function.
2556         (build_cplus_new): Update to use new CALL_EXPR and
2557         AGGR_INIT_EXPR accessor macros. Replace use of build3 with
2558         build_aggr_init_array.
2559         (build_min_non_dep_call_list) New function.
2560         (build_min_nt): Assert input code parameter is not a variable
2561         length expression class.
2562         (build_min, build_min_non_dep): Likewise.
2563         (cp_tree_equal) <CALL_EXPR>: Iterate through the arguments
2564         to check for equality instead of recursing. Handle tcc_vl_exp
2565         tree code classes.
2566         (stabilize_call): Update to only handle CALL_EXPRs, not 
2567         AGGR_INIT_EXPRs; use new CALL_EXPR accessor macros.
2568         (stabilize_aggr_init): New function.
2569         (stabilize_init): Use it.
2571         * cxx-pretty-print.c (pp_cxx_postfix_expression)
2572         <AGGR_INIT_EXPR, CALL_EXPR>: Update to use new CALL_EXPR and
2573         AGGR_INIT_EXPR accessor macros and argument iterators.
2574         
2575         * pt.c (tsubst_copy) <CALL_EXPR>: Replace build_nt with
2576         build_vl_exp. Iterate through the operands, recursively 
2577         processing each one.
2578         (tsubst_copy_and_build) <CALL_EXPR>: Update to use new
2579         CALL_EXPR accessor macros.
2580         (value_dependent_expression_p) <default>: Handle tcc_vl_exp
2581         tree code classes. Use TREE_OPERAND_LENGTH instead of 
2582         TREE_CODE_LENGTH.
2584         * semantics.c (finish_call_expr): Use build_nt_call_list
2585         instead of build_nt.
2586         (simplify_aggr_init_expr): Update to use new AGGR_INIT_EXPR 
2587         accessor macros. Use build_call_array to construct the 
2588         CALL_EXPR node instead of build3
2589         
2590         * decl2.c (build_offset_ref_call_from_tree): Use 
2591         build_nt_call_list and build_min_non_dep_call_list instead
2592         of build_min_nt and build_min_non_dep.
2594         * parser.c (cp_parser_postfix_expression) <CPP_OPEN_PAREN>:
2595         Use build_nt_call_list instead of build_min_nt.
2597 2007-02-15  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2599         PR c++/28943
2600         * call.c (build_conditional_expr): Improve error message.
2601         
2602 2007-02-13  Dirk Mueller  <dmueller@suse.de>
2604         * friend.c (do_friend): Annotate warning about friend
2605         declarations in templates with OPT_Wnon_template_friend.
2606         Convert informal message from warning() to inform().
2608 2007-02-12  Simon Martin  <simartin@users.sourceforge.net>
2609             Mark Mitchell  <mark@codesourcery.com>
2611         PR c++/14622
2612         * pt.c (do_decl_instantiation): Detect type mismatches in explicit
2613         instantiations for variables.
2615 2007-02-12  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2617         PR middle-end/7651
2618         * cp-gimplify.c (gimplify_expr_stmt): Don't check extra_warnings.
2619         Check warn_unused_value just once.
2621 2007-02-11  Mark Mitchell  <mark@codesourcery.com>
2623         PR c++/26988
2624         * pt.c (determine_specialization): Use skip_artificial_parms_for.
2625         (fn_type_unificiation): Likewise.
2626         (get_bindings): Likewise.
2628 o2007-02-06  Mark Mitchell  <mark@codesourcery.com>
2630         PR target/29487
2631         * decl.c (finish_function): Use DECL_REPLACEABLE.
2632         * tree.c (cp_cannot_inline_tree_fn): Likewise.
2634 2007-02-10  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2636         * parser.c (cp_parser_primary_expression): Reformat overly long lines.
2638 2007-02-10  Richard Henderson  <rth@redhat.com>, Jakub Jelinek  <jakub@redhat.com>
2640         * decl.c (grokvardecl): Don't error if !have_tls.
2641         (grokdeclarator): Likewise.
2642         * parser.c (cp_parser_omp_threadprivate): Likewise.
2644 2007-02-07  Jakub Jelinek  <jakub@redhat.com>
2646         PR c++/30703
2647         * cp-gimplify.c (cp_genericize_r): Don't dereference invisiref
2648         parameters and result decls in omp clauses.
2649         (cxx_omp_privatize_by_reference): Pass also invisiref PARM_DECLs
2650         by reference.
2652 2007-02-05  Dirk Mueller  <dmueller@suse.de>
2654         PR bootstrap/30510
2655         * parser.c (cp_parser_class_specifier): Always initialize bases.
2657 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
2659         * cp-tree.h (OMP_ATOMIC_CODE): Delete.
2660         (OMP_ATOMIC_DEPENDENT_P): Rewrite.
2661         * pt.c (tsubst_expr): Adjust for new format of dependent OMP_ATOMIC
2662         expressions.
2663         * semantics.c (finish_omp_atomic): Store a whole expression node
2664         in operand 1, and integer_zero_node in operand 0, for dependent
2665         OMP_ATOMIC.  Rewrite to make flow easier to understand.
2667 2007-02-03  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2669         * decl.c (grokdeclarator): Use OPT_Wreturn_type instead of 0.
2671 2007-02-04  Kazu Hirata  <kazu@codesourcery.com>
2673         * class.c, cp-tree.h, decl.c, decl2.c, g++spec.c, init.c,
2674         parser.c, pt.c, tree.c, typeck.c: Follow spelling conventions.
2676 2007-02-03  Douglas Gregor  <doug.gregor@gmail.com>
2678        * parser.c (cp_lexer_get_preprocessor_token): Attach the C++0x
2679        keyword warning to -Wc++0x-compat.
2680         
2681 2007-02-03  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2683         * decl.c (grokdeclarator): Update documentation.
2685 2007-02-02  Jakub Jelinek  <jakub@redhat.com>
2687         PR c++/30536
2688         * decl.c (grokdeclarator): If __thread is used together with
2689         a storage class other than extern and static, clear thread_p
2690         after issuing diagnostics and fall through to checking the
2691         storage class.
2693 2007-01-30  Roger Sayle  <roger@eyesopen.com>
2695         * error.c (dump_type_suffix): Avoid use of cp_build_binary_op when
2696         calculating the size of an array (to avoid recursive errors).
2698 2007-01-30  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2700         PR c++/24745
2701         * typeck.c (build_binary_op): Fix logic for warning. Move warning
2702         to -Wpointer-arith.
2703         * call.c (convert_like_real): Don't warn when converting to
2704         boolean type.
2705         
2706 2007-01-29  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2708         * decl.c (pop_label): Replace warning with call to
2709         warn_for_unused_label.
2711 2007-01-28  Andrew Pinski  <pinskia@gmail.com>
2713         PR C++/28988
2714         * semantics.c (finish_pseudo_destructor_expr): Check the
2715         destrutor name by calling check_dtor_name.
2717 2007-01-24  Douglas Gregor  <dgregor@osl.iu.edu>
2719         * lex.c (D_CPP0X): Rename.
2720         (D_CXX0X): To this.
2721         (reswords): D_CPP0X -> D_CXX0X.
2722         (init_reswords): Ditto.
2723         * parser.c (cp_lexer_get_preprocessor_token): Warn about the use
2724         of C++0x keywords as identifiers.
2726 2007-01-23  Simon Martin  <simartin@users.sourceforge.net>
2728         PR c++/27492
2729         * decl.c (duplicate_decls): Don't reset DECL_INVALID_OVERRIDER_P for
2730         function decls.
2732 2007-01-23  Ian Lance Taylor  <iant@google.com>
2734         * typeck.c (convert_for_assignment): Only warn about a = b = c
2735         when converting to bool.
2737 2007-01-23  Roger Sayle  <roger@eyesopen.com>
2739         * call.c (null_ptr_cst_p): Replace use of TREE_CONSTANT_OVERFLOW with
2740         TREE_OVERFLOW.
2741         * typeck.c (ignore_overflows): Remove the remaining uses of
2742         TREE_CONSTANT_OVERFLOW.
2744 2007-01-20  Jan Hubicka  <jh@suse.cz>
2746         * decl2.c (start_objects, start_static_storage_duration_function):
2747         Do not make the functions uninlinable.
2749 2007-01-17  Ian Lance Taylor  <iant@google.com>
2751         * class.c (add_method): Call VEC_reserve_exact rather than passing
2752         a negative size to VEC_reserve.
2754 2007-01-11  Simon Martin  <simartin@users.sourceforge.net>
2756         PR c++/29573
2757         * tree.c (cp_tree_equal): Properly handle MODOP_EXPR trees.
2759 2007-01-10  Mark Mitchell  <mark@codesourcery.com>
2761         PR c++/28999
2762         * decl.c (make_typename_type): If the qualified name is not a
2763         type, issue an error.
2764         * parser.c (cp_parser_elaborated_type_specifier): Fix comment
2765         formatting.
2767 2007-01-08  Geoffrey Keating  <geoffk@apple.com>
2769         * rtti.c: Include target.h.
2770         (emit_support_tinfos): If ! targetm.cxx.library_rtti_comdat (),
2771         don't emit typeinfo for fundamental types as weak.
2772         * Make-lang.in (cp/rtti.o): Update and correct dependencies.
2774 2007-01-08  Richard Guenther  <rguenther@suse.de>
2776         * cvt.c (cp_convert_to_pointer): Use build_int_cst_type.
2778 2007-01-08  Mark Shinwell  <shinwell@codesourcery.com>
2780         * call.c (standard_conversion): Pass flag to
2781         vector_types_convertible_p to disallow emission of note.
2782         * typeck.c (convert_for_assignment): Pass flag to
2783         vector_types_convertible_p to allow emission of note.
2784         (ptr_reasonably_similar): Pass flag to vector_types_convertible_p
2785         to disallow emission of note.
2787 2007-01-07  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2789         PR c++/28986
2790         * typeck.c (build_binary_op): Call overflow_warning if
2791         TREE_OVERFLOW_P is true for the result and not for any of the
2792         operands.
2793         
2794 2007-01-06  Lee Millward  <lee.millward@codesourcery.com>
2796        PR c++/19439
2797        * class.c (add_method): Don't wait until template
2798        instantiation time to complain about duplicate methods.
2799         
2800 2007-01-05  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2802         PR c/19978
2803         * semantics.c (finish_unary_op_expr): Warn only if result
2804         overflowed and operands did not.
2806 2007-01-05  Ian Lance Taylor  <iant@google.com>
2808         * typeck.c (build_binary_op): Warn about comparing a non-weak
2809         address to NULL.
2811 2007-01-05  Douglas Gregor  <doug.gregor@gmail.com>
2813         * pt.c (tsubst): Propagate the need for structural equality checks
2814         when reducing the level of template parameters.
2816 2007-01-03  Kazu Hirata  <kazu@codesourcery.com>
2818         * pt.c: Fix a comment typo.
2820 2007-01-02  Ian Lance Taylor  <iant@google.com>
2822         * semantics.c (maybe_convert_cond): Optionally warn when using an
2823         assignment as a condition.
2824         * typeck.c (convert_for_assignment): Optionally warn about
2825         assigning the result of an assignment to a bool.
2827 2007-01-02  Douglas Gregor  <doug.gregor@gmail.com>
2829         * pt.c (canonical_template_parms): Correct typo in comment.
2830         
2831 2007-01-02  Douglas Gregor  <doug.gregor@gmail.com>
2833         * typeck.c (structural_comptypes): Renamed from "comptypes".
2834         (comptypes): Use canonical type information to perform fast type
2835         comparison. When VERIFY_CANONICAL_TYPES, verify that the
2836         canonical type comparison returns the same results as we would see
2837         from the current, structural check. Support COMPARE_STRUCTURAL
2838         when we need structural checks.
2839         * decl.c (typename_compare): Fix comment.
2840         (build_typename_type): TYPENAME_TYPE nodes require structural
2841         equality checks, because they resolve different based on the
2842         current class type.
2843         (make_unbound_class_template): UNBOUND_CLASS_TEMPLATE nodes
2844         require structural equality checks (for now).
2845         (build_ptrmemfunc_type): Build the canonical pointer to member
2846         function type.
2847         (compute_array_index_type): Whenever we build a new index type
2848         to represent the size of an array in a template, we need to mark
2849         this index type as requiring structural equality. This goes for
2850         arrays with value-dependent sizes with the current ABI, or all
2851         arrays with ABI-1.
2852         * tree.c (cplus_array_hash): New.
2853         (struct cplus_array_info): New.
2854         (cplus_array_compare): New.
2855         (cplus_array_htab): New.
2856         (build_cplus_array_type_1): Use a hash table to cache the array
2857         types we build. Build the canonical array type for each array
2858         type.
2859         (cp_build_qualified_type_real): When building a cv-qualified array
2860         type, use the hash table of array types and build canonical array
2861         types as necessary.
2862         (bind_template_template_parm): BOUND_TEMPLATE_TEMPLATE_PARM nodes
2863         use structural equality (for now).
2864         * cp-tree.h (COMPARE_STRUCTURAL): New.
2865         * pt.c (canonical_template_parms): New.
2866         (canonical_type_parameter): New.
2867         (process_template_parm): Find the canonical type parameter.
2868         (lookup_template_class): When we have named the primary template
2869         type, set the canonical type for our template class to the primary
2870         template type. If any of the template arguments need structural
2871         equality checks, the template class needs structural equality
2872         checks.
2873         (tsubst): When reducing the level of a template template
2874         parameter, we require structural equality tests for the resulting
2875         parameter because its template parameters have not had their types
2876         canonicalized. When reducing a template type parameter, find the
2877         canonical reduced type parameter.
2878         (any_template_arguments_need_structural_equality_p): New.