PR c++/37563
[official-gcc.git] / gcc / cp / ChangeLog
blob12a826d7f3209323a0ec0ecabc4964d82ddc6299
1 2008-11-19  Jason Merrill  <jason@redhat.com>
3         PR c++/37563
4         * parser.c (cp_parser_pseudo_destructor_name): A pseudo-destructor
5         name is not a declaration.
7         PR c++/37256
8         * pt.c (instantiate_decl): Don't require a definition of
9         a template that is explicitly instantiated 'extern'.
11 2008-11-18  Jason Merrill  <jason@redhat.com>
12             Jakub Jelinek  <jakub@redhat.com>
13         
14         PR c++/37962
15         * parser.c (cp_parser_type_id): Complain about auto.
16         * decl.c (grokdeclarator): Complain about parameters and
17         conversion functions declared with auto.
19         * call.c (standard_conversion): Use CLASS_TYPE_P instead of
20         MAYBE_CLASS_TYPE_P.
21         * cp-tree.h (TYPE_NON_AGGREGATE_CLASS): Likewise.
23 2008-11-17  Jakub Jelinek  <jakub@redhat.com>
25         PR c++/36089
26         * init.c (constant_value_1): Handle TREE_LIST init.
28 2008-11-15  Jakub Jelinek  <jakub@redhat.com>
30         PR c++/37561
31         * typeck.c (cp_build_unary_op): Don't call get_unwidened.  Use
32         argtype instead of result_type.
34 2008-11-14  Jason Merrill  <jason@redhat.com>
36         PR c++/38030
37         * semantics.c (finish_call_expr): Don't repeat arg-dep lookup
38         for a non-dependent call.
40         PR c++/37740
41         * call.c (build_aggr_conv): Increment i.
43 2008-11-13  Jason Merrill  <jason@redhat.com>
45         PR c++/37932
46         * typeck2.c (process_init_constructor_record): Update bitfield
47         handling.
48         (check_narrowing): Update bitfield handling, print source type.
49         
50 2008-11-12  Jakub Jelinek  <jakub@redhat.com>
52         PR c++/36478
53         Revert:
54         2007-05-07  Mike Stump  <mrs@apple.com>
55         * parser.c (check_empty_body): Add.
56         (cp_parser_iteration_statement): Add call to check_empty_body.
58 2008-11-12  Jason Merrill  <jason@redhat.com>
60         PR c++/38007
61         * typeck.c (cp_build_modify_expr): Update bitfield handling.
63 2008-11-12  Jakub Jelinek  <jakub@redhat.com>
65         PR c++/34269
66         * parser.c (cp_parser_simple_declaration): Don't commit
67         to tentative parse if parse errors were seen.
69         PR c++/35334
70         * error.c (dump_expr): Handle COMPLEX_EXPR.
72 2008-11-10  Jakub Jelinek  <jakub@redhat.com>
74         PR c++/38021
75         * parser.c (cp_parser_enum_specifier): After parsing :,
76         parse definitely.  Don't return early if type specifier
77         is erroneous.
79 2008-11-06  David Edelsohn  <edelsohn@gnu.org>
81         PR target/26397
82         * g++spec.c (LIBSTDCXX_STATIC): New.
83         (lang_spec_driver): Use LIBSTDCXX_STATIC when not
84         shared_libgcc.
85         
86 2008-11-05  Fabien Chene <fabien.chene@gmail.com>
88         PR c++/35219
89         * cp-tree.h: Fix DECL_NONSTATIC_MEMBER_P to handle member template
90         functions.
92 2008-11-05  Richard Guenther  <rguenther@suse.de>
94         PR middle-end/37742
95         * decl.c (start_preparsed_function): Use the correct type for
96         building the RESULT_DECL.
98 2008-10-31  Jakub Jelinek  <jakub@redhat.com>
100         PR c++/37967
101         * decl.c (grokdeclarator): Diagnose auto function decl without
102         late return type and late return type function decl where type
103         is not auto.
105         PR c++/37965
106         * decl.c (cp_finish_decl): Diagnose type_uses_auto type with
107         no initializer.
109 2008-10-29  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
111         PR 11492
112         * class.c (check_bitfield_decl): Rename min_precision to
113         tree_int_cst_min_precision.
114         * decl.c (finish_enum): Likewise.
116 2008-10-29  Manuel López-Ibáñez  <manu@gcc.gnu.org>
118         PR c++/26997
119         * parser.c (cp_parser_token_starts_cast_expression): New.
120         (cp_parser_cast_expression): Peek the next token to decide whether
121         this could be a parenthesized constructor or is definitely an
122         actual cast.
124 2008-10-24  Manuel López-Ibáñez  <manu@gcc.gnu.org>
126         PR c/7543
127         * typeck.c (build_x_binary_op): Update call to
128         warn_about_parentheses.
129         * parser.c (cp_parser_binary_expression): Add note about passing
130         the correct code for unary expressions.
132 2008-10-24  Jakub Jelinek  <jakub@redhat.com>
134         * Make-lang.in (check-c++-subtargets): New alias for
135         check-g++-subtargets.
136         (lang_checks_parallelized): Add check-g++.
137         (check_g++_parallelize): New variable.
139 2008-10-21  Richard Guenther  <rguenther@suse.de>
141         * semantics.c (simplify_aggr_init_exprs_r): Remove.
142         (expand_or_defer_fn): Do not walk the function body to
143         simplify aggr_init_exprs.
145 2008-10-20  Manuel López-Ibáñez  <manu@gcc.gnu.org>
147         PR c++/37004
148         * typeck.c (cp_common_type): New. The same as
149         type_after_usual_arithmetic_conversions but without promotions.
150         (type_after_usual_arithmetic_conversions): Do the promotions and
151         call cp_common_type.
152         (common_type): Make it behave like the C version of this
153         function. Do not handle pointer types.
154         (common_pointer_type): Move handling of pointer types from
155         common_type to here.
156         (cp_build_binary_op): Use common_pointer_type instead of
157         common_type in call to pointer_diff.
158         Use cp_common_type instead of common_type.
159         * cp-tree.h (common_pointer_type): Declare.
161 2008-10-14  Jakub Jelinek  <jakub@redhat.com>
163         PR c++/37819
164         * cp-gimplify.c (cp_genericize_r): Only fold_convert COND_EXPR
165         arguments if they don't already have COND_EXPR's type.
167 2008-10-14  Paolo Carlini  <paolo.carlini@oracle.com>
169         PR c++/37650
170         * pt.c (push_template_decl_real): Check that current_template_parms
171         is not null.
172         (process_partial_specialization): Assert current_template_parms not
173         null.
175 2008-10-13  Doug Evans  <dje@google.com>
177         * cp-tree.h (DECL_MAIN_P): Fix parentheses around expression.
179 2008-10-10  Jakub Jelinek  <jakub@redhat.com>
181         PR c++/37146
182         * cp-gimplify.c (cp_genericize_r): Fix up bitfield operands of
183         COND_EXPR.
185 2008-10-09  Jakub Jelinek  <jakub@redhat.com>
187         PR c++/37568
188         * semantics.c (finalize_nrv_r): Clear DECL_INITIAL instead of
189         setting it to error_mark_node.
191 2008-10-07  Steve Ellcey  <sje@cup.hp.com>
193         * decl.c (start_cleanup_fn): Declare as inline.
195 2008-10-06  Jason Merrill  <jason@redhat.com>
197         PR c++/37376, other mangling issues
198         * mangle.c (write_type): Update TYPE_PACK_EXPANSION mangling.
199         (write_member_name): Break out from...
200         (write_expression): ...here.  Handle dependent COMPONENT_REF.
201         (write_template_arg): Wrap an argument pack in 'I'/'E'.
202         (write_builtin_type): Update char16/32_t mangling.
203         (write_nested_name, write_prefix): Don't forget template args
204         for typename types.
205         * operators.def: Add ARROW_EXPR, update COMPONENT_REF and 
206         EXPR_PACK_EXPANSION.
208 2008-10-06  Aldy Hernandez  <aldyh@redhat.com>
210         * typeck.c (build_x_indirect_ref): Add location argument.
211         (cp_build_binary_op): Pass location to warn_for_div_by_zero.
212         (cp_build_unary_op): Add location argument.
213         (cp_build_modify_expr): Same.
214         * class.c (build_base_path): Pass location to build_indirect_ref.
215         * semantics.c (handle_omp_for_class_iterator): Pass elocus to
216         build_modify_expr.
218 2008-10-05  Dodji Seketeli  <dodji@redhat.com>
220         PR c++/37410
221         * cp-gimplify.c (cp_gimplify_expr): For each USING_STMT
222         make sure an IMPORTED_DECL node is added to the BLOCK_VARS list
223         of the innermost containing BLOCK.
225 2008-10-03  Paolo Carlini  <paolo.carlini@oracle.com>
227         PR c++/37719
228         * error.c (dump_function_decl): Save the exceptions in case of
229         error about incompatible specifications in a specialization.
231 2008-10-01  Andrew Pinski  <andrew_pinski@playstation.sony.com>
233         * tree.c (lvalue_p_1): COMPOUND_LITERAL_EXPR is also an lvalue.
235 2008-09-30  H.J. Lu  <hongjiu.lu@intel.com>
237         PR c++/37683
238         * parser.c (cp_parser_selection_statement): Fix uninitialized
239         variable.
241 2008-09-30  Simon Martin  <simartin@users.sourceforge.net>
243         PR c++/37555
244         PR c++/37556
245         * decl.c (grokdeclarator): Set the type for typedefs to a
246         nested-name-specifier to error_mark_node.
248 2008-09-30  Paolo Bonzini  <bonzini@gnu.org>
250         * parser.c (cp_parser_selection_statement): Implement here the
251         -Wempty-body warning for `if' and `else' statements.
252         * semantics.c (finish_if_stmt): Do not call empty_body_warning.
254 2008-09-25  Paolo Carlini  <paolo.carlini@oracle.com>
256         PR c++/37649
257         * name-lookup.c (maybe_process_template_type_declaration): Check
258         return value of push_template_decl_real for error_mark_node.
260 2008-09-24  Aldy Hernandez  <aldyh@redhat.com>
262         * semantics.c (finish_fname): Pass location to fname_decl.
264 2008-09-23  Jakub Jelinek  <jakub@redhat.com>
266         PR c++/37533
267         * semantics.c (finish_omp_for): If processing_template_decl, just build
268         MODIFY_EXPR for init instead of calling cp_build_modify_expr.
270 2008-09-23  Aldy Hernandez  <aldyh@redhat.com>
272         * typeck.c (build_array_ref): Pass location to cp_build_binary_op.
273         (get_member_function_from_ptrfunc): Same.
274         (build_x_binary_op): Same.
275         (build_binary_op): Same.
276         (cp_build_binary_op): New location argument.
277         (pointer_diff): Pass location to cp_build_binary_op.
278         (cp_truthvalue_conversion): Pass location to build_binary_op.
279         (convert_ptrmem): Pass location to cp_build_binary_op.
280         (cp_build_modify_expr): Same.
281         (build_ptrmemfunc): Same.
282         * init.c (expand_cleanup_for_base): Pass location to
283         c_common_truthvalue_conversion.
284         (build_new_1): Pass location to cp_build_binary_op.
285         (build_vec_delete_1): Pass location to *build_binary_op,
286         c_common_truthvalue_conversion.
287         (build_vec_init): Same.
288         (build_delete): Same.
289         * decl.c (compute_array_index_type): Same.
290         * call.c (build_new_op): Same.
291         * rtti.c (build_dynamic_cast_1): Same.
292         * cp-tree.h: Add argument to cp_build_binary_op.
293         * semantics.c (handle_omp_for_class_iterator): Pass location to
294         *build_binary_op, c_common_truthvalue_conversion.
295         * decl2.c (get_guard_cond): Same.
297 2008-09-17  Richard Guenther  <rguenther@suse.de>
299         PR c++/22374
300         * rtti.c (build_dynamic_cast_1): Convert the COND_EXPR
301         result to the correct type.
303 2008-09-17  H.J. Lu  <hongjiu.lu@intel.com>
305         PR c++/37450
306         * name-lookup.c (pushdecl_maybe_friend): Don't return the old
307         parameter for duplicate.
309 2008-09-17  Jason Merrill  <jason@redhat.com>
311         PR c++/37588
312         * name-lookup.c (lookup_type_scope): Look through sk_function_parms.
314 2008-09-17  Jakub Jelinek  <jakub@redhat.com>
316         PR c++/37552
317         * typeck.c (build_array_ref): Use protected_set_expr_location instead
318         of SET_EXPR_LOCATION when ret might not be an expression.
320 2008-09-17  Jan Hubicka  <jh@suse.cz>
322         PR c++/18071
323         * cp/decl.c (start_method): Set DECL_NO_INLINE_WARNING_P.
325 2008-09-16  Jakub Jelinek  <jakub@redhat.com>
327         PR c++/37531
328         * semantics.c (finish_compound_literal): Return error_mark_node if
329         type is errorneous.
331         PR c++/37532
332         * lex.c (init_reswords): Don't populate ridpointers for D_CONLY
333         reserved words.
335 2008-09-15  Aldy Hernandez  <aldyh@redhat.com>
337         * decl.c (duplicate_decls): Call error_at.
338         (grokfndecl): New location argument.  Use location if available.
339         (grokdeclarator): Pass declarator location to grokfndecl.
340         * cp-tree.h (struct cp_declarator): Update comment for id_loc.
341         * decl2.c (check_classfn): Use error_at.
342         * parser.c (cp_parser_init_declarator): Set function_start_locus
343         to brace location.
344         (cp_parser_member_declaration): Set id_loc for function declarators.
346 2008-09-09  Jan Hubicka  <jh@suse.cz>
348         PR middle-end/37500
349         * pt.c (tsubst_decl): Do not copy DECL_STRUCT_FUNCTION pointer.
351 2008-09-09  Jakub Jelinek  <jakub@redhat.com>
353         PR c++/37417
354         * tree.c (array_type_nelts_top): Add size_one_node instead of
355         integer_one_node.
357 2008-09-09  Jason Merrill  <jason@redhat.com>
359         PR c++/37439
360         * pt.c (tsubst_copy) [PARM_DECL]: Don't abort if the parm has
361         DECL_CONTEXT set.
363 2008-09-09  Jakub Jelinek  <jakub@redhat.com>
365         PR c++/37389
366         * decl.c (build_enumerator): Handle previous value's DECL_INITIAL
367         being error_operand_p.  Don't clear value if it was error_mark_node.
369 2008-09-09  Paolo Bonzini  <bonzini@gnu.org>
371         * cp-objcp-common.h (LANG_HOOKS_EXPAND_DECL): Remove.
372         * cp-tree.h: Don't mention DECL_ANON_UNION_ELEMS.
373         * semantics.c (anon_aggr_type_p): Remove.
375 2008-09-06  Jason Merrill  <jason@redhat.com>
377         PR c++/37302
378         * parser.c (cp_parser_parameter_declaration_list): Process the
379         PARM_DECLs as we go and push them.  Return a TREE_LIST.
380         (cp_parser_parameter_declaration_clause): Return a TREE_LIST.
381         (cp_parser_direct_declarator): Create a binding level and
382         suppress deprecated warnings in the parameter list.
383         (make_call_declarator): PARMS is now a tree.
384         * cp-tree.h (struct cp_declarator): Function parms are now a tree.
385         * decl.h (enum deprecated_states, deprecated_state): Move here.
386         * decl.c: From here.
387         (type_is_deprecated): New fn.
388         (grokparms): PARMLIST is a tree now.  Warn about parms that
389         use deprecated types.
390         * mangle.c (write_expression): Handle PARM_DECL, CALL_EXPR and
391         0-operand cast.
392         * pt.c (tsubst) [DECLTYPE_TYPE]: Set skip_evaluation.
393         (tsubst_copy) [PARM_DECL]: Handle a PARM_DECL used outside of a 
394         function.
395         * name-lookup.c (pushtag): Look through function parameter scopes.
396         (pushdecl_maybe_friend): Don't set DECL_CONTEXT on a PARM_DECL 
397         when we're parsing a function declarator.
399 2008-09-05  Douglas Gregor  <doug.gregor@gmail.com>
401        PR c++/37342
402        * tree.c (cp_build_qualified_type_real): Deal with sharing of
403        TYPE_LANG_SPECIFIC in the canonical types of pointer-to-method
404        types.
405         
406 2008-09-04  Ian Lance Taylor  <iant@google.com>
408         * parser.c (check_no_duplicate_clause): Change code parameter to
409         enum omp_clause_code.
411 2008-09-03  Jakub Jelinek  <jakub@redhat.com>
413         PR c++/37348
414         * decl.c (cp_finish_decl): Only set
415         DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P if decl is VAR_DECL.
417         PR c++/37189
418         * cp-tree.h (defer_mark_used_calls, deferred_mark_used_calls): New
419         extern decls.
420         * decl2.c (mark_used): If defer_mark_used_calls, push decl into
421         deferred_mark_used_calls vector and exit early.
422         * decl.c (defer_mark_used_calls, deferred_mark_used_calls): New
423         variables.
424         (finish_function): Set defer_mark_used_calls for the duration of the
425         function.  Call mark_used on any queued decls.
427 2008-09-02  Jason Merrill  <jason@redhat.com>
429         PR c++/37208
430         * call.c (build_over_call): Make =delete work with SFINAE.
431         * class.c (resolve_address_of_overloaded_function): Likewise.
433         * cp-tree.h (struct lang_decl_flags): Rename threadprivate_p to
434         threadprivate_or_deleted_p.
435         (CP_DECL_THREADPRIVATE_P): Adjust.
436         (DECL_DELETED_FN): Likewise.
437         (SD_UNINITIALIZED, SD_INITIALIZED, SD_DEFAULTED): New macros.
438         (SD_DELETED): New macro.
439         * parser.c (cp_parser_init_declarator): Use them.
440         * decl.c (start_decl): Use them.
442         * decl2.c (mark_used): Give =deleted error even in sizeof.
444         * typeck2.c (check_narrowing): Downgrade narrowing error to
445         permerror.
447 2008-09-02  Aldy Hernandez  <aldyh@redhat.com>
449         * typeck.c (build_array_ref): Use new location argument.
450         * class.c (build_vtbl_ref_1): Pass location to build_array_ref.
451         * call.c (build_new_op): Same.
452         * decl2.c (grok_array_decl): Same.
453         * cp-tree.h (build_array_ref): Add location argument to prototype.
455 2008-09-01  Aldy Hernandez  <aldyh@redhat.com>
457         * typeck.c (build_x_indirect_ref): Add location argument.
458         * class.c (build_base_path): Pass location to build_indirect_ref.
459         * pt.c (tsubst_copy_and_build): Pass location to
460         finish_label_address_expr.
461         * parser.c (cp_parser_unary_expression): Same.
463 2008-08-31  Jason Merrill  <jason@redhat.com>
465         Implement late-specified return type using 'auto'.
466         * cp-tree.h (struct cp_declarator): Add late_return_type field to
467         function declarator.
468         * parser.c (cp_parser_late_return_type_opt): New fn.
469         (cp_parser_direct_declarator): Use it.
470         (make_call_declarator): Put it in the declarator.
471         * decl.c (grokdeclarator): Splice in late-specified return type.
472         * pt.c (splice_late_return_type): New fn.
474 2008-08-29  Michael Meissner  <gnu@the-meissners.org>
476         * decl.c (builtin_function_1): Take a bool argument to decide
477         whether to use pushdecl or pushdecl_top_level.
478         (duplicate_decls): Copy function specific target and optimization
479         options on duplicate declarations.
480         (cxx_builtin_function): Update builtin_function_1 call.
481         (cxx_builtin_function_ext_scope): New function, guarantee that the
482         declaration is done at global scope.
484         * cp-objcp-common.h (LANG_HOOKS_BUILTIN_FUNCTION_EXT_SCOPE): New
485         macro, define builtin function hook for delayed machine specific
486         builtins.
488         * cp-tree.h (cxx_builtin_function_ext_scope): Add declaration.
490 2008-08-30  Jason Merrill  <jason@redhat.com>
492         PR c++/37288
493         * pt.c (dependent_type_p): Don't abort on auto outside of a template.
495 2008-08-29  Jason Merrill  <jason@redhat.com>
497         Implement C++0x 'auto' semantics.
498         * decl.c (start_decl_1): Don't complain about auto being incomplete.
499         (cp_finish_decl): Deduce auto.
500         * init.c (build_new): Handle 'new auto'.
501         * typeck2.c (cxx_incomplete_type_diagnostic): Give a different
502         message for auto than for normal template type parms.
503         * pt.c (type_dependent_expression_p): Handle { }.
504         (make_auto): New function.
505         (listify_autos): New function.
506         (do_auto_deduction): New function.
507         (is_auto): New function.
508         (type_uses_auto): New function.
509         * cp-tree.h: Declare them.
510         * parser.c (cp_parser_decl_specifier_seq): In C++0x mode, don't
511         treat auto as a declspec.
512         (cp_parser_simple_type_specifier): It's a type-specifier.
514 2008-08-29  Mark Mitchell  <mark@codesourcery.com>
516         * mangle.c (write_type): Add target-specific manglings for
517         non-fundamental types to the substitution table.
518         gcc/testsuite/
520 2008-08-29  Jakub Jelinek  <jakub@redhat.com>
522         PR fortran/29635
523         PR fortran/23057
524         * name-lookup.c (do_using_directive, cp_emit_debug_info_for_using):
525         Adjust debug_hooks->imported_module_or_decl callers.
527 2008-08-29  Jan Hubicka  <jh@suse.cz>
529         * cp-gimplify.c (cp_gimplify_expr): Add PRED_CONTINUE heuristic.
531 2008-08-28  Paolo Carlini  <paolo.carlini@oracle.com>
533         PR c++/37260
534         * decl.c (reshape_init_r): Check init for error_mark_node.
536 2008-08-27  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
538         PR c++/17880
539         * semantics.c (maybe_convert_cond): Call verify_sequence_points.
540         (finish_return_stmt): Likewise.
541         (finish_switch_condition): Likewise.
543 2008-08-27  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
545         * cp-tree.h: Fix #error directive.
547 2008-08-26  Douglas Gregor  <doug.gregor@gmail.com>
549         * typeck.c (type_after_usual_arithmetic_conversions): Don't do the
550         usual arithmetic conversions on scoped enumeration types.
551         (common_type): Ditto.
552         (default_conversion): Don't perform integral promotions on scoped
553         enumeration types. 
554         (build_array_ref): Scoped enumeration types can't be used as
555         subscripts.
556         * decl.c (start_enum): If building a C++0x scoped enumeration,
557         enter its scope. If provided with an underlying type, check that
558         underlying type and set up the enumeration type accordingly.
559         (finish_enum): Only compute an underlying type if the underlying
560         type isn't already fixed, and only convert the enumerator values
561         now if we've just computed the underlying type. Finish the scope
562         of C++0x scoped enumerations.
563         (build_enumerator): For enumerations with a fixed underlying type,
564         check the enumerator values when the enumerator is defined.
565         (lookup_enumerator): New.
566         * call.c (standard_conversion): Don't allow assignment from
567         integers to scoped enumeration types, even with -fpermissive.
568         Don't convert from scoped enumerations to bool or any arithmetic
569         types.
570         (build_conditional_expr): Don't per the usual arithmetic
571         conversions for scoped enumeration types.
572         (convert_like_real): Check complain to see if we should
573         produce warnings.
574         * error.c (class_key_or_enum_as_string): Print scoped enums.
575         * cp-tree.h (MAYBE_CLASS_TYPE_P): Check CLASS_TYPE_P, not
576         TYPE_LANG_FLAG_5.
577         (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P): New.
578         (SCOPED_ENUM_P): New.
579         (UNSCOPED_ENUM_P): New.
580         (SET_SCOPED_ENUM_P): New.
581         (ENUM_UNDERLYING_TYPE): New.
582         * pt.c (lookup_template_class): Update the instantiation of enum
583         types to deal with C++0x scoped enumerations and underlying
584         types.
585         * name-lookup.c (begin_scope): Deal with scoped enumeration
586         scopes.
587         (lookup_qualified_name): Deal with lookup into enumeration types.
588         * name-lookup.h (enum scope_kind): Add sk_scoped_enum.
589         * parser.c (cp_parser_class_or_namespace_name): Rename to...
590         (cp_parser_qualifying_entity): ... this. Also, in C++0x mode,
591         parse a type-name that can be an enumeration type.
592         (cp_parser_nested_name_specifier_opt): Update with C++0x grammar.
593         (cp_parser_elaborated_type_specifier): Parse the
594         optional `struct' or `class' following enum (in C++0x).
595         (cp_parser_enum_specifier): Parse C++0x scoped enumerations and
596         enum-base clauses.
598 2008-08-21  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
600         * typeck.c: Update all calls to pedwarn.
601         * decl.c: Likewise.
602         * call.c: Likewise.
603         * error.c: Likewise.
604         * pt.c: Likewise.
605         * name-lookup.c: Likewise.
606         * parser.c: Likewise.
608 2008-08-20  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
610         PR c++/35158
611         * parser.c (cp_parser_omp_for_loop): Handle parenthesized
612         initializers.
614 2008-08-20  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
616         * parser.c: Update all calls to inform.
617         * typeck.c: Likewise.
618         * init.c: Likewise.
619         * class.c: Likewise.
620         * call.c: Likewise.
621         * method.c: Likewise.
622         * friend.c: Likewise.
623         * typeck2.c: Likewise.
624         * pt.c: Likewise.
625         * name-lookup.c: Likewise.
626         * lex.c: Likewise.
628 2008-08-19  Jakub Jelinek  <jakub@redhat.com>
630         PR debug/37156
631         * error.c (cp_print_error_function): Deal with recursive BLOCK trees.
633 2008-08-18  Tomas Bily  <tbily@suse.cz>
635         * tree.c (cp_tree_equal): Use CONVERT_EXPR_CODE_P.
637 2008-08-18  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
639         * typeck.c: Update all callers of permerror.
640         * init.c: Likewise.
641         * class.c: Likewise.
642         * decl.c: Likewise.
643         * call.c: Likewise.
644         * except.c: Likewise.
645         * cvt.c: Likewise.
646         * typeck2.c: Likewise.
647         * pt.c: Likewise.
648         * semantics.c: Likewise.
649         * name-lookup.c: Likewise.
650         * lex.c: Likewise.
651         * decl2.c: Likewise.
652         * parser.c: Likewise.
654 2008-08-14  Paolo Carlini  <paolo.carlini@oracle.com>
656         PR c++/34485
657         * pt.c (check_template_shadow): Change to return a bool.
658         * name-lookup.c (push_class_level_binding): Early return if
659         check_template_shadow returns false.
660         * cp-tree.h (check_template_shadow): Adjust declaration.
662 2008-08-14  Paolo Carlini  <paolo.carlini@oracle.com>
664         PR c++/34600
665         * decl.c (grokdeclarator): In case of extern and initializer, return
666         error_mark_node after the error.
668 2008-08-13  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
670         PR 30551
671         * decl.c (grokfndecl): Call check_main_parameters_type only if
672         -Wmain.
674 2008-08-12  Paolo Carlini  <paolo.carlini@oracle.com>
676         PR c++/37087
677         * parser.c (cp_parser_class_head): Early return error_mark_node in
678         case of global qualification of class name or qualified name that
679         does not name a class.
681 2008-08-09  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
683         PR c++/12242
684         * cvt.c (ocp_convert): Warn for out-of-range conversions to enum.
686 2008-08-09  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
688         PR 36901
689         * cp-tree.h (struct diagnostic_context, struct diagnostic_info):
690         Delete forward declarations. Check that toplev.h has not been
691         included before this file. Include toplev.h and diagnostic.h.
692         * error.c (cp_cpp_error): Use DK_PEDWARN.
693         (cxx_incomplete_type_diagnostic): Update declaration.
694         (cxx_incomplete_type_error): Use DK_ERROR.
695         * typeck2.c (cxx_incomplete_type_diagnostic): Take a diagnostic_t
696         as argument. Use emit_diagnostic.
697         (cxx_incomplete_type_error): Use DK_ERROR.
698         (add_exception_specifier): Use diagnostic_t instead of custom
699         codes.  
700         * typeck.c (complete_type_or_else): Update call to
701         cxx_incomplete_type_diagnostic.
702         * init.c (build_delete): Likewise.  
703         * call.c (diagnostic_fn_t): Remove unused typedef.
704         (build_temp): Pass a pointer to diagnostic_t.
705         (convert_like_real): Use emit_diagnostic.
706         (joust): Check return value of warning before giving informative
707         note.  
708         * friend.c (do_friend): Check return value of warning
709         before giving informative note.
710         * parser.c (cp_parser_template_id): Likewise.
712 2008-08-09  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
714         PR 7651
715         * class.c (check_bases_and_members): Warn with -Wuninitialized
716         instead of -Wextra.
717         
718 2008-08-08  Volker Reichelt  <v.reichelt@netcologne.de>
720         PR c++/35985
721         * decl.c (xref_basetypes): Check base for MAYBE_CLASS_TYPE_P,
722         and make sure it is not a union.
724 2008-08-07  H.J. Lu  <hongjiu.lu@intel.com>
726         * semantics.c (finish_decltype_type): Initialize type.
728 2008-08-07  Douglas Gregor  <doug.gregor@gmail.com>
730         * semantics.c (finish_decltype_type): Handle calls to function
731         pointers and references to functions properly.
733 2008-08-06  Douglas Gregor  <doug.gregor@gmail.com>
735         PR c++/36460
736         * parser.c (cp_parser_template_argument): Don't assume that '>>'
737         following a type-id is an error when in C++0x mode.
739 2008-08-06  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
741         PR 26785
742         * decl.c (grokdeclarator): Use explicit location with permerror_at.
744 2008-08-06  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
746         PR 8715
747         * typeck.c (cp_build_binary_op): Move code to c-common.c.
749 2008-08-05  Jason Merrill  <jason@redhat.com>
751         PR c++/37016
752         * decl.c (build_ptrmemfunc_type): Don't require structural
753         comparison of PMF types.
754         * tree.c (cp_build_qualified_type_real): Don't clear
755         a valid TYPE_PTRMEMFUNC_TYPE.
756         * typeck.c (cp_build_unary_op): Still do build_ptrmemfunc in
757         templates.
759 2008-08-04  Jason Merrill  <jason@redhat.com>
761         PR c++/36963
762         * typeck2.c (check_narrowing): Allow narrowing conversion
763         from an explicit floating-point constant.
765         PR c++/37006
766         * pt.c (tsubst_decl): Leave DECL_INITIAL set on deleted
767         instantiations.
769 2008-08-04  Simon Baldwin  <simonb@google.com>
771         PR c++/36999
772         * parser.c (cp_parser_elaborated_type_specifier): Warn only when
773         the declaration's id is followed by a semicolon.
775 2008-07-31  Jakub Jelinek  <jakub@redhat.com>
777         PR c++/36405
778         * rtti.c (get_tinfo_decl_dynamic, get_typeid): Call
779         complete_type_or_else even for UNKNOWN_TYPE to get diagnostics.
781 2008-07-31  Jason Merrill  <jason@redhat.com>
783         PR c++/36633
784         * init.c (build_new_1): Don't convert pointer to the data type
785         until we're actually going to treat it as that type.
787         PR c++/11309
788         * tree.c (build_aggr_init_expr): Split out...
789         (build_cplus_new): ...from here.
790         (stabilize_init): Don't mess with AGGR_INIT_EXPR either.
791         * init.c (build_new_1): new T() means value-initialization,
792         not default-initialization.
793         (build_vec_init): Likewise.
794         (build_value_init_1): Use build_aggr_init_expr.
796 2008-07-30  Dodji Seketeli  <dseketel@redhat.com>
798         PR c++/36767
799         * decl2.c (fix_temporary_vars_context_r): New function.
800          (one_static_initialization_or_destruction): Make sure temporary
801          variables part of the initialiser have their DECL_CONTEXT()
802          properly set.
804 2008-07-30  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
806         PR 34389
807         * typeck.c (build_binary_op): Encapsulate code into
808         shorten_binary_op.
810 2008-07-29  Jakub Jelinek  <jakub@redhat.com>
812         PR c++/36852
813         * tree.c (cplus_array_hash, build_cplus_array_type_1): Hash on
814         TYPE_UID instead of pointers.
816 2008-07-29  Jan Hubicka  <jh@suse.cz>
818         * optimize.c (maybe_clone_body): Remove DECL_INLINE.
819         * decl.c (duplicate_decls): Likewise.
820         (grokfndecl): Likewise.
821         (start_method): Likewise.
822         * method.c (make_thunk, make_alias_for, implicitly_declare_fn):
823         Likewise.
824         * pt.c (register_specialization, regenerate_decl_from_template):
825         Likewise.
826         * decl2.c (grokfield): Likewise.
828 2008-07-29  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
830         PR 34985
831         * decl.c (duplicate_decls): Merge USED flags.
833 2008-07-27  Jason Merrill  <jason@redhat.com>
835         PR c++/36943
836         * decl.c (reshape_init_r): Allow C++0x initializer lists.
838 2008-07-28  Richard Guenther  <rguenther@suse.de>
840         Merge from gimple-tuples-branch.
842         2008-07-22  Aldy Hernandez  <aldyh@redhat.com>
844         * cp-gimplify.c (gimplify_if_stmt): Set location on newly created
845         COND_EXPR.
847         2008-07-18  Jakub Jelinek  <jakub@redhat.com>
849         * decl.c (finish_function): Call gimple_body after cp_genericize.
851         2008-07-18  Aldy Hernandez  <aldyh@redhat.com>
853         * optimize.c: Include gimple.h instead of tree-gimple.h.
854         * Make-lang.in (cp-gimplify.o): Depend on tree-iterator.h.
855         * cp-gimplify.c: Rename tree-gimple.h to gimple.h.  Include
856         tree-iterator.h.
858         2008-07-16  Jakub Jelinek  <jakub@redhat.com>
860         * optimize.c (maybe_clone_body): Clear DECL_SAVED_TREE for the clone.
862         2008-07-14  Jakub Jelinek  <jakub@redhat.com>
864         * cp-gimplify.c (cp_gimplify_expr): Update comment.
866         2008-07-14  Aldy Hernandez  <aldyh@redhat.com>
868         * cp-tree.h (union lang_tree_node): Rename GENERIC_NEXT to
869         TREE_CHAIN.
870         * cp-gimplify.c (cxx_omp_clause_apply_fn): Rename
871         GIMPLE_MODIFY_STMT to MODIFY_EXPR.
872         (cxx_omp_clause_copy_ctor): Same.
873         (cxx_omp_clause_assign_op): Same.
875         2008-05-28  Jakub Jelinek  <jakub@redhat.com>
877         * cp-gimplify.c (cp_gimplify_omp_for): Add pre_p argument.  Tuplify.
878         (cp_gimplify_expr): Adjust caller.
880         2008-05-11 Doug Kwan  <dougkwan@google.com>
882         * init.c (build_vec_delete): Add type conversion for argument
883         0 of POINTER_PLUS_EXPR.
885         2008-04-29  Doug Kwan  <dougkwan@google.com>
887         * decl2 (File): Include "gimple.h"
888         (cp_write_global_declarations): Use gimple_body instead of
889         DECL_SAVED_TREE.
890         * Make-lang.in (cp/decl2.o): Add $(GIMPLE_H)
892         2008-04-10  Diego Novillo  <dnovillo@google.com>
894         http://gcc.gnu.org/ml/gcc-patches/2008-04/msg00913.html
896         * optimize.c (maybe_clone_body): Re-enable call to
897         clone_body.
898         * cp-gimplify.c (cp_gimplify_omp_for): Mark disabled
899         code with call to gimple_unreachable.
900         (cp_genericize): Fix handling of clone bodies.
902         2008-04-04  Diego Novillo  <dnovillo@google.com>
904         http://gcc.gnu.org/ml/gcc-patches/2008-04/msg00413.html
906         * optimize.c (maybe_clone_body): Re-enable.
908         2008-02-19  Diego Novillo  <dnovillo@google.com>
909                     Oleg Ryjkov  <olegr@google.com>
911         http://gcc.gnu.org/ml/gcc-patches/2008-02/msg00804.html
913         * cp-gimplify.c (gimplify_for_stmt): Change gimple_seq
914         argument to gimple_seq *.  Update all users.
915         (gimplify_must_not_throw_expr): Likewise.
917         2008-02-04  Oleg Ryjkov <olegr@google.com>
919         * except.c: Include gimple.h
920         (cp_protect_cleanup_actions): Convert to tuples.
921         * Make-lang.in (cp/except.o): Add dependency on gimple.h
923         2007-11-10  Aldy Hernandez  <aldyh@redhat.com>
925         * cp-gimplify.c (gimplify_cp_loop): Call tree_annotate_all_with_locus
926         instead of annotating each block manually.
928         2007-10-30  Aldy Hernandez  <aldyh@redhat.com>
930         * cp-gimplify.c (gimplify_cp_loop): Tuplify.
931         (gimplify_for_stmt): Same.
932         (gimplify_switch_stmt): Same.
933         (cp_gimplify_expr): [FOR_STMT]: Do not call gimplify_for_stmt.  Return
934         GS_OK.
935         [WHILE_STMT]: Return GS_OK.
936         [SWITCH_STMT]: Same.
937         [CONTINUE_STMT]: Same.
938         [BREAK_STMT]: Same.
939         (cp_genericize): Set gimple_body() of cloned functions when needed.
941         2007-10-29  Aldy Hernandez  <aldy@quesejoda.com>
943         * cp-gimplify.c: Move build_gimple_eh_filter_tree here.
944         (cp_gimplify_init_expr): Convert to tuples.
945         (gimplify_must_not_throw_expr): Make function return a
946         gimplify_status and convert to tuples.
948         2007-10-18  Aldy Hernandez  <aldy@quesejoda.com>
950         * cp-gimplify.c (genericize_try_block): Enable and do not call
951         gimplify_stmt.
952         (genericize_catch_block): Same.
953         (genericize_eh_spec_block): Same.
954         Rename gimple_build_eh_filter_tree to build_gimple_eh_filter_tree.
955         (cp_gimplify_expr): Enable TRY_BLOCK, HANDLER, and EH_SPEC_BLOCK.
957         2007-10-16  Aldy Hernandez  <aldy@quesejoda.com>
959         * optimize.c (maybe_clone_body): Comment out call to clone_body.
960         * decl.c (finish_function): Use gimple_body instead of
961         DECL_SAVED_TREE.
962         * cp-tree.h (cp_gimplify_expr): Last 2 arguments are sequences.
963         * cp-gimplify.c (genericize_try_block): Comment out.
964         (genericize_catch_block): Same.
965         (genericize_eh_spec_block): Same.
966         (gimplify_cp_loop): Comment out calls to gimplify_stmt.
967         (gimplify_for_stmt): Comment out.
968         (gimplify_switch_stmt): Comment out call to gimplify_stmt.
969         (cp_gimplify_omp_for): Same.
970         (gimplify_must_not_throw_expr): Argument pre_p is a sequence.
971         Comment out call to gimplify_stmt and append_to_statement_list.
972         Rename gimple_build_eh_filter_tree to build_gimple_eh_filter_tree.
973         (cp_gimplify_init_expr): Arguments pre_p and post_p are sequences.
974         (cp_gimplify_expr): Same.
975         Comment out calls to genericize_*_block.  Comment out call to
976         gimplify_for_stmt.
978 2008-07-27  H.J. Lu  <hongjiu.lu@intel.com>
980         PR c++/36944
981         * class.c (type_has_user_provided_default_constructor): Handle
982         default parameters.
984 2008-07-27  Paolo Carlini  <paolo.carlini@oracle.com>
986         * decl.c (push_library_fn): Add a parameter for the exceptions that
987         the function may throw.
988         (push_void_library_fn, push_throw_library_fn, expand_static_init):
989         Adjust.
990         (build_library_fn): Change to static.
991         * cp-tree.h: Adjust declarations.
992         * except.c (declare_nothrow_library_fn): New.
993         (do_get_exception_ptr, do_begin_catch, do_free_exception,
994         do_allocate_exception):  Use the latter, adjust the declarations
995         (ie, add empty exception-specification), consistently with the
996         actual implementation in libsupc++.
998 2008-07-25  Jan Hubicka  <jh@suse.cz>
1000         * typeck.c (inline_conversion): Remove.
1001         (cp_build_function_call): Do not use inline_conversion.
1002         * decl.c (duplicate_decls): Do not insist on inline being declared
1003         early.
1004         (start_cleanup_fn): Do not assume that INLINE flags prevent function
1005         from being output.  We now remove static functions always.
1006         (finish_function): Do return warning on all static functions.
1007         * call.c (build_over_call): Do not use inline_conversion.
1008         * cp-tree.h (possibly_inlined_p): Declare.
1009         (inline_conversion): Remove.
1010         * pt.c (instantiate_decl): Use possibly_inlined_p predicate.
1011         * decl2.c (cp_write_global_declarations): Likewise.
1012         (mark_used): Likewise.
1013         (possibly_inlined_p): New functions.
1015 2008-07-25  Jason Merrill  <jason@redhat.com>
1017         * class.c (type_has_user_provided_default_constructor): Handle
1018         templates.
1020 2008-07-23  Jan Hubicka  <jh@suse.cz>
1022         * decl.c (duplicate_decls): Update comment and unit-at-a-time.
1023         (grogfndecl): Drop flag_inline_trees code.
1024         * pt.c (instantiate_decl): Drop flag_iline_trees code.
1025         * lex.c (cxx_init): Do not set unit-at-a-time.
1027 2008-07-23  Jason Merrill  <jason@redhat.com>
1029         * mangle.c (write_unqualified_name): Avoid infinite recursion when
1030         trying to mangle a decl with no name.
1032         Implement defaulted/deleted functions as per N2346
1033         * cp-tree.h (struct lang_decl_flags): Add defaulted_p bitfield.
1034         (DECL_DELETED_FN): New macro.
1035         (DECL_DEFAULTED_FN): New macro.
1036         * class.c (user_provided_p): New fn.
1037         (defaultable_fn_p): New fn.
1038         (type_has_user_provided_constructor): New fn.
1039         (type_has_user_provided_default_constructor): New fn.
1040         (check_methods): A defaulted fn is still trivial.
1041         (check_bases_and_members): Likewise.
1042         * decl.c (grok_special_member_properties): Likewise.
1043         (duplicate_decls): Complain about redeclaring a function as deleted.
1044         (start_decl): initialized==2 means deleted.
1045         (cp_finish_decl): Handle deleted/defaulted semantics.
1046         * decl2.c (grokfield): Likewise.
1047         (mark_used): Check DECL_DEFAULTED_FN instead of DECL_ARTIFICIAL.
1048         Complain about using a deleted fn.
1049         * init.c (build_value_init_1): Use type_has_user_provided_constructor.
1050         (perform_member_init): Check for a user-provided default constructor
1051         even if TYPE_NEEDS_CONSTRUCTING.
1052         (build_new_1): Likewise.
1053         * call.c (build_over_call): Don't call mark_used twice.
1054         * method.c (implicitly_declare_fn): Set DECL_DEFAULTED_FN.
1055         * search.c (check_final_overrider): Check for deleted mismatch.
1056         * parser.c (cp_parser_init_declarator): Tell start_decl about =delete.
1057         (cp_parser_pure_specifier): Handle =default and =delete.
1059         * error.c (maybe_warn_cpp0x): Suggest -std=gnu++0x as well.
1061 2008-07-23  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
1063         PR 35058
1064         * typeck.c: All calls to pedwarn changed.
1065         * decl.c: All calls to pedwarn changed.
1066         * call.c: All calls to pedwarn changed.
1067         * error.c: All calls to pedwarn changed.
1068         * typeck2.c: All calls to pedwarn changed.
1069         * pt.c: All calls to pedwarn changed.
1070         * name-lookup.c: All calls to pedwarn changed.
1071         * parser.c: All calls to pedwarn changed.
1073 2008-07-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1075         * call.c: Fix comment typos.
1076         * class.c: Likewise.
1077         * cp-tree.h: Likewise.
1078         * cxx-pretty-print.c: Likewise.
1079         * decl.c: Likewise.
1080         * init.c: Likewise.
1081         * name-lookup.c: Likewise.
1082         * operators.def: Likewise.
1083         * parser.c: Likewise.
1084         * pt.c: Likewise.
1085         * tree.c: Likewise.
1086         * typeck.c: Likewise.
1088 2008-07-21  Paolo Carlini  <paolo.carlini@oracle.com>
1090         PR c++/36871
1091         PR c++/36872
1092         * semantics.c (classtype_has_nothrow_assign_or_copy_p): Only check
1093         copy constructors and copy assignment operators proper.
1095 2008-07-21  Rafael Ávila de Espíndola  <espindola@google.com>
1097         * parser.c (cp_token): Remove in_system_header.
1098         (eof_token): Remove in_system_header.
1099         (cp_lexer_get_preprocessor_token): Don't set in_system_header.
1100         (cp_lexer_set_source_position_from_token): Don't set in_system_header.
1101         (cp_parser_member_declaration):  Use in_system_header_at.
1102         * pt.c (lookup_template_class): Don't set DECL_IN_SYSTEM_HEADER.
1103         (pop_tinst_level): Don't set in_system_header.
1104         (instantiate_class_template): Don't set in_system_header.
1105         (instantiate_decl): Don't set in_system_header.
1106         (instantiate_pending_templates): Don't set in_system_header.
1108 2008-07-21  Paolo Carlini  <paolo.carlini@oracle.com>
1110         PR c++/36870
1111         * semantics.c (classtype_has_nothrow_assign_or_copy_p): Use
1112         TYPE_NOTHROW_P, not TREE_NOTHROW.
1113         (trait_expr_value): Likewise.
1115 2008-07-18  Dodji Seketeli  <dseketel@redhat.com>
1117         PR c++/36407
1118         * call.c (convert_like_real): Don't take the error code path
1119           when a rvalue or base conversion has the bad_p field set.
1121 2008-07-18  Kris Van Hees  <kris.van.hees@oracle.com>
1123         * rtti.c (emit_support_tinfos): Add char16_type_node and
1124         char32_type_node.
1125         * typeck2.c (digest_init): Support char16_t and char32_t.
1127 2008-07-18  Kavih R. Ghazi  <ghazi@caip.rutgers.edu>
1129         * cvt.c (convert_to_void): Avoid C++ keywords.
1130         * decl.c (walk_namespaces_r, wrapup_globals_for_namespace):
1131         Likewise.
1132         * friend.c (is_friend): Likewise.
1133         * init.c (perform_member_init): Likewise.
1134         * mangle.c (write_template_prefix, write_template_template_param):
1135         Likewise.
1136         * name-lookup.c (do_namespace_alias, do_using_directive,
1137         parse_using_directive, ambiguous_decl, arg_assoc): Likewise.
1138         * parser.c (cp_parser_template_id, cp_parser_namespace_definition,
1139         cp_parser_objc_typename, cp_parser_objc_method_keyword_params):
1140         Likewise.
1141         * pt.c (is_specialization_of_friend, lookup_template_class,
1142         push_tinst_level, instantiate_class_template,
1143         tsubst_copy_and_build): Likewise.
1144         * tree.c (add_stmt_to_compound): Likewise.
1145         * typeck.c (finish_class_member_access_expr): Likewise.
1147 2008-07-17  Julian Brown  <julian@codesourcery.com>
1148             Mark Mitchell  <mark@codesourcery.com>
1150         * decl2.c (determine_visibility): Allow target to override
1151         visibility of class data.
1153 2008-07-17  Paolo Carlini  <paolo.carlini@oracle.com>
1155         PR c++/36855
1156         * semantics.c (trait_expr_value): Update __has_trivial_destructor
1157         semantics to the current WP (N2691).
1159 2008-07-16  Dodji Seketeli  <dseketel@redhat.com>
1161         PR c++/13699
1162         * name-lookup.c (lookup_extern_c_fun_binding_in_all_ns): New function.
1163         (pushdecl_maybe_friend): Check if a redeclaration of extern C function
1164         complies with exception specification constraints.
1166 2008-07-14  Jason Merrill  <jason@redhat.com>
1168         * lex.c (init_reswords): Always set D_OBJC.
1170 2008-07-11  Tom Tromey  <tromey@redhat.com>
1171             Ian Lance Taylor  <iant@google.com>
1173         * lex.c (struct resword, reswords): Don't define.
1174         (D_EXT, D_ASM, D_OBJC, D_CXX0X): Don't define.
1175         (init_reswords): Clarify mask code.  Use c_common_reswords rather
1176         than reswords.
1178 2008-07-11  Dodji Seketeli  <dseketel@redhat.com>
1180         PR c++/13101
1181         * decl.c (grokdeclarator): Warn about initializing variables
1182         of storage class 'extern' only after the type of the declarator
1183         has been properly computed.
1185 2008-07-11  Dodji Seketeli  <dseketel@redhat.com>
1187         PR c++/31754
1188         * cp-tree.h (struct cp_decl_specifier_seq): Add a location field. It
1189         carries the location of the primary type.
1190         * parser.c (cp_parser_check_type_definition): Update documentation.
1191         (cp_parser_check_for_definition_in_return_type,
1192         cp_parser_check_for_invalid_template_id,
1193         cp_parser_set_decl_spec_type,
1194         cp_parser_check_for_definition_in_return_type,
1195         cp_parser_diagnose_invalid_type_name,
1196         cp_parser_new_expression, cp_parser_explicit_instantiation,
1197         cp_parser_type_specifier, cp_parser_simple_type_specifier,
1198         cp_parser_omp_for_loop, cp_parser_pragma): Use location in error
1199         messages.
1201 2008-07-11 Dodji Seketeli <dseketel@redhat.com>
1203         PR c++/31754
1204         * pt.c, semantic.c:
1205         * semantic.c (qualified_name_lookup_error, finish_id_expression):
1206         Add a location_t parameter so that
1207         error message can have a more accurate location.
1208         * cp-tree.h: Updated prototype
1209         * pt.c (tsubst_qualified_id): Use location in error messages.
1210         * parser.c (cp_parser_postfix_expression,
1211         cp_parser_objc_statement, cp_parser_trait_expr,
1212         cp_parser_token_is_class_key,
1213         cp_parser_uncommitted_to_tentative_parse_p,
1214         cp_parser_check_for_invalid_template_id, cp_parser_is_string_literal,
1215         cp_parser_error, cp_parser_name_lookup_error,
1216         cp_parser_simulate_error, cp_parser_check_decl_spec,
1217         cp_parser_check_decl_spec, cp_parser_non_integral_constant_expression,
1218         cp_parser_diagnose_invalid_type_name,
1219         cp_parser_parse_and_diagnose_invalid_type_name,
1220         cp_parser_require_pragma_eol, cp_parser_make_typename_type,
1221         cp_parser_string_literal, cp_parser_primary_expression,
1222         cp_parser_primary_expression, cp_parser_unqualified_id,
1223         cp_parser_nested_name_specifier_opt, cp_parser_postfix_expression,
1224         cp_parser_postfix_dot_deref_expression, cp_parser_new_expression,
1225         cp_parser_direct_new_declarator, cp_parser_builtin_offsetof,
1226         cp_parser_label_for_labeled_statement, cp_parser_statement_seq_opt,
1227         cp_parser_jump_statement, cp_parser_block_declaration,
1228         cp_parser_simple_declaration, cp_parser_decl_specifier_seq,
1229         cp_parser_function_specifier_opt, cp_parser_decltype,
1230         cp_parser_mem_initializer_list, cp_parser_mem_initializer,
1231         cp_parser_mem_initializer_id, cp_parser_template_parameter,
1232         cp_parser_type_parameter, cp_parser_template_id,
1233         cp_parser_template_name, cp_parser_template_argument): Likewise.
1235 2008-07-09  Paolo Carlini  <paolo.carlini@oracle.com>
1237         PR c++/36760
1238         * pt.c (tsubst_function_type): Remove warning for type qualifiers
1239         on function return type.
1241 2008-07-09  Paolo Carlini  <paolo.carlini@oracle.com>
1243         PR c++/36760
1244         * pt.c (tsubst_function_type): Don't warn for type qualifiers
1245         on function return type in case of system header.
1247 2008-07-09  Raksit Ashok <raksit@google.com>
1249         * parser.c (cp_parser_postfix_expression): New warning based on flag
1250         warn_disallowed_functions.
1252 2008-07-08  Simon Martin  <simartin@users.sourceforge.net>
1254         PR c++/34963
1255         * decl.c (grokdeclarator): Reset storage_class and staticp for friend
1256         functions declared with a storage class qualifier.
1258 2008-07-03  Richard Guenther  <rguenther@suse.de>
1260         PR c++/36128
1261         * typeck.c (cp_build_function_call): Move code to verify
1262         builtin function arguments ...
1263         * call.c (build_cxx_call): ... here.
1265 2008-07-02  Jason Merrill  <jason@redhat.com>
1267         * Make-lang.in (cp/typeck2.o): Add $(REAL_H) dependency.
1269         Implement WG21 N2672, Initializer List proposed wording
1270         * cp-tree.h (enum cp_tree_index): Add CPTI_INIT_LIST_TYPE.
1271         (struct lang_type_class): Add has_list_ctor bitfield.
1272         (TYPE_HAS_LIST_CTOR): New macro.
1273         (BRACE_ENCLOSED_INITIALIZER_P): Expect init_list_type_node.
1274         (CONSTRUCTOR_IS_DIRECT_INIT): New macro.
1275         (LOOKUP_NO_NARROWING): New macro.
1276         (LOOKUP_NO_COPY_CTOR_CONVERSION): New macro.
1277         * parser.c (cp_parse_braced_list): Split out from...
1278         (cp_parser_initializer_clause): ...here.
1279         (cp_parser_postfix_expression): Build up CONSTRUCTOR for compound
1280         literal here.
1281         (cp_lexer_next_token_is_not_keyword): New fn.
1282         (cp_parser_parenthesized_expression_list): Handle { }.
1283         (cp_parser_new_expression, cp_parser_new_initializer): Likewise.
1284         (cp_parser_assignment_expression, cp_parser_condition): Likewise.
1285         (cp_parser_jump_statement, cp_parser_simple_declaration): Likewise.
1286         (cp_parser_mem_initializer, cp_parser_init_declarator): Likewise.
1287         (cp_parser_initializer, cp_parser_functional_cast): Likewise.
1288         (cp_parser_omp_for_loop, cp_parser_cache_group): Likewise.
1289         (cp_parser_save_member_function_body): Likewise.
1290         * call.c (conversion_kind): Add ck_list, ck_aggr.
1291         (struct conversion): Add check_narrowing bitfield, conversion list.
1292         (build_list_conv): New fn.
1293         (build_aggr_conv): New fn.
1294         (implicit_conversion): Call them.
1295         (standard_conversion): Set check_narrowing if appropriate.
1296         (add_function_candidate): Handle LOOKUP_NO_COPY_CTOR_CONVERSION.
1297         (build_user_type_conversion_1): When converting from an init list,
1298         we allow additional conversions except when calling a copy ctor.
1299         (convert_like_real): Calling an explicit ctor for an init list is
1300         ill-formed.  Handle ck_list and ck_addr.  Check narrowing.
1301         (build_new_method_call): If CONSTRUCTOR_IS_DIRECT_INIT is set and
1302         class doesn't have a list ctor, break the {} into a TREE_LIST.
1303         (compare_ics): ck_list is better than other UDCs.
1304         (set_up_extended_ref_temp): Split out from initialize_reference.
1305         (is_std_init_list): New fn.
1306         (is_list_ctor): New fn.
1307         * decl.c (cxx_init_decl_processing): Create init_list_type_node.
1308         (reshape_init_array_1): Pass it to build_constructor.
1309         (reshape_init_class): Ditto.
1310         (initialize_artificial_var): Pass the appropriate type.
1311         (build_aggr_init_full_exprs): Split out from...
1312         (check_initializer): ...here.  Handle new semantics.
1313         (build_init_list_var_init): New subroutine of check_initializer.
1314         (grokdeclarator): Converting constructors can have more than one parm.
1315         (grok_special_member_properties): Set TYPE_HAS_LIST_CTOR.
1316         * init.c (expand_default_init): Only do digest_init for aggregates.
1317         * rtti.c (tinfo_base_init): Pass init_list_type_node to
1318         build_constructor_from_list.
1319         (generic_initializer, ptr_initializer): Ditto.
1320         (ptm_initializer, class_initializer): Ditto.
1321         (get_pseudo_ti_init): Ditto.
1322         * error.c (dump_type): Handle init_list_type_node.
1323         (maybe_warn_cpp0x): New fn.
1324         (maybe_varn_variadic_templates): Call it.
1325         * cvt.c (ocp_convert): Handle conversion from { }.
1326         * tree.c (build_array_of_n_type): New fn.
1327         * typeck2.c (store_init_value): Use init_list_type_node.
1328         (digest_init): Likewise.
1329         (check_narrowing): New fn.
1330         * semantics.c: (finish_compound_literal): Take CONSTRUCTOR instead
1331         of vector of constructor elts.  Handle non-aggregate types.  Make
1332         constant literals static.
1333         * pt.c: (tsubst_copy_and_build): Adjust.
1334         (unify): Handle { }.
1335         * name-lookup.c (arg_assoc_type): Handle init_list_type_node.
1337 2008-07-01  Daniel Jacobowitz  <dan@codesourcery.com>
1339         * typeck.c (comp_ptr_ttypes_real): Use vector_targets_convertible_p.
1340         (comp_ptr_ttypes_const): Likewise.
1342 2008-07-01  Andrew Haley  <aph@redhat.com>
1344         * decl.c (finish_constructor_body): Don't set the return value of
1345         the constructor if the constructor is that of a Java type.
1347 2008-06-30  Jakub Jelinek  <jakub@redhat.com>
1349         PR c++/36662
1350         * decl2.c (is_late_template_attribute): If the first attribute
1351         argument is IDENTIFIER_NODE, don't consider it when checking
1352         if arguments are value or type dependent.
1354 2008-06-29  Paolo Carlini  <paolo.carlini@oracle.com>
1356         PR c++/36655
1357         * pt.c (do_type_instantiation): In c++0x mode do not warn for
1358         extern template.
1360 2008-06-29  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1362         * Make-lang.in (cp-warn): Delete $(CXX_COMPAT_WARN).
1364 2008-06-28  Jakub Jelinek  <jakub@redhat.com>
1366         PR c++/36364
1367         * repo.c (repo_emit_p): Put const static data members initialized
1368         by const expr into *.rpo file, just return 2 if IDENTIFIER_REPO_CHOSEN
1369         for it is 0.
1371 2008-06-27  Paolo Carlini  <paolo.carlini@oracle.com>
1373         PR c++/36655
1374         * pt.c (do_decl_instantiation): In c++0x mode do not warn for
1375         extern template.
1377 2008-06-24  Jonathan Wakely  <jwakely.gcc@gmail.com>
1379         PR c++/23194
1380         * typeck.c (cp_build_function_call): Show example syntax in
1381         diagnostic.
1383 2008-06-21  Jonathan Wakely  <jwakely.gcc@gmail.com>
1385         * typeck.c (composite_pointer_type_r, cxx_sizeof_expr,
1386         cxx_alignof_expr, check_template_keyword, cp_build_binary_op,
1387         pointer_diff, cp_build_unary_op, build_x_compound_expr_from_list,
1388         build_reinterpret_cast_1, cp_build_c_cast, check_return_expr): Change
1389         pedwarn to permerror.
1390         * init.c (perform_member_init, build_new_1, build_new): Likewise.
1391         * decl.c (warn_extern_redeclared_static, duplicate_decls,
1392         * identify_goto, check_previous_goto_1, check_goto, define_label,
1393         check_tag_decl, start_decl, check_class_member_definition_namespace,
1394         grokfndecl, grokdeclarator): Likewise.
1395         * except.c (check_handlers): Likewise.
1396         * typeck2.c (digest_init): Likewise.
1397         * pt.c (check_specialization_namespace,
1398         check_explicit_instantiation_namespace,
1399         maybe_process_partial_specialization, check_explicit_specialization,
1400         convert_template_argument, do_decl_instantiation,
1401         do_type_instantiation, instantiate_decl): Likewise.
1402         * semantics.c (finish_template_type_parm): Likewise.
1403         * name-lookup.c (pushdecl_maybe_friend,
1404         check_for_out_of_scope_variable): Likewise.
1405         * decl2.c (finish_static_data_member_decl, build_anon_union_vars,
1406         coerce_new_type): Likewise.
1407         * parser.c (cp_parser_nested_name_specifier_opt,
1408         cp_parser_mem_initializer, cp_parser_elaborated_type_specifier,
1409         cp_parser_class_head, cp_parser_check_class_key): Likewise.
1410         (cp_parser_parameter_declaration): Check flag_permissive instead of
1411         flag_pedantic_errors.
1412         * call.c (joust): Change pedwarn to warning.
1413         * friend.c (make_friend_class): Likewise.
1415 2008-06-16  Jan Hubicka  <jh@suse.cz>
1417         * method.c: Include cgraph.h.
1418         (use_thunk): Use cgraph_add_new_function instead of calling backend
1419         directly.
1421 2008-06-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1423         * parser.c: Fix comment typo.
1425 2008-06-14  Simon Martin  <simartin@users.sourceforge.net>
1427         PR c++/35320
1428         * decl2.c (grokbitfield): Receive the list of attributes, pass it to
1429         grokdeclarator and apply it to the created declaration.
1430         * cp-tree.h (grokbitfield): Update prototype.
1431         * parser.c (cp_parser_member_declaration): Don't apply the attributes
1432         since they are now applied in grokbitfield. Adjusted the call to
1433         grokbitfield.
1434         (cp_parser_objc_class_ivars): Likewise.
1436 2008-06-14  Simon Martin  <simartin@users.sourceforge.net>
1438         PR c++/35317
1439         * class.c (type_requires_array_cookie): Do not consider delete[]
1440         operators with an ellipsis as second argument.
1442 2008-06-09  Jakub Jelinek  <jakub@redhat.com>
1444         PR c++/36408
1445         * semantics.c (stmt_expr_value_expr): Don't crash on empty
1446         STATEMENT_LIST.
1448 2008-06-08  Paolo Carlini  <paolo.carlini@oracle.com>
1450          PR c++/35242
1451          * pt.c (maybe_process_partial_specialization): Check the tree
1452         returned by push_template_decl for error_mark_node.
1453         * parser.c (cp_parser_class_head): Likewise, check the tree
1454         returned by the latter.
1456 2008-06-07  Paolo Carlini  <paolo.carlini@oracle.com>
1458          PR c++/35327
1459          * decl.c (grokdeclarator): In case of wrong return type return
1460         immediately error_mark_node.
1462 2008-06-06  Jakub Jelinek  <jakub@redhat.com>
1464         * cp-tree.h (cxx_omp_finish_clause, cxx_omp_create_clause_info,
1465         dependent_omp_for_p, begin_omp_task, finish_omp_task,
1466         finish_omp_taskwait): New prototypes.
1467         (cxx_omp_clause_default_ctor): Add outer argument.
1468         (finish_omp_for): Add new clauses argument.
1469         * cp-gimplify.c (cxx_omp_finish_clause): New function.
1470         (cxx_omp_predetermined_sharing): Moved from semantics.c, rewritten.
1471         (cxx_omp_clause_default_ctor): Add outer argument.
1472         (cp_genericize_r): Walk OMP_CLAUSE_LASTPRIVATE_STMT.
1473         * cp-objcp-common.h (LANG_HOOKS_OMP_FINISH_CLAUSE): Define.
1474         * parser.c (cp_parser_omp_for_loop): Parse collapsed for loops.
1475         Add par_clauses argument.  If decl is present in parallel's
1476         lastprivate clause, change that clause to shared and add
1477         a lastprivate clause for decl to OMP_FOR_CLAUSES.
1478         Fix wording of error messages.  Adjust finish_omp_for caller.
1479         Add clauses argument.  Parse loops with random access iterators.
1480         (cp_parser_omp_clause_collapse, cp_parser_omp_clause_untied): New
1481         functions.
1482         (cp_parser_omp_for, cp_parser_omp_parallel): Adjust
1483         cp_parser_omp_for_loop callers.
1484         (cp_parser_omp_for_cond, cp_parser_omp_for_incr): New helper
1485         functions.
1486         (cp_parser_omp_clause_name): Handle collapse and untied
1487         clauses.
1488         (cp_parser_omp_clause_schedule): Handle auto schedule.
1489         (cp_parser_omp_all_clauses): Handle PRAGMA_OMP_CLAUSE_COLLAPSE
1490         and PRAGMA_OMP_CLAUSE_UNTIED.
1491         (OMP_FOR_CLAUSE_MASK): Add PRAGMA_OMP_CLAUSE_COLLAPSE.
1492         (OMP_TASK_CLAUSE_MASK): Define.
1493         (cp_parser_omp_task, cp_parser_omp_taskwait): New functions.
1494         (cp_parser_omp_construct): Handle PRAGMA_OMP_TASK.
1495         (cp_parser_pragma): Handle PRAGMA_OMP_TASK and
1496         PRAGMA_OMP_TASKWAIT.
1497         * pt.c (tsubst_omp_clauses): Handle OMP_CLAUSE_COLLAPSE and
1498         OMP_CLAUSE_UNTIED.  Handle OMP_CLAUSE_LASTPRIVATE_STMT.
1499         (tsubst_omp_for_iterator): New function.
1500         (dependent_omp_for_p): New function.
1501         (tsubst_expr) <case OMP_FOR>: Use it.  Handle collapsed OMP_FOR
1502         loops.  Adjust finish_omp_for caller.  Handle loops with random
1503         access iterators.  Adjust for OMP_FOR_{INIT,COND,INCR} changes.
1504         (tsubst_expr): Handle OMP_TASK.
1505         * semantics.c (cxx_omp_create_clause_info): New function.
1506         (finish_omp_clauses): Call it.  Handle OMP_CLAUSE_UNTIED and
1507         OMP_CLAUSE_COLLAPSE.
1508         (cxx_omp_predetermined_sharing): Removed.
1509         * semantics.c (finish_omp_for): Allow pointer iterators.  Use
1510         handle_omp_for_class_iterator and dependent_omp_for_p.  Handle
1511         collapsed for loops.  Adjust c_finish_omp_for caller.  Add new
1512         clauses argument.  Fix check for type dependent cond or incr.
1513         Set OMP_FOR_CLAUSES to clauses.  Use cp_convert instead of
1514         fold_convert to convert incr amount to difference_type.  Only
1515         fold if not in template.  If decl is mentioned in lastprivate
1516         clause, set OMP_CLAUSE_LASTPRIVATE_STMT.  Handle loops with random
1517         access iterators.  Adjust for OMP_FOR_{INIT,COND,INCR}
1518         changes.
1519         (finish_omp_threadprivate): Allow static class members of the
1520         current class.
1521         (handle_omp_for_class_iterator, begin_omp_task, finish_omp_task,
1522         finish_omp_taskwait): New functions.
1524         * parser.c (cp_parser_binary_expression): Add prec argument.
1525         (cp_parser_assignment_expression): Adjust caller.
1526         * cp-tree.h (outer_curly_brace_block): New prototype.
1527         * decl.c (outer_curly_brace_block): No longer static.
1529 2008-06-02  Paolo Carlini  <paolo.carlini@oracle.com>
1531          PR c++/36404
1532          * pt.c (push_template_decl_real): Consistently return error_mark_node
1533         on error.
1535 2008-06-02  Tomas Bily  <tbily@suse.cz>
1537          * typeck.c (is_bitfield_expr_with_lowered_type): Use CASE_CONVERT.
1538          (cp_build_unary_op): Likewise.
1539          (cp_build_indirect_ref): Use CONVERT_EXPR_P.
1540          (maybe_warn_about_returning_address_of_local): Likewise.
1542 2008-05-29  Paolo Carlini  <paolo.carlini@oracle.com>
1544          PR c++/35243
1545          * pt.c (tsubst_initializer_list): Consistently check the tree
1546          returned by tsubst_pack_expansion for error_mark_node.
1548 2008-05-27  Michael Matz  <matz@suse.de>
1550         PR c++/27975
1551         * call.c (build_new_op): Make warning conditional on
1552         OPT_Wenum_compare.
1554 2008-05-27  Alexandre Oliva  <aoliva@redhat.com>
1556         PR c++/35909
1557         * call.c (convert_like_real): Convert bitfield to desired type
1558         before creating temporary.
1560 2008-05-26  Daniel Franke  <franke.daniel@gmail.com>
1562         * Makefile.in: Adjusted dependencies on c-incpath.o.
1564 2008-05-23  Jakub Jelinek  <jakub@redhat.com>
1566         PR c++/36237
1567         * cp-gimplify.c (cxx_omp_clause_apply_fn): Call
1568         fold_build_cleanup_point_expr on build_call_a results.
1570         PR c++/36308
1571         * semantics.c (omp_clause_info_fndecl): New function.
1572         (finish_omp_clauses): Use it.
1574 2008-05-21  Jakub Jelinek  <jakub@redhat.com>
1576         PR c++/36023
1577         * cp-tree.h (check_array_initializer): New prototype.
1578         * decl.c (check_array_initializer): New function.
1579         (check_initializer): Call it.
1580         * semantics.c (finish_compound_literal): Call it for ARRAY_TYPEs.
1582 2008-05-21  Tom Tromey  <tromey@redhat.com>
1584         * mangle.c (save_partially_mangled_name): Remove.
1585         (restore_partially_mangled_name): Likewise.
1586         (write_encoding): Update.
1587         (write_unqualified_name): Likewise.
1588         (start_mangling): Always use name_obstack.  Remove 'ident_p'
1589         argument.
1590         (get_identifier_nocopy): Remove.
1591         (finish_mangling_internal): Rename from finish_mangling.
1592         (finish_mangling): New function.
1593         (finish_mangling_get_identifier): Likewise.
1594         (partially_mangled_name, partially_mangled_name_len): Remove.
1595         (mangle_decl_string): Change return type.  Update.
1596         (mangle_decl, mangle_type_string, mangle_special_for_type,
1597         mangle_ctor_vtbl_for_type, mangle_thunk, mangle_guard_variable,
1598         mangle_ref_init_variable): Update.
1600 2008-05-12  Paolo Carlini  <paolo.carlini@oracle.com>
1602          PR c++/35331
1603          * semantics.c (begin_class_definition): Extend checks on the first
1604         argument.
1606 2008-05-12  Tomas Bily  <tbily@suse.cz>
1608          * typeck2.c (digest_init): Use CONVERT_EXPR_P.
1609          * call.c (build_over_call): Likewise.
1610          * error.c (dump_expr): Use CASE_CONVERT.
1611          * class.c (fixed_type_or_null): Likewise.
1613 2008-05-11  Volker Reichelt  <v.reichelt@netcologne.de>
1615         * parser.c (cp_parser_omp_clause_reduction): Add missing "expected"
1616         in error message.
1617         (cp_parser_omp_clause_schedule): Remove superfluous "expected"
1618         in error message.
1620 2008-05-07  Kenneth Zadeck  <zadeck@naturalbridge.com>
1622         * decl.c (duplicate_decls): Merge in DECL_PURE_P, TREE_READONLY,
1623         DECL_LOOPING_CONST_OR_PURE_P attributes.
1624         * rtti.c (build_dynamic_cast_1): Rename DECL_IS_PURE to
1625         DECL_PURE_P.
1627 2008-05-02  Simon Baldwin  <simonb@google.com>
1629         PR bootstrap/36108
1630         * typeck.c (build_array_ref): Remove warn_array_subscript_range.
1632 2008-05-01  Simon Baldwin  <simonb@google.com>
1634         * typeck.c (build_array_ref): Call warn_array_subscript_range.
1636 2008-04-30  Jakub Jelinek  <jakub@redhat.com>
1638         PR c++/35986
1639         * pt.c (more_specialized_fn): Stop the loop even if there are no
1640         arguments before ellipsis.
1642 2008-04-29  Jakub Jelinek  <jakub@redhat.com>
1644         PR c++/35650
1645         * parser.c (cp_parser_lookup_name): Look through single function
1646         OVERLOAD.
1648         PR c++/35987
1649         * typeck.c (cp_build_modify_expr) <case PREINCREMENT_EXPR>: Don't build
1650         COMPOUND_EXPR if the second argument would be error_mark_node.
1652 2008-04-28  Jason Merrill  <jason@redhat.com>
1653             Liu Guanwei <liu_gw@163.com>
1655         PR c++/57
1656         * parser.c (cp_parser_parameter_declaration): Handle < ambiguity
1657         in default arguments.
1659 2008-04-25  Jan Hubicka  <jh@suse.cz>
1661         * typeck.c (check_return_expr): Update.
1662         * decl.c (start_preparsed_function): Update.
1663         * method.c (use_thunk): Update.
1665 2008-04-24  Jakub Jelinek  <jakub@redhat.com>
1667         PR c++/35758
1668         * cp-tree.h (cp_reconstruct_complex_type): New prototype.
1669         * cp-objcp-common.h (LANG_HOOKS_RECONSTRUCT_COMPLEX_TYPE): Define.
1670         * decl2.c (is_late_template_attribute): Only make vector_size
1671         late tmpl attribute if argument is type or value dependent.
1672         (cp_reconstruct_complex_type): New function.
1674 2008-04-24  Richard Guenther  <rguenther@suse.de>
1676         * typeck.c (cp_build_function_call): Call
1677         check_builtin_function_arguments.
1679 2008-04-23  Paolo Bonzini  <bonzini@gnu.org>
1681         * typeck.c (get_member_function_from_ptrfunc): Don't set TREE_INVARIANT.
1682         (build_ptrmemfunc1): Don't set TREE_INVARIANT.
1683         * init.c (build_zero_init): Don't set TREE_INVARIANT.
1684         * class.c (build_base_path): Don't set TREE_INVARIANT.
1685         (build_vtbl_ref_1): Don't set TREE_INVARIANT.
1686         (build_vtbl_initializer): Don't set TREE_INVARIANT.
1687         * decl.c (build_enumerator): Don't set TREE_INVARIANT.
1688         * rtti.c (tinfo_base_init): Don't set TREE_INVARIANT.
1689         (generic_initializer): Don't set TREE_INVARIANT.
1690         (ptr_initializer): Don't set TREE_INVARIANT.
1691         (ptm_initializer): Don't set TREE_INVARIANT.
1692         (class_initializer): Don't set TREE_INVARIANT.
1693         * typeck2.c (process_init_constructor): Don't set TREE_INVARIANT.
1694         * pt.c (push_inline_template_parms_recursive): Don't set TREE_INVARIANT.
1695         (build_template_parm_index): Don't set TREE_INVARIANT.
1696         (reduce_template_parm_level): Don't set TREE_INVARIANT.
1697         (process_template_parm): Don't set TREE_INVARIANT.
1699 2008-04-22  Jason Merrill  <jason@redhat.com>
1701         PR c++/35316
1702         * semantics.c (finish_decltype_type): Check DECL_BIT_FIELD_TYPE
1703         to see if DECL_BIT_FIELD_TYPE should be used, not some other flag.
1704         * typeck.c (is_bitfield_expr_with_lowered_type): Likewise.
1706 2008-04-22  Jakub Jelinek  <jakub@redhat.com>
1708         PR c++/35747
1709         * semantics.c (finish_stmt_expr): Call pop_stmt_list even if the stmt
1710         expression is errorneous.
1712 2008-04-21  Jason Merrill  <jason@redhat.com>
1714         PR c++/35325
1715         * tree.c (cp_tree_equal): Handle FIXED_CST.
1717         PR c++/35678
1718         * pt.c (template_template_parm_bindings_ok_p): Set
1719         processing_template_decl while in this function.
1721 2008-04-18  Kris Van Hees <kris.van.hees@oracle.com>
1723         * cvt.c (type_promotes_to): Support char16_t and char32_t.
1724         * decl.c (grokdeclarator): Disallow signed/unsigned/short/long on
1725         char16_t and char32_t.
1726         * lex.c (reswords): Add char16_t and char32_t (for c++0x).
1727         * mangle.c (write_builtin_type): Mangle char16_t/char32_t as vendor
1728         extended builtin type "u8char{16,32}_t".
1729         * parser.c (cp_lexer_next_token_is_decl_specifier_keyword): Support
1730         RID_CHAR{16,32}.
1731         (cp_lexer_print_token): Support CPP_STRING{16,32}.
1732         (cp_parser_is_string_literal): Idem.
1733         (cp_parser_string_literal): Idem.
1734         (cp_parser_primary_expression): Support CPP_CHAR{16,32} and
1735         CPP_STRING{16,32}.
1736         (cp_parser_simple_type_specifier): Support RID_CHAR{16,32}.
1737         * tree.c (char_type_p): Support char16_t and char32_t as char types.
1738         * typeck.c (string_conv_p): Support char16_t and char32_t.
1740 2008-04-17  Jason Merrill  <jason@redhat.com>
1742         PR c++/35773
1743         * call.c (build_user_type_conversion_1): Represent second step of
1744         copy-init with an rvalue conversion.
1745         (convert_like_real) [ck_user]: Don't implicitly add it here.
1747 2008-04-15  Jakub Jelinek  <jakub@redhat.com>
1749         PR c/35751
1750         * decl.c (layout_var_decl): If extern or static var has variable
1751         size, set TREE_TYPE (decl) to error_mark_node.
1753 2008-04-16  Danny Smith  <dannysmith@users.sourceforge.net>
1755         PR target/35921
1756         * optimize.c (maybe_clone_body): Copy DECL_DLLIMPORT_P flag
1757         to clone.
1759 2008-04-09  Jason Merrill  <jason@redhat.com>
1761         PR c++/35708
1762         * semantics.c (finish_compound_literal): Return a TARGET_EXPR,
1763         not a pushed variable.
1765 2008-04-09  Volker Reichelt  <v.reichelt@netcologne.de>
1767         * call.c (build_op_delete_call): Fix quotation in warning message.
1768         * decl.c (grokdeclarator): Quote keyword in error message.
1769         * pt.c (check_for_bare_parameter_packs): Fix quotation in error
1770         message.
1772         * parser.c (cp_parser_check_type_definition): Print error string
1773         directly rather than using "%s".
1774         (cp_parser_postfix_expression): Fix quotation.
1775         (cp_parser_decltype): Likewise.
1776         (cp_parser_sizeof_operand): Fix quotation. Simplify.
1778         * parser.c (cp_parser_non_integral_constant_expression): Build error
1779         message with CONCAT rather than using "%s".
1780         (cp_parser_primary_expression): Fix quotation.
1781         (cp_parser_postfix_expression): Likewise.
1782         (cp_parser_postfix_dot_deref_expression): Likewise.
1783         (cp_parser_unary_expression): Likewise.
1784         (cp_parser_new_expression): Likewise.
1785         (cp_parser_delete_expression): Likewise.
1787         * parser.c (cp_parser_asm_specification_opt): Print CPP_CLOSE_PAREN
1788         as `)', not as `('.  Fix quotation.
1789         (cp_parser_consume_semicolon_at_end_of_statement): Fix quotation.
1790         (cp_parser_primary_expression): Likewise.
1791         (cp_parser_nested_name_specifier_opt): Likewise.
1792         (cp_parser_postfix_expression): Likewise.
1793         (cp_parser_postfix_open_square_expression): Likewise.
1794         (cp_parser_parenthesized_expression_list): Likewise.
1795         (cp_parser_pseudo_destructor_name): Likewise.
1796         (cp_parser_new_expression): Likewise.
1797         (cp_parser_direct_new_declarator): Likewise.
1798         (cp_parser_delete_expression): Likewise.
1799         (cp_parser_cast_expression): Likewise.
1800         (cp_parser_question_colon_clause): Likewise.
1801         (cp_parser_builtin_offsetof): Likewise.
1802         (cp_parser_trait_expr): Likewise.
1803         (cp_parser_label_for_labeled_statement): Likewise.
1804         (cp_parser_compound_statement): Likewise.
1805         (cp_parser_selection_statement): Likewise.
1806         (cp_parser_condition): Likewise.
1807         (cp_parser_iteration_statement): Likewise.
1808         (cp_parser_already_scoped_statement): Likewise.
1809         (cp_parser_simple_declaration): Likewise.
1810         (cp_parser_linkage_specification): Likewise.
1811         (cp_parser_static_assert): Likewise.
1812         (cp_parser_decltype): Likewise.
1813         (cp_parser_conversion_function_id): Likewise.
1814         (cp_parser_operator_function_id): Likewise.
1815         (cp_parser_operator): Likewise.
1816         (cp_parser_type_parameter): Likewise.
1817         (cp_parser_template_id): Likewise.
1818         (cp_parser_explicit_instantiation): Likewise.
1819         (cp_parser_explicit_specialization): Likewise.
1820         (cp_parser_enum_specifier): Likewise.
1821         (cp_parser_namespace_definition): Likewise.
1822         (cp_parser_namespace_alias_definition): Likewise.
1823         (cp_parser_using_declaration): Likewise.
1824         (cp_parser_using_directive): Likewise.
1825         (cp_parser_asm_definition): Likewise.
1826         (cp_parser_direct_declarator): Likewise.
1827         (cp_parser_ptr_operator): Likewise.
1828         (cp_parser_parameter_declaration_clause): Likewise.
1829         (cp_parser_initializer_clause): Likewise.
1830         (cp_parser_class_specifier): Likewise.
1831         (cp_parser_member_specification_opt): Likewise.
1832         (cp_parser_member_declaration): Likewise.
1833         (cp_parser_pure_specifier): Likewise.
1834         (cp_parser_constant_initializer): Likewise.
1835         (cp_parser_base_clause): Likewise.
1836         (cp_parser_exception_specification_opt): Likewise.
1837         (cp_parser_try_block): Likewise.
1838         (cp_parser_function_try_block): Likewise.
1839         (cp_parser_handler): Likewise.
1840         (cp_parser_throw_expression): Likewise.
1841         (cp_parser_asm_operand_list): Likewise.
1842         (cp_parser_attributes_opt): Likewise.
1843         (cp_parser_label_declaration): Likewise.
1844         (cp_parser_constructor_declarator_p): Likewise.
1845         (cp_parser_template_declaration_after_export): Likewise.
1846         (cp_parser_single_declaration): Likewise.
1847         (cp_parser_objc_message_expression): Likewise.
1848         (cp_parser_objc_message_args): Likewise.
1849         (cp_parser_objc_encode_expression): Likewise.
1850         (cp_parser_objc_defs_expression): Likewise.
1851         (cp_parser_objc_protocol_expression): Likewise.
1852         (cp_parser_objc_selector_expression): Likewise.
1853         (cp_parser_objc_protocol_refs_opt): Likewise.
1854         (cp_parser_objc_typename): Likewise.
1855         (cp_parser_objc_method_keyword_params): Likewise.
1856         (cp_parser_objc_superclass_or_category): Likewise.
1857         (cp_parser_objc_try_catch_finally_statement): Likewise.
1858         (cp_parser_objc_synchronized_statement): Likewise.
1859         (cp_parser_objc_throw_statement): Likewise.
1860         (cp_parser_omp_var_list_no_open): Likewise.
1861         (cp_parser_omp_clause_default): Likewise.
1862         (cp_parser_omp_clause_if): Likewise.
1863         (cp_parser_omp_clause_num_threads): Likewise.
1864         (cp_parser_omp_clause_reduction): Likewise.
1865         (cp_parser_omp_clause_schedule): Likewise.
1866         (cp_parser_omp_critical): Likewise.
1867         (cp_parser_omp_for_loop): Likewise.
1868         (cp_parser_omp_sections_scope): Likewise.
1870         * parser.c (cp_parser_template_parameter_list): Simplify.
1872 2008-04-07  James E. Wilson  <wilson@tuliptree.org>
1874         * pt.c (tsubst_copy, case SIZEOF_EXPR): Initialize len.
1876 2008-04-07  Jason Merrill  <jason@redhat.com>
1878         PR c++/35734
1879         * class.c (type_has_user_nondefault_constructor): A template
1880         counts as a nondefault constructor.
1882 2008-04-04  Paolo Bonzini  <bonzini@gnu.org>
1884         * decl.c (cxx_push_function_context): Delete.
1885         (cxx_pop_function_context): Delete.
1886         (start_preparsed_function): Merge cxx_push_function_context (!f->decl
1887         code only).
1888         * cp-objcp-common.h (LANG_HOOKS_FUNCTION_INIT,
1889         LANG_HOOKS_FUNCTION_FINAL): Delete.
1890         (LANG_HOOKS_FUNCTION_MISSING_NORETURN_OK_P): Rename to
1891         LANG_HOOKS_MISSING_NORETURN_OK_P.
1892         * cp-tree.h (cxx_push_function_context, cxx_pop_function_context):
1893         Delete prototype.
1894         * semantics.c (current_stmt_tree): Fix comment.
1896 2008-04-03  Jakub Jelinek  <jakub@redhat.com>
1898         PR c++/35741
1899         * semantics.c (finish_offsetof): Undo effect of convert_from_reference
1900         before calling fold_offsetof.
1902 2008-04-03  Tom Tromey  <tromey@redhat.com>
1904         * Make-lang.in (c++_OBJS): New variable.
1906 2008-04-03  Paolo Bonzini  <bonzini@gnu.org>
1908         * optimize.c (clone_body): New, from tree-inline.c.
1910 2008-04-03  Paolo Bonzini  <bonzini@gnu.org>
1912          * method.c (synthesize_method): Use {push,pop}_function_context.
1913          * name-lookup.c (push_to_top_level): Likewise.
1914          * parser.c (cp_parser_late_parsing_for_member): Likewise.
1916 2008-03-30  Volker Reichelt  <v.reichelt@netcologne.de>
1918         PR c++/35578
1919         * parser.c (cp_parser_decl_specifier_seq): Add location to error
1920         message.
1922 2008-03-27  Tom Tromey  <tromey@redhat.com>
1924         * Make-lang.in: Revert automatic dependency patch.
1926 2008-03-27  Douglas Gregor  <doug.gregor@gmail.com>
1928         PR obj-c++/35704
1929         * typeck.c (build_x_compound_expr): Use cp_build_compound_expr.
1930         (build_compound_expr): New, for compatibility with C
1931         build_compound_expr.
1932         (cp_build_compound_expr): Renamed from build_compound_expr.
1933         (build_c_cast): New, for compatibility with C build_c_cast.
1934         (cp_build_c_cast): Renamed from build_c_cast.
1935         * init.c (build_vec_delete_1): Fix calls to build_compound_expr.
1936         * decl.c (cxx_maybe_build_cleanup): Ditto.
1937         * cp-tree.h (build_compound_expr): Add C-compatibile prototype.
1938         (cp_build_compound_expr): Renamed from build_compound_expr.
1939         (build_c_cast): Add C-compatible prototype.
1940         (cp_build_c_cast): Renamed from build_c_cast.
1941         * typeck2.c (build_functional_cast): Use cp_build_c_cast.
1942         * parser.c (cp_parser_cast_expression): Fix call to build_c_cast.
1944 2008-03-27  Douglas Gregor  <doug.gregor@gmail.com>
1946         * pt.c (tsubst_copy) <case SIZEOF_EXPR>: Cope with
1947         tsubst_pack_expansion returning a pack expansion, or a TREE_VEC
1948         ending in a pack expansion, both of which can occur when
1949         substituting into a nested template.
1950         (tsubst_copy_and_build) <case SIZEOF_EXPR>: When we're
1951         instantiating the sizeof...(X) form, make tsubst_copy do the work.
1952         * parser.c (cp_parser_template_parameter): Deal with unnamed
1953         non-type template parameter packs identified by pack expansions in
1954         the parameter type.
1956 2008-03-26  Jakub Jelinek  <jakub@redhat.com>
1958         PR c++/35546
1959         * pt.c (apply_late_template_attributes): Don't call tsubst on
1960         first attribute argument if it is IDENTIFIER_NODE.
1962         PR c++/35332
1963         * error.c (dump_expr): Pass {,UN}ORDERED_EXPR, UN{LT,LE,GT,GE,EQ}_EXPR
1964         and LTGT_EXPR to pp_expression.
1966 2008-03-26  Douglas Gregor  <doug.gregor@gmail.com>
1968         * pt.c (coerce_template_template_parm): Moved the body of the loop
1969         of coerce_template_template_parms here, to make iteration over a
1970         template argument pack simpler.
1971         Also, allow matching of a template parameter pack in the template
1972         template parameter to a template parameter in the template
1973         template argument.
1974         (coerce_template_template_parms): Deal with variadic template
1975         template parameters. Use coerce_template_template_parm.
1976         (unify): Make sure we coerce the template template argument's
1977         template arguments to the template template parameter's template
1978         parameters, not the other way around.
1980 2008-03-25  Tom Tromey  <tromey@redhat.com>
1982         * Make-lang.in: Remove .o targets.
1983         (cp/g++spec.o): Moved to cp/.  Reduce to variable setting.
1984         (GXX_OBJS): Update.
1985         (c++_OBJS): New variable.
1986         (CXX_TREE_H, CXX_PRETTY_PRINT_H): Remove.
1988 2008-03-25  Douglas Gregor  <doug.gregor@gmail.com>
1990         * typeck.c (composite_pointer_type_r): Add SFINAE support.
1991         (composite_pointer_type): Ditto.
1992         (common_type): Fix call to composite_pointer_type.
1993         (cxx_sizeof_nowarn): New; used to be a macro.
1994         (cxx_sizeof_expr): Add SFINAE support.
1995         (cxx_alignof_expr): Ditto.
1996         (decay_conversion): Fix calls for SFINAE support.
1997         (rationalize_conditional_expr): Add SFINAE support.
1998         (build_class_member_access_expr): Ditto.
1999         (finish_class_member_access_expr): Ditto.
2000         (build_x_indirect_ref): Ditto.
2001         (build_indirect_ref): Original version renamed to
2002         cp_build_indirect_ref; new version provides a bridge from
2003         c-common.
2004         (cp_build_indirect_ref): Was build_indirect_ref; added SFINAE
2005         support.
2006         (get_member_function_from_ptrfunc): Fix calls for SFINAE support.
2007         (build_function_call): Original version renamed to
2008         cp_build_function_call; new version provides a bridge from
2009         c-common.
2010         (cp_build_function_call): Was build_function_call; added SFINAE
2011         support.
2012         (convert_arguments): Add SFINAE support.
2013         (build_x_binary_op): Ditto.
2014         (build_binary_op): Original version renamed to cp_build_binary_op;
2015         new version provides a bridge from c-common.
2016         (cp_build_binary_op): Was build_binary_op; added SFINAE support.
2017         (pointer_diff): Fix calls for SFINAE.
2018         (build_x_unary_op): Add SFINAE support.
2019         (condition_conversion): Fix calls for SFINAE.
2020         (build_unary_op): Original version renamed to cp_build_unary_op;
2021         new version provides a bridge from c-common.
2022         (cp_build_unary_op): Was build_unary_op; added SFINAE support.
2023         (unary_complex_lvalue): Fix calls for SFINAE.
2024         (build_x_conditional_expr): Add SFINAE support.
2025         (build_x_compound_expr_from_list): Fix calls for SFINAE.
2026         (build_x_compound_expr): Add SFINAE support.
2027         (convert_ptrmem): Fix calls for SFINAE.
2028         (build_static_cast_1): Add SFINAE support.
2029         (build_static_cast): Ditto.
2030         (build_reinterpret_cast_1): Ditto.
2031         (build_reinterpret_cast): Ditto.
2032         (build_const_cast_1): Ditto.
2033         (build_const_cast): Ditto.
2034         (build_c_cast): Ditto.
2035         (build_modify_expr): Original version renamed to
2036         cp_build_modify_expr; new version provides a bridge from c-common.
2037         (cp_build_modify_expr): Was build_modify_expr; added SFINAE
2038         support.
2039         (build_x_modify_expr): Add SFINAE support.
2040         (build_ptrmemfunc): Fix calls for SFINAE.
2041         (convert_for_assignment): Add SFINAE support.
2042         (convert_for_initialization): Ditto.
2043         (check_return_expr): Fix calls for SFINAE.
2044         (lvalue_or_else): Add SFINAE support.
2045         * init.c (perform_member_init): Fix calls for SFINAE.
2046         (emit_mem_initializers): Ditto.
2047         (expand_virtual_init): Ditto.
2048         (expand_cleanup_for_base): Ditto.
2049         (build_aggr_init): Add SFINAE support.
2050         (expand_default_init): Ditto.
2051         (expand_aggr_init_1): Fix calls for SFINAE.
2052         (build_offset_ref): Ditto.
2053         (build_new_1): Add SFINAE support.
2054         (build_new): Ditto.
2055         (build_vec_delete_1): Fix calls for SFINAE.
2056         (get_temp_regvar): Ditto.
2057         (build_vec_init): Add SFINAE support.
2058         (build_dtor_call): Fix calls for SFINAE.
2059         (build_delete): Ditto.
2060         (push_base_cleanups): Ditto.
2061         (build_vec_delete_1): Ditto.
2062         * class.c (build_base_path): Fix calls for SFINAE.
2063         (build_simple_base_path): Ditto.
2064         (convert_to_base_statically): Ditto.
2065         (build_vfn_ref): Ditto.
2066         (resolve_address_of_overloaded_function): Ditto.
2067         * decl.c (check_initializer): Fix calls for SFINAE.
2068         (register_dtor_fn): Ditto.
2069         (compute_array_index_type): Ditto.
2070         (finish_enum): Ditto.
2071         (start_preparsed_function): Ditto.
2072         (cxx_maybe_build_cleanup): Ditto.
2073         * call.c (convert_like): Add COMPLAIN argument.
2074         (convert_like_with_context): Ditto.
2075         (build_this): Fix calls for SFINAE.
2076         (build_user_type_conversion): Ditto.
2077         (resolve_args): Ditto.
2078         (build_new_function_call): Add SFINAE support.
2079         (build_operator_new_call): Fix calls for SFINAE.
2080         (build_object_call): Add SFINAE support.
2081         (build_conditional_expr): Ditto.
2082         (build_new_op): Ditto.
2083         (build_op_delete_call): Fix calls for SFINAE.
2084         (build_temp): Ditto.
2085         (convert_like_real): Add SFINAE support.
2086         (build_x_va_arg): Fix calls for SFINAE.
2087         (convert_default_arg): Ditto.
2088         (build_over_call): Add SFINAE support.
2089         (build_java_interface_fn_ref): Fix calls for SFINAE.
2090         (build_special_member_call): Add SFINAE support.
2091         (build_new_method_call): Ditto.
2092         (perform_implicit_conversion): Ditto.
2093         (perform_direct_initialization_if_possible): Ditto.
2094         (initialize_reference): Fix calls for SFINAE.
2095         * method.c (do_build_assign_ref): Fix calls for SFINAE.
2096         * rtti.c (build_headof): Fix calls for SFINAE.
2097         (get_tinfo_decl_dynamic): Ditto.
2098         (get_typeid): Ditto.
2099         (build_dynamic_cast_1): Add SFINAE support.
2100         (build_dynamic_cast): Ditto.
2101         (tinfo_base_init): Fix calls for SFINAE.
2102         * except.c (do_get_exception_ptr): Fix calls for SFINAE.
2103         (do_end_catch): Ditto.
2104         (initialize_handler_parm): Ditto.
2105         (expand_start_catch_block): Ditto.
2106         (do_allocate_exception): Ditto.
2107         (do_free_exception): Ditto.
2108         (build_throw): Ditto.
2109         * cvt.c (build_up_reference): Fix calls for SFINAE.
2110         (convert_to_reference): Ditto.
2111         (ocp_convert): Ditto.
2112         (convert_to_void): Add SFINAE support.
2113         * tree.c (build_dummy_object): Fix calls for SFINAE.
2114         (stabilize_expr): Ditto.
2115         * cp-tree.h (build_conditional_expr): Add tsubst_flags_t
2116         parameter.
2117         (build_new_method_call): Ditto.
2118         (build_special_member_call): Ditto.
2119         (build_new_op): Ditto.
2120         (perform_implicit_conversion): Ditto.
2121         (perform_direct_initialization_if_possible): Ditto.
2122         (convert_to_void): Ditto.
2123         (build_aggr_init): Ditto.
2124         (build_new): Ditto.
2125         (build_vec_init): Ditto.
2126         (build_dynamic_cast): Ditto.
2127         (finish_call_expr): Ditto
2128         (cxx_sizeof_or_alignof_expr): Add COMPLAIN parameter.
2129         (cxx_sizeof_nowarn): Remove macro; add function declaration.
2130         (build_class_member_access_expr): Add tsubst_flags_t parameter.
2131         (finish_class_member_access_expr): Ditto.
2132         (build_x_indirect_ref): Ditto.
2133         (cp_build_indirect_ref): New.
2134         (cp_build_function_call): Add tsubst_flags_t parameter.
2135         (build_x_unary_op): Ditto.
2136         (cp_build_unary_op): New.
2137         (build_x_conditional_expr): Add tsubst_flags_t parameter.
2138         (build_x_compound_expr): Ditto.
2139         (build_compound_expr): Ditto.
2140         (build_static_cast): Ditto.
2141         (build_reinterpret_cast): Ditto.
2142         (build_const_cast): Ditto.
2143         (build_c_cast): Ditto.
2144         (build_x_modify_expr): Ditto.
2145         (cp_build_modify_expr): New.
2146         (convert_for_initialization): Add tsubst_flags_t parameter.
2147         (cp_build_binary_op): Remove macro; add function declaration.
2148         (invalid_nonstatic_memfn_p): Add tsubst_flags_t parameter.
2149         (lvalue_or_else): Ditto.
2150         (build_functional_cast): Ditto.
2151         * typeck2.c (digest_init): Fix calls for SFINAE.
2152         (process_init_constructor_array): Ditto.
2153         (process_init_constructor_record): Ditto.
2154         (build_x_arrow): Ditto.
2155         (build_m_component_ref): Ditto.
2156         (build_functional_cast): Add SFINAE support.
2157         * pt.c (tsubst_copy_and_build): Add (more) SFINAE support.
2158         * semantics.c (simplify_loop_decl_cond): Fix calls for SFINAE.
2159         (finish_expr_stmt): Ditto.
2160         (finish_for_expr): Ditto.
2161         (finish_asm_stmt): Ditto.
2162         (finish_non_static_data_member): Ditto.
2163         (finish_qualified_id_expr): Ditto.
2164         (finish_call_expr): Add SFINAE support.
2165         (finish_increment_expr): Fix calls for SFINAE.
2166         (finish_unary_op_expr): Ditto.
2167         (simplify_aggr_init_expr): Ditto.
2168         (finish_omp_clauses): Ditto.
2169         (finish_omp_for): Ditto.
2170         (finish_omp_barrier): Ditto.
2171         (finish_omo_flush): Ditto.
2172         * decl2.c (grok_array_decl): Fix calls or SFINAE.
2173         (build_anon_union_vars): Ditto.
2174         (get_guard_cond): Ditto.
2175         (set_guard): Ditto.
2176         (one_static_initialization_or_destruction): Ditto.
2177         (do_static_initialization_or_destruction): Ditto.
2178         (generate_ctor_or_dtor_function): Ditto.
2179         (build_offset_ref_call_from_tree): Ditto.
2180         * parser.c (cp_parser_postfix_expression): Fix calls for SFINAE.
2181         (cp_parser_postfix_dot_deref_expression): Ditto.
2182         (cp_parser_unary_expression): Ditto.
2183         (cp_parser_new_expression): Ditto.
2184         (cp_parser_cast_expression): Ditto.
2185         (cp_parser_binary_expression): Ditto.
2186         (cp_parser_question_colon_clause): Ditto.
2187         (cp_parser_assignment_expression): Ditto.
2188         (cp_parser_expression): Ditto.
2189         (cp_parser_builtin_offsetof): Ditto.
2190         (cp_parser_template_argument): Ditto.
2191         (cp_parser_functional_cast): Ditto.
2193 2008-03-24  Tom Tromey  <tromey@redhat.com>
2195         * lex.c (handle_pragma_interface): Don't copy the filename.
2196         (handle_pragma_implementation): Copy filename using xstrdup.
2198 2008-03-21  Paolo Carlini  <pcarlini@suse.de>
2200         * cp-tree.h (IS_AGGR_TYPE): Rename to MAYBE_CLASS_TYPE_P.
2201         (SET_IS_AGGR_TYPE): Rename to SET_CLASS_TYPE_P.
2202         (IS_AGGR_TYPE_CODE): Rename to RECORD_OR_UNION_CODE_P.
2203         (PROMOTES_TO_AGGR_TYPE): Remove.
2204         (CLASS_TYPE_P, TYPE_NON_AGGREGATE_CLASS): Adjust.
2205         * typeck.c (unary_complex_lvalue, build_modify_expr,
2206         convert_for_initialization): Adjust.
2207         * init.c (is_aggr_type): Remove.
2208         (is_class_type): Add.
2209         (build_offset_ref, build_new_1, build_vec_delete_1, build_vec_init,
2210         build_delete): Adjust.
2211         * lex.c (make_aggr_type): Remove.
2212         (make_class_type): Add.
2213         (cxx_make_type): Adjust.
2214         * class.c (finish_struct_1, fixed_type_or_null, is_empty_class):
2215         Adjust.
2216         * decl.c (build_typename_type, make_typename_type,
2217         make_unbound_class_template, cxx_init_decl_processing,
2218         check_tag_decl, groktypename, start_decl_1, layout_var_decl,
2219         check_initializer, cp_finish_decl, build_ptrmemfunc_type, grokparms,
2220         grok_op_properties, xref_tag, check_function_type): Adjust.
2221         * call.c (check_dtor_name, standard_conversion, implicit_conversion,
2222         add_builtin_candidate, add_builtin_candidates,
2223         build_user_type_conversion_1, convert_like_real, build_cxx_call,
2224         is_subseq, compare_ics): Adjust.
2225         * method.c (use_thunk): Adjust.
2226         * rtti.c (build_dynamic_cast_1, create_pseudo_type_info,
2227         create_tinfo_types): Adjust.
2228         * cvt.c (cp_convert_to_pointer, convert_to_pointer_force,
2229         build_up_reference, convert_to_reference, convert_from_reference,
2230         ocp_convert, build_expr_type_conversion): Adjust.
2231         * tree.c (bind_template_template_parm, error_type): Adjust.
2232         * dump.c (cp_dump_tree): Adjust.
2233         * search.c (lookup_member): Adjust.
2234         * friend.c (make_friend_class, do_friend): Adjust.
2235         * typeck2.c (store_init_value, process_init_constructor_array,
2236         process_init_constructor_record, build_x_arrow, build_m_component_ref,
2237         build_functional_cast): Adjust.
2238         * pt.c (finish_member_template_decl, process_template_parm,
2239         lookup_template_class, tsubst_function_type, tsubst,
2240         tsubst_copy_and_build, get_template_base, bt_instantiate_type_proc):
2241         Adjust.
2242         * semantics.c (begin_class_definition, finish_base_specifier,
2243         finish_typeof, cxx_omp_predetermined_sharing, finish_decltype_type):
2244         Adjust.
2245         * name-lookup.c (constructor_name_p, push_overloaded_decl,
2246         do_class_using_decl, lookup_qualified_name,
2247         maybe_process_template_type_declaration): Adjust.
2248         * decl2.c (grok_array_decl, check_member_template,
2249         constrain_class_visibility): Adjust.
2250         * parser.c (cp_parser_class_name): Adjust.
2252 2008-03-18  Paolo Bonzini  <bonzini@gnu.org>
2254          * cp-lang.c (LANG_HOOKS_REDUCE_BIT_FIELD_OPERATIONS): Delete.
2256 2008-03-17  Jason Merrill  <jason@redhat.com>
2258         PR c++/35548
2259         * call.c (reference_binding): Check LOOKUP_NO_TEMP_BIND when binding
2260         a temp directly to a reference as per DR391.
2262 2008-03-12  Richard Guenther  <rguenther@suse.de>
2264         PR c++/35469
2265         Revert:
2266         2008-02-04  Richard Guenther  <rguenther@suse.de>
2268          PR java/35035
2269          * decl.c (record_builtin_java_type): Make jboolean a
2270          integer type again where its mode doesn't match that of bool.
2272         2008-01-25  Richard Guenther  <rguenther@suse.de>
2274          PR c++/33887
2275          * decl.c (record_builtin_java_type): Make __java_boolean
2276          a variant of bool.
2277          * typeck.c (structural_comptypes): Move TYPE_FOR_JAVA check
2278          after TYPE_MAIN_VARIANT check.
2280 2008-03-10  Jakub Jelinek  <jakub@redhat.com>
2282         PR c++/35328
2283         * semantics.c (finish_omp_clauses): Look through NOP_EXPR even
2284         if errorcount.
2286         PR c++/35337
2287         * semantics.c (finish_omp_clauses): Use %qD instead of %qE for
2288         DECL_P in not a variable and appears more than once error messages.
2290 2008-03-07  Paolo Bonzini  <bonzini@gnu.org>
2292         Revert:
2294         2008-02-06  Douglas Gregor  <doug.gregor@gmail.com>
2296         PR c++/35049
2297         PR c++/35096
2298         * typeck.c (structural_comptypes): Call cp_comptypes.
2299         (comptypes): New; called from the C/C++ common bits to perform
2300         strict checks.
2301         (cp_comptypes): Renamed from comptypes, which is already used,
2302         with a different signature, by the C++ front end.
2303         (build_reinterpret_cast_1): Call cp_comptypes.
2304         (ptr_reasonably_similar): Ditto.
2305         * decl.c (decls_match): Ditto.
2306         * cvt.c (convert_to_reference): Ditto.
2307         * cp-tree.h (same_type_p): Ditto.
2308         (same_or_base_type_p): Ditto.
2309         (comptypes): Rename to cp_comptypes.
2310         * pt.c (canonical_type_parameter): Call cp_comptypes.
2312 2008-03-07  Paolo Bonzini  <bonzini@gnu.org>
2314         * cp-objcp-common.c (cxx_types_compatible_p): Remove obsolete
2315         test for equivalence between pointer and references.
2317 2008-03-02  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2319         PR 24924
2320         * class.c (finish_struct_anon): Use permerror instead of pedwarn.
2321         (check_field_decls): Likewise.
2322         (note_name_declared_in_class): Likewise.
2323         * call.c (build_new_op): Likewise.
2324         (convert_like_real): Likewise.
2325         (build_over_call): Likewise.
2326         * lex.c (unqualified_fn_lookup_error): Likewise.
2327         * parser.c (cp_parser_template_id): Likewise.
2328         * cvt.c (warn_ref_binding): Likewise.
2329         (convert_to_reference): Likewise.
2330         (ocp_convert): Likewise.
2331         (convert_to_void): Use error instead of pedwarn.
2332         * error.c (cp_cpp_error): Use pedantic_warning_kind.
2333         * decl.c (compute_array_index_type): Use constant_expression_error.
2335 2008-03-01  Douglas Gregor  <doug.gregor@gmail.com>
2337         * parser.c (cp_lexer_next_token_is_decl_specifier_keyword): Note
2338         that auto is either a storage class or a simple type specifier,
2339         depending on the dialect.
2340         (cp_parser_decl_specifier_seq): Complain about `auto' as a storage
2341         specifier in C++98 mode, error in C++0x mode (since we don't
2342         support auto as a type specifier, yet).
2343         (cp_parser_storage_class_specifier_opt): Don't treat `auto' as a
2344         storage specifier in C++0x mode.
2345         (cp_parser_simple_type_specifier): Parse `auto' as a
2346         simple-type-specifier, but error because we don't support it yet.
2348 2008-02-29  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2350         * parser.c (cp_parser_nonclass_name): New.
2351         (cp_parser_pseudo_destructor_name): Use it instead of
2352         cp_parser_type_name.
2353         (cp_parser_type_name): Move code to cp_parser_nonclass_name.
2355 2008-02-29  Tom Tromey  <tromey@redhat.com>
2357         * parser.c (struct cp_token) <input_file_stack_index>: Remove.
2358         (cp_lexer_get_preprocessor_token): Update.
2359         (cp_lexer_set_source_position_from_token): Don't call
2360         restore_input_file_stack.
2361         * lex.c (cxx_init): Don't use push_srcloc or pop_srcloc.
2363 2008-02-28  Richard Guenther  <rguenther@suse.de>
2365         Revert:
2366         2008-02-26  Richard Guenther  <rguenther@suse.de>
2368         * decl.c (duplicate_decls): Remove decl from global mapping
2369         before ggc_freeing it.
2371 2008-02-27  Jakub Jelinek  <jakub@redhat.com>
2373         PR c++/35368
2374         * rtti.c: Include c-pragma.h.
2375         (push_abi_namespace, pop_abi_namespace): New functions.
2376         (build_dynamic_cast_1, tinfo_base_init, get_pseudo_ti_index,
2377         create_tinfo_types, emit_support_tinfos): Use them.
2378         * Make-lang.in (cp/rtti.o): Depend on $(C_PRAGMA_H).
2380 2008-02-26  Jason Merrill  <jason@redhat.com>
2382         PR c++/35315
2383         * decl.c (grokdeclarator): Allow a typedef of an unnamed struct
2384         to name the struct for linkage purposes even if it has attributes.
2385         (start_decl): In that case, set ATTR_FLAG_TYPE_IN_PLACE.
2387 2008-02-26  Tom Tromey  <tromey@redhat.com>
2389         * parser.c (eof_token): Remove old location code.
2390         (check_empty_body): Remove test of USE_MAPPED_LOCATION.
2391         * decl2.c (generate_ctor_or_dtor_function): Remove old location
2392         code.
2393         (cp_write_global_declarations): Likewise.
2394         * lex.c (cxx_init): Remove old location code.
2395         (handle_pragma_implementation): Remove test of
2396         USE_MAPPED_LOCATION.
2397         * pt.c (tsubst): Remove old location code.
2398         * error.c (cp_print_error_function): Remove test of
2399         USE_MAPPED_LOCATION.
2400         * decl.c (pop_label): Remove old location code.
2401         (finish_function): Likewise.
2403 2008-02-26  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2405         PR 26264
2406         * call.c (magic_varargs_p):  Remove BUILT_IN_STDARG_START.
2408 2008-02-26  Richard Guenther  <rguenther@suse.de>
2410         * decl.c (duplicate_decls): Remove decl from global mapping
2411         before ggc_freeing it.
2413 2008-02-26  Paolo Carlini  <pcarlini@suse.de>
2415          PR c++/35323
2416          * name-lookup.c (arg_assoc_type): Handle FIXED_POINT_TYPE.
2418 2008-02-26  Manuel Lopez-Ibanez <manu@gcc.gnu.org>
2420         * typeck.c (build_class_member_access_expr): Add appropriate
2421         OPT_W* parameter to warning.
2422         (build_reinterpret_cast_1): Likewise.
2423         * name-lookup.c (push_overloaded_decl): Likewise.
2425 2008-02-25  Paolo Carlini  <pcarlini@suse.de>
2427          PR c++/35333
2428          * error.c (dump_expr): Handle CONJ_EXPR.
2430 2008-02-25  Paolo Carlini  <pcarlini@suse.de>
2432          PR c++/35338
2433          * error.c (dump_type): Handle FIXED_POINT_TYPE.
2434         (dump_expr): Handle FIXED_CST.
2436 2008-02-24  Jason Merrill  <jason@redhat.com>
2438         * parser.c (cp_parser_declaration): Handle "inline namespace".
2439         (cp_parser_namespace_definition): Likewise.
2441         PR c++/33486
2442         * name-lookup.c (arg_assoc_namespace): Look down into inline
2443         namespaces, too.
2445 2008-02-23  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2447         * typeck.c (check_for_casting_away_constness): Use 1 single
2448         argument, the type of cast, to decide what diagnostics generate.
2449         (build_static_cast_1): Remove unused code. Update call to
2450         check_for_casting_away_constness.
2451         (build_reinterpret_cast_1): Update call to
2452         check_for_casting_away_constness.
2453         (build_const_cast_1): Likewise.
2455 2008-02-24  Paolo Carlini  <pcarlini@suse.de>
2457         * error.c (dump_expr): Don't deal directly with NEW_EXPR (and
2458         VEC_NEW_EXPR), forward to pp_expression.
2459         * cxx-pretty-print.c (pp_cxx_new_expression): Fix FIXME.
2461 2008-02-24  Danny Smith  <dannysmith@users.sourceforge.net>
2463         PR c++/34749
2464         * friend.c (do_friend): Call cplus_decl_attributes earlier.
2466 2008-02-22  Andrew Pinski  <andrew_pinski@playstation.sony.com>
2468         PR C++/34715
2469         * decl.c (duplicate_decls): Merge DECL_DISREGARD_INLINE_LIMITS for
2470         template decls' function decl.
2472 2008-02-22  Paolo Carlini  <pcarlini@suse.de>
2474         PR c++/35282
2475         Revert:
2476         2008-02-14  Paolo Carlini  <pcarlini@suse.de>
2478          PR c++/28743
2479          * pt.c (determine_specialization): In case of function templates,
2480         when the type of DECL does not match FN there is no match.
2482 2008-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2484         PR c/19999
2485         * typeck.c (build_binary_op): Warn about floating point
2486         comparisons if FLOAT_TYPE_P, not only for REAL_TYPE.
2488 2008-02-19  Jason Merrill  <jason@redhat.com>
2490         PR c++/34950
2491         * pt.c (resolve_overloaded_unification): Set processing_template_decl
2492         while we look for possible bindings.
2494 2008-02-19  Jakub Jelinek  <jakub@redhat.com>
2496         PR c++/35028
2497         * cp-gimplify.c (cxx_omp_clause_apply_fn): Handle vararg copy ctors.
2499         PR c++/34964
2500         PR c++/35244
2501         * semantics.c (finish_omp_threadprivate): Do nothing for error_operand_p
2502         vars.  Afterwards ensure v is VAR_DECL.
2504         PR c++/35078
2505         * parser.c (cp_parser_omp_for_loop): If DECL has REFERENCE_TYPE, don't
2506         call cp_finish_decl.
2507         * semantics.c (finish_omp_for): Fail if DECL doesn't have integral type
2508         early.
2510 2008-02-15  Douglas Gregor  <doug.gregor@gmail.com>
2512         PR c++/35023
2513         PR c++/35024
2514         PR c++/35026
2515         * pt.c (finish_member_template_decl): If the type in a TYPE_DECL
2516         is error_mark_node, return an error early.
2517         (find_parameter_packs_r): Pass the pointer set along to recursive
2518         calls of cp_walk_subtrees; don't try to manage the pointer set
2519         ourselves.
2520         (uses_parameter_packs): Pass the pointer set to cp_walk_tree.
2521         (make_pack_expansion): Ditto.
2522         (check_for_bare_parameter_packs): Ditto. Also, don't bother taking
2523         a second pass through the tree with find_parameter_packs_r; that
2524         second pass no longer does anything.
2525         (push_template_decl_real): If we have an erroneous declaration,
2526         set its type to error_mark_node before returning an error.
2528 2008-02-14  Douglas Gregor  <doug.gregor@gmail.com>
2530         PR c++/34050
2531         * pt.c (tsubst_initializer_list): Deal with the use of
2532         VOID_TYPE_NODE to indicate value-initialization of the bases.
2534 2008-02-14  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2535             Jason Merrill  <jason@redhat.com>
2537         PR c++/5645
2538         PR c++/11159
2539         * class.c (type_has_user_nondefault_constructor): New fn.
2540         * cp-tree.h: Declare it.
2541         * init.c (emit_mem_initializers): Use it for -W warning about
2542         missing base initializer.
2544 2008-02-14  Paolo Carlini  <pcarlini@suse.de>
2546          PR c++/28743
2547          * pt.c (determine_specialization): In case of function templates,
2548         when the type of DECL does not match FN there is no match.
2550 2008-02-13  Jakub Jelinek  <jakub@redhat.com>
2551             Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2553         PR c++/35138
2554         * parser.c (cp_parser_pseudo_destructor_name): If next tokens
2555         are not identifier :: ~, return before calling cp_parser_type_name.
2557 2008-02-13  Jason Merrill  <jason@redhat.com>
2559         PR c++/34962, c++/34937, c++/34939
2560         * decl2.c (is_late_template_attribute): Always defer attributes
2561         vector_size and weak.
2563         PR c++/34774
2564         * pt.c (value_dependent_expression_p): Look into DECL_INITIAL
2565         of enumerators, too.
2567 2008-02-12  Jason Merrill  <jason@redhat.com>
2569         PR c++/34824
2570         * call.c (convert_like_real): Pass LOOKUP_NO_CONVERSION to build_temp
2571         if we're doing conversions to call a user-defined conversion function.
2573 2008-02-12  Steven Bosscher  <steven@gcc.gnu.org>
2575         PR c++/29048
2576         * semantics.c (finish_qualified_id_expr): Avoid duplicate access
2577         check here, too.
2579 2008-02-12  Jakub Jelinek  <jakub@redhat.com>
2581         PR c++/34862
2582         * init.c (build_new_1): Don't create placement_expr before
2583         constructing alloc_call.  Verify that the pointer is passed by
2584         value to operator new.
2586 2008-02-11  Jason Merrill  <jason@redhat.com>
2588         PR c++/35097
2589         * pt.c (tsubst): Don't look up a template typedef in an explicit
2590         specialization.
2592 2008-02-11  Douglas Gregor  <doug.gregor@gmail.com>
2594         PR c++/35113
2595         * tree.c (cp_build_qualified_type_real): When building a
2596         cv-qualified array type, build it as a unique type with
2597         build_cplus_array_type_1 and then adopt the unqualified type's
2598         main variant.
2600 2008-02-11  Paolo Carlini  <pcarlini@suse.de>
2602         PR c++/35077
2603         * decl.c (groktypename): Check grokdeclarator return.
2605 2008-02-10  Jason Merrill  <jason@redhat.com>
2607         PR c++/34094
2608         * decl2.c (cp_write_global_declarations): Don't write out static
2609         data members with DECL_IN_AGGR_P set.
2611 2008-02-08  Jason Merrill  <jason@redhat.com>
2613         PR c++/35116
2614         * tree.c (build_target_expr_with_type): Handle void initializer.
2615         (bot_manip): Remap slot before recursing.
2617 2008-02-06  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2619         PR other/35107
2620         * Make-lang.in (cc1plus-dummy, cc1plus): Add $(GMPLIBS).
2622 2008-02-06  Alexandre Oliva  <aoliva@redhat.com>
2624         PR c++/35056
2625         * tree.c: Include tree-flow.h.
2626         (build_target_expr): Check type compatibility.
2627         * Make-lang.in (cp/tree.o): Depend on $(TREE_FLOW_H).
2628         * call.c (convert_like_real): Convert bitfield to expected type.
2630 2008-02-06  Douglas Gregor  <doug.gregor@gmail.com>
2632         PR c++/35049
2633         PR c++/35096
2634         * typeck.c (structural_comptypes): Call cp_comptypes.
2635         (comptypes): New; called from the C/C++ common bits to perform
2636         strict checks.
2637         (cp_comptypes): Renamed from comptypes, which is already used,
2638         with a different signature, by the C++ front end.
2639         (build_reinterpret_cast_1): Call cp_comptypes.
2640         (ptr_reasonably_similar): Ditto.
2641         * decl.c (decls_match): Ditto.
2642         * cvt.c (convert_to_reference): Ditto.
2643         * cp-tree.h (same_type_p): Ditto.
2644         (same_or_base_type_p): Ditto.
2645         (comptypes): Rename to cp_comptypes.
2646         * pt.c (canonical_type_parameter): Call cp_comptypes.
2648 2008-02-05  Jakub Jelinek  <jakub@redhat.com>
2650         PR c++/33553
2651         * pt.c (tsubst) <case INTEGER_TYPE>: Don't issue error if max is
2652         value dependent expression.
2654 2008-02-05  Douglas Gregor  <doug.gregor@gmail.com>
2656         PR c++/35074
2657         * decl2.c (save_template_attributes): When we're modifying the
2658         TYPE_MAIN_VARIANT to add new attributes, be sure to also modify
2659         all of the other variants to add those same attributes. Otherwise,
2660         the main variant will be inconsistent with those other variants.
2662 2008-02-04  Richard Guenther  <rguenther@suse.de>
2664         PR java/35035
2665         * decl.c (record_builtin_java_type): Make jboolean a
2666         integer type again where its mode doesn't match that of bool.
2668 2008-02-02  Jason Merrill  <jason@redhat.com>
2669             Mark Mitchell  <mark@codesourcery.com>
2671         PR c++/33916
2672         * init.c (build_value_init_1): New function.
2673         (build_value_init): New function.
2674         * typeck2.c (build_functional_cast): Call it.
2675         * cp-gimplify.c (cp_gimplify_init_expr): Handle its output.
2677         * cp-tree.h (TYPE_HAS_USER_CONSTRUCTOR): Rename from
2678         TYPE_HAS_CONSTRUCTOR.
2679         * class.c (finish_struct_bits, maybe_warn_about_overly_private_class,
2680         add_implicitly_declared_members): Adjust.
2681         (check_field_decls): Adjust. Remove warnings about reference/const
2682         in class without constructor.
2683         (check_bases_and_members): Adjust.  Give those warnings here instead.
2684         * decl.c (fixup_anonymous_aggr): Adjust.
2685         (check_initializer): Adjust, clarify logic slightly.
2686         (grok_special_member_properties): Adjust, only set if user-provided.
2687         * rtti.c (create_tinfo_types): Don't set.
2688         * cvt.c (ocp_convert): Remove exception for vtable_entry_type et al.
2689         Use same_type_ignoring_top_level_qualifiers_p.
2690         * pt.c (check_explicit_specialization): Adjust.
2691         (instantiate_class_template): Adjust.
2693 2008-01-31  Douglas Gregor  <doug.gregor@gmail.com>
2694             Jakub Jelinek  <jakub@redhat.com>
2696         PR c++/34935
2697         PR c++/34936
2698         * typeck.c (structural_comptypes): Handle comparisons of
2699         VOID_TYPE, BOOLEAN_TYPE, INTEGER_TYPE, FIXED_POINT_TYPE, and
2700         REAL_TYPE nodes.
2701         * mangle.c (write_builtin_type): Map down to the canonical type,
2702         which will be one of the predefined type nodes.
2704 2008-01-29  Michael Meissner  <michael.meissner@amd.com>
2706         PR 35004
2707         * cp-tree.h (struct full_lang_decl): Make tree_code bitfield 16
2708         bits to allow for expansion of the number of middle end tree
2709         codes.
2711 2008-01-29  Douglas Gregor  <doug.gregor@gmail.com>
2713         PR c++/34055
2714         PR c++/34103
2715         PR c++/34219
2716         PR c++/34606
2717         PR c++/34753
2718         PR c++/34754
2719         PR c++/34755
2720         PR c++/34919
2721         PR c++/34961
2722         * typeck.c (check_return_expr): Tweak call to
2723         check_for_bare_parameter_packs.
2724         * class.c (add_method): Be careful with error_mark_nodes.
2725         * cp-tree.h (check_for_bare_parameter_packs): Remove "*" from
2726         signature.
2727         * pt.c (struct find_parameter_pack_data): Remove
2728         SET_PACKS_TO_ERROR.
2729         (find_parameter_packs_r): Don't use SET_PACKS_TO_ERROR.
2730         (uses_parameter_packs): Don't set SET_PACKS_TO_ERROR.
2731         (make_pack_expansion): Ditto.
2732         (check_for_bare_parameter_packs): Parameter is now a tree, not a
2733         tree*.
2734         (process_template_parm): Tweak call to
2735         check_for_bare_parameter_packs.
2736         (push_template_decl_real): Tweak calls to
2737         check_for_bare_parameter_packs. If bare parameter packs are found
2738         in the list of exceptions, clear out that list after giving an
2739         error.
2740         * semantics.c (finish_cond): Tweak call to
2741         check_for_bare_parameter_packs.
2742         (finish_expr_stmt): Ditto.
2743         (finish_for_expr): Ditto.
2744         (finish_switch_cond): Ditto.
2745         (finish_mem_initializers): Ditto.
2746         (finish_member_declaration): Ditto.
2747         (finish_static_assert): Check for bare parameter packs in the
2748         condition.
2749         * decl2.c (cplus_decl_attributes): Check for bare parameter packs in the
2750         attributes of a declaration.
2751         * parser.c (cp_parser_using_declaration): Tweak call to
2752         check_for_bare_parameter_packs.
2753         (cp_parser_base_clause): Ditto.
2755 2008-01-28  Jason Merrill  <jason@redhat.com>
2757         PR c++/35007
2758         * class.c (build_base_path): Fix !want_pointer case.
2760 2008-01-27  Jason Merrill  <jason@redhat.com>
2762         PR c++/27177
2763         * class.c (build_base_path): Fix previous change.
2765 2008-01-26  Jakub Jelinek  <jakub@redhat.com>
2767         PR c++/34965
2768         * error.c (dump_expr): Handle TRUTH_AND_EXPR, TRUTH_OR_EXPR
2769         and TRUTH_XOR_EXPR.
2771 2008-01-26  Richard Guenther  <rguenther@suse.de>
2773         PR c++/34235
2774         * typeck.c (build_binary_op): Remove code to shorten compares.
2776 2008-01-25  Richard Guenther  <rguenther@suse.de>
2778         PR c++/33887
2779         * decl.c (record_builtin_java_type): Make __java_boolean
2780         a variant of bool.
2781         * typeck.c (structural_comptypes): Move TYPE_FOR_JAVA check
2782         after TYPE_MAIN_VARIANT check.
2784 2008-01-25  Jason Merrill  <jason@redhat.com>
2786         PR c++/27177
2787         * class.c (build_base_path): Don't mess with virtual access if
2788         skip_evaluation.
2789         * call.c (standard_conversion): Don't check whether source type
2790         is complete.
2792         * decl2.c (is_late_template_attribute): Don't defer attribute
2793         visibility just because the type is dependent.
2795 2008-01-25  Jason Merrill  <jason@redhat.com>
2796             Mark Mitchell  <mark@codesourcery.com>
2798         PR c++/31780
2799         * call.c (standard_conversion): Allow conversion from integer/real
2800         to complex.
2801         (compare_ics): Such a conversion is worse than a normal arithmetic
2802         conversion.
2804 2008-01-25  Richard Guenther  <rguenther@suse.de>
2806         PR c++/33887
2807         * cp-lang.c (LANG_HOOKS_REDUCE_BIT_FIELD_OPERATIONS): Define
2808         to true.
2810 2008-01-24  Paolo Carlini  <pcarlini@suse.de>
2812          PR c++/34603
2813          * pt.c (push_template_decl_real): Return error_mark_node in case
2814         of template definition of non-template.
2816 2008-01-24  Jason Merrill  <jason@redhat.com>
2818         PR c++/34913
2819         * decl2.c (is_late_template_attribute): Defer any attribute with
2820         dependent args.  Also defer type attributes if the type is dependent.
2822 2008-01-22  Jakub Jelinek  <jakub@redhat.com>
2823             Alexandre Oliva  <aoliva@redhat.com>
2825         PR c++/33984
2826         * call.c (reference_binding): For bitfields use the declared bitfield
2827         type.
2828         (add_builtin_candidates): Likewise.
2829         * class.c (layout_class_type): For bitfields copy over the
2830         original type quals.
2832 2008-01-22  Jason Merrill  <jason@redhat.com>
2834         PR c++/28560
2835         * decl.c (groktypename): Also ignore attributes on dependent
2836         possibly-class types.
2838         PR c++/34912
2839         * friend.c (do_friend): Check for prior declaration of a friend
2840         function of a local class.
2841         * name-lookup.c (lookup_name_innermost_nonclass_level):
2842         No longer static.
2843         * name-lookup.h: Declare it.
2845 2008-01-22  Tom Tromey  <tromey@redhat.com>
2847         PR c++/34829:
2848         * init.c (build_new_1): Only disallow Java aggregates.
2850 2008-01-22  Jakub Jelinek  <jakub@redhat.com>
2852         PR c++/34607
2853         * semantics.c (finish_omp_for): Don't call c_finish_omp_for
2854         if decl or init is error_mark_node.
2856         PR c++/34918
2857         * error.c (dump_expr): Handle VECTOR_CST.
2859 2008-01-21  Jason Merrill  <jason@redhat.com>
2861         PR c++/33959
2862         * pt.c (tsubst_aggr_type): Make sure our context is complete.
2864         PR c++/34573
2865         * pt.c (retrieve_local_specialization): Robustify.
2866         (tsubst_pack_expansion, tsubst_decl): Remove redundant checks.
2868         PR c++/34846
2869         * pt.c (tsubst): Only call retrieve_local_specialization if the
2870         original typedef was in a function template.
2872         PR c++/34196
2873         * decl.c (wrap_cleanups_r): Set TRY_CATCH_IS_CLEANUP.
2875 2008-01-21  Richard Guenther  <rguenther@suse.de>
2877         PR c++/34850
2878         * error.c (cp_print_error_function): Deal with recursive
2879         BLOCK trees.
2881 2008-01-20  Paolo Carlini  <pcarlini@suse.de>
2883          PR c++/34891
2884          * error.c (dump_expr): Deal with VIEW_CONVERT_EXPR.
2886 2008-01-20  Paolo Carlini  <pcarlini@suse.de>
2888          PR c++/34776
2889         PR c++/34486
2890          * name-lookup.c (do_class_using_decl): Do not call constructor_name_p
2891         on non-IS_AGGR_TYPE scope.
2892         (constructor_name_p): Assert IS_AGGR_TYPE.
2894 2008-01-18  Ian Lance Taylor  <iant@google.com>
2896         PR c++/33407
2897         * decl.c (duplicate_decls): Copy DECL_IS_OPERATOR_NEW flag.
2898         (grok_op_properties): For NEW_EXPR and VEC_NEW_EXPR set
2899         DECL_IS_OPERATOR_NEW flag.
2901 2008-01-16  Richard Guenther  <rguenther@suse.de>
2903         PR c++/33819
2904         * typeck.c (is_bitfield_expr_with_lowered_type): Recurse
2905         for conversions to type variants.
2907 2008-01-15  Andreas Tobler  <a.tobler@schweiz.org>
2909         * parser.c (cp_parser_template_parameter): Fix C90 issue with mixing
2910         declaration and code.  Update copyright year.
2912 2008-01-15  Douglas Gregor  <doug.gregor@gmail.com>
2914         PR c++/34399
2915         * friend.c (do_friend): Don't query TYPE_BEING_DEFINED unless we
2916         know we have a class type.
2918 2008-01-15  Douglas Gregor  <doug.gregor@gmail.com>
2920         PR c++/34751
2921         * pt.c (coerce_template_parameter_pack): When substituting into
2922         the type of a non-type template parameter pack. use the
2923         deduced/substituted arguments.
2924         * parser.c (declarator_can_be_parameter_pack): A pointer-to-member
2925         can be a parameter pack with the ellipsis following it.  When we
2926         have an erroneous declaration, allow it to be a parameter pack.
2927         (cp_parser_template_parameter): Complain about default
2928         arguments on non-type template parameter packs, and parse them
2929         using the new cp_parser_default_argument.
2930         (cp_parser_parameter_declaration): Complain about parameter packs
2931         with default arguments. Move parsing of default arguments into a
2932         new function, cp_parser_default_argument.
2933         (cp_parser_default_argument): New; extracted from
2934         cp_parser_parameter_declaration.
2936 2008-01-15  Douglas Gregor  <doug.gregor@gmail.com>
2938         PR c++/34051
2939         PR c++/34055
2940         PR c++/34102
2941         PR c++/34103
2942         * typeck.c (check_return_expr): If there are bare parameter packs
2943         in the return value, set it to error_mark_node.
2944         * tree.c (cp_walk_subtrees): Walk USING_DECL nodes.
2945         * pt.c (find_parameter_packs_r): Look at the type of
2946         IDENTIFIER_NODEs (e.g., for user-defined conversions).
2947         (check_for_bare_parameter_packs): Flip the result: now returns
2948         TRUE when there were bare parameter packs, FALSE otherwise.
2949         (push_template_decl_real): Deal with flipped result of
2950         check_for_bare_parameter_packs.
2951         * semantics.c (finish_cond): If there are bare parameter packs in
2952         the conditional, set it to error_mark_node.
2953         (finish_expr_stmt): If there are bare parameter packs in the
2954         expression, set it to error_mark_node.
2955         (finish_for_expr): Ditto.
2956         (finish_switch_cond): If there are bare parameter packs in
2957         the conditional, set it to error_mark_node.
2958         (finish_mem_initializers): If there are bare parameter packs in
2959         the member initializer, set it to error_mark_node.
2960         (finish_member_declaration): Check the attributes of the
2961         declaration for bare parameter packs, and remove the attributes if
2962         any have bare parameter packs.
2963         * parser.c (cp_parser_using_declaration): Check the using
2964         declaration for bare parameter packs.
2965         (cp_parser_base_clause): If there are bare parameter packs in a
2966         base specifier, don't add it to the chain.
2968 2008-01-15  Douglas Gregor  <doug.gregor@gmail.com>
2970         PR c++/34314
2971         * error.c (dump_simple_decl): Display ellipsis for template
2972         non-type parameter packs.
2973         (dump_decl): Display ellipsis for template type parameter packs.
2974         (dump_template_decl): Display ellipsis for template template
2975         parameter packs.
2976         * pt.c (redeclare_class_template): When redeclaring a class
2977         template, check for collisions between template parameters and
2978         template parameter packs.
2980 2008-01-15  Douglas Gregor  <doug.gregor@gmail.com>
2982         PR c++/33964
2983         * pt.c (process_partial_specialization): Don't mark template
2984         parameters that occur in non-deduced contexts.
2985         (struct pair_fn_data): Add include_nondeduced_p.
2986         (for_each_template_parm_r): Only visit non-deduced contexts if
2987         include_nondeduced_p is set.
2988         (for_each_template_parm): Added parameter include_nondeduced_p,
2989         which states whether template parameters found in non-deduced
2990         contexts should be visited.
2991         (uses_template_parms): Visit all template parameters, even those
2992         in non-deduced contexts.
2994 2008-01-15  Douglas Gregor  <doug.gregor@gmail.com>
2996         PR c++/34052
2997         * pt.c (check_default_tmpl_args): Check for parameter packs that
2998         aren't at the end of a primary template.
2999         (push_template_decl_real): Remove check for parameter packs that
3000         aren't at the end of a primary template; that now happens in
3001         check_default_tmpl_args.
3002         * semantics.c (finish_template_template_parm): Use
3003         check_default_tmpl_args to check for errors in the template
3004         parameter list.
3006 2008-01-12  Doug Kwan  <dougkwan@google.com>
3008         * decl.c: (grokdeclarator): Use OPT_Wignored_qualifiers
3009         instead of OPT_Wreturn_type in warning due to ignored return type
3010         qualifiers.
3011         * pt.c: (tsubst_function_type): Use OPT_Wignored_qualifiers
3012         instead of OPT_Wreturn_type in warning due to ignored return type
3013         qualifiers.
3015 2008-01-08  Jakub Jelinek  <jakub@redhat.com>
3017         PR c++/33890
3018         * semantics.c (finish_omp_for): Don't call
3019         fold_build_cleanup_point_expr if processing_template_decl.
3021 2008-01-04  Paolo Carlini  <pcarlini@suse.de>
3022             Jakub Jelinek  <jakub@redhat.com>
3024         PR c++/34611
3025         * error.c (dump_template_argument): Deal with TREE_LIST.
3027 2008-01-01  Douglas Gregor  <doug.gregor@gmail.com>
3029         * parser.c (cp_parser_check_decl_spec): Don't warn about "long
3030         long" in C++0x mode; change the warning to note that "long long"
3031         is only unsupported in C++98 mode.
3033 2007-12-20  Jason Merrill  <jason@redhat.com>
3035         PR c++/34111
3036         * call.c (standard_conversion): Derived-to-base is considered a
3037         standard conversion.
3039 2007-12-19  Jakub Jelinek  <jakub@redhat.com>
3041         PR c++/34513
3042         * parser.c (cp_parser_omp_parallel): For non-combined parallel
3043         call cp_parser_statement rather than
3044         cp_parser_already_scoped_statement.
3046 2007-12-18  Jason Merrill  <jason@redhat.com>
3048         PR c++/34206
3049         * pt.c (tsubst_aggr_type): Do nothing if the type already doesn't
3050         use template parms.
3051         (dependent_type_p_r): Handle the domain of an array.
3053 2007-12-18  Douglas Gregor  <doug.gregor@gmail.com>
3054              Jakub Jelinek  <jakub@redhat.com>
3056         PR c++/32565
3057         PR c++/33943
3058         PR c++/33965
3059         * pt.c (template_template_parm_bindings_ok_p): New; verifies
3060         bindings of template template parameters after all template
3061         arguments have been deduced.
3062         (coerce_template_parms): Don't complain when COMPLAIN doesn't
3063         include tf_error.
3064         (fn_type_unification): Use template_template_parm_bindings_ok_p.
3065         (unify): Deal with variadic, bound template template parameters.
3066         (get_class_bindings): Use template_template_parm_bindings_ok_p.
3068 2007-12-18  Jakub Jelinek  <jakub@redhat.com>
3070         PR c++/34488
3071         * decl.c (grokdeclarator): Reject friend sfk_constructor
3072         FUNCTION_TYPE.
3074 2007-12-17  Jakub Jelinek  <jakub@redhat.com>
3076         PR c/34506
3077         * parser.c (cp_parser_omp_all_clauses): Accept optional comma
3078         in between clauses.
3080 2007-12-15  Alexandre Oliva  <aoliva@redhat.com>
3082         PR debug/7081
3083         * cp-lang.c (cp_classify_record): New.
3084         (LANG_HOOKS_CLASSIFY_RECORD): Override.
3086 2007-12-11  Jakub Jelinek  <jakub@redhat.com>
3088         PR c++/34238
3089         * decl2.c (cp_write_global_declarations): Revert 2007-11-22 change.
3091         PR c++/34364
3092         * rtti.c (build_dynamic_cast): Call convert_from_reference even for
3093         dynamic_cast in a template.
3095 2007-12-10  Simon Martin  <simartin@users.sourceforge.net>
3097         PR c++/34059
3098         * typeck.c (build_class_member_access_expr): Compute MEMBER_SCOPE from
3099         MEMBER's BASELINK_ACCESS_BINFO instead of its BASELINK_BINFO.
3101 2007-12-10  Jakub Jelinek  <jakub@redhat.com>
3103         PR c++/34395
3104         * error.c (dump_type_prefix, dump_type_suffix): Handle
3105         TYPE_PACK_EXPANSION.
3107         PR c++/34394
3108         * error.c (dump_expr): Handle ABS_EXPR.
3110 2007-12-09  Jakub Jelinek  <jakub@redhat.com>
3112         PR c++/34178
3113         PR c++/34340
3114         * repo.c (repo_emit_p): Return 2 for DECL_INTEGRAL_CONSTANT_VAR_P
3115         in class scope rather than DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P.
3116         Return 2 also if DECL_EXPLICIT_INSTANTIATION.
3117         * decl2.c (import_export_decl): Don't make VAR_DECLs import_p when
3118         flag_use_repository and repo_emit_p returned 2.
3120 2007-12-06  Jakub Jelinek  <jakub@redhat.com>
3122         PR c++/34336
3123         * tree.c (stabilize_call, stabilize_init): Do nothing if
3124         processing_template_decl.
3126 2007-12-05  Jakub Jelinek  <jakub@redhat.com>
3128         PR c++/34271
3129         * semantics.c (finish_decltype_type): For SCOPE_REF issue an
3130         error instead of assertion failure.
3131         * parser.c (cp_parser_decltype): If closing paren is not found,
3132         return error_mark_node.
3134 2007-12-04  Douglas Gregor  <doug.gregor@gmail.com>
3136         PR c++/34101
3137         * name-lookup.c (arg_assoc_template_arg): Recurse on argument
3138         packs.
3139         (arg_assoc_type): We don't need to handle TYPE_ARGUMENT_PACK here,
3140         since arg_assoc_template_arg will deal with them (better).
3142 2007-12-04  Douglas Gregor  <doug.gregor@gmail.com>
3144         PR c++/33509
3145         * pt.c (tsubst_exception_specification): Handle substitutions into
3146         member templates, where tsubst_pack_expansion returns a
3147         TYPE_PACK_EXPANSION.
3149 2007-12-04  Douglas Gregor  <doug.gregor@gmail.com>
3151         PR c++/33091
3152         * pt.c (unify_pack_expansion): If we didn't deduce any actual
3153         bindings for the template parameter pack, don't try to keep the
3154         empty deduced arguments.
3155         (unify): If a parameter is a template-id whose template argument
3156         list contains a pack expansion that is not at the end, then we
3157         cannot unify against that template-id.
3159 2007-12-02  Paolo Carlini  <pcarlini@suse.de>
3161          PR c++/34061
3162          * pt.c (current_template_args): Use error_operand_p.
3164 2007-12-02  Paolo Carlini  <pcarlini@suse.de>
3166          PR c++/34273
3167          * error.c (dump_decl): Handle TREE_BINFO.
3169 2007-12-01  Ollie Wild  <aaw@google.com>
3171         PR c++/8171
3172         * typeck.c (build_binary_op): Add conversion of pointers to function
3173         members appearing as operands to the equality operators.
3175 2007-11-30  Jakub Jelinek  <jakub@redhat.com>
3177         PR c++/34275
3178         * error.c (dump_expr): Handle OBJ_TYPE_REF.
3180 2007-11-29  Jakub Jelinek  <jakub@redhat.com>
3182         PR c++/34270
3183         * tree.c (lvalue_p_1) <case COND_EXPR>: Handle x ?: y
3184         in templates.
3185         * typeck.c (is_bitfield_expr_with_lowered_type) <case COND_EXPR>:
3186         Likewise.
3188         PR c++/34267
3189         PR c++/34268
3190         * parser.c (cp_parser_decltype): Don't call finish_id_expression
3191         on ~type.
3192         * semantics.c (finish_decltype_type): Issue error on types, TYPE_DECLs
3193         and ~type early.
3195 2007-11-27  Jakub Jelinek  <jakub@redhat.com>
3197         PR tree-optimization/34181
3198         * method.c (use_thunk): Don't inline the call in the thunk.
3200         PR c++/34213
3201         * tree.c (decl_linkage): Static data members and static member
3202         functions in anonymous ns classes are lk_external.
3204 2007-11-26  Andreas Krebbel  <krebbel1@de.ibm.com>
3206         PR c++/34081
3207         * decl.c (start_preparsed_function): Pass
3208         processing_template_decl for the new allocate_struct_function
3209         parameter.
3211 2007-11-25  Richard Guenther  <rguenther@suse.de>
3213         * decl.c (poplevel): Use BLOCK_CHAIN.
3215 2007-11-24  Ollie Wild  <aaw@google.com>
3217         * typeck.c (delta_from_ptrmemfunc): New function.
3218         (get_member_function_from_ptrfunc): Call delta_from_ptrmemfunc.
3219         (build_binary_op): Call delta_from_ptrmemfunc.
3221 2007-11-23  Jakub Jelinek  <jakub@redhat.com>
3223         PR c++/30293
3224         PR c++/30294
3225         * decl.c (cp_finish_decl): Disallow variable or field
3226         definitions if extern "Java" aggregates.
3227         (grokparms): Disallow parameters with extern "Java"
3228         aggregates.
3229         (check_function_type): Disallow function return values
3230         with extern "Java" aggregates.
3231         * init.c (build_new_1): Disallow placement new with
3232         extern "Java" aggregates.
3234 2007-11-23  Mark Mitchell  <mark@codesourcery.com>
3235             Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
3237         PR c++/5310
3238         * call.c (convert_like_real): Build a zero constant when __null is
3239         converted to an integer type.
3241 2007-11-22  Jakub Jelinek  <jakub@redhat.com>
3243         PR c++/34094
3244         * decl2.c (cp_write_global_declarations): Issue error about static
3245         data members in anonymous namespace which are declared and used,
3246         but not defined.
3248 2007-11-20  Jakub Jelinek  <jakub@redhat.com>
3250         PR c++/34089
3251         * parser.c (cp_parser_class_head): Reject function template ids.
3253         PR c++/28879
3254         * tree.c (build_cplus_array_type_1): Don't pass any VLA types
3255         when processing_template_decl to build_array_type.
3257         PR c++/33962
3258         * pt.c (more_specialized_fn): Don't segfault if one or
3259         both argument list end with ellipsis.
3261 2007-11-18  Jakub Jelinek  <jakub@redhat.com>
3263         PR c++/30988
3264         * semantics.c (finish_call_expr): Set
3265         current_function_returns_abnormally if fn is noreturn FUNCTION_DECL
3266         or OVERLOAD with all noreturn functions.
3268 2007-11-16  Jakub Jelinek  <jakub@redhat.com>
3270         PR c++/34100
3271         * pt.c (apply_late_template_attributes): Do nothing if decl's type is
3272         error_mark_node.
3274 2007-11-13  Jakub Jelinek  <jakub@redhat.com>
3276         PR c++/34054
3277         PR c++/34056
3278         PR c++/34057
3279         PR c++/34058
3280         PR c++/34060
3281         * pt.c (find_parameter_packs_r): If ppd->set_packs_to_error,
3282         set to error_mark_node the outermost POINTER_TYPE to the pack if
3283         it is seen in a POINTER_TYPE.
3284         (push_template_decl_real): If check_for_bare_parameter_packs
3285         fails for function return type, set the return type to
3286         integer_type_node.  If check_for_bare_parameter_packs failed
3287         for non-function, return error_mark_node.
3289         PR c++/29225
3290         * call.c (build_new_op): Call resolve_args before calling
3291         build_over_call.
3293 2007-11-11  Tom Tromey  <tromey@redhat.com>
3295         PR c++/17577:
3296         * lex.c (handle_pragma_implementation): Use cpp_included_before.
3298 2007-11-12  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
3300         PR c++/8570
3301         * pt.c (redeclare_class_template): Update error message. Use a
3302         note to show the previous declaration.
3303         (tsubst_friend_class): Use the location of the friend template as
3304         the input location before calling redeclare_class_template.
3306 2007-11-11  Jakub Jelinek  <jakub@redhat.com>
3308         PR c++/34068
3309         * semantics.c (finish_pseudo_destructor_expr): Handle
3310         object == error_mark_node.
3312 2007-11-10  Jakub Jelinek  <jakub@redhat.com>
3314         PR c++/32241
3315         * pt.c (tsubst_copy_and_build) <case COMPONENT_REF>: If object_type
3316         is not scalar type, let finish_class_member_access_expr handle
3317         diagnostics.  Pass BIT_NOT_EXPR argument to
3318         finish_pseudo_destructor_expr.  Handle SCOPE_REF properly.
3320 2007-11-09  Douglas Gregor  <doug.gregor@gmail.com>
3322         PR c++/33510
3323         * decl.c (cp_complete_array_type): If any of the initializer
3324         elements are pack expansions, don't compute the array size yet.
3326 2007-11-08  Andrew Pinski  <pinskia@gmail.com>
3328         PR c++/30297:
3329         * tree.c (decl_linkage): Fields have no linkage.
3331 2007-11-08  Daniel Jacobowitz  <dan@codesourcery.com>
3333         * class.c (build_ctor_vtbl_group): Lay out the new type and decl.
3335 2007-11-07  Douglas Gregor  <doug.gregor@gmail.com>
3337         PR c++/33045
3338         PR c++/33837
3339         PR c++/33838
3340         * semantics.c (finish_decltype_type): See through INDIRECT_REFs.
3341         Be careful with ERROR_MARK_NODEs.
3342         * parser.c (cp_parser_check_access_in_redeclaration): Handle NULL
3343         argument.
3345 2007-11-07  Jakub Jelinek  <jakub@redhat.com>
3347         PR c++/33501
3348         * call.c (build_over_call): Don't check TREE_ADDRESSABLE
3349         on incomplete type.
3351 2007-11-06  Douglas Gregor  <doug.gregor@gmail.com>
3353         PR c++/33977
3354         PR c++/33886
3355         * tree.c (c_build_qualified_type): Define bridge to
3356         cp_build_qualified_type.
3358 2007-11-06  Douglas Gregor  <doug.gregor@gmail.com>
3360         PR c++/31439
3361         PR c++/32114
3362         PR c++/32115
3363         PR c++/32125
3364         PR c++/32126
3365         PR c++/32127
3366         PR c++/32128
3367         PR c++/32253
3368         PR c++/32566
3369         * typeck.c (check_return_expr): Pass address of retval to
3370         check_for_bare_parameter_packs.
3371         * class.c (build_base_field): Tolerate bases that have no layout
3372         due to errors.
3373         (end_of_base): Ditto.
3374         * tree.c (canonical_type_variant): Be careful with
3375         ERROR_MARK_NODE.
3376         * cp-tree.h (check_for_bare_parameter_packs): Now accepts a
3377         tree*.
3378         * pt.c (find_parameter_pack_data): Add set_packs_to_error field,
3379         which states whether parameter packs should be replaced with
3380         ERROR_MARK_NODE.
3381         (find_parameter_packs_r): Pass addresses to cp_walk_tree wherever
3382         possible. If set_packs_to_error is set true, replace the parameter
3383         pack with ERROR_MARK_NODE. Manage our own pointer sets.
3384         (uses_parameter_packs): Don't set parameter packs to
3385         ERROR_MARK_NODE.
3386         (check_for_bare_parameter_packs): Now takes a pointer to a tree,
3387         which may be modified (if it is a parameter pack). Instructs
3388         find_parameter_packs_r to replace parameter packs with
3389         ERROR_MARK_NODE (so that they won't cause errors later on).
3390         (process_template_parm): Pass pointer to
3391         check_for_bare_parameter_packs.
3392         (process_partial_specialization): Replace pack expansions before
3393         the end of the template argument list with ERROR_MARK_NODE.
3394         (push_template_decl_real): Pass pointer to
3395         check_for_bare_parameter_packs. Replace parameter packs not at the
3396         end of the template parameter list with ERROR_MARK_NODE.
3397         (convert_template_argument): Be more careful about using DECL_NAME
3398         on only declarations.
3399         (unify): Can't unify against ERROR_MARK_NODE.
3400         * semantics.c (finish_cond): Pass pointer to
3401         check_for_bare_parameter_packs.
3402         (finish_expr_stmt): Ditto.
3403         (finish_for_expr): Ditto.
3404         (finish_switch_cond): Pass pointer to
3405         check_for_bare_parameter_packs, and call it before we put the
3406         condition into the statement.
3407         (finish_mem_initializers): Pass pointer to
3408         check_for_bare_parameter_packs.
3409         (finish_member_declaration): Ditto.
3410         * parser.c (cp_parser_base_clause): Ditto.
3412 2007-11-06  Jakub Jelinek  <jakub@redhat.com>
3414         PR target/33168
3415         * decl.c (cp_finish_decl): Call make_rtl_for_nonlocal_decl already
3416         with the final TREE_READONLY flag in place.  processing_template_decl
3417         is known to be 0 in this part of function.
3419         PR c++/33894
3420         * cp-tree.h: Update comment - TYPE_LANG_FLAG_0 is not
3421         OMP_ATOMIC_DEPENDENT_P in OMP_ATOMIC.
3422         * pt.c (tsubst_expr): Assert OMP_ATOMIC_DEPENDENT_P.
3423         * semantics.c (finish_omp_atomic): Revert most of the
3424         2007-02-05 changes, just keep the new representation of
3425         OMP_ATOMIC_DEPENDENT_P OMP_ATOMIC.
3427 2007-11-05  H.J. Lu  <hongjiu.lu@intel.com>
3429         PR c++/33871
3430         * decl2.c (constrain_visibility): Clear DECL_ONE_ONLY if marked
3431         local.
3433 2007-11-05  Douglas Gregor  <doug.gregor@gmail.com>
3435         PR c++/33996
3436         PR c++/33235
3437         PR c++/33930
3438         * typeck.c (merge_types): Don't lose rvalue references when
3439         merging types.
3440         * call.c (build_over_call): Don't elide move constructors just
3441         because the copy constructor is trivial (!).
3442         (compare_ics): If comparing cv-qualifiers fails, we can still order
3443         based on binding lvalues vs. rvalues.
3445 2007-11-05  Douglas Gregor  <doug.gregor@gmail.com>
3447         PR c++/33939
3448         * pt.c (unify_pack_expansion): bring handling of function call
3449         arguments into line with type_unification_real.
3451 2007-11-05  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
3453         * typeck.c (build_binary_op): Use pedwarn instead of error for
3454         consistency.
3456 2007-11-05  Jakub Jelinek  <jakub@redhat.com>
3458         PR c++/33836
3459         * parser.c (cp_parser_unary_expression): For &&label call
3460         cp_parser_non_integral_constant_expression and return error_mark_node
3461         if it returned true.
3463         PR c++/33969
3464         * decl.c (grokdeclarator): Don't call build_memfn_type if type
3465         is neither FUNCTION_TYPE nor METHOD_TYPE.
3467 2007-11-02  Jakub Jelinek  <jakub@redhat.com>
3469         PR c++/33516
3470         * parser.c (cp_parser_nested_name_specifier_opt): Use
3471         TYPE_MAIN_VARIANT (new_scope) as scope if new_scope is an incomplete
3472         typedef of currently open class.
3474 2007-11-02  Paolo Carlini  <pcarlini@suse.de>
3476         PR c++/33495
3477         * error.c (dump_expr): Deal specially with statements.
3479 2007-11-01  Jason Merrill  <jason@redhat.com>
3481         PR c++/30897
3482         * pt.c (push_template_decl_real): Set DECL_CONTEXT on template
3483         template parms.
3484         (lookup_template_class): Use it to get the outer template args
3485         for instantiating one.
3487         PR c++/29236
3488         * pt.c (reduce_template_parm_level): tsubst the parameters
3489         of a template template parm.
3491 2007-11-01  Douglas Gregor  <doug.gregor@gmail.com>
3493         PR c++/33955
3494         * pt.c (find_parameter_packs_r): Handle TYPENAME_TYPE.
3496 2007-11-01  Jakub Jelinek  <jakub@redhat.com>
3498         PR c++/32384
3499         * parser.c (cp_parser_postfix_dot_deref_expression): If
3500         POSTFIX_EXPRESSION is type dependent, try to parse it as pseudo dtor
3501         first and if that succeeds and type is SCALAR_TYPE_P, create
3502         PSEUDO_DTOR_EXPR.
3504         PR c++/32260
3505         * rtti.c (enum_tinfo_kind): Fix TK_TYPE_INFO_TYPE comment.
3506         (typeid_ok_p): Use the same alias set for abi::__type_info_pseudo
3507         as for std::type_info.
3509 2007-10-31  Paolo Carlini  <pcarlini@suse.de>
3511         PR c++/33494
3512         * cxx-pretty-print.c (pp_cxx_typeid_expression,
3513         pp_cxx_delete_expression): Change to static linkage.
3514         * cxx-pretty-print.h: Adjust declarations.
3515         * error.c (dump_expr, case EXPR_PACK_EXPANSION, TYPEID_EXPR,
3516         MEMBER_REF, DOTSTAR_EXPR, DELETE_EXPR, VEC_DELETE_EXPR,
3517         MODOP_EXPR): Forward to pp_expression.
3519         * cxx-pretty-print.c (pp_cxx_expression, case NON_DEPENDENT_EXPR):
3520         Fix typo.
3522 2007-10-31 Christian Bruel  <christian.bruel@st.com>
3523             Mark Mitchell  <mark@codesourcery.com>
3525         PR c++/19531
3526         * typeck.c (check_return_expr): Don't set named_return_value_okay_p
3527         if retval is volatile.
3529 2007-10-30  Jakub Jelinek  <jakub@redhat.com>
3531         PR c++/33616
3532         * decl2.c (build_offset_ref_call_from_tree): Call
3533         build_non_dependent_expr on object prior to building ADDR_EXPR from it
3534         if FN is DOTSTAR_EXPR.
3536 2007-10-30  Douglas Gregor  <doug.gregor@gmail.com>
3538         PR c++/31993
3539         PR c++/32252
3540         * pt.c (find_parameter_packs_r): Fix typo in comment.
3541         (convert_template_argument): Look at the pattern of a pack
3542         expansion to determine what kind of entity we're converting.
3543         (coerce_template_parameter_pack): When we have coerced a non-type
3544         template parameter pack, substitute into the type of that pack.
3545         (tsubst_pack_expansion): When our substitution of a parameter pack
3546         is a "trivial" substitution of itself, just substitute into the
3547         pack expansion rather than actually expanding.
3549 2007-10-29  Jakub Jelinek  <jakub@redhat.com>
3551         PR c++/33841
3552         * class.c (check_bitfield_decl): Don't set field's type to error_mark_node
3553         for non-integral type bitfields.  Return true if bitfield is correct, false
3554         error has been diagnosed.
3555         (check_field_decls): If check_bitfield_decl returned false, call also
3556         check_field_decl.
3558 2007-10-28  Paolo Carlini  <pcarlini@suse.de>
3559             Mark Mitchell  <mark@codesourcery.com>
3561         PR c++/30659
3562         * pt.c (do_decl_instantiation): If the VAR_DECL is not a
3563         class member error out and return.
3565 2007-10-27  Jakub Jelinek  <jakub@redhat.com>
3567         * error.c (reinit_cxx_pp): Initialize cxx_pp->enclosing_scope
3568         to current_function_decl rather than 0.
3570         PR c++/33844
3571         * cxx-pretty-print.c (pp_cxx_pm_expression) <case MEMBER_REF>: Print
3572         ->* rather than .*.
3573         * error.c (dump_expr): Handle MEMBER_REF and DOTSTAR_EXPR.
3575 2007-10-27  Jason Merrill  <jason@redhat.com>
3577         PR c++/5247
3578         * call.c (convert_default_arg): Detect recursion.
3580 2007-10-27  Jakub Jelinek  <jakub@redhat.com>
3582         PR c++/33842
3583         * cxx-pretty-print.h (pp_cxx_offsetof_expression): New prototype.
3584         * cxx-pretty-print.c (pp_cxx_primary_expression): Handle
3585         OFFSETOF_EXPR.
3586         (pp_cxx_offsetof_expression_1, pp_cxx_offsetof_expression): New
3587         functions.
3588         * error.c (dump_expr): Handle OFFSETOF_EXPR.
3590 2007-10-26  Jason Merrill  <jason@redhat.com>
3592         PR c++/24791
3593         * pt.c (get_template_info): New fn.
3594         (template_class_depth): Use it.
3595         (push_template_decl_real): Check that the template args of the
3596         definition match the args of the previous declaration.
3598 2007-10-26  Paolo Carlini  <pcarlini@suse.de>
3600         PR c++/31988
3601         * decl2.c (coerce_new_type): Do not allow a default argument for
3602         the first parameter.
3604 2007-10-26  Douglas Gregor  <doug.gregor@gmail.com>
3606         PR c++/33839
3607         * parser.c (cp_parser_decltype): Return ERROR_MARK_NODE if we
3608         don't see the leading '('. Only lookup names if we get an
3609         IDENTIFIER_NODE.
3611 2007-10-26  Jakub Jelinek  <jakub@redhat.com>
3613         PR c++/33744
3614         * parser.c (cp_parser_parenthesized_expression_list): Set
3615         greater_than_is_operator_p to true in between the parens.
3617 2007-10-26  Paolo Carlini  <pcarlini@suse.de>
3619         PR c++/31747
3620         * decl.c (grokdeclarator): In case of conflicting specifiers
3621         just return error_mark_node.
3623 2007-10-26  Ollie Wild  <aaw@google.com>
3625         * expr.c (cxx_expand_expr): Removed.
3626         * cp-tree.h (exx_expand_expr): Removed.
3627         * cp-objcp-common.h (LANK_HOOKS_EXPAND_EXPR): Replace cxx_expand_expr
3628         with c_expand_expr.
3630 2007-10-25  Paolo Carlini  <pcarlini@suse.de>
3632         PR c++/33843
3633         * cxx-pretty-print.c (pp_cxx_unqualified_id): Deal with BIT_NOT_EXPR.
3635 2007-10-23  Jason Merrill  <jason@redhat.com>
3637         PR c++/25950 (DR 391)
3638         * call.c (struct conversion): Remove check_copy_constructor_p.
3639         (reference_binding): Always bind a reference directly to a
3640         compatible class rvalue.  Pass down LOOKUP_NO_TEMP_BIND during
3641         temporary creation.
3642         (check_constructor_callable): Remove.
3643         (convert_like_real): Don't call it.
3644         (initialize_reference): Don't call check_constructor_callable.
3645         (standard_conversion): Check LOOKUP_NO_CONVERSION instead of
3646         LOOKUP_CONSTRUCTOR_CALLABLE.  Don't require a temporary for base
3647         conversions if LOOKUP_NO_TEMP_BIND.
3648         (implicit_conversion): Pass through LOOKUP_NO_TEMP_BIND.
3649         (build_user_type_conversion_1): Pass through LOOKUP_NO_TEMP_BIND for
3650         second conversion.
3651         * cp-tree.h (LOOKUP_CONSTRUCTOR_CALLABLE): Remove.
3653 2007-10-22  Jakub Jelinek  <jakub@redhat.com>
3655         PR c++/33372
3656         * semantics.c (finish_omp_clauses): Check !type_dependent_expression_p
3657         before checking if its type is integral.
3659 2007-10-22  Jason Merrill  <jason@redhat.com>
3661         PR c++/33620
3662         * class.c (finish_struct_bits): Copy TYPE_ATTRIBUTES.
3663         * pt.c (apply_late_template_attributes): Splice out dependent
3664         attributes from DECL_ATTRIBUTES.
3666         * decl.c (cxx_maybe_build_cleanup): Use build_address.
3668 2007-10-17  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
3670         * typeck.c (build_binary_op) : Use appropriate warning option
3671         instead of unnamed warning.
3673 2007-10-16  Paolo Carlini  <pcarlini@suse.de>
3675         PR c++/31446
3676         * pt.c (current_template_args): Do not change TREE_LIST elements
3677         with a TREE_VALUE of error_mark_node.
3679 2007-10-16  Mark Mitchell  <mark@codesourcery.com>
3681         * typeck.c (cp_apply_type_quals_to_decl): Expand documentation.
3682         * decl.c (start_decl): Tidy.
3683         (start_decl_1): Call cp_apply_type_quals_to_decl after completing
3684         the type.
3685         (grokdeclarator): Clarify comment.
3687 2007-10-14  Andrew Pinski  <pinskia@gmail.com>
3689         PR c++/30303
3690         * decl.c (grokfndecl): Return NULL after the "definition of
3691         implicitly-declared" error happened.
3693 2007-10-12  Simon Martin  <simartin@users.sourceforge.net>
3695         PR c++/26698
3696         * call.c (build_user_type_conversion_1): Do not consider conversion
3697         functions to convert a (possibly cv-qualified) object to the (possibly
3698         cv-qualified) same object type (or a reference to it), to a (possibly
3699         cv-qualified) base class of that type (or a reference to it).
3701 2007-10-12  Paolo Carlini  <pcarlini@suse.de>
3703         * pt.c (tsubst): Use template_parm_level_and_index.
3705 2007-10-12  Jakub Jelinek  <jakub@redhat.com>
3707         PR c++/32121
3708         * parser.c (cp_parser_compound_statement): Handle label-declarations
3709         at the beginning of the compound statement.
3710         (cp_parser_block_declaration): Issue diagnostics about __label__
3711         not at the beginning of a block.
3713 2007-10-11  Paolo Carlini  <pcarlini@suse.de>
3715         PR c++/33461
3716         * pt.c (coerce_template_parameter_pack): Do not pass error_mark_node
3717         to convert_template_argument.
3718         (coerce_template_parms): Return error_mark_node after fixed-length
3719         error.
3720         (tsubst_decl): Check for error_mark_node the return value of the
3721         first tsubst in 'case VAR_DECL'.
3723 2007-10-08  Ollie Wild  <aaw@google.com>
3725         * typeck2.c (digest_init): Call cplus_expand_constant after
3726         convert_for_initialization.
3727         * cp-objcp-common.h (LANG_HOOKS_EXPAND_CONSTANT): Removed.
3728         * expr.c (cplus_expand_constant): Updated function description.
3730 2007-10-04  Jason Merrill  <jason@redhat.com>
3732         PR c++/20416
3733         * call.c (initialize_reference): Handle local static reference
3734         temps properly.
3736 2007-10-03  Jason Merrill  <jason@redhat.com>
3738         PR c++/32470
3739         * name-lookup.c (push_namespace_with_attrs): Fold back into...
3740         (push_namespace): Here.
3741         (handle_namespace_attrs): New fn for the attr code.
3742         (leave_scope): Don't pop_visibility.
3743         * name-lookup.h (struct cp_binding_level): Remove has_visibility.
3744         * parser.c (cp_parser_namespace_definition): Call
3745         handle_namespace_attrs and pop_visibility as appropriate.
3747         PR c++/11756
3748         * mangle.c (write_type) [TYPEOF_TYPE]: Just sorry.
3750 2007-10-03  Alexandre Oliva  <aoliva@redhat.com>
3752         * decl.c (duplicate_decls): Preserve linkage flags for mere
3753         redeclarations of gnu_inline definitions.
3755 2007-10-03  Jason Merrill  <jason@redhat.com>
3757         PR c++/15764
3758         * decl.c (wrap_cleanups_r): New fn.
3759         (wrap_temporary_cleanups): New fn.
3760         (initialize_local_var): Call it.
3762 2007-09-29  Jason Merrill  <jason@redhat.com>
3764         PR c++/33094
3765         * decl.c (make_rtl_for_nonlocal_decl): It's ok for a member
3766         constant to not have DECL_EXTERNAL if it's file-local.
3768 2007-09-28  Ollie Wild  <aaw@google.com>
3770         Revert
3771         2007-09-27  Ollie Wild  <aaw@google.com>
3773         * typeck2.c (digest_init): Call cplus_expand_constant after
3774         convert_for_initialization.
3775         * cp-objcp-common.h (LANG_HOOKS_EXPAND_CONSTANT): Removed.
3776         * expr.c (cplus_expand_constant): Updated function description.
3778 2007-09-28  Jason Merrill  <jason@redhat.com>
3780         PR c++/10179
3781         * class.c (layout_empty_base): Take rli parameter, update
3782         rli->record_align if empty base has user-specified alignment.
3783         (build_base_field): Pass rli to it.
3785 2007-09-28  Paolo Carlini  <pcarlini@suse.de>
3787         PR c++/33213
3788         * error.c (dump_decl): Deal with TYPE_PACK_EXPANSION.
3790 2007-09-28  Paolo Carlini  <pcarlini@suse.de>
3792         PR c++/33118
3793         * error.c (dump_expr): Deal with ARGUMENT_PACK_SELECT.
3794         (dump_type): Use dump_template_argument for TYPE_ARGUMENT_PACK.
3795         (dump_parameters): Just call dump_type for argument packs too.
3797 2007-09-28  Jakub Jelinek  <jakub@redhat.com>
3799         PR c++/31434
3800         * tree.c (cp_build_qualified_type_real): Handle TYPE_PACK_EXPANSION
3801         qualification by creating qualified PACK_EXPANSION_PATTERN and
3802         then calling make_pack_expansion on it.
3804 2007-09-27  Ollie Wild  <aaw@google.com>
3806         * typeck2.c (digest_init): Call cplus_expand_constant after
3807         convert_for_initialization.
3808         * cp-objcp-common.h (LANG_HOOKS_EXPAND_CONSTANT): Removed.
3809         * expr.c (cplus_expand_constant): Updated function description.
3811 2007-09-27  Jason Merrill  <jason@redhat.com>
3813         PR c++/33571
3814         * decl2.c (is_late_template_attribute): Don't crash on unknown
3815         attribute.
3817 2007-09-27  Paolo Carlini  <pcarlini@suse.de>
3819         PR c++/33493
3820         * error.c (dump_expr): Deal with DELETE_EXPR and VEC_DELETE_EXPR.
3821         * cxx-pretty-print.c (pp_cxx_delete_expression): Add missing
3822         spaces in the formatting.
3823         * cxx-pretty-print.h (pp_cxx_delete_expression): Declare.
3825 2007-09-27  Jakub Jelinek  <jakub@redhat.com>
3827         * error.c (cxx_print_error_function): Add third argument, pass
3828         it over to lhd_print_error_function.
3829         (cp_print_error_function): If diagnostic->abstract_origin, print
3830         virtual backtrace.
3831         * cp-tree.h (struct diagnostic_info): New forward decl.
3832         (cxx_print_error_function): Add third argument.
3834 2007-09-25  Simon Martin  <simartin@users.sourceforge.net>
3836         PR c++/33207
3837         * name-lookup.c (pushtag): Do not create an implicit typedef before
3838         the associated type declaration is known to be valid.
3840 2007-09-25  Jakub Jelinek  <jakub@redhat.com>
3842         * tree.c (cxx_printable_name): Compare FUNCTION_DECL uids
3843         rather than pointers.
3845 2007-09-24  Danny Smith  <dannysmith@user.sourceforge.net>
3847         PR c++/14688
3848          * search.c (check_final_overrider): Fail if
3849         targetm.comp_type_attributes returns 0.
3851 2007-09-24  Jason Merrill  <jason@redhat.com>
3853         PR c++/33239
3854         * pt.c (resolve_typename_type): Don't look things up in the original
3855         template if it would mean losing template arguments.
3857 2007-09-24  Jakub Jelinek  <jakub@redhat.com>
3859         PR c++/33506
3860         * cp-tree.h (cxx_type_hash_eq): New prototype.
3861         * cp-objcp-common.h (LANG_HOOKS_TYPE_HASH_EQ): Redefine.
3862         * tree.c (cxx_type_hash_eq): New function.
3864 2007-09-24  Douglas Gregor  <doug.gregor@gmail.com>
3866         PR c++/33185
3867         * tree.c (cp_build_qualified_type_real): Build a canonical
3868         ARRAY_TYPE if the original ARRAY_TYPE was not a canonical type.
3870 2007-09-24  Douglas Gregor  <doug.gregor@gmail.com>
3872         PR c++/33112
3873         PR c++/33185
3874         * tree.c (cplus_array_compare): Compare pointers, not types.
3875         (build_cplus_array_type_1): Store new array type into the hash
3876         table before building the canonical type; build the canonical type
3877         correctly.
3878         (cp_build_qualified_type_real): Put all of the array types with
3879         cv-qualified element types into the C++ array hash table, built as
3880         variants of the unqualified versions.
3882 2007-09-23  Jason Merrill  <jason@redhat.com>
3884         PR c++/16370
3885         * decl.c (grokdeclarator): Look through implicit TYPE_DECLs
3886         for deprecation warnings.
3888 2007-09-22  Jason Merrill  <jason@redhat.com>
3890         PR c++/15269
3891         * call.c (build_over_call): Warn about deprecated virtuals.
3893         PR c++/19407
3894         * cp-tree.h (ATTR_IS_DEPENDENT): New macro.
3895         (MAYBE_TAGGED_TYPE_P): Remove.
3896         * pt.c (apply_late_template_attributes): Check ATTR_IS_DEPENDENT
3897         instead of calling is_late_template_attribute again.
3898         (tsubst_decl) [TYPE_DECL]: Just check if the name is the tag.
3899         (tsubst): A typedef is a TYPE_NAME != TYPE_MAIN_DECL.
3900         Don't crash on typedefs from non-template classes.
3901         * decl2.c (grokfield): Don't sorry about attrs on template parms.
3902         (is_late_template_attribute): All attributes applied to template
3903         parms or typename types are dependent.  Static.
3904         (splice_template_attributes): Pass decl through.
3905         (save_template_attributes): Likewise.
3907 2007-09-20  Jakub Jelinek  <jakub@redhat.com>
3909         PR c++/33496
3910         * pt.c (tsubst_copy) <case SIZEOF_EXPR>: Handle error_mark_node
3911         returned from tsubst_pack_expansion.
3912         (tsubst_copy_and_build) <case SIZEOF_EXPR>: Likewise.
3913         (tsubst_copy_and_build) <case CONSTRUCTOR>: Likewise.
3915 2007-09-20  Paolo Carlini  <pcarlini@suse.de>
3917         PR c++/33460
3918         * semantics.c (finish_id_expression): Use consistently
3919         context_for_name_lookup.
3920         * decl.c (fixup_anonymous_aggr): Fix error message for
3921         anonymous struct (vs union).
3923 2007-09-19  Jason Merrill  <jason@redhat.com>
3925         PR c++/7586
3926         * pt.c (tsubst): Handle typedefs by looking for the specialization.
3927         (retrieve_specialization): Only tagged types use
3928         DECL_TEMPLATE_INSTANTIATIONS.
3929         (instantiate_class_template): Push nested classes too.
3930         (tsubst_decl) [TYPE_DECL]: Only check for canonical decl for
3931         tagged types.
3932         * cp-tree.h (MAYBE_TAGGED_TYPE_P): New macro.
3933         * init.c (is_aggr_type): Remove redundant tests.
3934         * class.c (push_nested_class): Use CLASS_TYPE_P.
3936 2007-09-20  Paolo Carlini  <pcarlini@suse.de>
3938         PR c++/33459
3939         * init.c (build_zero_init): If, recursively, build_zero_init
3940         returns a NULL_TREE, do not append it to the VEC of constructors.
3942 2007-09-18  Jason Merrill  <jason@redhat.com>
3944         PR c++/17743
3945         * pt.c (apply_late_template_attributes): Set processing_template_decl.
3946         (tsubst_decl) [TYPE_DECL]: Preserve naming typedef, pass
3947         ATTR_FLAG_TYPE_IN_PLACE.
3948         (tsubst): Do unqualified lookup to find typedefs from current class.
3949         [ARRAY_TYPE]: Propagate alignment info.
3950         * decl2.c (is_late_template_attribute): Only defer handling of
3951         attribute aligned if the expression is dependent.
3952         (save_template_attributes): If we're deferring any attributes,
3953         make this a naming typedef.
3955 2007-09-18  Paolo Carlini  <pcarlini@suse.de>
3957         PR c++/33462 (again)
3958         * cxx-pretty-print.c (pp_cxx_va_arg_expression): Print
3959         va_arg instead of __builtin_va_arg.
3961 2007-09-18  Paolo Carlini  <pcarlini@suse.de>
3963         PR c++/33462
3964         * cxx-pretty-print.c (pp_cxx_va_arg_expression): Add.
3965         (pp_cxx_primary_expression): Use it.
3966         * cxx-pretty-print.h (pp_cxx_va_arg_expression): Declare.
3967         * error.c (dump_expr): Use it.
3969 2007-09-18  Paolo Carlini  <pcarlini@suse.de>
3971         PR c++/33463
3972         * cxx-pretty-print.c (pp_cxx_postfix_expression): Split
3973         out case TYPEID_EXPR to...
3974         (pp_cxx_typeid_expression): ... here; use pp_cxx_left_paren
3975         and pp_cxx_right_paren.
3976         * cxx-pretty-print.h (pp_cxx_typeid_expression): Declare.
3977         * error.c (dump_expr): Use it.
3979 2007-09-18  Paolo Carlini  <pcarlini@suse.de>
3981         PR c++/33464
3982         * cxx-pretty-print.c (pp_cxx_trait_expression): Add.
3983         (pp_cxx_primary_expression): Use it.
3984         * cxx-pretty-print.h (pp_cxx_trait_expression): Declare.
3985         * error.c (dump_expr): Use it.
3987 2007-09-16  Paolo Carlini  <pcarlini@suse.de>
3989         PR c++/33124
3990         * init.c (build_new): Remove warning for zero-element
3991         allocations.
3993 2007-09-16  Nathan Sidwell  <nathan@codesourcery.com>
3995         PR c++/32756
3996         * call.c (maybe_handle_implicit_object): Set this_p, clear
3997         rvaluedness_matches_p.
3998         (compare_ics): Do not compare rvaluedness matching when one of the
3999         operands is an implicit object.
4001 2007-09-14  Jason Merrill  <jason@redhat.com>
4003         PR c++/17743, c++/19163
4004         * decl2.c (is_late_template_attribute): New fn.
4005         (splice_template_attributes, save_template_attributes): New fns.
4006         (cplus_decl_attributes): Call save_template_attributes.
4007         * pt.c (apply_late_template_attributes): New fn.
4008         (instantiate_class_template, tsubst_decl): Use it.
4009         * cp-tree.h: Declare is_late_template_attribute.
4011 2007-09-13  Tom Tromey  <tromey@redhat.com>
4013         * parser.c (cp_lexer_new_main): Don't use
4014         c_lex_return_raw_strings.
4015         (cp_lexer_get_preprocessor_token): Update.  Add special case when
4016         lexer is NULL.
4018 2007-09-11  Jan Hubicka <jh@suse.cz>
4020         * method.c (use_thunk): Use tree_rest_of_compilation
4021         * cp-objecp-common.h (LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION): Kill.
4022         (LANG_HOOKS_CALLGRAPH_EMIT_ASSOCIATED_THUNKS): Define.
4023         * cp-tree.h (expand_body): Kill.
4024         (emit_associated_thunks): Declare.
4025         * semantics.c (emit_associated_thunks): Export.
4026         (expand_body): Kill.
4028 2007-09-09  David Daney  <ddaney@avtrex.com>
4030         PR c++/33324
4031         * init.c (build_new_1):  Use POINTER_PLUS_EXPR instead of MINUS_EXPR
4032         to calculate cookie_ptr.
4034 2007-09-08  Jason Merrill  <jason@redhat.com>
4036         PR c++/33342
4037         * pt.c (most_specialized_class): Set processing_template_decl
4038         while tsubsting partial spec args.
4040 2007-09-06  Jason Merrill  <jason@redhat.com>
4042         * decl2.c (get_guard): Copy visibility from the guarded variable.
4044 2007-09-06  Jan Hubicka  <jh@suse.cz>
4046         * semantics.c (expand_body): Do not mark arguments of clones used.
4048 2007-09-06  Paolo Carlini  <pcarlini@suse.de>
4050         PR c++/32674
4051         * decl.c (cp_finish_decl): When processing_template_decl,
4052         deal correctly with init as TREE_LIST.
4054 2007-09-06  Tom Tromey  <tromey@redhat.com>
4056         * decl.c (finish_function): Put return's location on line zero of
4057         file.
4059 2007-09-05  Jason Merrill  <jason@redhat.com>
4061         PR c++/15745
4062         * except.c (prepare_eh_type): Use type_decays_to.
4064         PR c++/15097
4065         * init.c (build_delete): Use build_headof to get the address of the
4066         complete object if we aren't using the deleting destructor.
4067         * rtti.c (build_headof): No longer static.
4068         * cp-tree.h: Declare it.
4070 2007-09-06  Jakub Jelinek  <jakub@redhat.com>
4072         * decl.c (duplicate_decls): Set TREE_NOTHROW on __builtin_XX
4073         decl if a prototype for XX is provided with throw().
4075         PR c++/33289
4076         * decl.c (builtin_function_1): Set DECL_ANTICIPATED also
4077         on __*_chk non-__builtin_* decls.
4079 2007-09-05  Paolo Carlini  <pcarlini@suse.de>
4081         PR c++/30302
4082         * semantics.c (finish_id_expression): Use context_for_name_lookup
4083         insted of DECL_CONTEXT, to see through anonymous structs and unions.
4084         * class.c (finish_struct_anon): Deal correctly with anonymous
4085         structs (vs unions, as GNU extension) in error messages.
4087 2007-09-05  Jan Hubicka  <jh@suse.cz>
4089         * sematics.c (expand_body): Remove unnecesary import_export_decl
4090         call, DECL_EXTERNAL checks and current_function_decl saving.
4092 2007-09-05  Paolo Carlini  <pcarlini@suse.de>
4094         PR c++/29731 (again)
4095         * parser.c (cp_parser_primary_expression): Return error_mark_node
4096         when a statement-expression is found in a template-argument list.
4098 2007-09-04  Jason Merrill  <jason@redhat.com>
4100         * except.c (initialize_handler_parm): Use
4101         fold_build_cleanup_point_expr.
4103         PR c++/31419
4104         * call.c (reference_binding): Don't look for user-defined conversions
4105         to the same type.
4107         PR c++/31411
4108         * except.c (initialize_handler_parm): Put a CLEANUP_POINT_EXPR inside
4109         the MUST_NOT_THROW_EXPR.
4111 2007-09-04  Richard Sandiford  <richard@codesourcery.com>
4113         * decl.c (cp_finish_decl): Call determine_visibility before
4114         make_rtl_for_nonlocal_decl.
4116 2007-09-04  Jason Merrill  <jason@redhat.com>
4118         PR c++/14032
4119         * pt.c (most_specialized_class): Substitute outer template
4120         arguments into the arguments of a member template partial
4121         specialization.
4122         (strip_innermost_template_args): New fn.
4124 2007-09-03  Daniel Jacobowitz  <dan@codesourcery.com>
4126         * Make-lang.in (g++spec.o): Remove SHLIB_MULTILIB.
4128 2007-09-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4130         * call.c (name_as_c_string): Supply a TYPE for CONST_CAST.
4131         * decl.c (cp_make_fname_decl): Likewise,
4132         * parser.c (cp_parser_string_literal): Likewise,
4133         * tree.c (pod_type_p, zero_init_p): Use CONST_CAST_TREE.
4134         * typeck.c (cp_type_quals, cp_type_readonly, cp_has_mutable_p):
4135         Likewise,
4137 2007-09-02  Paolo Carlini  <pcarlini@suse.de>
4139         PR c++/33208
4140         * typeck.c (build_unary_op): Fix error message for
4141         Boolean expression as operand to operator--.
4143 2007-09-01  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4145         * tree.c (pod_type_p, zero_init_p): Use strip_array_types.
4146         * typeck.c (cp_type_quals, cp_type_readonly, cp_has_mutable_p):
4147         Likewise.
4149 2007-08-31 Douglas Gregor <doug.gregor@gmail.com>
4151         PR c++/32597
4152         * init.c (build_default_init): Make extern.
4153         * cp-tree.h (build_default_init): Declare here.
4154         * pt.c (tsubst_expr): When the instantiation of the initializer of
4155         a variable results in an empty list, default-initialize the
4156         variable.
4157         (tsubst_copy_and_build): When the instantiation of the initializer
4158         in a new expression results in an empty initializer list,
4159         default-initialize it.
4161 2007-08-31  Douglas Gregor  <doug.gregor@gmail.com>
4163         * mangle.c (write_type): Change mangling of rvalue reference from
4164         `RR' to `O'.
4166 2007-08-31  Jakub Jelinek  <jakub@redhat.com>
4168         * decl.c (duplicate_decls): Remove duplicated line.
4170 2007-08-31  Paolo Carlini  <pcarlini@suse.de>
4172         PR c++/33210
4173         * cxx-pretty-print.c (pp_cxx_unqualified_id): Deal with
4174         BOUND_TEMPLATE_TEMPLATE_PARM.
4176 2007-08-31  Paolo Carlini  <pcarlini@suse.de>
4178         PR c++/32113
4179         * search.c (lookup_member): Check the name argument for
4180         error_mark_node.
4182 2007-08-31  Paolo Carlini  <pcarlini@suse.de>
4184         PR c++/33212
4185         * parser.c (cp_parser_trait_expr): Check rerurn value of
4186         cp_parser_type_id.
4188 2007-08-30  Ollie Wild  <aaw@google.com>
4190         * cvt.c (cp_convert_to_pointer): Remove force parameter. Call
4191         convert_ptrmem for pointer to member conversions.
4192         (convert_to_pointer_force): Update cp_convert_to_pointer call.
4193         (ocp_convert): Update cp_convert_to_pointer call.
4194         * typeck.c (convert_ptrmem): Add conditional for null pointers to
4195         members.
4196         (build_static_cast_1): Check can_convert for conversions in either
4197         direction.
4198         (get_delta_difference_1): New function.
4199         (get_delta_difference): Refactor to call get_delta_difference_1.
4201 2007-08-30  Jakub Jelinek  <jakub@redhat.com>
4203         * decl.c (start_preparsed_function): Set
4204         DECL_DISREGARD_INLINE_LIMITS for GNU_INLINE_P functions.
4206 2007-08-28  Paolo Carlini  <pcarlini@suse.de>
4208         PR c++/33209
4209         * error.c (dump_expr): Deal with TEMPLATE_TYPE_PARM and
4210         BOUND_TEMPLATE_TEMPLATE_PARM.
4212 2007-08-28  Jakub Jelinek  <jakub@redhat.com>
4214         PR c++/32596
4215         PR c++/32400
4216         * pt.c (check_explicit_specialization): Set DECL_INTERFACE_KNOWN
4217         and DECL_NOT_REALLY_EXTERN if tmpl_func is not public.
4219 2007-08-27  Jason Merrill  <jason@redhat.com>
4221         PR c++/29000
4222         * pt.c (build_non_dependent_expr, type_dependent_expression_p):
4223         Look inside STMT_EXPR.
4224         * semantics.c (stmt_expr_value_expr): New fn.
4225         * cp-tree.h: Declare it.
4227         PR c++/28558
4228         * decl.c (groktypename): Ignore attributes applied to class type.
4230 2007-08-28  Richard Guenther  <rguenther@suse.de>
4232         * decl.c (duplicate_decls): Merge DECL_DISREGARD_INLINE_LIMITS.
4234 2007-08-28  Gabriel Dos Reis  <gdr@integrable-solutions.net>
4236         * error.c (dump_expr): Handle COMPLEX_CST.
4237         * cxx-pretty-print.c (pp_cxx_primary_expression): Likewise.
4238         (pp_cxx_expression): Likewise.
4240 2007-08-27  Alexandre Oliva  <aoliva@redhat.com>
4242         * decl.c (GNU_INLINE_P): New.
4243         (duplicate_decls): Handle gnu_inline.  Merge attributes and
4244         some flags in overriding definitions.
4245         (redeclaration_error_message): Handle gnu_inline.
4246         (start_preparsed_function): Likewise.
4248 2007-08-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4250         * call.c (sufficient_parms_p): Constify.
4251         * class.c (same_signature_p): Likewise.
4252         * cp-gimplify.c (is_invisiref_parm,
4253         cxx_omp_privatize_by_reference): Likewise.
4254         * cp-objcp-common.c (has_c_linkage): Likewise.
4255         * cp-tree.h (NON_THUNK_FUNCTION_CHECK, THUNK_FUNCTION_CHECK,
4256         sufficient_parms_p, same_signature_p, copy_fn_p, move_fn_p,
4257         grok_ctor_properties, nothrow_libfn_p, skip_artificial_parms_for,
4258         num_artificial_parms_for, comp_template_parms,
4259         template_parameter_pack_p, any_dependent_template_arguments_p,
4260         any_type_dependent_arguments_p, any_value_dependent_elements_p,
4261         repo_export_class_p, cxx_omp_privatize_by_reference, pod_type_p,
4262         zero_init_p, member_p, cp_lvalue_kind,
4263         builtin_valid_in_constant_expr_p, decl_anon_ns_mem_p,
4264         varargs_function_p, is_dummy_object, special_function_kind,
4265         string_conv_p, type_unknown_p, comp_except_specs, compparms,
4266         comp_cv_qualification, is_bitfield_expr_with_lowered_type,
4267         unlowered_expr_type, ptr_reasonably_similar, cp_type_readonly,
4268         cp_has_mutable_p, at_least_as_qualified_p,
4269         invalid_nonstatic_memfn_p, lvalue_or_else, lvalue_p): Likewise.
4270         * decl.c (copy_fn_p, move_fn_p, grok_ctor_properties): Likewise.
4271         * except.c (nothrow_libfn_p): Likewise.
4272         * method.c (skip_artificial_parms_for, num_artificial_parms_for):
4273         Likewise.
4274         * pt.c (comp_template_parms, template_parameter_pack_p,
4275         any_type_dependent_arguments_p, any_value_dependent_elements_p,
4276         any_dependent_template_arguments_p): Likewise.
4277         * repo.c (repo_export_class_p): Likewise.
4278         * semantics.c (anon_aggr_type_p): Likewise.
4279         * tree.c (lvalue_p_1, real_lvalue_p, lvalue_p,
4280         builtin_valid_in_constant_expr_p, decl_anon_ns_mem_p,
4281         varargs_function_p, member_p, is_dummy_object, pod_type_p,
4282         zero_init_p, special_function_p): Likewise.
4283         * typeck.c (comp_array_types, type_unknown_p, comp_except_specs,
4284         comp_array_types, at_least_as_qualified_p, comp_cv_qualification,
4285         compparms, invalid_nonstatic_memfn_p,
4286         is_bitfield_expr_with_lowered_type, unlowered_expr_type,
4287         string_conv_p, ptr_reasonably_similar, cp_type_readonly,
4288         cp_has_mutable_p, lvalue_or_else): Likewise.
4290 2007-08-25  Paolo Bonzini  <bonzini@gnu.org>
4292         * decl.c (cp_tree_node_structure): Kill TINST_LEVEL case.
4293         * cp-objcp-common.c (cp_tree_size): Ditto.
4294         * tree.c (cp_walk_subtrees): Ditto
4295         * cp-tree.def (TINST_LEVEL): Go away.
4296         * cp-tree.h (struct tinst_level_s): Rename to struct tinst_level,
4297         move together with other non-tree structs.
4298         (enum cp_tree_node_structure_enum): Nuke TS_CP_TINST_LEVEL.
4299         (union lang_tree_node): Eliminate tinst_level field.
4300         (TINST_DECL, TINST_LOCATION, TINST_IN_SYSTEM_HEADER_P): Annihilate.
4301         (current_instantiation, outermost_tinst_level): Return
4302         a "struct tinst_level *".
4304         * error.c (print_instantiation_partial_context): Change second
4305         parameter to a "struct tinst_level *".  Replace accessor macros
4306         with field access.
4307         (print_instantiation_full_context): Likewise.
4308         * lex.c (in_main_input_context): Likewise.
4310         * pt.c (struct pending_templates): New.
4311         (pending_templates, last_pending_template): Use it as a type.
4312         (current_tinst_level): Change typo to "struct tinst_level *"
4313         (reopen_tinst_level): Accept "struct tinst_level *", return decl.
4314         (add_pending_template): Construct a "struct pending_template".
4315         Replace TINST_LEVEL accessor macros with field access.
4316         (push_tinst_level): Likewise, using GGC_NEW instead of make_node.
4317         (pop_tinst_level): Likewise.
4318         (instantiate_pending_templates): Likewise.  Factor common code used
4319         when an instantiation has been done.
4320         (outermost_tinst_level): Replace tree_last with loop.
4321         (current_instantiation): Return a "struct tinst_level *".
4323 2007-08-24  Ollie Wild  <aaw@google.com>
4325         * name-lookup.c (add_decl_to_level): Remove addition to vtables chain.
4326         * name-lookup.h (cp_binding_level): Remove vtables member.
4328 2007-08-24  Richard Guenther  <rguenther@suse.de>
4330         * tree.c (cp_cannot_inline_tree_fn): Remove.
4331         * cp-tree.h (cp_cannot_inline_tree_fn): Likewise.
4332         * cp-objcp-common.h (LANG_HOOKS_TREE_INLINING_CANNOT_INLINE_TREE_FN):
4333         Remove define.
4335 2007-08-24  Jakub Jelinek  <jakub@redhat.com>
4337         PR c++/32567
4338         * typeck.c (build_unary_op) <case PREINCREMENT_EXPR>: Return
4339         error_mark_node right away if build_expr_type_conversion
4340         returned it.
4342         PR c++/32898
4343         * name-lookup.c (set_decl_namespace): lookup_qualified_name failure
4344         is error_mark_node rather than NULL_TREE.
4345         * pt.c (check_explicit_specialization): Likewise.
4347         PR c++/31941
4348         * error.c (resolve_virtual_fun_from_obj_type_ref): Handle
4349         TARGET_VTABLE_USES_DESCRIPTORS targets properly.
4351 2007-08-22  Jason Merrill  <jason@redhat.com>
4353         PR c++/29365
4354         * pt.c (outermost_tinst_level): New function.
4355         * lex.c (in_main_input_context): New function.
4356         * cp-tree.h: Declare it.
4357         * decl2.c (constrain_class_visibility): Use it to avoid warning
4358         about uses of the anonymous namespace in the main input file.
4360 2007-08-21  Jakub Jelinek  <jakub@redhat.com>
4362         * init.c (build_new_1): Use get_target_expr instead of save_expr.
4364 2007-08-20  Pawel Sikora  <pluto@pld-linux.org>
4366         PR c++/7302
4367         * class.c (finish_struct_1): Warn when a class has virtual
4368         functions and accessible non-virtual destructor.
4370 2007-08-20  Richard Guenther  <rguenther@suse.de>
4372         PR c++/22369
4373         PR c++/22451
4374         * call.c (build_new_method_call): Convert initializer to
4375         the basetype.
4376         * init.c (build_aggr_init): Do not fiddle with types.
4377         (build_vec_delete_1): Use correct type for POINTER_PLUS_EXPR.
4378         * except.c (build_throw): Do not drop qualifiers for the
4379         pointer type.
4380         * typeck.c (get_member_function_from_ptrfunc): Do not
4381         fiddle with types, instead convert.
4382         (build_ptrmemfunc1): Convert to the target type for
4383         initialization.
4384         (gfc_trans_allocate): Convert result to target type.
4385         * cp-objcp-common.c (cxx_get_alias_set): Pointers to
4386         pointer-to-member structures shall have alias set zero as well.
4388 2007-08-20  Richard Guenther  <rguenther@suse.de>
4390         * cp-objcp-common.h (LANG_HOOKS_TREE_INLINING_AUTO_VAR_IN_FN_P):
4391         Remove.
4392         * cp-tree.h (cp_auto_var_in_fn_p): Remove.
4393         (nonstatic_local_decl_p): Likewise.
4394         * tree.c (cp_auto_var_in_fn_p): Remove.
4395         * decl.c (nonstatic_local_decl_p): Remove.
4397 2007-08-20  Richard Guenther  <rguenther@suse.de>
4399         * cp-objcp-common.h (LANG_HOOKS_TREE_INLINING_WALK_SUBTREES):
4400         Remove define.
4401         * tree.h (cp_walk_tree): New define to walk_tree_1 with
4402         cp_walk_subtrees lh parameter.
4403         (cp_walk_tree_without_duplicates): New define to
4404         walk_tree_without_duplicates_1 with cp_walk_subtrees lh parameter.
4405         * tree.c (count_trees): Call
4406         cp_walk_tree_without_duplicates.
4407         (verify_stmt_tree): Call cp_walk_tree.
4408         (break_out_target_exprs): Likewise.
4409         (WALK_SUBTREE): Likewise.
4410         * cp-gimplify.c (cp_genericize): Likewise.
4411         * cp-pt.c (find_parameter_packs_r): Likewise.
4412         (uses_parameter_packs): Likewise.
4413         (make_pack_expansion): Likewise.
4414         (check_for_bare_parameter_packs): Likewise.
4415         (for_each_template_parm): Likewise.
4416         * decl.c (check_default_argument): Call
4417         cp_walk_tree_without_duplicates.
4418         * except.c (build_throw): Likewise.
4419         * decl2.c (type_visibility): Likewise.
4420         * semantics.c (expand_or_defer_fn): Likewise.
4421         (finalize_nrv): Call cp_walk_tree.
4423 2007-08-20  Jakub Jelinek  <jakub@redhat.com>
4425         PR c++/33025
4426         * init.c (build_new_1): Rename placement_var variable to placement_expr.
4427         Initialize it with save_expr rather than get_temp_regvar.
4429 2007-08-17  Andrew Pinski  <andrew_pinski@playstation.sony.com>
4431         PR c++/28989
4432         * tree.c (lvalue_p_1 <case SAVE_EXPR>): SAVE_EXPRs are never
4433         lvalues.
4435 2007-08-17  Ollie Wild  <aaw@google.com>
4437         PR c++/31749
4438         * name-lookup.c (do_nonmember_using_decl): Shift implicit type
4439         declarations into appropriate slots for comparison.  Fix type
4440         comparison.
4442 2007-08-17  Paolo Carlini  <pcarlini@suse.de>
4444         PR c++/32112
4445         * error.c (dump_decl): Deal with UNBOUND_CLASS_TEMPLATE.
4446         * cxx-pretty-print.c (pp_cxx_unqualified_id): Likewise.
4448 2007-08-17  Paolo Carlini  <pcarlini@suse.de>
4450         PR c++/32870
4451         * parser.c (cp_parser_class_head): Improve error message.
4453 2007-08-16  Seongbae Park  <seongbae.park@gmail.com>
4455         * pt.c (instantiate_decl): Set input_location
4456         for the function end.
4458 2007-08-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4460         * cp-objcp-common.c (cxx_warn_unused_global_decl, cp_expr_size):
4461         Constify.
4462         * cp-tree.h (local_variable_p, nonstatic_local_decl_p,
4463         class_tmpl_impl_spec_p, cp_auto_var_in_fn_p, cp_type_quals,
4464         cxx_incomplete_type_diagnostic, cxx_incomplete_type_error,
4465         cxx_warn_unused_global_decl, cp_expr_size): Likewise.
4466         * decl.c (local_variable_p, nonstatic_local_decl_p): Likewise.
4467         * tree.c (class_tmpl_impl_spec_p, cp_auto_var_in_fn_p): Likewise.
4468         * typeck.c (cp_type_quals): Likewise.
4469         * typeck2.c (cxx_incomplete_type_diagnostic,
4470         cxx_incomplete_type_error): Likewise.
4472 2007-08-16  Paolo Carlini  <pcarlini@suse.de>
4474         PR c++/31132
4475         * pt.c (tsubst_friend_function): When check_classfn
4476         returns error_mark_node likewise return it.
4478 2007-08-15  Jakub Jelinek  <jakub@redhat.com>
4480         PR c++/32992
4481         * typeck.c (check_return_expr): Don't NRV optimize vars in
4482         anonymous unions.
4483         * decl.c (finish_function): Comment fix.
4485 2007-08-15  Paolo Carlini  <pcarlini@suse.de>
4487         PR c++/33035
4488         * pt.c (push_template_decl_real): Depending on TYPE_P
4489         use either TYPE_CONTEXT or DECL_CONTEXT.
4491 2007-08-14  Mark Mitchell  <mark@codesourcery.com>
4493         * semantics.c (finish_omp_clauses): Strip a NOP_EXPR if
4494         constructors and destructors return this.
4496 2007-08-14  Paolo Carlini  <pcarlini@suse.de>
4498         PR c++/27211
4499         * decl2.c (check_classfn): Return error_mark_node in case of error;
4500         in that case, do not call add_method.
4501         * decl.c (start_decl): Deal with check_classfn returning
4502         error_mark_node.
4503         (grokfndecl): Likewise.
4504         * pt.c (tsubst_friend_function): Likewise.
4506 2007-08-14  Andrew Pinski  <pinskia@gmail.com>
4508         PR c++/30428
4509         * typeck.c (build_binary_op): Disallow vector float types with
4510         BIT_IOR_EXPR, BIT_AND_EXPR, and BIT_XOR_EXPR.
4512 2007-08-11  Ian Lance Taylor  <iant@google.com>
4514         * cp-objcp-common.c (cxx_get_alias_set): Change return type to
4515         alias_set_type.
4516         * cp-tree.h (cxx_get_alias_set): Update declaration.
4518 2007-08-10  Ollie Wild  <aaw@google.com>
4520         * name-lookup.c (do_nonmember_using_decl): Print an error for ambiguous
4521         type lookups.
4522         (ambiguous_decl): Construct tree of ambiguous types.  Remove extaneous
4523         function parameter.
4524         (unqualified_namespace_lookup): Fix ambiguous_decl call.
4525         (lookup_using_namespace): Fix ambiguous_decl call.
4526         (qualified_lookup_using_namespace): Fix ambiguous_decl call.
4528 2007-08-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4530         * call.c (name_as_c_string): Use CONST_CAST.
4531         * decl.c (build_decl): Likewise.
4532         * parser.c (cp_parser_string_literal): Likewise.
4534 2007-08-10  Paolo Carlini  <pcarlini@suse.de>
4536         PR c++/17763
4537         * error.c (dump_expr): Consistently use the *_cxx_*
4538         variants of the pretty-print functions.
4540 2007-08-10  Paolo Carlini  <pcarlini@suse.de>
4542         PR c++/22256
4543         * decl.c (check_special_function_return_type): Just error
4544         on return type specified for conversion operator.
4546 2007-08-09  Daniel Berlin  <dberlin@dberlin.org>
4548         * typeck2.c (readonly_error): Handle general expressions.
4549         * error.c (dump_expr): Handle POINTER_PLUS_EXPR
4551 2007-08-06  Dan Hipschman  <dsh@google.com>
4553         * method.c (use_thunk): Use DECL_NAME instead of DECL_RTL to
4554         access function name.
4556 2007-08-04  Alfred Minarik  <a.minarik@aon.at>
4558         PR pch/13676
4559         * lang-specs.h: Add .hp, .hxx, .hpp, .h, .HPP, .tcc as c++ header.
4560         * g++spec.c (lang_specific_driver): Check them.
4562 2007-08-06  Paolo Carlini  <pcarlini@suse.de>
4564         PR c++/19532
4565         * pt.c (inline_needs_template_parms): Fix comment; change return type
4566         to bool.
4568 2007-08-05  Volker Reichelt  <v.reichelt@netcologne.de>
4570         Revert:
4571         2007-03-26  Dirk Mueller  <dmueller@suse.de>
4573         * parser.c (cp_parser_member_declaration): Pedwarn
4574         about stray semicolons after member declarations.
4576 2007-08-02  Lee Millward  <lee.millward@gmail.com>
4578         PR c++/30849
4579         PR c++/30850
4580         PR c++/30851
4581         * parser.c (cp_parser_asm_definition): Detect and discard asm
4582         statements with invalid inputs or outputs.
4583          (cp_parser_asm_operand_list): Return error mark node if any
4584          of the operands are invalid. Adjust documentation.
4586 2007-08-02  Nick Clifton  <nickc@redhat.com>
4588         * typeck.c: Change copyright header to refer to version 3 of the
4589         GNU General Public License and to point readers at the COPYING3
4590         file and the FSF's license web page.
4591         * optimize.c, lang-specs.h, init.c, class.c, repo.c, decl.c,
4592         config-lang.in, cp-tree.def, call.c, decl.h, ptree.c,
4593         Make-lang.in, method.c, rtti.c, cp-objcp-common.c, g++spec.c,
4594         cp-objcp-common.h, except.c, error.c, operators.def, cvt.c,
4595         tree.c, mangle.c, cp-tree.h, dump.c, search.c, friend.c, expr.c,
4596         cp-gimplify.c, cxx-pretty-print.c, cp-lang.c, typeck2.c, pt.c,
4597         cxx-pretty-print.h, semantics.c, name-lookup.c, lex.c, decl2.c,
4598         name-lookup.h, parser.c: Likewise.
4600 2007-08-01  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4602         PR middle-end/32668
4603         * call.c (magic_varargs_p): Honor the "type generic" attribute.
4605 2007-07-30  Paolo Carlini  <pcarlini@suse.de>
4607         PR c++/32108
4608         * semantics.c (finish_label_stmt): Reject the __label__
4609         extension outside function scopes.
4611 2007-07-29  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4613         * parser.c (eof_token): Un-constify.
4614         (cp_lexer_new_main, cp_lexer_new_from_tokens, VEC_alloc,
4615         cp_lexer_consume_token, cp_lexer_purge_token): Remove spurious
4616         casts.
4618 2007-07-28  Kazu Hirata  <kazu@codesourcery.com>
4620         * pt.c, tree.c, typeck2.c: Fix comment typos.
4622 2007-07-28  Simon Martin  <simartin@users.sourceforge.net>
4623             Mark Mitchell  <mark@codesourcery.com>
4625         PR c++/30917
4626         * name-lookup.c (lookup_name_real): Non namespace-scope bindings can be
4627         hidden due to friend declarations in local classes.
4629 2007-07-27  Douglas Gregor  <doug.gregor@gmail.com>
4631         * typeck.c (structural_comptypes): Compare DECLTYPE_TYPE nodes.
4632         * cp-tree.def (DECLTYPE_TYPE): New.
4633         * error.c (dump_type): Dump DECLTYPE_TYPE nodes.
4634         (dump_type_prefix): Ditto.
4635         (dump_type_suffix): Ditto.
4636         * tree.c (DECLTYPE_TYPE): Walk DECLTYPE_TYPE nodes.
4637         * mangle.c (write_type): Handle DECLTYPE_TYPE.
4638         * cp-tree.h (IS_AGGR_TYPE): DECLTYPE_TYPE nodes can be aggregate
4639         types.
4640         (DECLTYPE_TYPE_EXPR): New.
4641         (DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P): New.
4642         (finish_declared_type): Declare.
4643         * cxx-pretty-print.c (pp_cxx_type_specifier_seq): Print
4644         DECLTYPE_TYPE nodes.
4645         (pp_cxx_type_id): Ditto.
4646         * pt.c (for_each_template_parm_r): Walk DECLTYPE_TYPE children.
4647         (tsubst): Substitute into a DECLTYPE_TYPE node.
4648         (tsubst_copy): Ditto.
4649         (unify): Cannot deduce anything from TYPEOF_TYPE or DECLTYPE_TYPE
4650         nodes.
4651         (dependent_type_p_r): DECLTYPE_TYPE types are always dependent.
4652         * semantics.c (finish_typeof): TYPEOF_TYPE types need to use
4653         structural equality (because we can't hash the expressions).
4654         (finish_declared_type): New.
4655         * lex.c (reswords): Add "decltype" keyword.
4656         * parser.c cp_lexer_next_token_is_decl_specifier_keyword
4657         (cp_parser_postfix_expression): Add member_access_only_p to
4658         restrict postfix expression to member access expressions.
4659         (cp_parser_unary_expression): Update call to
4660         cp_parser_postfix_expression to reflect new parameter.
4661         (cp_parser_declared_type): New.
4662         (cp_parser_simple_type_specifier): Parse decltype types.
4664 2007-07-27  Mark Mitchell  <mark@codesourcery.com>
4666         PR c++/32346
4667         * call.c (convert_for_arg_passing): Only widen bitfields to their
4668         declared types if necessary.
4670 2007-07-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4672         * parser.c (cp_parser_string_literal, cp_parser_sizeof_operand):
4673         Constify.
4675 2007-07-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4677         * decl.c (typename_hash, typename_compare): Constify.
4678         * mangle.c (hash_type, compare_type): Likewise.
4679         * pt.c (eq_local_specializations, hash_local_specialization):
4680         Likewise.
4681         * tree.c (cplus_array_hash, cplus_array_compare, list_hash_eq,
4682         list_hash): Likewise.
4683         * typeck2.c (pat_compare): Likewise.
4685 2007-07-24  Nathan Sidwell  <nathan@codesourcery.com>
4687         * method.c (implicitly_declare_fn): Increase alignment if member
4688         function pointer format requires it.
4690 2007-07-24  Paolo Carlini  <pcarlini@suse.de>
4692         PR c++/29001
4693         * typeck.c (check_return_expr): Do not pass a null argument
4694         to null_ptr_cst_p.
4696 2007-07-24  Paolo Carlini  <pcarlini@suse.de>
4698         PR c++/32561
4699         * decl.c (redeclaration_error_message): Call DECL_ANON_UNION_VAR_P
4700         only on VAR_DECL.
4702 2007-07-22  Nathan Sidwell  <nathan@codesourcery.com>
4704         PR c++/32839
4705         * typeck.c (convert_arguments): Only use default args if we have
4706         a function decl.
4708         PR c++/30818
4709         * typeck.c (structural_comptypes): No need to check
4710         resolve_typename_type return value here.
4711         * cp-tree.h (TYPENAME_IS_RESOLVING_P): New.
4712         * pt.c (resolve_typename_type): Follow typename typedefs.  Return
4713         original type rather than error_mark_node in case of failure.
4714         * parser.c (cp_parser_nested_name_specifier_opt): Adjust
4715         resolve_typename_type result check.
4716         (cp_parser_direct_declarator, cp_parser_head,
4717         cp_parser_constructor_declarator_p): Likewise.
4719 2007-07-12  Kazu Hirata  <kazu@codesourcery.com>
4721         * pt.c (template_parms_variadic_p): Remove.
4722         * cp-tree.h: Remove the prototype for template_parms_variadic_p.
4724 2007-07-12  Jakub Jelinek  <jakub@redhat.com>
4726         PR c++/30854
4727         * error.c (dump_expr) <case AGGR_INIT_EXPR>: Pass true as last
4728         argument to dump_aggr_init_expr_args instead of false.
4730 2007-07-11  Douglas Gregor  <doug.gregor@gmail.com>
4732         * typeck.c (comptypes): When USE_CANONICAL_TYPES, use the
4733         canonical types; otherwise, fall back to structural type
4734         comparisons. If ENABLE_CHECKING and USE_CANONICAL_TYPES, give an
4735         internal compiler error if the canonical types are wrong.
4737 2007-07-11  Paolo Carlini  <pcarlini@suse.de>
4739         PR c++/32560
4740         * parser.c (cp_parser_make_indirect_declarator): When the
4741         the code argument is ERROR_MARK return cp_error_declarator.
4743 2007-07-09  Geoffrey Keating  <geoffk@apple.com>
4745         PR 32617
4746         * decl.c (cxx_init_decl_processing): Don't set
4747         force_align_functions_log.
4748         (grokfndecl): Honour ptrmemfunc_vbit_in_pfn.
4749         * typeck.c (cxx_alignof_expr): When alignof is used on a plain
4750         FUNCTION_DECL, return its alignment.
4752 2007-07-09  Richard Guenther  <rguenther@suse.de>
4754         * decl.c (start_preparsed_function): Do not promote return type.
4756 2007-07-08  Paolo Carlini  <pcarlini@suse.de>
4758         PR c++/30535
4759         * pt.c (unify): Never pass error_mark_node to template_decl_level.
4761 2007-07-07  Mark Mitchell  <mark@codesourcery.com>
4763         PR c++/32232
4764         * pt.c (resolve_overloaded_unification): Robustify.  Return a
4765         bool, not an int.
4766         (type_unification_real): Adjust accordingly.
4768 2007-07-06  Richard Guenther  <rguenther@suse.de>
4770         * init.c (build_new_1): Use the correct pointer type.
4771         * typeck2.c (build_m_component_ref): Likewise.
4773 2007-07-05  Mark Mitchell  <mark@codesourcery.com>
4775         PR c++/32245
4776         * init.c (build_zero_init): Always build an initializer for
4777         non-static storage.
4778         * typeck2.c (build_functional_cast): Use build_zero_init.
4780         PR c++/32251
4781         * init.c (build_new_1): Always pass the allocation function to
4782         build_op_delete_call.
4783         * call.c (build_op_delete_call): Handle operator delete with a
4784         variable-argument list.  Do not issue an error when no matching
4785         deallocation function is available for a new operator.
4787         PR c++/31992
4788         * cp-tree.h (any_value_dependent_elements_p): Declare it.
4789         * decl.c (value_dependent_init_p): New function.
4790         (cp_finish_decl): Use it.
4791         * pt.c (value_dependent_expression_p): Use
4792         any_value_dependent_elements_p.
4793         * parser.c (cp_parser_primary_expression): Add comment about
4794         treating dependent qualified names as integral
4795         constant-expressions.
4797 2007-07-04  Douglas Gregor  <doug.gregor@gmail.com>
4799         * decl.c (build_ptrmemfunc_type): Always use structural equality
4800         tests when comparing pointer-to-member-function types, because the
4801         handling of TYPE_GET_PTRMEMFUNC_TYPE currently defeats canonical
4802         types.
4804 2007-07-03  Mark Mitchell  <mark@codesourcery.com>
4806         * init.c (build_new): Tweak comment.
4808 2007-06-29  Dave Brolley  <brolley@redhat.com>
4810         PR c++/31743
4811         * parser.c (cp_parser_new_type_id): Don't reduce a named array
4812         type to its base type and number of elements here.
4813         * init.c (build_new): Call complete_type_or_else to ensure that the
4814         type is complete and to issue a diagnostic if it is not.
4815         (build_new_1): Don't call complete_type_or_else here.
4817 2007-07-03  Richard Guenther  <rguenther@suse.de>
4819         PR c++/32609
4820         * class.c (fixed_type_or_null): Re-lookup the hashtable slot
4821         after recursing.
4823 2007-07-02  Simon Baldwin  <simonb@google.com>
4825         * parser.c (cp_parser_elaborated_type_specifier): Added a warning
4826         for inner-style nested forward declarations that don't declare
4827         anything useful.
4829 2007-07-02  Jakub Jelinek  <jakub@redhat.com>
4831         PR c++/31748
4832         * semantics.c (finish_omp_clauses): Use %qD instead of %qE for
4833         DECL_P in not a variable and appears more than once error messages.
4835 2007-07-01  Ollie Wild  <aaw@google.com>
4837         * name-lookup.c (ambiguous_decl): Fix case when new->value is hidden.
4838         (select_decl): Remove function.
4839         (unqualified_namespace_lookup): Populate binding by calling
4840         ambiguous_decl.  Remove select_decl call.
4841         (lookup_qualified_name): Remove select_decl call.
4842         * decl.c (lookup_and_check_tag): Check for ambiguous references.
4843         * parser.c (cp_parser_elaborated_type_specifier): Skip redundant error
4844         generation when name lookup is ambiguous.
4846 2007-06-29  Douglas Gregor  <doug.gregor@gmail.com>
4848         PR c++/31724
4849         * init.c (build_new_1): Use structural equality on the copy of the
4850         array type.
4852 2007-06-28  Geoffrey Keating  <geoffk@apple.com>
4854         * decl2.c (determine_visibility): Implement
4855         flag_visibility_ms_compat effect on type info.
4856         * decl.c (cxx_init_decl_processing): Implement
4857         global effect of flag_visibility_ms_compat.
4859 2007-06-28  Geoffrey Keating  <geoffk@apple.com>
4861         * decl2.c (start_objects): Mark constructor-running function
4862         as artificial.
4864 2007-06-26  Simon Martin  <simartin@users.sourceforge.net>
4866         PR c++/32111
4867         * decl.c (grokdeclarator): Reset friendp for member functions declared
4868         friend of their own class.
4870 2007-06-23  Mark Mitchell  <mark@codesourcery.com>
4872         * decl2.c (determine_visibility): Don't look for dllexport here.
4873         (determine_visibility_from_class): Tidy.
4875 2007-06-18  Simon Baldwin <simonb@google.com>
4877         PR c++/31923
4878         * parser.c (cp_parser_single_declaration): Added check for storage
4879         class other than sc_none in parsed declaration, and a flag to indicate
4880         if the call is part of an explicit template specialization parse.
4881         * (cp_parser_explicit_specialization): Specialization check flag added
4882         to call to cp_parser_single_declaration(), set true.
4883         * (cp_parser_template_declaration_after_export): Specialization check
4884         flag added to call to cp_parser_single_declaration(), set false.
4885         * pt.c (check_explicit_specialization): Added code to copy visiblity
4886         and linkage from the templated function to the explicit specialization.
4888 2007-06-15  Andrew Pinski  <andrew_pinski@playstation.sony.com>
4890         * typeck.c (build_binary_op): For templates build the
4891         expression in pieces to avoid the assert in build2_stat.
4892         (get_member_function_from_ptrfunc):
4893         Change over to using POINTER_PLUS_EXPR and convert
4894         the second operand to sizetype.
4895         * typeck2.c (build_m_component_ref):  Likewise.
4896         * init.c (expand_virtual_init): Create a POINTER_PLUS_EXPR
4897         instead of PLUS_EXPR for pointers.
4898         (build_new_1): Likewise.
4899         (build_vec_delete_1): Likewise.
4900         (build_vec_delete): Likewise.
4901         * class.c (build_base_path): Likewise.
4902         (build_base_path): Likewise.
4903         (convert_to_base_statically): Likewise.
4904         (fixed_type_or_null): Handle POINTER_PLUS_EXPR.
4905         (get_vtbl_decl_for_binfo): Handle POINTER_PLUS_EXPR
4906         instead of PLUS_EXPR.
4907         (dfs_accumulate_vtbl_inits): Create a POINTER_PLUS_EXPR
4908         instead of PLUS_EXPR for pointers.
4909         * call.c (build_special_member_call): Likewise.
4910         * rtti.c (build_headof): Likewise.
4911         Use sizetype instead of ptrdiff_type_node.
4912         (tinfo_base_init): Create a POINTER_PLUS_EXPR
4913         instead of PLUS_EXPR for pointers.
4914         * except.c (expand_start_catch_block):  Do a
4915         NEGATIVE and then a POINTER_PLUS_EXPR instead
4916         of a MINUS_EXPR.
4917         * cp-gimplify.c (cxx_omp_clause_apply_fn): Convert
4918         PLUS_EXPR on pointer types over to use
4919         POINTER_PLUS_EXPR and remove the conversion
4920         to the pointer types.
4921         * method.c (thunk_adjust): Use POINTER_PLUS_EXPR for
4922         adding to a pointer type. Use size_int instead of
4923         ssize_int. Convert the index to sizetype before
4924         adding it to the pointer.
4926 2007-06-15  Mark Mitchell  <mark@codesourcery.com>
4928         * cp-tree.h (DECL_VAR_MARKED_P): Remove.
4929         (DECL_ANON_UNION_VAR_P): New macro.
4930         * class.c (fixed_type_or_null): Tidy.  Use a hash table, rather
4931         than DECL_VAR_MARKED_P, to keep track of which variables we have
4932         seen.
4933         * decl.c (redeclaration_error_message): Complain about redeclaring
4934         anonymous union members at namespace scope.
4935         * decl2.c (build_anon_union_vars): Set DECL_ANON_UNION_VAR_P.
4937 2007-06-14  Geoff Keating  <geoffk@apple.com>
4939         * decl2.c (determine_visibility): Ensure that functions with
4940         hidden types as parameters are hidden.
4942         PR 31093
4943         * decl2.c (determine_visibility): Remove duplicate code for
4944         handling type info.
4946 2007-06-12  Ian Lance Taylor  <iant@google.com>
4948         PR libstdc++/29286
4949         * init.c (avoid_placement_new_aliasing): New static function.
4950         (build_new_1): Call it.
4952 2007-06-11  Rafael Ávila de Espíndola  <espindola@google.com>
4954         * cp-objcp-common.h (LANG_HOOKS_SIGNED_TYPE): Remove.
4955         (LANG_HOOKS_SIGNED_OR_UNSIGNED_TYPE): Remove.
4957 2007-06-08  Jakub Jelinek  <jakub@redhat.com>
4959         PR c++/32177
4960         * semantics.c (finish_omp_for): Call fold_build_cleanup_point_expr
4961         on init, the non-decl cond operand and increment value.
4963 2007-06-07  Simon Martin  <simartin@users.sourceforge.net>
4965         PR c++/30759
4966         * decl.c (check_initializer): Report an error when a brace enclosed
4967         initializer is used for a non-aggregate type in C++98.
4968         (redeclaration_error_message): Rewrote flag_cpp0x in terms of
4969         cxx_dialect.
4970         (grokdeclarator): Likewise.
4971         (move_fn_p): Likewise.
4972         * typeck.c (check_return_expr): Likewise.
4973         * call.c (reference_binding): Likewise.
4974         * error.c (cp_cpp_error): Likewise.
4975         * pt.c (check_default_tmpl_args): Likewise.
4976         (tsubst): Likewise.
4977         * lex.c (init_reswords): Likewise.
4978         * parser.c (p_parser_primary_expression): Likewise.
4979         (TOKEN_PRECEDENCE): Likewise.
4980         (cp_parser_init_declarator): Likewise.
4981         (cp_parser_ptr_operator): Likewise.
4982         (cp_parser_parameter_declaration): Likewise.
4983         (cp_parser_enclosed_template_argument_list): Likewise.
4984         (cp_parser_skip_to_end_of_template_parameter_list): Likewise.
4985         (cp_parser_next_token_ends_template_argument_p): Likewise.
4987 2007-06-04  Simon Baldwin  <simonb@google.com>
4989         * decl.c (grokdeclarator): Readability change.  Moved case labels
4990         into direct switch statement scope.
4992 2007-06-04  Paolo Carlini  <pcarlini@suse.de>
4994         * call.c (convert_like_real): Remove pointless code.
4996 2007-05-31  Mark Mitchell  <mark@codesourcery.com>
4998         * decl.c (get_atexit_fn_ptr_type): New function.
4999         (get_atexit_node): Use it.
5000         (start_cleanup_fn): Likewise.
5001         (register_dtor_fn): Use the object's destructor, instead of a
5002         separate cleanup function, where possible.
5003         * cp-tree.h (CPTI_ATEXIT_FN_PTR_TYPE): New enumerator.
5004         (atexit_fn_ptr_type_node): New macro.
5005         * decl2.c (build_cleanup): Use build_address.
5007 2007-05-31  Daniel Berlin  <dberlin@dberlin.org>
5009         * typeck.c (build_binary_op): Include types in error.
5011 2007-05-31  Jakub Jelinek  <jakub@redhat.com>
5013         PR c++/31806
5014         * decl.c (cp_finish_decl): Also clear was_readonly if a static var
5015         needs runtime initialization.
5017 2007-05-31  Paolo Carlini  <pcarlini@suse.de>
5019         PR c++/32158
5020         * semantics.c (finish_trait_expr): Complete the types.
5022 2007-05-30  Russell Yanofsky <russ@yanofsky.org>
5023              Douglas Gregor <doug.gregor@gmail.com>
5024              Pedro Lamarao <pedro.lamarao@mndfck.org>
5025              Howard Hinnant <howard.hinnant@gmail.com>
5027         PR c++/7412
5028         PR c++/29939
5029         * typeck.c (comptypes): Don't consider rvalue and lvalue
5030         reference types to be equivalent.
5031         (check_return_expr): Move from certain lvalues when returning
5032         them.
5033         * decl.c (grokdeclarator): Implement reference collapsing.
5034         (copy_fn_p): Don't consider constructors taking rvalue references
5035         to be copy constructors.
5036         (move_fn_p): New.
5037         * call.c (conversion): New "rvaluedness_matches_p" member.
5038         (convert_class_to_reference): Require reference type as first
5039         parameter instead of base type.
5040         (reference_binding): Add logic to handle rvalue references.
5041         (implicit_conversion): Update inaccurate comment.
5042         (convert_like_real): Disable creation of temporaries that are
5043         impossible to initialize for types with move constructors.
5044         (build_over_call): Elide move constructors when possible.
5045         (maybe_handle_implicit_object): Set "rvaluedness_matches_p".
5046         (maybe_handle_ref_bind): Return conversion instead of type node.
5047         (compare_ics): Add logic to use "rvaluedness_matches_p" values to
5048         determine preferred conversion sequences.
5049         * cp-tree.h (TYPE_REF_IS_RVALUE): New.
5050         (LOOKUP_PREFER_RVALUE): New.
5051         (DECL_MOVE_CONSTRUCTOR_P): New.
5052         (struct cp_declarator): Add "reference" member for reference
5053         types, with new "rvalue_ref" flag.
5054         (cp_build_reference_type): Declare.
5055         (move_fn_p): Declare.
5056         * error.c (dump_type_prefix): Format rvalue reference types
5057         correctly in error messages.
5058         * except.c (build_throw): Move from certain lvalues when
5059         throwing.
5060         * mangle.c (write_type): Mangle rvalue references differently
5061         than regular references.
5062         * parser.c (make_reference_declarator): Add boolean parameter for
5063         rvalue references.
5064         (cp_parser_make_indirect_declarator): New.
5065         (cp_parser_new_declarator_opt): Call
5066         cp_parser_make_indirect_declarator.
5067         (cp_parser_conversion_declarator_opt): Ditto.
5068         (cp_parser_declarator): Ditto.
5069         (cp_parser_ptr_operator): Parse "&&" tokens into rvalue reference
5070         declarators.
5071         * pt.c (tsubst): Implement reference collapsing.
5072         (maybe_adjust_types_for_deduction): Implement special template
5073         parameter deduction rule for rvalue references.
5074         (type_unification_real): Update calls to
5075         maybe_adjust_types_for_deduction.
5076         (try_one_overload): Ditto.
5077         (unify_pack_expansion): Ditto.
5078         * tree.c (lvalue_p_1): Handle rvalue reference types.
5079         (cp_build_reference_type): New.
5081 2007-05-30  Jakub Jelinek  <jakub@redhat.com>
5083         PR c++/31809
5084         * decl.c (cp_finish_decl): Clear TREE_READONLY flag on TREE_STATIC
5085         variables that need runtime initialization.
5087 2007-05-28  Andrew Pinski  <Andrew_pinski@playstation.sony.com>
5089         PR c++/31339
5090         * typeck.c (build_unary_op <case PREINCREMENT_EXPR,
5091         case POSTINCREMENT_EXPR, case PREDECREMENT_EXPR,
5092         case POSTDECREMENT_EXPR>): Return the error_mark_node
5093         if either the real or imaginary parts would an
5094         error_mark_node.
5096 2007-05-25  Simon Martin  <simartin@users.sourceforge.net>
5097             Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
5099         PR c++/31745
5100         * parser.c (cp_parser_skip_to_closing_brace): Return true if the next
5101         token is a closing brace, false if there are no tokens left.
5102         (cp_parser_namespace_alias_definition): Only consume the next token if
5103         it is a closing brace.
5105         * parser.c (cp_parser_class_specifier): Likewise.
5107 2007-05-25  H.J. Lu  <hongjiu.lu@intel.com>
5109         * semantics.c (finish_member_declaration): Fix a typo in the
5110         last checkin.
5112 2007-05-25  Douglas Gregor <doug.gregor@gmail.com>
5114         PR c++/31431
5115         PR c++/31432
5116         PR c++/31434
5117         PR c++/31435
5118         PR c++/31437
5119         PR c++/31438
5120         PR c++/31442
5121         PR c++/31443
5122         PR c++/31444
5123         PR c++/31445
5124         * error.c (dump_type): Dump TYPE_ARGUMENT_PACK nodes.
5125         * cp-tree.h (check_for_bare_parameter_packs): Returns bool.
5126         * pt.c (check_for_bare_parameter_packs): Return bool indicated
5127         whether everything was okay. Fix indentation.
5128         (push_template_decl_real): Check for bare parameter packs in
5129         function parameters; where errors occur, mark the parameter types
5130         with ERROR_MARK_NODEs to avert ICEs.
5131         (coerce_template_parameter_pack): New.
5132         (coerce_template_parms): Moved parameter pack coercion into
5133         coerce_template_parameter_pack, and permit it anywhere in the
5134         template parameter list (not just at the end). Parameter and
5135         argument indices can vary (somewhat) separately now, so add
5136         PARM_IDX and ARG_IDX.
5137         (fn_type_unification): Don't set an argument pack as incomplete if
5138         no argument pack was deduced.
5139         (type_unification_real): If a type parameter is a parameter pack
5140         and has not otherwise been deduced, it will be deduced to an empty
5141         parameter pack.
5142         (more_specialized_fn): Use the actual lengths of the argument
5143         lists when comparing against expansions.
5144         * semantics.c (finish_member_declaration): If a field's type has
5145         bare parameter packs, error and set its type to ERROR_MARK_NODE.
5147 2007-05-24  Danny Smith  <dannysmith@users.sourceforge.net>
5149         PR target/27067
5150         * mangle.c (mangle_decl): Call targetm.mangle_decl_assembler_name.
5152 2007-05-22  Ollie Wild  <aaw@google.com>
5154         * name-lookup.c (ambiguous_decl): Adds check for hidden types.
5155         (unqualified_namespace_lookup): Adds check for hidden types.
5157 2007-05-22  Ollie Wild  <aaw@google.com>
5159         * decl.c (duplicate_decls): Verify namespace names are unique.
5161 2007-05-21  Mark Mitchell  <mark@codesourcery.com>
5163         * decl.c (cxx_maybe_build_cleanup): Handle
5164         __attribute__((cleanup)).
5166 2007-05-19  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
5168         * cvt.c (cp_convert_and_check): Don't check warnings if the
5169         conversion failed.
5171 2007-05-18  Geoffrey Keating  <geoffk@apple.com>
5173         * mangle.c (write_real_cst): Use 'unsigned long' for %lx.
5175 2007-05-14  Paolo Carlini  <pcarlini@suse.de>
5177         PR c++/29928
5178         * rtti.c (get_tinfo_decl_dynamic, get_typeid): Try to complete the
5179         type only if is a class type (5.2.8/4).
5181 2007-05-14  Rafael Ávila de Espíndola  <espindola@google.com>
5183         * cp-objcp-common.h (LANG_HOOKS_UNSIGNED_TYPE): Remove.
5184         * decl.c (grokdeclarator): Use unsigned_type_for instead of
5185         c_common_unsigned_type.
5187 2007-05-11  Silvius Rus  <rus@google.com>
5189         * typeck.c (build_indirect_ref): Add call to
5190         strict_aliasing_warning.
5191         (build_reinterpret_cast_1): Condition call to
5192         strict_aliasing_warning.
5194 2007-05-11  Jan Hubicka  <jh@suse.cz>
5196         * semantics.c (expand_or_defer_fn): Do not call c_record_cdtor_fn.
5197         * decl2.c (start_objects): ctors and dtors are no longer public.
5198         (cp_write_global_declarations): Do not call c_build_cdtor_fns.
5200 2007-05-07  Andrew Pinski  <andrew_pinski@playstation.sony.com>
5202         * typeck.c (build_unary_op): Remove code that used to
5203         handle non lvalue increments/decrements.
5205 2007-05-07  Mike Stump  <mrs@apple.com>
5207         * parser.c (check_empty_body): Add.
5208         (cp_parser_iteration_statement): Add call to check_empty_body.
5210 2007-05-05  Geoffrey Keating  <geoffk@apple.com>
5212         PR 31775
5213         * mangle.c (write_mangled_name): Mangle static variable names.
5214         (write_unqualified_name): Use local-source-name for
5215         namespace-scope static variables.
5217 2007-05-04  Dirk Mueller  <dmueller@suse.de>
5219         * cp-tree.h (DECL_MAIN_P): only if -ffreestanding is
5220         not in effect.
5222 2007-05-02  Seongbae Park  <seongbae.park@gmail.com>
5224         PR c++/31663
5225         * decl2.c (constrain_class_visibility):
5226         Use strip_pointer_or_array_types instead of strip_array_types.
5228 2007-04-28  Andrew Pinski  <andrew_pinski@playstation.sony.com>
5230         PR C++/30221
5231         * decl.c (reshape_init_r): Don't reshape the first element if it
5232         is a pointer to member function.
5234 2007-04-27  Simon Baldwin  <simonb@google.com>
5236         * decl.c (grokparms): Changed message format from %qD to %qE.
5238 2007-04-27  Douglas Gregor  <doug.gregor@gmail.com>
5240         * error.c (maybe_warn_variadic_templates): Variadic templates are
5241         now in C++0x, so only warn about them in C++98 mode.
5243 2007-04-26  Andrew Pinski  <andrew_pinski@playstation.sony.com>
5245         PR C++/30016
5246         * typeck.c (build_reinterpret_cast_1): Only allow conversion to
5247         integeral types from vectors types.
5249 2007-04-26  Jakub Jelinek  <jakub@redhat.com>
5251         PR c++/31598
5252         * semantics.c (finish_omp_clauses): Don't create CP_OMP_CLAUSE_INFO
5253         for type dependent OMP_CLAUSE_DECLs.
5255 2007-04-24  Mark Mitchell  <mark@codesourcery.com>
5257         PR c++/31338
5258         * cp-tree.h (ARITHMETIC_TYPE): Include COMPLEX_TYPE.
5259         * typeck.c (type_after_usual_arithmetic_conversions): Adjust, as
5260         COMPLEX_TYPE is now an ARITHMETIC_TYPE.
5261         * init.c (build_zero_init): Adjust, as
5262         COMPLEX_TYPE is now a SCALAR_TYPE.
5263         * typeck2.c (digest_init): Allow brace-enclosed initializers for
5264         COMPLEX_TYPE, even though that is now a SCALAR_TYPE.
5266 2007-04-25  Paolo Carlini  <pcarlini@suse.de>
5268         * semantics.c (classtype_has_nothrow_copy_or_assign_p): Adjust
5269         per N2255; rename as classtype_has_nothrow_assign_or_copy_p.
5270         (trait_expr_value): Adjust.
5272 2007-04-23  Simon Baldwin  <simonb@google.com>
5274         * decl.c (grokparms): Added new error for duplicate function
5275         parameters names in function prototypes, to match gcc behavior.
5277 2007-04-23  Jan Hubicka  <jh@suse.cz>
5279         * decl2.c (finish_objects): Do not call target constructor/destructor
5280         bits dirrectly.
5282 2007-04-21  Andrew Pinski  <andrew_pinski@playstation.sony.com>
5284         * cp-tree.h (lang_tree_node): Use GENERIC_NEXT
5285         instead of checking GIMPLE_STMT_P in chain_next.
5287 2007-04-17  Mark Mitchell  <mark@codesourcery.com>
5289         PR c++/31513
5290         * call.c (convert_for_arg_passing): Convert bitfields to their
5291         declared types.
5293 2007-04-17  Simon Martin  <simartin@users.sourceforge.net>
5295         PR c++/31517
5296         * pt.c (value_dependent_expression_p): Handle MODOP_EXPRs.
5298 2007-04-16  Seongbae Park <seongbae.park@gmail.com>
5300         PR c++/29365
5301         * decl2.c (constrain_class_visibility):
5302         Do not warn about the use of anonymous namespace in the main input file.
5304 2007-04-15  Mark Mitchell  <mark@codesourcery.com>
5306         * cp-tree.h (current_template_parms): Fix typo in comment.
5308 2007-04-15  Kazu Hirata  <kazu@codesourcery.com>
5310         * cp-tree.h, error.c: Fix comment typos.
5312 2007-04-13  Jason Merrill  <jason@redhat.com>
5314         PR c++/31074
5315         * call.c (reference_binding): Add c_cast_p parm.  If true,
5316         add quals to TO as needed to make it reference-compatible.
5318 2007-04-11  Jan Hubicka  <jh@suse.cz>
5320         * class.c (convert_to_base_statically): Fold produced tree; verify
5321         that we are not processing template_decl.
5323 2007-04-09  Mark Mitchell  <mark@codesourcery.com>
5325         PR c++/31449
5326         * class.c (build_base_path): Ensure that the converted pointer has
5327         the same cv-qualification as the input.
5329 2007-04-09  Paolo Carlini  <pcarlini@suse.de>
5331         * tree.c (cp_tree_equal): Deal with TRAIT_EXPR.
5333 2007-04-08  Steven Bosscher  <steven@gcc.gnu.org>
5335         * cp-objcp-common.h (LANG_HOOKS_TREE_INLINING_ADD_PENDING_FN_DECLS):
5336         Do not set it.
5337         (LANG_HOOKS_TREE_INLINING_ANON_AGGR_TYPE_P): Do not set it.
5338         * tree.c (cp_add_pending_fn_decls): Remove.
5339         * cp-tree.h (cp_add_pending_fn_decls): Remove prototype.
5341 2007-04-07  Daniel Berlin  <dberlin@dberlin.org>
5343         Revert change removing staticp.
5345 2007-04-06  Daniel Berlin  <dberlin@dberlin.org>
5347         * cp-objcp-common.c (cxx_staticp): Remove.
5348         * cp-objcp-common.h (LANG_HOOKS_STATICP): Remove.
5349         * cp-tree.h (cxx_staticp):
5351 2007-04-04  Danny Smith  <dannysmith.users.sourceforge.net>
5353         * class.c (check_for_override): Don't remove dllmport attribute
5354         of virtual methods.
5356 2007-04-03  Jakub Jelinek  <jakub@redhat.com>
5358         PR c++/30847
5359         * typeck.c (build_modify_expr): For COND_EXPR on LHS, if RHS has void
5360         type issue error and return early.
5362 2007-03-30  Jason Merrill  <jason@redhat.com>
5364         PR c++/31187
5365         * typeck.c (cp_type_readonly): New fn.
5366         * cp-tree.h: Declare it.
5367         * decl.c (start_decl): Set implicit DECL_THIS_STATIC here.
5368         (cp_finish_decl): Not here.
5370 2007-03-31  Richard Guenther  <rguenther@suse.de>
5372         * optimize.c (maybe_clone_body): Replace splay-tree usage by
5373         pointer-map.
5375 2007-03-31  Douglas Gregor  <doug.gregor@gmail.com>
5377         PR c++/31138
5378         PR c++/31140
5379         PR c++/31141
5380         * parser.c (declarator_can_be_parameter_pack): New.
5381         (cp_parser_template_parameter): Only parse the `...' if the
5382         declarator can be a parameter pack.
5383         (cp_parser_parameter_declaration): Ditto. Also, handle when TYPE
5384         is NULL.
5385         * pt.c (find_parameter_packs_r): Look into the bounds on integer
5386         types (they could be used as array bounds).
5387         (check_for_bare_parameter_packs): Deal with TEMPLATE_PARM_INDEX.
5388         (tsubst_pack_expansion): Handle failure to expand parameter
5389         packs.
5391 2007-03-30  Paolo Carlini  <pcarlini@suse.de>
5393         PR c++/26099
5394         * cp-tree.h (enum cp_trait_kind, struct tree_trait_expr,
5395         TRAIT_EXPR_TYPE1, TRAIT_EXPR_TYPE2, TRAIT_EXPR_KIND): Add.
5396         (enum cp_tree_node_structure_enum, union lang_tree_node): Update.
5397         (CLASS_TYPE_NON_UNION_P): Add.
5398         (struct lang_type_class): Add has_complex_dflt.
5399         (TYPE_HAS_COMPLEX_DFLT, TYPE_HAS_TRIVIAL_DFLT): Add.
5400         (locate_copy, locate_ctor, locate_dtor, finish_trait_expr): Declare.
5401         * cp-tree.def: Add TRAIT_EXPR.
5402         * cp-objcp-common.c (cp_tree_size): Add TRAIT_EXPR case.
5403         * lex.c (struct resword): Add __has_nothrow_assign,
5404         __has_nothrow_constructor, __has_nothrow_copy, __has_trivial_assign,
5405         __has_trivial_constructor, __has_trivial_copy,
5406         __has_trivial_destructor, __has_virtual_destructor, __is_abstract,
5407         __is_base_of, __is_class, __is_convertible_to, __is_empty, __is_enum,
5408         __is_pod, __is_polymorphic, __is_union.
5409         * parser.c (cp_parser_primary_expression): Deal with the new RIDs.
5410         (cp_parser_trait_expr): New.
5411         * semantics.c (finish_trait_expr, trait_expr_value
5412         classtype_has_nothrow_copy_or_assign_p): New.
5413         * method.c (locate_copy, locate_ctor, locate_dtor): Do not define
5414         as static.
5415         * decl.c (cp_tree_node_structure): Add TRAIT_EXPR.
5416         * class.c (check_bases, check_field_decl, check_bases_and_members):
5417         Deal with TYPE_HAS_COMPLEX_DFLT (t) too.
5418         * pt.c (uses_template_parms, tsubst_copy_and_build,
5419         value_dependent_expression_p, type_dependent_expression_p): Deal with
5420         TRAIT_EXPR.
5421         * tree.c (cp_walk_subtrees): Deal with TRAIT_EXPR.
5423 2007-03-29  Richard Guenther  <rguenther@suse.de>
5425         * tree.c (cp_walk_subtrees): Do not set input_location.
5427 2007-03-28  Simon Martin  <simartin@users.sourceforge.net>
5429         PR c++/29077
5430         * decl.c (grokfndecl): Properly setup decl if it is a constructor or a
5431         destructor.
5433 2007-03-28 Douglas Gregor <doug.gregor@gmail.com>
5435         * parser.c (struct cp_parser): Update comment for
5436         greater_than_is_operator_p.
5437         (cp_parser_primary_expression): In C++0x mode, a cast operator can
5438         be terminated with a `>>' token when !GREATER_THAN_IS_OPERATOR_P.
5439         (TOKEN_PRECEDENCE): In C++0x mode, `>>' is treated like `>' when
5440         !GREATER_THAN_IS_OPERATOR_P.
5441         (cp_parser_binary_expression): When -Wc++0x-compat, warn about
5442         `>>' operators that will become two `>' tokens in C++0x.
5443         (cp_parser_parameter_declaration): Treat `>>' like `>' in C++0x
5444         mode, allowing it to terminate default arguments.
5445         (cp_parser_enclosed_template_argument_list): In C++0x mode, treat
5446         `>>' like two consecutive `>' tokens.
5447         (cp_parser_skip_to_end_of_template_parameter_list): Ditto.
5448         (cp_parser_next_token_ends_template_argument_p): In C++0x, `>>'
5449         ends a template argument.
5451 2007-03-28  Douglas Gregor  <doug.gregor@gmail.com>
5453         * decl.c (redeclaration_error_message): Complain when redeclaring
5454         a friend function with default template arguments (C++0x mode only).
5455         * cp-tree.h (check_default_tmpl_args): Declare.
5456         * pt.c (check_default_tmpl_args): In C++0x mode, permit default
5457         template arguments in function templates. Add support for checking
5458         the default template arguments of friend templates.
5459         (push_template_decl_real): Fix call to check_default_tmpl_args.
5460         (type_unification_real): If a template parameter has not been
5461         deduced but provides a default template argument, substitute into
5462         that default template argument.
5463         * parser.c (cp_parser_init_declarator): When declaring (but not
5464         defining!) a function template in C++0x mode, check for default
5465         template arguments.
5467 2007-03-28 Douglas Gregor <doug.gregor@gmail.com>
5469         PR c++/29993
5470         * decl.c (grokdeclarator): Deal with cv-qualified function type
5471         typedefs in the same way for member and non-member functions.
5473 2007-03-26  Dirk Mueller  <dmueller@suse.de>
5475         * parser.c (cp_parser_member_declaration): Pedwarn
5476         about stray semicolons after member declarations.
5478 2007-03-26  Paolo Carlini  <pcarlini@suse.de>
5480         PR c++/30500
5481         * pt.c (instantiate_decl): Set in_system_header.
5483 2007-03-22  Mark Mitchell  <mark@codesourcery.com>
5485         * cp-tree.h (current_tempalte_parms): Improve documentation.
5486         * pt.c (current_template_args): Likewise.
5488         PR c++/30863
5489         * parser.c (cp_parser_parse_and_diagnose_invalid_type_name): Do
5490         not consume tokens when failing.
5492 2007-03-22  Jim Wilson  <wilson@specifix.com>
5493             Mark Mitchell  <mark@codesourcery.com>
5495         PR c++/31273
5496         * call.c (standard_conversion): Use type_decays_to.  Keep FCODE
5497         consistent with FROM.
5499 2007-03-22  Gabriel Dos Reis  <gdr@integrable-solutions.net>
5501         * error.c (dump_expr): Handle dependent names that designate types.
5502         * cxx-pretty-print.c (pp_cxx_unqualified_id): Handle TYPENAME_TYPE.
5504 2007-03-17  Kazu Hirata  <kazu@codesourcery.com>
5506         * cp-tree.def, parser.c, pt.c: Fix comment typos.
5508 2007-03-16  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
5510         * cvt.c (cp_convert_and_check) : Define.
5511         * cp-tree.h (cp_convert_and_check): Declare.
5512         * call.c (convert_conversion_warnings): Rename to
5513         conversion_null_warnings.  The warning for floating-point to
5514         integer is handled by convert_and_check in convert_like_real.
5515         (convert_like_real): convert_conversion_warnings was renamed as
5516         conversion_null_warnings.
5517         * typeck.c (build_binary_op): Use cp_convert_and_check to warn for
5518         overflow and changes of value during conversion.
5520 2007-03-15  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
5522         PR c++/30891
5523         * parser.c (cp_parser_statement): If 'namespace' is found, this
5524         only can be a namespace alias definition, so parse it now.
5525         (cp_parser_namespace_alias_definition): if we find an open brace
5526         instead of '=', then this is actually a misplaced namespace
5527         definition.
5529 2007-03-15  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
5531         PR c++/24924
5532         * decl.c (cxx_init_decl_processing): Move command-line options
5533         processing to c-opts.c.
5535 2007-03-15  Douglas Gregor  <doug.gregor@gmail.com>
5537         * ptree.c (cxx_print_type): Use formatting markup for integers
5538         when printing template parameter index/level/orig level.
5539         (cxx_print_xnode): Ditto.
5540         * cp-tree.h (TEMPLATE_PARM_PARAMETER_PACK): Use TREE_LANG_FLAG_0.
5541         (struct template_parm_index_s): Remove the PARAMETER_PACK member.
5542         Make INDEX, LEVEL, and ORIG_LEVEL integers instead of
5543         HOST_WIDE_INTs.
5544         (struct saved_scope): Make X_PROCESSING_TEMPLATE_DECL an int,
5545         rather than a HOST_WIDE_INT.
5546         Turn X_PROCESSING_EXPLICIT_INSTANTIATION, SKIP_EVALUATION, and
5547         NEED_POP_FUNCTION_CONTEXT into bool bitfields; reorder fields for
5548         better bit-packing.
5549         (struct language_function): Make RETURNS_VALUE, RETURNS_NULL,
5550         RETURNS_ABNORMALLY, IN_FUNCTION_TRY_HANDLER, and
5551         IN_BASE_INITIALIZER bool bitfields.
5552         (struct cp_declarator): Make KIND a 4-bit field. Make
5553         PARAMETER_PACK_P a bool bitfield just after KIND.
5554         * pt.c (uses_parameter_packs): Destroy the pointer set.
5555         (make_pack_expansion): Ditto.
5556         (check_for_bare_parameter_packs): Ditto.
5557         * name-lookup.c (push_to_top_level): Make need_pop a bool value.
5559 2007-03-14  Andrew Pinski  <andrew_pinski@playstation.sony.com>
5561         PR c++/31165
5562         * call.c  (convert_default_arg): Instead of copying the node,
5563         unshare it.
5565 2007-03-15  Dirk Mueller  <dmueller@suse.de>
5567         PR c++/30860
5568         * call.c (convert_conversion_warnings): New..
5569         (convert_like_real): .. factored out from here.
5570         (convert_conversion_warnings): Add warning about
5571         false being converted to NULL in argument passing.
5573 2007-03-14  Dirk Mueller  <dmueller@suse.de>
5575         * semantics.c (c_finish_if_stmt): Call empty_if_body_warning.
5576         (finish_do_body): Warn about empty body in do/while statement.
5578 2007-03-14  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
5580         * class.c (warn_hidden): Add OPT_Woverloaded_virtual to warning.
5582 2007-03-14  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
5584         PR c/21438
5585         * typeck.c (build_binary_op): Call warn_for_div_zero instead of
5586         warning.
5588 2007-03-13  Alexandre Oliva  <aoliva@redhat.com>
5590         * repo.c (init_repo): Initialize random_seed saved options.
5591         (finish_repo): Adjust.
5593 2007-03-13  Mark Mitchell  <mark@codesourcery.com>
5595         PR bootstrap/30899
5596         * Make-lang.in (doc/g++.1): Use $< to specify the location from
5597         which to copy.
5599 2007-03-12  Seongbae Park <seongbae.park@gmail.com>
5601         * decl.c (compute_array_index_type): New warning flag warn_vla.
5603 2007-03-12  Mark Mitchell  <mark@codesourcery.com>
5605         PR c++/30108
5606         * call.c (convert_default_arg): Copy non-constant arguments.
5608 2007-03-11  Mark Mitchell  <mark@codesourcery.com>
5610         PR c++/31038
5611         * parser.c (cp_parser_postfix_expression): Disallow compound
5612         literals in constant expressions.
5614         PR c++/30328
5615         * semantics.c (finish_typeof): Use unlowered_expr_type.
5617 2007-03-10  Mark Mitchell  <mark@codesourcery.com>
5619         PR c++/30274
5620         * cp-tree.h (unlowered_expr_type): New function.
5621         * typeck.c (is_bitfield_expr_with_lowered_type): Handle
5622         COMPOUND_EXPR, MODIFY_EXPR, and SAVE_EXPR.
5623         (unlowered_expr_type): New function.
5624         (build_unary_op): Disallow predecrements of bool bitfields.
5625         * call.c (build_conditional_expr): Use unlowered_expr_type.
5626         * pt.c (type_unification_real): Likewise.
5628 2007-03-09  Douglas Gregor  <doug.gregor@gmail.com>
5630         PR c++/20599
5631         * typeck.c (check_return_expr): Check for bare parameter packs.
5632         (comptypes): Compare template parameter packs and
5633         type pack expansions.
5634         * decl.c (grokdeclarator): Deal with the declaration of function
5635         parameter packs.
5636         (grokparms): Verify that the (optional) function parameter pack is
5637         at the end of the parameter list.
5638         (xref_basetypes): Handle pack expansions in the base class.
5639         (cp_tree_node_structure): Handle ARGUMENT_PACK_SELECT.
5640         * cp-tree.def (TYPE_ARGUMENT_PACK): New.
5641         (NONTYPE_ARGUMENT_PACK): New.
5642         (TYPE_PACK_EXPANSION): New.
5643         (EXPR_PACK_EXPANSION): New.
5644         (ARGUMENT_PACK_SELECT): New.
5645         * cp-objcp-common.c (cp_tree_size): Compute size of
5646         (NON)TYPE_ARGUMENT_PACK, (TYPE|EXPR)_PACK_EXPANSION, and
5647         ARGUMENT_PACK_SELECT.
5648         * error.c (dump_template_argument): Print template argument packs.
5649         (dump_template_argument_list): Ditto.
5650         (dump_template_parameter): Dump `...' for template type parameter
5651         packs.
5652         (dump_type): Dump TYPE_PACK_EXPANSION nodes.
5653         (dump_parameters): Print function parameter packs.
5654         (dump_template_parms): Print template argument packs.
5655         (dump_expr): Dump EXPR_PACK_EXPANSION nodes.
5656         (maybe_warn_variadic_templates): New.
5657         * operators.def: Add ellipsis operator for EXPR_PACK_EXPANSION.
5658         * tree.c (cp_walk_subtrees): Walk BASELINK, TYPE_ARGUMENT_PACK,
5659         NONTYPE_ARGUMENT_PACK, TYPE_PACK_EXPANSION, EXPR_PACK_EXPANSION,
5660         CAST_EXPR.
5661         * mangle.c (write_type): Mangle TYPE_PACK_EXPANSION.
5662         (write_template_arg): Write argument packs as separate arguments.
5663         * cp-tree.h (struct template_parm_index_s): Add flag that
5664         indicates that the template parameter is actually a parameter
5665         pack.
5666         (struct tree_argument_pack_select): New.
5667         (enum cp_tree_node_structure_enum): Add TS_CP_ARGUMENT_PACK_SELECT.
5668         (union lang_tree_node): Add argument_pack_select.
5669         (FUNCTION_PARAMETER_PACK_P): New.
5670         (PACK_EXPANSION_P): New.
5671         (PACK_EXPANSION_PATTERN): New.
5672         (SET_PACK_EXPANSION_PATTERN): New.
5673         (PACK_EXPANSION_PARAMETER_PACKS): New.
5674         (ARGUMENT_PACK_P): New.
5675         (ARGUMENT_PACK_ARGS): New.
5676         (SET_ARGUMENT_PACK_ARGS): New.
5677         (ARGUMENT_PACK_INCOMPLETE_P): New.
5678         (ARGUMENT_PACK_EXPLICIT_ARGS): New.
5679         (TEMPLATE_PARM_PARAMETER_PACK): New.
5680         (TEMPLATE_TYPE_PARAMETER_PACK): New.
5681         (ARGUMENT_PACK_SELECT_FROM_PACK): New.
5682         (ARGUMENT_PACK_SELECT_INDEX): New.
5683         (ARGUMENT_PACK_SELECT_ARG): New.
5684         (struct cp_declarator): Add parameter_pack_p flag.
5685         (maybe_warn_variadic_templates): Declare.
5686         (process_template_parm): Add bool parameter IS_PARAMETER_PACK, to
5687         indicate a template parameter pack.
5688         (uses_parameter_packs): Declare.
5689         (template_parameter_pack_p): Declare.
5690         (template_parms_variadic_p): Declare.
5691         (make_pack_expansion): Declare.
5692         (check_for_bare_parameter_packs): Declare.
5693         * cxx-pretty-print.c (pp_cxx_unary_expression): Print
5694         sizeof... expressions.
5695         (pp_cxx_expression): Print pack expansions and non-type argument
5696         packs.
5697         (pp_cxx_exception_specification): Print pack expansions.
5698         (pp_cxx_direct_declarator): Print ellipsis for parameter packs.
5699         (pp_cxx_ctor_initializer): Print pack expansions.
5700         (pp_cxx_type_id): Print pack expansions.
5701         (pp_cxx_template_argument_list): Print argument packs.
5702         (pp_cxx_template_parameter): Print ellipsis for template parameter
5703         packs.
5704         * pt.c (comp_template_parms): Compare template parameter packs.
5705         (template_parameter_pack_p): New.
5706         (template_parms_variadic_p): New.
5707         (template_args_variadic_p): New.
5708         (make_ith_pack_parameter_name): New.
5709         (struct find_parameter_pack_data): New.
5710         (find_parameter_packs_r): New.
5711         (uses_parameter_packs): New.
5712         (make_pack_expansion): New.
5713         (check_for_bare_parameter_packs): New.
5714         (expand_template_argument_pack): New.
5715         (reduce_template_parm_level): Propagate parameter pack flag.
5716         (process_template_parm): Add is_parameter_pack parameter to state
5717         when the parameter is actually a parameter pack. Create template
5718         parameter packs when is_parameter_pack is true.
5719         (current_template_args): The argument for a template parameter
5720         pack is an argument pack containing a single pack expansion.
5721         (process_partial_specialization): When checking that non-type
5722         argument expressions do not involve template parameters, loop over
5723         the arguments in argument packs separately.
5724         (push_template_decl_real): Check that the type of the declaration
5725         does not have any bare parameter packs. Check that primary
5726         templates have no more than one parameter pack, and that it comes
5727         at the end of the template parameter list.
5728         (convert_template_argument): Handle coercions for pack expansion
5729         expressions by coercing the pattern then rebuilding the expansion.
5730         (coerce_template_parms): When coercing the arguments for a
5731         variadic template, pack "extra" arguments into an argument pack.
5732         (coerce_template_template_parms): Cannot coerce between parameter
5733         packs and non-pack parameters.
5734         (template_args_equal): Compare PACK_EXPANSION_P expressions.
5735         (comp_template_args): Expand all template arguments packs before
5736         comparing template argument lists.
5737         (mangle_class_name_for_template): Make argument packs as separate
5738         template arguments.
5739         (for_each_template_parm_r): No need to handle BASELINK.
5740         (instantiate_class_template): Handle pack expansions in the base
5741         class list.
5742         (tsubst_pack_expansion): New.
5743         (tsubst_template_args): Handle substitutions of argument packs and
5744         pack expansion into template argument lists.
5745         (tsubst_decl): Expand function parameter packs into separate
5746         function parameters.
5747         (tsubst_arg_types): Expand a type pack expansion into separate
5748         argument types.
5749         (tsubst_exception_specification): Handle pack expansions in
5750         exception specifiers.
5751         (tsubst): See through ARGUMENT_PACK_SELECT arguments when
5752         replacing a template parameter with its argument. If we encounter
5753         a substitution for an argument pack, just return the parameter
5754         itself.
5755         (tsubst_copy): sizeof(X...) returns the number of elements in
5756         parameter pack X.  See through ARGUMENT_PACK_SELECT when the
5757         PARM_DECL is a parameter pack.
5758         (tsubst_expr): Expression pack expansions and argument packs
5759         cannot show up here; they will all be handled through function
5760         calls, sizeof, and template argument lists.
5761         (tsubst_copy_and_build): sizeof(X...) returns the number of
5762         elements in parameter pack X.  Handle pack expansions in TREE_LIST
5763         and CONSTRUCTOR nodes.
5764         (fn_type_unification): Handle "incomplete" explicit template
5765         argument lists that specify some of the arguments for a template
5766         parameter pack.
5767         (type_unification_real): Unify arguments against pack expansions.
5768         (template_parm_level_and_index): New, helper function.
5769         (unify_pack_expansion): New.
5770         (unify): Unify argument packs on an argument-by-argument basis,
5771         handling variadic argument packs as well.
5772         (more_specialized_fn): Handle unification of function parameter
5773         packs. All things being equal, prefer non-variadic function
5774         templates to variadic function templates.
5775         (more_specialized_class): Prefer the variadic class template
5776         partial specialization that binds fewer arguments to a parameter
5777         pack.
5778         (regenerate_decl_from_template): Expand function parameter packs
5779         into separate parameters.
5780         (instantiate_decl): Ditto.
5781         (tsubst_initializer_list): Handle pack expansions for base-class
5782         initializers.
5783         (dependent_type_p_r): Determine dependent types in argument packs
5784         and pack expansions.
5785         (value_dependent_expression_p): Determine value-dependence of
5786         non-type argument packs.
5787         (dependent_template_arg_p): Handle argument packs.
5788         * semantics.c (finish_cond): Check for bare parameter packs.
5789         (finish_expr_stmt): Ditto.
5790         (finish_for_expr): Ditto.
5791         (finish_switch_cond): Ditto.
5792         (finish_mem_initializers): Ditto.
5793         * name-lookup.c (arg_assoc_type): Handle pack expansions and
5794         argument packs.
5795         * decl2.c (cp_build_parm_decl): Mark function parameter packs.
5796         * parser.c (make_declarator): Declarator is not an expansion.
5797         (make_pointer_declarator): Transfer parameter pack flag to outer
5798         declarator.
5799         (make_reference_declarator): Ditto.
5800         (make_ptrmem_declarator): Ditto.
5801         (make_call_declarator): Ditto.
5802         (make_array_declarator): Ditto.
5803         (cp_parser_postfix_expression): Allow pack expansion expressions
5804         in the argument list for a call expression.
5805         (cp_parser_parenthesized_expression_list): Add new parameter
5806         ALLOW_EXPANSION_P. When true, parse the ellipsis to mean "expand
5807         into separate arguments."
5808         (cp_parser_new_placement): Allow pack expansion expressions.
5809         (cp_parser_new_initializer): Ditto.
5810         (cp_parser_mem_initializer_list): Allow ellipsis to create a
5811         base-class initializer expansion.
5812         (cp_parser_mem_initializer): Ditto.
5813         (cp_parser_template_parameter_list): Keep track of whether the
5814         template parameter is a template parameter pack.
5815         (cp_parser_template_parameter): Parse the ellipsis to indicate a
5816         template parameter pack.
5817         (cp_parser_type_parameter): Ditto.
5818         (cp_parser_template_argument_list): Parse the ellipsis to indicate
5819         a pack expansion.
5820         (cp_parser_direct_declarator): Parse the ellipsis to indicate that
5821         this declarator is a parameter pack.
5822         (cp_parser_parameter_declaration): The ellipsis does not end the
5823         parameter declaration, because it might be a parameter pack. Parse
5824         the ellipsis to indicate a parameter pack.
5825         (cp_parser_initializer): Allow pack expansions.
5826         (cp_parser_initializer_list): Allow ellipsis to create an
5827         initializer expansion.
5828         (cp_parser_base_clause): Allow ellipsis to create a base specifier
5829         expansion.
5830         (cp_parser_type_id_list): Allow ellipsis to create an exception
5831         specifier expansion.
5832         (cp_parser_attribute_list): Don't allow pack expansions.
5833         (cp_parser_functional_cast): Allow pack expansions.
5834         (cp_parser_sizeof_operand): Allow ellipsis following "sizeof" to
5835         compute the length of a parameter pack.
5836         (cp_parser_next_token_ends_template_argument_p): An ellipsis can
5837         end a template argument.
5838         * tree.c (cp_walk_subtrees): Walk BASELINK, TYPE_ARGUMENT_PACK,
5839         NONTYPE_ARGUMENT_PACK, TYPE_PACK_EXPANSION, EXPR_PACK_EXPANSION,
5840         CAST_EXPR.
5842 2007-03-09  Dirk Mueller  <dmueller@suse.de>
5844         * call.c (build_new_op): Call warn_logical_operator.
5846 2007-03-08  Volker Reichelt  <v.reichelt@netcologne.de>
5848         PR c++/30852
5849         * semantics.c (finish_offsetof): Handle COMPOUND_EXPR.
5851         PR c++/30534
5852         * pt.c (any_template_arguments_need_structural_equality_p):
5853         Robustify.
5855 2007-03-08  Alexandre Oliva  <aoliva@redhat.com>
5857         * decl.c (grokdeclarator): Disable warnings for anonymous
5858         bitfields.
5860 2007-03-05  Volker Reichelt  <v.reichelt@netcologne.de>
5862         * typeck2.c (readonly_error): Always emit a hard error.
5863         Remove last argument.
5864         * cp-tree.h (readonly_error): Adjust prototype.
5865         * semantics.c (finish_asm_stmt): Adjust call to readonly_error.
5866         * typeck.c (build_unary_op): Likewise.
5867         (build_modify_expr): Likewise.
5869 2007-03-04  Simon Martin  <simartin@users.sourceforge.net>
5871         PR c++/30895
5872         * tree.c (cp_tree_equal): Properly handle COMPLEX_CST trees.
5874 2007-03-03  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
5876         PR c++/15787
5877         * parser.c (struct cp_parser): New IN_IF_STMT.
5878         (cp_parser_statement_seq_opt): Handle an unexpected 'else',
5879         returning if parsing the body of an 'if' statement or issuing an
5880         error and continuing.
5881         (cp_parser_selection_statement): Set IN_IF_STMT bit when parsing
5882         body of 'if'.
5883         (cp_parser_jump_statement): Mask new IN_IF_STMT bit.
5885 2007-03-02  Simon Martin  <simartin@users.sourceforge.net>
5887         PR c++/28253
5888         * class.c (update_vtable_entry_for_fn): Properly handle invalid overriders
5889         for thunks.
5891 2007-03-02  Geoffrey Keating  <geoffk@apple.com>
5893         * g++spec.c (lang_specific_driver): Add -lstdc++ when compiling
5894         Objective-C++.  Don't exit early if -shared-libgcc needs to be
5895         added.
5897 2007-03-02  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
5899         * typeck.c (common_base_type): Delete unused function.
5901 2007-03-01  Brooks Moses  <brooks.moses@codesourcery.com>
5903         * Make-lang.in: Add dummy lang.install-pdf target.
5905 2007-03-01  Simon Baldwin <simonb@google.com>
5907         PR c++/23689
5908         * decl.c (check_tag_decl): Added new warning for typedef ignored
5909         when it precedes an otherwise valid non-typedef declaration.
5911 2007-02-28  Sandra Loosemore  <sandra@codesourcery.com>
5913         * typeck.c (build_function_call): Store converted arguments
5914         in a stack-allocated array instead of building a list.
5915         (convert_arguments): Store arguments in the array passed in as an
5916         argument, and return the actual number of arguments.
5917         * call.c (build_call): Delete, and replace with...
5918         (build_call_n, build_call_a): New.
5919         (build_op_delete_call): Rewrite to avoid constructing argument lists.
5920         (build_over_call): Store converted arguments in a stack-allocated
5921         array instead of building a list.
5922         (build_cxx_call): Pass arguments in an array instead of as a list.
5923         (build_java_interface_fn_ref): Rewrite to avoid constructing
5924         argument lists.
5925         * tree.h: Update declarations to reflect above changes.
5926         * method.c (use_thunk): Use a stack-allocated array to hold
5927         the arguments instead of a list.
5928         * rtti.c (throw_bad_cast): Update call to cxx_call.
5929         (throw_bad_typeid): Likewise.
5930         (build_dynamic_cast_1): Likewise.
5931         * init.c (build_builtin_delete_call): Use build_call_n.
5932         * decl.c (expand_static_init): Likewise.
5933         * except.c (cp_protect_cleanup_actions): Likewise.
5934         * cp-gimplify.c (genericize_eh_spec_block): Likewise.
5935         (gimplify_must_not_throw_expr): Likewise.
5936         (cxx_omp_apply_fn): Use build_call_a.
5938 2007-02-26  Mark Mitchell  <mark@codesourcery.com>
5940         * semantics.c (expand_or_defer_fn): Call c_record_cdtor_fn.
5941         * decl2.c (cp_write_gloabl_declarations): Call c_build_cdtor_fns.
5943 2007-02-25  Mark Mitchell  <mark@codesourcery.com>
5945         * cp-tree.h (static_ctors): Remove.
5946         * cp-tree.h (static_dtors): Likewise.
5947         * cp-objcp-common.c (decl_shadowed_for_var_lookup): Adjust for
5948         refactoring of tree_map hierarchy.
5949         (decl_shadowed_for_var_insert): Likewise.
5950         * semantics.c (expand_body): Use c_expand_body.
5951         (expand_or_defer_fn): Don't update static_ctors or static_dtors.
5952         * decl2.c (static_ctors): Remove.
5953         (static_dtors): Likewise.
5954         (generate_ctor_or_dtor_function): Pass NULL_TREE to
5955         objc_generate_static_init_call.  Do not call static_[cd]tors.
5956         (generate_ctor_and_dtor_functions_for_priority): Do not check for
5957         static_[cd]tors.
5958         (cp_write_global_declarations): Likewise.
5960 2007-02-23  Richard Guenther  <rguenther@suse.de>
5962         * class.c (note_name_declared_in_class): Make declaration
5963         changes meaning a pedwarn.
5965 2007-02-22  Michael Matz  <matz@suse.de>
5967         PR c++/29433
5968         * cp-tree.h (TFF_UNQUALIFIED_NAME): New formatting flag.
5969         * error.c (dump_aggr_type, dump_simple_decl, dump_decl,
5970         dump_function_decl): Guard emitting outer scopes by new flag.
5971         * cp-lang.c (cxx_dwarf_name): New function.
5972         (LANG_HOOKS_DWARF_NAME): Define to cxx_dwarf_name.
5973         * pt.c (classtype_mangled_name, mangle_class_name_for_template):
5974         Remove functions.
5975         (push_template_decl_real, lookup_template_class): Remove calls
5976         to above functions.
5978 2007-02-19  Mark Mitchell  <mark@codesourcery.com>
5980         * call.c (build_new_method_call): Ensure that explicit calls of
5981         destructors have type "void".
5983 2007-02-19  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
5985         * typeck.c (build_binary_op): Replace -Wstring-literal-comparison
5986         and -Walways-true with -Waddress.
5987         * cvt.c (convert_to_void): Replace unconditional warning with
5988         -Waddress.
5990 2007-02-18  Kazu Hirata  <kazu@codesourcery.com>
5992         * decl.c, tree.c: Fix comment typos.
5994 2007-02-15  Andrew Pinski  <andrew_pinski@playstation.sony.com>
5996         PR C++/30158
5997         * semantics.c (finish_stmt_expr_expr): Set TREE_TYPE of the
5998         statement expression if we had an error mark node.
6000 2007-02-15  Sandra Loosemore  <sandra@codesourcery.com>
6001             Brooks Moses  <brooks.moses@codesourcery.com>
6002             Lee Millward  <lee.millward@codesourcery.com>
6004         * cp-tree.def (AGGR_INIT_EXPR): Adjust documentation.
6005         Change class to tcc_vl_exp.
6007         * call.c (build_call): Use build_call_list instead
6008         of build3.
6009         (build_over_call): Likewise.
6010         (build_new_method_call): Use build_min_non_dep_call_list
6011         instead of build_min_non_dep.
6013         * error.c (dump_call_expr_args): New function.
6014         (dump_aggr_init_expr_args): New function.
6015         (dump_expr) <AGGR_INIT_EXPR, CALL_EXPR, INDIRECT_REF>: Use them.
6016         Update to use new CALL_EXPR and AGGR_INIT_EXPR accessor macros.
6018         * cvt.c (convert_to_void): Use build_call_array instead
6019         of build3; use new AGGR_INIT_EXPR accessor macros.
6021         * mangle.c (write_expression): Use TREE_OPERAND_LENGTH
6022         instead of TREE_CODE_LENGTH.
6024         * dump.c (cp_dump_tree) <AGGR_INIT_EXPR>: Update to use new
6025         AGGR_INIT_EXPR accessor macros.
6027         * cp-gimplify.c (cp_gimplify_init_expr): Use
6028         AGGR_INIT_EXPR_SLOT to set the slot operand.
6030         * cp-tree.h (AGGR_INIT_EXPR_FN): New macro.
6031         (AGGR_INIT_EXPR_SLOT): New macro.
6032         (AGGR_INIT_EXPR_ARG): New macro.
6033         (aggr_init_expr_nargs): New macro.
6034         (AGGR_INIT_EXPR_ARGP): New macro.
6035         (aggr_init_expr_arg_iterator): New.
6036         (init_aggr_init_expr_arg_iterator): New.
6037         (next_aggr_init_expr_arg): New.
6038         (first_aggr_init_expr_arg): New.
6039         (more_aggr_init_expr_args_p): New.
6040         (FOR_EACH_AGGR_INIT_EXPR_ARG): New.
6041         (stabilize_aggr_init): New declaration.
6042         (build_min_non_dep_call_list): Likewise.
6044         * tree.c (process_aggr_init_operands): New function.
6045         (build_aggr_init_array) New function.
6046         (build_cplus_new): Update to use new CALL_EXPR and
6047         AGGR_INIT_EXPR accessor macros. Replace use of build3 with
6048         build_aggr_init_array.
6049         (build_min_non_dep_call_list) New function.
6050         (build_min_nt): Assert input code parameter is not a variable
6051         length expression class.
6052         (build_min, build_min_non_dep): Likewise.
6053         (cp_tree_equal) <CALL_EXPR>: Iterate through the arguments
6054         to check for equality instead of recursing. Handle tcc_vl_exp
6055         tree code classes.
6056         (stabilize_call): Update to only handle CALL_EXPRs, not
6057         AGGR_INIT_EXPRs; use new CALL_EXPR accessor macros.
6058         (stabilize_aggr_init): New function.
6059         (stabilize_init): Use it.
6061         * cxx-pretty-print.c (pp_cxx_postfix_expression)
6062         <AGGR_INIT_EXPR, CALL_EXPR>: Update to use new CALL_EXPR and
6063         AGGR_INIT_EXPR accessor macros and argument iterators.
6065         * pt.c (tsubst_copy) <CALL_EXPR>: Replace build_nt with
6066         build_vl_exp. Iterate through the operands, recursively
6067         processing each one.
6068         (tsubst_copy_and_build) <CALL_EXPR>: Update to use new
6069         CALL_EXPR accessor macros.
6070         (value_dependent_expression_p) <default>: Handle tcc_vl_exp
6071         tree code classes. Use TREE_OPERAND_LENGTH instead of
6072         TREE_CODE_LENGTH.
6074         * semantics.c (finish_call_expr): Use build_nt_call_list
6075         instead of build_nt.
6076         (simplify_aggr_init_expr): Update to use new AGGR_INIT_EXPR
6077         accessor macros. Use build_call_array to construct the
6078         CALL_EXPR node instead of build3
6080         * decl2.c (build_offset_ref_call_from_tree): Use
6081         build_nt_call_list and build_min_non_dep_call_list instead
6082         of build_min_nt and build_min_non_dep.
6084         * parser.c (cp_parser_postfix_expression) <CPP_OPEN_PAREN>:
6085         Use build_nt_call_list instead of build_min_nt.
6087 2007-02-15  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
6089         PR c++/28943
6090         * call.c (build_conditional_expr): Improve error message.
6092 2007-02-13  Dirk Mueller  <dmueller@suse.de>
6094         * friend.c (do_friend): Annotate warning about friend
6095         declarations in templates with OPT_Wnon_template_friend.
6096         Convert informal message from warning() to inform().
6098 2007-02-12  Simon Martin  <simartin@users.sourceforge.net>
6099             Mark Mitchell  <mark@codesourcery.com>
6101         PR c++/14622
6102         * pt.c (do_decl_instantiation): Detect type mismatches in explicit
6103         instantiations for variables.
6105 2007-02-12  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
6107         PR middle-end/7651
6108         * cp-gimplify.c (gimplify_expr_stmt): Don't check extra_warnings.
6109         Check warn_unused_value just once.
6111 2007-02-11  Mark Mitchell  <mark@codesourcery.com>
6113         PR c++/26988
6114         * pt.c (determine_specialization): Use skip_artificial_parms_for.
6115         (fn_type_unificiation): Likewise.
6116         (get_bindings): Likewise.
6118 o2007-02-06  Mark Mitchell  <mark@codesourcery.com>
6120         PR target/29487
6121         * decl.c (finish_function): Use DECL_REPLACEABLE.
6122         * tree.c (cp_cannot_inline_tree_fn): Likewise.
6124 2007-02-10  Gabriel Dos Reis  <gdr@integrable-solutions.net>
6126         * parser.c (cp_parser_primary_expression): Reformat overly long lines.
6128 2007-02-10  Richard Henderson  <rth@redhat.com>, Jakub Jelinek  <jakub@redhat.com>
6130         * decl.c (grokvardecl): Don't error if !have_tls.
6131         (grokdeclarator): Likewise.
6132         * parser.c (cp_parser_omp_threadprivate): Likewise.
6134 2007-02-07  Jakub Jelinek  <jakub@redhat.com>
6136         PR c++/30703
6137         * cp-gimplify.c (cp_genericize_r): Don't dereference invisiref
6138         parameters and result decls in omp clauses.
6139         (cxx_omp_privatize_by_reference): Pass also invisiref PARM_DECLs
6140         by reference.
6142 2007-02-05  Dirk Mueller  <dmueller@suse.de>
6144         PR bootstrap/30510
6145         * parser.c (cp_parser_class_specifier): Always initialize bases.
6147 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
6149         * cp-tree.h (OMP_ATOMIC_CODE): Delete.
6150         (OMP_ATOMIC_DEPENDENT_P): Rewrite.
6151         * pt.c (tsubst_expr): Adjust for new format of dependent OMP_ATOMIC
6152         expressions.
6153         * semantics.c (finish_omp_atomic): Store a whole expression node
6154         in operand 1, and integer_zero_node in operand 0, for dependent
6155         OMP_ATOMIC.  Rewrite to make flow easier to understand.
6157 2007-02-03  Gabriel Dos Reis  <gdr@integrable-solutions.net>
6159         * decl.c (grokdeclarator): Use OPT_Wreturn_type instead of 0.
6161 2007-02-04  Kazu Hirata  <kazu@codesourcery.com>
6163         * class.c, cp-tree.h, decl.c, decl2.c, g++spec.c, init.c,
6164         parser.c, pt.c, tree.c, typeck.c: Follow spelling conventions.
6166 2007-02-03  Douglas Gregor  <doug.gregor@gmail.com>
6168         * parser.c (cp_lexer_get_preprocessor_token): Attach the C++0x
6169         keyword warning to -Wc++0x-compat.
6171 2007-02-03  Gabriel Dos Reis  <gdr@integrable-solutions.net>
6173         * decl.c (grokdeclarator): Update documentation.
6175 2007-02-02  Jakub Jelinek  <jakub@redhat.com>
6177         PR c++/30536
6178         * decl.c (grokdeclarator): If __thread is used together with
6179         a storage class other than extern and static, clear thread_p
6180         after issuing diagnostics and fall through to checking the
6181         storage class.
6183 2007-01-30  Roger Sayle  <roger@eyesopen.com>
6185         * error.c (dump_type_suffix): Avoid use of cp_build_binary_op when
6186         calculating the size of an array (to avoid recursive errors).
6188 2007-01-30  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
6190         PR c++/24745
6191         * typeck.c (build_binary_op): Fix logic for warning. Move warning
6192         to -Wpointer-arith.
6193         * call.c (convert_like_real): Don't warn when converting to
6194         boolean type.
6196 2007-01-29  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
6198         * decl.c (pop_label): Replace warning with call to
6199         warn_for_unused_label.
6201 2007-01-28  Andrew Pinski  <pinskia@gmail.com>
6203         PR C++/28988
6204         * semantics.c (finish_pseudo_destructor_expr): Check the
6205         destrutor name by calling check_dtor_name.
6207 2007-01-24  Douglas Gregor  <dgregor@osl.iu.edu>
6209         * lex.c (D_CPP0X): Rename.
6210         (D_CXX0X): To this.
6211         (reswords): D_CPP0X -> D_CXX0X.
6212         (init_reswords): Ditto.
6213         * parser.c (cp_lexer_get_preprocessor_token): Warn about the use
6214         of C++0x keywords as identifiers.
6216 2007-01-23  Simon Martin  <simartin@users.sourceforge.net>
6218         PR c++/27492
6219         * decl.c (duplicate_decls): Don't reset DECL_INVALID_OVERRIDER_P for
6220         function decls.
6222 2007-01-23  Ian Lance Taylor  <iant@google.com>
6224         * typeck.c (convert_for_assignment): Only warn about a = b = c
6225         when converting to bool.
6227 2007-01-23  Roger Sayle  <roger@eyesopen.com>
6229         * call.c (null_ptr_cst_p): Replace use of TREE_CONSTANT_OVERFLOW with
6230         TREE_OVERFLOW.
6231         * typeck.c (ignore_overflows): Remove the remaining uses of
6232         TREE_CONSTANT_OVERFLOW.
6234 2007-01-20  Jan Hubicka  <jh@suse.cz>
6236         * decl2.c (start_objects, start_static_storage_duration_function):
6237         Do not make the functions uninlinable.
6239 2007-01-17  Ian Lance Taylor  <iant@google.com>
6241         * class.c (add_method): Call VEC_reserve_exact rather than passing
6242         a negative size to VEC_reserve.
6244 2007-01-11  Simon Martin  <simartin@users.sourceforge.net>
6246         PR c++/29573
6247         * tree.c (cp_tree_equal): Properly handle MODOP_EXPR trees.
6249 2007-01-10  Mark Mitchell  <mark@codesourcery.com>
6251         PR c++/28999
6252         * decl.c (make_typename_type): If the qualified name is not a
6253         type, issue an error.
6254         * parser.c (cp_parser_elaborated_type_specifier): Fix comment
6255         formatting.
6257 2007-01-08  Geoffrey Keating  <geoffk@apple.com>
6259         * rtti.c: Include target.h.
6260         (emit_support_tinfos): If ! targetm.cxx.library_rtti_comdat (),
6261         don't emit typeinfo for fundamental types as weak.
6262         * Make-lang.in (cp/rtti.o): Update and correct dependencies.
6264 2007-01-08  Richard Guenther  <rguenther@suse.de>
6266         * cvt.c (cp_convert_to_pointer): Use build_int_cst_type.
6268 2007-01-08  Mark Shinwell  <shinwell@codesourcery.com>
6270         * call.c (standard_conversion): Pass flag to
6271         vector_types_convertible_p to disallow emission of note.
6272         * typeck.c (convert_for_assignment): Pass flag to
6273         vector_types_convertible_p to allow emission of note.
6274         (ptr_reasonably_similar): Pass flag to vector_types_convertible_p
6275         to disallow emission of note.
6277 2007-01-07  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
6279         PR c++/28986
6280         * typeck.c (build_binary_op): Call overflow_warning if
6281         TREE_OVERFLOW_P is true for the result and not for any of the
6282         operands.
6284 2007-01-06  Lee Millward  <lee.millward@codesourcery.com>
6286         PR c++/19439
6287         * class.c (add_method): Don't wait until template
6288         instantiation time to complain about duplicate methods.
6290 2007-01-05  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
6292         PR c/19978
6293         * semantics.c (finish_unary_op_expr): Warn only if result
6294         overflowed and operands did not.
6296 2007-01-05  Ian Lance Taylor  <iant@google.com>
6298         * typeck.c (build_binary_op): Warn about comparing a non-weak
6299         address to NULL.
6301 2007-01-05  Douglas Gregor  <doug.gregor@gmail.com>
6303         * pt.c (tsubst): Propagate the need for structural equality checks
6304         when reducing the level of template parameters.
6306 2007-01-03  Kazu Hirata  <kazu@codesourcery.com>
6308         * pt.c: Fix a comment typo.
6310 2007-01-02  Ian Lance Taylor  <iant@google.com>
6312         * semantics.c (maybe_convert_cond): Optionally warn when using an
6313         assignment as a condition.
6314         * typeck.c (convert_for_assignment): Optionally warn about
6315         assigning the result of an assignment to a bool.
6317 2007-01-02  Douglas Gregor  <doug.gregor@gmail.com>
6319         * pt.c (canonical_template_parms): Correct typo in comment.
6321 2007-01-02  Douglas Gregor  <doug.gregor@gmail.com>
6323         * typeck.c (structural_comptypes): Renamed from "comptypes".
6324         (comptypes): Use canonical type information to perform fast type
6325         comparison. When VERIFY_CANONICAL_TYPES, verify that the
6326         canonical type comparison returns the same results as we would see
6327         from the current, structural check. Support COMPARE_STRUCTURAL
6328         when we need structural checks.
6329         * decl.c (typename_compare): Fix comment.
6330         (build_typename_type): TYPENAME_TYPE nodes require structural
6331         equality checks, because they resolve different based on the
6332         current class type.
6333         (make_unbound_class_template): UNBOUND_CLASS_TEMPLATE nodes
6334         require structural equality checks (for now).
6335         (build_ptrmemfunc_type): Build the canonical pointer to member
6336         function type.
6337         (compute_array_index_type): Whenever we build a new index type
6338         to represent the size of an array in a template, we need to mark
6339         this index type as requiring structural equality. This goes for
6340         arrays with value-dependent sizes with the current ABI, or all
6341         arrays with ABI-1.
6342         * tree.c (cplus_array_hash): New.
6343         (struct cplus_array_info): New.
6344         (cplus_array_compare): New.
6345         (cplus_array_htab): New.
6346         (build_cplus_array_type_1): Use a hash table to cache the array
6347         types we build. Build the canonical array type for each array
6348         type.
6349         (cp_build_qualified_type_real): When building a cv-qualified array
6350         type, use the hash table of array types and build canonical array
6351         types as necessary.
6352         (bind_template_template_parm): BOUND_TEMPLATE_TEMPLATE_PARM nodes
6353         use structural equality (for now).
6354         * cp-tree.h (COMPARE_STRUCTURAL): New.
6355         * pt.c (canonical_template_parms): New.
6356         (canonical_type_parameter): New.
6357         (process_template_parm): Find the canonical type parameter.
6358         (lookup_template_class): When we have named the primary template
6359         type, set the canonical type for our template class to the primary
6360         template type. If any of the template arguments need structural
6361         equality checks, the template class needs structural equality
6362         checks.
6363         (tsubst): When reducing the level of a template template
6364         parameter, we require structural equality tests for the resulting
6365         parameter because its template parameters have not had their types
6366         canonicalized. When reducing a template type parameter, find the
6367         canonical reduced type parameter.
6368         (any_template_arguments_need_structural_equality_p): New.