PR c++/19755
[official-gcc.git] / gcc / cp / ChangeLog
blob971bacafc7e6f55f601cf97cdbd4cca3a1911898
1 2005-02-10  Mark Mitchell  <mark@codesourcery.com>
3         PR c++/19755
4         * decl.c (reshape_init): Issue warnings about missing braces.
6 2005-02-11  Kazu Hirata  <kazu@cs.umass.edu>
8         * cp-tree.def, except.c, ptree.c: Update copyright.
10 2005-02-09  Mark Mitchell  <mark@codesourcery.com>
12         PR c++/19811
13         * call.c (build_op_delete_call): Check COMPLETE_TYPE_P before
14         attempting name lookup.
16         * parser.c (cp_parser_unqualified_id): Initialize type_decl.
18         PR c++/19787
19         * call.c (initialize_reference): Robustify.
21         PR ++/19732
22         * decl.c (grokdeclarator): Check for invalid use of destructor
23         names.
25         PR c++/19762
26         * parser.c (cp_parser_unqualified_id): Avoid creating destructor
27         names with invalid types.
29         PR c++/19826
30         * parser.c (cp_parser_direct_declarator): Allow type-dependent
31         expressions as array bounds.
33         PR c++/19739
34         * parser.c (cp_parser_attributes_list): Allow empty lists.
36 2005-02-08  Mark Mitchell  <mark@codesourcery.com>
38         PR c++/19733
39         * class.c (add_method): Don't set TYPE_HAS_DESTRUCTOR.
40         (check_bases): Give warnings about a base class with a
41         non-virtual destructor, even if it is implicit.
42         (finish_struct_bits): Don't copy TYPE_HAS_DESTRUCTOR.
43         (maybe_warn_about_overly_private_class): Don't use
44         TYPE_HAS_DESTRUCTOR.
45         (finish_struct_methods): Don't set TYPE_HAS_DESTRUCTOR.
46         (check_for_override): Give it external linkage.
47         (add_implicitly_declared_members): Generate destructors lazily.
48         (check_field_decls): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR, not
49         TYPE_HAS_DESTRUCTOR.
50         (check_bases_and_members): Call check_methods before
51         check_field_decls.
52         (check_bases_and_members): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR, not
53         TYPE_HAS_DESTRUCTOR.
54         (finish_struct_1): Do not use TYPE_HAS_DESTRUCTOR.
55         * cp-tree.def (PSEUDO_DTOR_EXPR): Document.
56         * cp-tree.h (TYPE_HAS_DESTRUCTOR): Remove.
57         (lang_type_class): Add lazy_destructor.
58         (CLASSTYPE_LAZY_DESTRUCTOR): New macro.
59         (CLASSTYPE_DESTRUCTORS): Robustify.
60         (TYPE_HAS_DESTRUCTOR): Remove.
61         (check_for_override): Declare.
62         (build_vbase_delete): Remove.
63         * cvt.c (convert_to_void): Issue errors about pseudo-destructor
64         expressions.
65         * decl.c (cxx_maybe_build_cleanup): Remove dead code.
66         * except.c (dtor_nothrow): Lazily create destructors if necessary.
67         (build_throw): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
68         * init.c (build_delete): Lazily create destructors, if necessary.
69         (build_vbase_delete): Remove.
70         * method.c (locate_dtor): Simplify.
71         (implicitly_declare_fn): Add support for destructors.
72         * parser.c (cp_parser_lookup_name): Lazily create destructors, if
73         necessary.
74         * pt.c (check_explicit_specialization): Don't use
75         TYPE_HAS_DESTRUCTOR.
76         (instantiate_class_template): Likewise.
77         * ptree.c (cxx_print_type): Don't print TYPE_HAS_DESTRUCTOR.
78         * rtti.c (emit_support_tinfos): Robustify.
79         * search.c (lookup_fnfields_1): Lazily create destructors.
80         * typeck.c (build_class_member_access_expr): Remove
81         PSEUDO_DTOR_EXPR handling.
82         (lookup_destructor): Likewise.
84 2005-02-08  Kazu Hirata  <kazu@cs.umass.edu>
86         * cxx-pretty-print.c, cxx-pretty-print.h, decl.h: Update
87         copyright.
89 2005-02-07  Mark Mitchell  <mark@codesourcery.com>
91         * parser.c (cp_lexer_start_debugging): Avoid arithmetic operations
92         on boolean variables.
93         (cp_lexer_stop_debugging): Likewise.
95 2005-02-03  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
97         PR c++/17401
98         * parser.c (cp_parser_pure_specifier): Emit a specific error
99         message with an invalid pure specifier.
100         * decl2.c (grok_function_init): Remove.
101         (grokfield): An initializer for a method is a always a pure
102         specifier.
104 2005-02-02  Matt Austern  <austern@apple.com>
106         PR c++/19628
107         * cp-tree.h (builtin_valid_in_constant_expr_p): Declare.
108         * parser.c (cp_parser_postfix_expression): Accept function call in
109         constant expression if builtin_valid_in_constant_expr_p is true
110         for that function. 
111         * pt.c (value_dependent_expression_p): Handle CALL_EXPRs properly.
112         * semantics.c (finish_id_expression): Accept function call in constant
113         expression if builtin_valid_in_constant_expr_p is true for that
114         function. 
115         * tree.c (builtin_valid_in_constant_expr_p): New.
116         
117 2005-02-02  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
119         PR c++/17413
120         * pt.c (check_instantiated_args): Improve error message.
121         Fix logic when to print its second part.
123 2005-02-02  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
125         * cp-tree.h (complete_type_or_else): Remove macro.
126         (complete_type_or_diagnostic): Rename to complete_type_or_else
127         and remove last argument.
128         * typeck.c (complete_type_or_diagnostic): Rename to
129         complete_type_or_else and remove last argument.
131 2005-02-02  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
133         * cp-tree.h (commonparms): Remove prototype.
134         (convert_arguments): Likewise.
135         (PFN_FROM_PTRMEMFUNC): Remove.
136         * typeck.c (commonparms): Make static.
137         (convert_arguments): Add prototype. Make static.
138         (PFN_FROM_PTRMEMFUNC): Replace by pfn_from_ptrmemfunc.
140 2005-01-31  Mark Mitchell  <mark@codesourcery.com>
142         * parser.c (cp_parser_primary_expression): Don't complain about
143         floating-point literals in integral constant expressions when
144         !pedantic.
146 2005-02-01  Alexandre Oliva  <aoliva@redhat.com>
148         * parser.c (cp_parser_template_id): Revert comment patch too.
149         
150         PR c++/18757
151         PR c++/19366
152         PR c++/19499
153         * parser.c (cp_parser_template_id): Revert 2004-12-09's patch.
154         Issue an error when creating the template id.
155         * pt.c (fn_type_unification): Return early if the explicit
156         template arg list is an error_mark_node.
158 2005-01-31  Mark Mitchell  <mark@codesourcery.com>
160         * decl.c (build_enumerator): Do not issue duplicate error messages
161         about invalid enumeration constants.
162         * parser.c (cp_parser_non_integral_constant_expression): Always
163         set parser->non_integral_constant_expression_p.
164         (cp_parser_primary_expression): Add cast_p parameter.  Issue
165         errors about invalid uses of floating-point literals in
166         cast-expressions.
167         (cp_parser_postfix_expression): Add cast_p parameter.
168         (cp_parser_open_square_expression): Pass it.
169         (cp_parser_parenthesized_expression_list): Add cast_p parameter.
170         (cp_parser_unary_expression): Likewise.
171         (cp_parser_new_placement): Pass it.
172         (cp_parser_direct_new_declarator): Likewise.
173         (cp_parser_new_initializer): Likewise.
174         (cp_parser_cast_expression): Add cast_p parameter.
175         (cp_parser_binary_expression): Likewise.
176         (cp_parser_question_colon_clause): Likewise.
177         (cp_parser_assignment_expression): Likewise.
178         (cp_parser_expression): Likewise.
179         (cp_parser_constant_expression): If an integral constant
180         expression is invalid, return error_mark_node.
181         (cp_parser_expression_statement): Pass cast_p.
182         (cp_parser_condition): Likewise.
183         (cp_parser_iteration_statement): Likewise.
184         (cp_parser_jump_statement): Likewise.
185         (cp_parser_mem_initializer): Likewise.
186         (cp_parser_template_argument): Likewise.
187         (cp_parser_parameter_declaration): Likewise.
188         (cp_parser_initializer): Likewise.
189         (cp_parser_throw_expression): Likewise.
190         (cp_parser_attribute_list): Likewise.
191         (cp_parser_simple_cast_expression): Likewise.
192         (cp_parser_functional_cast): Likewise.
193         (cp_parser_late_parsing_default_args): Likewise.
194         (cp_parser_sizeof_operand): Save/restore
195         non_integral_constant_expression_p.
197 2005-01-31  Mike Stump  <mrs@apple.com>
199         * parser.c (cp_lexer_new_main): Get the first token, first, before
200         doing anything.
202 2005-01-31  Mark Mitchell  <mark@codesourcery.com>
204         * decl.c (start_decl): Add missing parentheses.
206 2005-01-30  Mark Mitchell  <mark@codesourcery.com>
208         PR c++/19555
209         * cp-tree.h (DECL_USE_TEMPLATE): Expand documentation.
210         * decl.c (duplicate_decls): Do not discard
211         DECL_IMPLICIT_INSTANTIATION when merging declarations.
212         (start_decl): Do not SET_DECL_TEMPLATE_SPECIALIZATION for
213         variables that do not have DECL_USE_TEMPLATE.
215         PR c++/19395
216         * decl.c (grokdeclarator): Refactor code so that qualified names
217         are never allowed as the declarator in a typedef.
219         PR c++/19367
220         * name-lookup.c (do_nonmember_using_decl): Avoid overloading
221         builtin declarations.
223         PR c++/19457
224         * call.c (convert_like_real): Inline call to
225         dubious_conversion_warnings here.
226         * cp-tree.h (dubious_conversion_warnings): Remove.
227         * semantics.c (finish_unary_op_expr): Copy INTEGER_CSTs before
228         setting TREE_NEGATED_INT.
229         * typeck.c (dubious_conversion_warnings): Remove.
231         PR c++/19349
232         * name-lookup.c (pushdecl_namespace_level): Avoid accessing free'd
233         memory. 
235 2005-01-28  Mark Mitchell  <mark@codesourcery.com>
237         PR c++/19253
238         * parser.c (cp_parser_diagnose_invalid_type_name): Commit to
239         tentative parses.
241         PR c++/19667
242         * pt.c (redeclare_class_template): Robustify.
244 2005-01-27  Steven Bosscher  <stevenb@suse.de>
246         * decl.c (finish_case_label): Use SWITCH_STMT accessor macros
247         instead of SWITCH_EXPR ones.
248         * pt.c (tsubst_expr): Likewise.
249         * semantics.c (begin_switch_stmt, finish_switch_cond,
250         finish_switch_stmt): Likewise.
252 2005-01-26  J"orn Rennecke <joern.rennecke@st.com>
254         PR c++/18370
255         * parser.c (cp_parser_initializer_clause): Initialize *non_constant_p.
257 2005-01-25  Andrew Pinski  <pinskia@physics.uc.edu>
259         * class.c (abort_fndecl_addr): New variable.
260         (build_vtbl_initializer): If we have a pure virtual function
261         share the abort function's address.
262         Include gt-cp-class.h at the end.
263         * config-lang.in (gtfiles): Add cp/class.c.
265 2005-01-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
267         * cxx-pretty-print.c (pp_cxx_statement): Add prototype. Make static.
268         (pp_cxx_function_definition): Make static.
269         * cxx-pretty-print.h (pp_cxx_statement): Remove prototype.
270         (pp_cxx_function_definition): Likewise.
272 2005-01-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
274         * name-lookup.c (print_binding_level): Make static.
275         (constructor_name_full): Make static inline.
276         (current_decl_namespace): Make static.
277         * name-lookup.h (constructor_name_full): Remove prototype.
278         (print_binding_level): Likewise.
279         (current_decl_namespace): Likewise.
281 2005-01-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
283         * decl.h (debug_bindings_indentation): Remove.
285 2005-01-23  Kazu Hirata  <kazu@cs.umass.edu>
287         * typeck.c: Fix a comment typo.
289 2005-01-21  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
291         PR c++/19208
292         * pt.c (fold_decl_constant_value): Always call fold_non_dependent_expr
293         at least once.
294         (tsubst): Use fold_decl_constant_value in place of a bare call to
295         integral_constant_value.
297 2005-01-20  Kazu Hirata  <kazu@cs.umass.edu>
299         * typeck.c (more_qualified_p): Remove.
300         * cp-tree.h: Remove the corresponding prototype.
302 2005-01-19  Matt Austern  <austern@apple.com>
304         * typeck.c (comptypes): Handle return code from objc_comptypes
305         correctly.
306         
307 2005-01-19  Kazu Hirata  <kazu@cs.umass.edu>
309         * cp-tree.h, name-lookup.h: Remove unused prototypes.
311 2005-01-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
313         PR c++/19375
314         * semantics.c (finish_id_expression): Disable access checking for
315         already lookuped FIELD_DECL.
317 2005-01-18  Kazu Hirata  <kazu@cs.umass.edu>
319         * decl.c (delete_block): Remove.
320         * cp-tree.h: Remove the corresponding prototype.
322         * decl.c (vtable_decl_p, vtype_decl_p, walk_globals_data,
323         walk_vtables_r, walk_vtables, walk_globals_r, walk_globals):
324         Remove.
325         * cp-tree.h: Remove the corresponding prototypes.
327         * tree.c (count_functions, bound_pmf_p, cp_is_overload_p,
328         cp_update_decl_after_saving, name_p): Remove.
329         * cp-tree.h: Remove the corresponding prototypes.
331 2005-01-18  Andrew Pinski  <pinskia@physics.uc.edu>
333         PR c/19472
334         * semantics.c (finish_asm_stmt): Strip nops off
335         input memory operands.
337 2005-01-18  Kazu Hirata  <kazu@cs.umass.edu>
339         * Make-lang.in, call.c, cvt.c, init.c, rtti.c, tree.c,
340         typeck2.c: Update copyright.
342 2005-01-16  Kazu Hirata  <kazu@cs.umass.edu>
344         * class.c (get_enclosing_class): Remove.
345         * cp-tree.h: Remove the corresponding prototypes.
347         * cvt.c (convert_lvalue): Remove.
348         * cp-tree.h: Remove the corresponding prototype.
350         * pt.c (tinst_for_decl): Remove.
351         * cp-tree.h: Remove the corresponding prototypes.
353         * tree.c (hash_chainon): Remove.
354         * cp-tree.h: Remove the corresponding prototypes.
356 2005-01-15  Jakub Jelinek  <jakub@redhat.com>
358         PR c++/19263
359         * typeck2.c (split_nonconstant_init_1) <case VECTOR_TYPE>: Put a copy
360         of CONSTRUCTOR's node into MODIFY_EXPR, as the original is modified.
362 2005-01-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
364         * Make-lang.in (cp-warn): Don't append $(WERROR).
366 2005-01-10  Kazu Hirata  <kazu@cs.umass.edu>
368         * cp-tree.h: Fix a comment typo.
370 2005-01-07  Nathan Sidwell  <nathan@codesourcery.com>
372         PR c++/19298
373         * pt.c (tsubst_qualified_id): Call convert_from_reference.
375 2005-01-06  Mark Mitchell  <mark@codesourcery.com>
377         PR c++/19244
378         * class.c (add_implicitly_declared_members): Remove dead code.
379         * decl.c (grokfndecl): Add sfk parameter.  Use it do set
380         DECL_CONSTRUCTOR_P.
381         (grokdeclarator): Adjust calls to grokfndecl.
382         * method.c (implicitly_declare_fn): Improve documentation.
383         * parser.c (cp_parser_direct_declarator): Do not consider a
384         function to be a constructor if the containing class was
385         originally anonymous.
387 2005-01-06  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
389         PR c++/17154
390         * search.c (lookup_field_1): Handle using declaration in
391         class template partial specialization.
393 2005-01-06  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
395         PR c++/19258
396         * pt.c (push_access_scope): Handle friend defined in class.
397         (pop_access_scope): Likewise.
399 2005-01-06  Nathan Sidwell  <nathan@codesourcery.com>
401         PR c++/19270
402         * pt.c (tsubst_copy) <ARRAY_REF case>: Handle separately.
403         (tsubst_copy_and_build) <ARRAY_REF case>: Remove obsolete
404         array-new handling code.  Use build_x_binary_op.
406 2005-01-05  Nathan Sidwell  <nathan@codesourcery.com>
408         PR c++/19030
409         * cp-tree.h (start_decl): Take pointer to pushed scope, not bool.
410         * name-lookup.h (push_scope): Return pushed scope, not flag.
411         * name-lookup.c (push_scope): Return scope that should be popped,
412         not a flag.
413         * decl.c (start_decl): Adjust.
414         (grokfndecl): Adjust scope push and pop.
415         * decl2.c (check_classfn): Likewise.
416         * parser.c (cp_parser_condition, cp_parser_conversion_function_id,
417         cp_parser_init_declarator, cp_parser_direct_declarator,
418         cp_parser_class_specifier, cp_parser_class_head,
419         cp_parser_lookup_name,
420         cp_parser_constructor_declarator_p): Likewise.
421         * pt.c (instantiate_class_template,
422         resolve_typename_type): Likewise.
424 2005-01-03  Volker Reichelt  <reichelt@igpm.rwth-aaachen.de>
426         PR c++/14136
427         * parser.c (cp_parser_unqualified_id): Do not issue error message
428         for typedef-name as destructor declarator when performing an
429         uncommitted tentative parse.
431 2005-01-01  Steven Bosscher  <stevenb@suse.de>
433         PR middle-end/17544
434         * decl.c (finish_function): Fix comment.  Annotate the compiler
435         generated return with the current file name and line 0.
437 2004-12-31  Richard Henderson  <rth@redhat.com>
439         PR middle-end/17799
440         * call.c (make_temporary_var_for_ref_to_temp): Set DECL_IGNORED_P.
441         * class.c (build_vtable): Don't conditionallize setting it
442         based on DWARF2_DEBUG.
443         (layout_class_type): Set DECL_IGNORED_P.
444         * decl2.c (get_guard): Likewise.
445         * rtti.c (get_tinfo_decl, build_lang_decl): Likewise.
446         * tree.c (build_local_temp): Likewise.
448 2004-12-30  Mark Mitchell  <mark@codesourcery.com>
450         * cp-tree.h (cp_declarator): Split "name" field into
451         qualifying_scope and unqualified_name.
452         * decl.c (get_scope_of_declarator): Adjust accordingly.
453         (grokdeclarator): Likewise.
454         * decl2.c (grokfield): Likewise, and adjust call to
455         do_class_using_decl.
456         * name-lookup.c (do_class_using_decl): Split "decl" into
457         "scope" and "name".  Remove unnecessary code.
458         * name-lookup.h (do_class_using_decl): Adjust declaration.
459         * parser.c (make_id_declarator): Split "id" into qualifying_scope
460         and unqualified_name.
461         (cp_parser_using_declaration): Adjust call to do_class_using_decl.
462         (cp_parser_direct_declarator): Adjust to handle the fact that
463         cp_parser_declarator_id no longer returns a SCOPE_REF.
464         (cp_parser_direct_declarator): Likewise.
465         (cp_parser_declarator_id): Do not create a SCOPE_REF for qualified
466         names.
467         (cp_parser_member_declaration): Adjust call to make_id_declarator.
468         (cp_parser_check_declarator_template_parameters): Do not expect a
469         SCOPE_REF. 
470         
471         * decl.c (duplicate_decls): Call ggc_free on declarations we will
472         not be needing any longer.
474         PR c++/19190
475         * cvt.c (convert_to_void): Do not use STRIP_NOPs.
477 2004-12-28  Richard Henderson  <rth@redhat.com>
479         PR inline-asm/15740
480         * semantics.c (finish_asm_stmt): Resolve asm names.  Validate input
481         constraints.  Mark memory inputs addressable.
483 2004-12-27  Jason Merrill  <jason@redhat.com>
485         * decl.c (expand_static_init): Don't use shortcut if
486         targetm.relaxed_ordering.
488 2004-12-27  Mark Mitchell  <mark@codesourcery.com>
490         PR c++/19149
491         * decl.c (check_tag_decl): Robustify.
493 2004-12-23  Mark Mitchell  <mark@codesourcery.com>
495         PR c++/17595
496         * parser.c (cp_parser_error): Issue better messages about
497         #pragma in locations where it is not permitted.
499         PR c++/17413
500         * pt.c (check_instantiated_args): Remove bogus SFINAE code.
502         * cvt.c (convert_to_void): Fix typo in comment.
504 2004-12-23  Alexandre Oliva  <aoliva@redhat.com>
506         PR c++/18962
507         * pt.c (check_explicit_specialization): Use the argument list from
508         the definition in a template function specialization definition.
510 2004-12-23  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
512         PR c++/18733
513         * pt.c (check_explicit_specialization): Use special logic to validate
514         befriended specializations.
516 2004-12-22  Mark Mitchell  <mark@codesourcery.com>
518         * rtti.c (emit_support_tinfos): Avoid using C99 semantics.
520         PR c++/18464
521         * call.c (build_this): In templates, do not bother with
522         build_unary_op.
523         * typeck.c (unary_complex_lvalue): In a template, always refuse
524         simplifications. 
526         PR c++/18492
527         * cp-gimplify.c (cp_genericize): Relax assertion.
529         PR c++/11224
530         * cvt.c (convert_to_void): Warn about unused values.
532         PR c++/18257
533         * rtti.c (emit_support_tinfos): On systems without weak symbols,
534         emit the runtime library type-info objects as non-COMDAT. 
536 2004-12-21  Mark Mitchell  <mark@codesourcery.com>
538         PR c++/18378
539         * call.c (convert_like_real): Do not permit the use of a copy
540         constructor to copy a packed field.
542         PR c++/19063
543         * decl.c (grokdeclarator): Return error_mark_node, not
544         void_type_node, to indicate errors.
545         * parser.c (cp_parser_template_parameter_list): Robustify.
546         (cp_parser_template_parameter): Likewise.
548         PR c++/19034
549         * tree.c (cp_tree_equal): Handle OVERLOAD.
551 2004-12-22  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
553         * decl.c (define_label): Use POP_TIMEVAR_AND_RETURN.
554         * name-lookup.c (pushdecl_class_level): Likewise.
556 2004-12-21  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
558         * name-lookup.c (pushtag): Add missing POP_TIMEVAR_AND_RETURN.
560 2004-12-21  Andrew Pinski  <pinskia@physics.uc.edu>
562         PR c++/18984
563         * cp-gimplify.c (cp_genericize_r): Don't insert first but instead
564         check to see if contains the pointer.  Insert the statement before
565         returning.
567 2004-12-21  Nathan Sidwell  <nathan@codesourcery.com>
569         PR c++/14075
570         * decl.c (check_initializer): Check string initializer of array is
571         not parenthesized.
572         * cp-tree.h (PAREN_STRING_LITERAL_P): New.
573         * semantics.c (finish_parenthesized_expr): Mark a STRING_CST.
574         * error.c (dump_expr): <STRING_CST case> Add parens, if needed.
576         * cp-tree.def (TEMPLATE_TYPE_PARM,
577         BOUND_TEMPLATE_TEMPLATE_PARM, TYPE_OF_TYPE, TYPENAME_TYPE): Reorder 
578         for better code efficiency.
579         * cp-tree.h (CLASS_TYPE_P): Short circuit IS_AGGR_TYPE check.
580         (CAN_HAVE_FULL_LANG_DECL_P): Reorder for better optimization.
581         (INTEGRAL_CODE_P, CP_INTEGRAL_TYPE_P,
582         INTEGRAL_OR_ENUMERATION_TYPE_P, SCALAR_TYPE_P,
583         CP_AGGREGATE_TYPE_P, TYPE_PTROB_P, TYPE_REF_OBJ_P,
584         TYPE_PTROBV_P): Likewise. 
586         PR c++/18975
587         * method.c (do_build_copy_constructor): Refactor. Don't const
588         qualify a mutable field.
589         (do_build_assign_ref): Likewise.
591 2004-12-20  Matt Austern <austern@apple.com>
593         PR c++/19044
594         * decl.c (make_rtl_for_nonlocal_decl): Use
595         set_builtin_user_assembler_name.
596         
597 2004-12-19  Mark Mitchell  <mark@codesourcery.com>
599         * cp-tree.h (note_decl_for_pch): New function.
600         * class.c (build_clone): Call note_decl_for_pch.
601         * semantics.c (finish_member_declaration): Likewise.
602         (note_decl_for_pch): New function.
604 2004-12-17  Steven Bosscher  <stevenb@suse.de>
606         * init.c (build_zero_init): max_index is the number of
607         elements, minus 1.
609 2004-12-17  Nathan Sidwell  <nathan@codesourcery.com>
611         PR c++/18721
612         * class.c (add_method): Do not push conversion operators into a
613         binding level.
615         * cp-tree.h (CLASSTYPE_PRIMARY_TEMPLATE_TYPE): Reformat.
616         * error.c (dump_decl): <TYPE_DECL case> Remove extraneous braces.
618 2004-12-16  Nathan Sidwell  <nathan@codesourcery.com>
620         PR c++/18905
621         * cp-tree.h (integral_constant_value): Declare.
622         * call.c (null_ptr_cst_p): Use integral_constant_value, not
623         decl_constant_value.
624         (convert_like_real): Likewise.
625         * class.c (check_bitfield_decl): Likewise.
626         * cvt.c (ocp_convert): Likewise.
627         (convert): Remove unnecessary decl_constant_value call.
628         * decl.c (compute_array_index_type): Use integral_constant_value,
629         not decl_constant_value.
630         (build_enumerator): Likewise.
631         * decl2.c (grokfield): Likewise.
632         * init.c (decl_constant_value): Simplify.
633         (integral_constant_value): New.
634         * pt.c (fold_decl_constant_value): Use integral_constant_value,
635         remove subsequent check.
636         (tsubst): Use integral_constant_value, not decl_constant_value.
637         (tsubst_copy, unify): Likewise.
638         * typeck.c (decay_conversion): Likewise.
639         (build_compound_expr): Remove unnecessary decl_constant_value
640         calls.
641         (build_static_cast_1, build_reinterpret_cast_1):
642         (convert_for_assignment): Remove comment about not calling
643         decl_constant_value.
645 2004-12-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
647         PR c++/18825
648         * pt.c (instantiate_class_template): Set input_location for
649         friend function.
650         (tsubst_friend_function): Don't set input_location here.
651         Make sure the context is complete if necessary.
653 2004-12-15  Nathan Sidwell  <nathan@codesourcery.com>
655         PR c++/18981
656         * parser.c (cp_parser_lookup_name): Remove unneeded TYPENAME_TYPE
657         flag setting.
659 2004-12-14  Mark Mitchell  <mark@codesourcery.com>
661         PR c++/18738
662         * decl.c (make_typename_type): Do not handle namespace-scoped
663         names here.
664         (tag_name): Handle typename_type.
665         (check_elaborated_type_specifier): Handle typenames.
666         * parser.c (cp_parser_diagnose_invalid_type_name): Improve
667         comment.
668         (cp_parser_elaborated_type_specifier): Use
669         cp_parser_diagnose_invalid_type_name.
671 2004-12-14  Andrew Pinski  <pinskia@physics.uc.edu>
673         PR c++/18965
674         * init.c (build_zero_init): If the max_index is 0, there is no
675         need to create a RANGE_EXPR.
677 2004-12-14  Mark Mitchell  <mark@codesourcery.com>
679         PR c++/18793
680         * cp-objcp-common.c (cp_expr_size): Loosen assertion.
682 2004-12-14  Nathan Sidwell  <nathan@codesourcery.com>
684         PR c++/18949
685         * pt.c (tsubst_copy_and_build): <INDIRECT_REF case> Check that a
686         REFERENCE_REF_P is dereferencing a reference type.
687         * typeck.c (build_static_cast): Convert from reference even in a
688         template.
689         (build_reinterpret_cast, build_const_cast, build_c_cast): Likewise.
691 2004-12-14  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
693         * parser.c (cp_parser_uncommitted_to_tentative_parse_p): New function.
694         (cp_parser_name_lookup_error): Use it.
695         (cp_parser_check_for_invalid_template_id): Likewise.
696         (cp_parser_skip_to_closing_parenthesis): Likewise.
697         (cp_parser_nested_name_specifier_opt): Likewise.
698         (cp_parser_simple_declaration, cp_parser_template_id): Likewise.
699         (cp_parser_parameter_declaration_list): Likewise.
700         (cp_parser_parameter_declaration): Likewise.
701         (cp_parser_template_name): Let cp_parser_simulate_error perform
702         the checking.
703         (cp_parser_committed_to_tentative_parse): Remove.
705 2004-12-13  Andrew Pinski  <pinskia@physics.uc.edu>
707         PR c++/18968
708         * class.c (build_base_path): Convert the zero constant to the correct
709         type when comparing.
711 2004-12-13  Mark Mitchell  <mark@codesourcery.com>
713         PR c++/18925
714         * class.c (layout_class_type): Determine the visibility of static
715         data members.
717 2004-12-12  Roger Sayle  <roger@eyesopen.com>
719         PR middle-end/12454
720         * cp-gimplify.c (gimplify_if_stmt): Optimize the case where the
721         condition is a constant and the unexecuted clause is empty.
723 2004-12-10  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
725         PR c++/18731
726         * parser.c (cp_parser_class_head): Reject typedef-name in class head.
728 2004-12-09  Matt Austern  <austern@apple.com>
730         PR c++/18514
731         * name-lookup.c (do_nonmember_using_decl): A real function
732         declaration takes precedence over an anticipated declaration.
733         
734 2004-12-09  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
736         * parser.c (cp_parser_member_declaration): Fix comment typo.
738 2004-12-09  Alexandre Oliva  <aoliva@redhat.com>
740         PR c++/18757
741         * parser.c (cp_parser_template_id): Don't create a CPP_TEMPLATE_ID
742         if parsing failed.
744 2004-12-09  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
746         PR c++/18073
747         * typeck.c (build_reinterpret_cast_1): Allow cast from vector type.
749 2004-12-09  Nathan Sidwell  <nathan@codesourcery.com>
751         PR c++/16681
752         * init.c (build_zero_init): Build a RANGE_EXPR for an array
753         initializer.
755 2004-12-08  Kelley Cook  <kcook@gcc.gnu.org>
757         * typeck.c: Remove DOS line endings.
759 2004-12-08  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
761         PR c++/18100
762         * decl.c (lookup_and_check_tag): Diagnose nested class with 
763         the same name as enclosing class.
765 2004-12-08  Nathan Sidwell  <nathan@codesourcery.com>
767         PR c++/18803
768         * cp-tree.h (REFERENCE_REF_P): New.
769         (CPTI_TYPE_INFO_TYPE): Rename to ...
770         (CPTI_CONST_TYPE_INFO_TYPE): ... here.
771         (CPTI_TYPE_INFO_REF_TYPE): Remove.
772         (type_info_type_node): Rename to ...
773         (const_type_info_type_node): ... here.
774         (type_info_ref_type): Remove.
775         * call.c (build_user_type_conversion): Reformat.
776         (resolve_args): Do not convert_from_reference.
777         (build_object_call): Call convert_from_reference.
778         (prep_operand): Do not convert_from_reference.
779         (build_new_method_call): Likewise.
780         * class.c (build_vfield_ref): Likewise.
781         * cvt.c (convert_to_reference): Likewise.
782         (convert_from_reference): Build INDIRECT_REF here, not with
783         build_indirect_ref.
784         (convert_force): Do not convert_from_reference.
785         (build_expr_type_conversion): Likewise.
786         * decl.c (grok_reference_init): Likewise.
787         * decl2.c (delete_sanity): Likewise.
788         * except.c (initialize_handler_parm): Use POINTER_TYPE_P.
789         * init.c (build_dtor_call): Do not convert_from_reference.
790         * parser.c (cp_parser_template_argument): Unwrap indirected
791         reference. Allow TEMPLATE_PARM_INDEX as an object parm.
792         * pt.c (tsubst_copy_and_build) <case INDIRECT_REF>: Use
793         convert_from_reference, if indicated.
794         <case CALL_EXPR>: Do not convert_from_reference.
795         <case PARM_DECL, VAR_DECL>: Convert_from_reference if needed.
796         (tsubst_initializer_list): Do not convert_from_reference.
797         * rtti.c (init_rtti_processing): Adjust node creation.
798         (throw_bad_typeid): Use const_type_info_type_node.
799         Do not convert_from_reference.
800         (typeid_ok_p): Use const_type_info_type_node.
801         (build_typeid, get_typeid): Always return type_info typed node.
802         (build_dynamic_cast_1): Dont convert_from_reference. Refactor.
803         * semantics.c (finish_stmt_expr_expr): Do not
804         convert_from_reference.
805         (finish_id_expression): Convert_from_reference as appropriate.
806         * typeck.c (decay_conversion): Do not convert_from_reference.
807         (finish_class_member_access_expr): Likewise.
808         (build_indirect_ref): Use POINTER_TYPE_P.
809         (convert_arguments): Do not convert_from_reference.
810         (build_modify_expr): Likewise.
811         (convert_for_initialization): Likewise.
812         * typeck2.c (build_x_arrow): Likewise.
814 2004-12-07  Ziemowit Laski  <zlaski@apple.com>
816         * cp-tree.h (struct lang_type_class): Rename 'objc_protocols'
817         field to 'objc_info'.
819 2004-12-07  Kazu Hirata  <kazu@cs.umass.edu>
821         * pt.c: Replace a use of first_rtl_op with TREE_CODE_LENGTH.
823 2004-12-07  Roger Sayle  <roger@eyesopen.com>
825         * name-lookup.c (leave_scope): We only need to update
826         class_binding_level when leaving a class scope.
828 2004-12-06  Ziemowit Laski  <zlaski@apple.com>
830         * cp-tree.h (struct lang_type_class): Add 'objc_protocols' field.
832 2004-12-04  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
834         PR c++/17011, c++/17971
835         * pt.c (tsubst_copy) <FIELD_DECL case>: Check and diagnose
836         invalid field.
837         (tsubst_copy_and_build) <COMPONENT_REF case>: Check
838         error_mark_node after member substitution.
839         * semantics.c (finish_id_expression): Call
840         finish_non_static_data_member for non-dependent FIELD_DECL.
842 2004-12-03  Nathan Sidwell  <nathan@codesourcery.com>
844         PR c++/18782
845         * decl.c (grokdeclarator): Make sure class in pointer to member is
846         not a namespace.
848 2004-12-02  Nathan Sidwell  <nathan@codesourcery.com>
850         PR c++/18318
851         * parser.c (cp_parser_new_type_id): Move array size expression
852         checks from here ...
853         * init.c (build_new): ... to here.
855 2004-12-02  Nathan Sidwell  <nathan@codesourcery.com>
857         PR c++/18758
858         * parser.c (cp_parser_class_head): Return NULL_TREE when
859         push_template_decl fails.  Update comment.
861 2004-12-02  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
863         PR c++/15664, c++/18276
864         * pt.c (tsubst_decl) <TEMPLATE_DECL case>: Reorganize.  Correctly
865         tsubst TEMPLATE_DECL that is a TEMPLATE_TEMPLATE_PARM.
867 2004-12-02  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
869         PR c++/18123
870         * parser.c (cp_parser_type_specifier): Catch template declaration
871         of enum.
873 2004-12-01  Matt Austern  <austern@apple.com>
875         * name-lookup.c (namespace_binding): Omit alias check for global
876         namespace.
878 2004-12-01  Nathan Sidwell  <nathan@codesourcery.com>
880         PR c++/18729
881         * parser.c (cp_parser_class_name): Check decl's type is not
882         error_mark_node.
884         PR c++/17431
885         * call.c (standard_conversion): Add FLAGS parameter. Do not allow
886         derived to base conversion when checking constructor
887         accessibility.
888         (implicit_conversion): Pass FLAGS to standard_conversion.
889         (check_constructir_callable): Disallow conversion functions.
891 2004-11-30  Kazu Hirata  <kazu@cs.umass.edu>
893         * parser.c: Fix comment typos.
895 2004-11-27  Mark Mitchell  <mark@codesourcery.com>
897         PR c++/18368
898         * parser.c (cp_parser_check_for_definition_in_return_type): Take
899         the defined type as a parameter, and inform the user about the
900         possibility of a missing semicolon.
901         (cp_parser_explicit_instantiation): Adjust call to
902         cp_parser_check_for_definition_in_return_type.
903         (cp_parser_init_declarator): Likewise.
904         (cp_parser_member_declaration): Likewise.
906         PR c++/18674
907         * cp-tree.def (TYPENAME_TYPE): Remove discussion of implicit
908         typename from comments.
909         * cp-tree.h (TYPENAME_IS_ENUM_P): New macro.
910         (TYPENAME_IS_CLASS_P): Likewise.
911         (make_typename_type): Change prototype.
912         * decl.c (struct_typename_info): New type.
913         (typename_compare): Expect the second argument to be a
914         typename_info, not a tree.
915         (build_typename_type): Add tag_type parameter.  Do not create a
916         new type until necessary.
917         (make_typename_type): Add tag_type parameter.
918         * error.c (TYPENAME_TYPE): Print tags other than "typename" if
919         appropriate.
920         * friend.c (make_friend_class): Adjust call to make_typename_type.
921         * parser.c (cp_parser_make_typename_type): Likewise.
922         (cp_parser_primary_expression): Adjust call to
923         cp_parser_lookup_name.
924         (cp_parser_unqualified_id): Adjust calls to cp_parser_class_name.
925         (cp_parser_class_or_namespace_name): Likewise.
926         (cp_parser_postfix_expression): Adjust calls to
927         make_typename_type.
928         (cp_parser_mem_initializer_id): Adjust calls to
929         cp_parser_class_name.
930         (cp_parser_type_parameter): Adjust calls to cp_parser_lookup_name.
931         (cp_parser_template_name): Likewise.
932         (cp_parser_template_argument): Likewise.
933         (cp_parser_type_name): Adjust call to cp_parser_class_name.
934         (cp_parser_elaborated_type_specifier): Adjust calls to
935         make_typename_type and cp_parser_lookup_name.
936         (cp_parser_namespace_name): Likewise.
937         (cp_parser_class_name): Replace type_p parameter with tag_type.
938         Adjust calls to make_typename_type and cp_parser_lookup_name.
939         (cp_parser_class_head): Adjust calls to cp_parser_class_name.
940         (cp_parser_base_specifier): Likewise.
941         (cp_parser_lookup_name): Replace is_type parameter with tag_type.
942         Adjust calls to make_typename_type and lookup_qualified_name.
943         (cp_parser_lookup_name_simple): Adjust call to
944         cp_parser_lookup_name.
945         (cp_parser_constructor_declarator_p): Adjust call to
946         cp_parser_class_name.
947         * pt.c (convert_template_argument): Adjust all to
948         make_typename_type.
949         (tsubst_decl): Do not pre-substitute the type of the declaration.
950         (tsubst): Hand off declarations more quickly.  Adjust call to
951         make_typename_type. 
953         PR c++/18512
954         * parser.c (cp_parser_postfix_dot_deref_expression): Robustify.
956 2004-11-29  Daniel Jacobowitz  <dan@codesourcery.com>
958         PR c/7544
959         * Make-lang.in (cp/decl2.o): Update dependencies.
960         * decl2.c (finish_file): Call maybe_apply_pending_pragma_weaks.
962 2004-11-29  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
964         PR c++/18652
965         * name-lookup.c (pushtag): Change return type to tree.
966         * cp-tree.h (pushtag): Adjust declaration.
967         * decl.c (xref_tag, start_enum): Use return value of pushtag.
968         * pt.c (push_template_decl_real): Return immediately if
969         pushdecl_namespace_level returns error_mark_node.
971 2004-11-27  Kazu Hirata  <kazu@cs.umass.edu>
973         * pt.c: Fix a comment typo.
975 2004-11-27  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
977         Friend class name lookup 4/n
978         * class.c (pushclass): Don't call cxx_remember_type_decls.
979         * cp-tree.h (clear_anon_tags): Remove declaration.
980         * decl.c (grokdeclarator): Don't call lookup_tag_reverse.
981         * name-lookup.c (binding_entry_free, binding_table_free): Comment
982         out functions.
983         (binding_table_find_anon_type, binding_table_reverse_maybe_remap,
984         binding_table_remove_anonymous_types, cxx_remember_type_decls,
985         bt_print_entry, clear_anon_tags, follow_tag_typedef, lookup_tag,
986         lookup_tag_reverse): Remove
987         (begin_scope, leave_scope, kept_level_p, print_binding_level):
988         Don't use type_decls field in cp_binding_level.
989         (maybe_process_template_type_declaration, pushtag): Set
990         CLASSTYPE_NESTED_UTDS directly.
991         * name-lookup.h (binding_table_remove_anonymous_types,
992         cxx_remember_type_decls, lookup_tag, lookup_tag_reverse): Remove
993         declaration.
994         (cp_binding_level): Remove type_decls field.
996 2004-11-26  Kazu Hirata  <kazu@cs.umass.edu>
998         * typeck.c: Fix a comment typo.
1000 2004-11-25  Mark Mitchell  <mark@codesourcery.com>
1002         PR c++/18445
1003         * class.c (instantiate_type): Treat NON_DEPENDENT_EXPRs with
1004         unknown_type as non matching.  Tidy up.
1005         * pt.c (build_non_dependent_expr): Do not build a
1006         NON_DEPENDENT_EXPR for a VAR_DECL.
1008         PR c++/18001
1009         * cp-tree.h (lvalue_or_else): Remove declaration.
1010         * tree.c (lvalue_or_else): Remove.
1011         * typeck.c (build_unary_op): Adjust call to lvalue_or_else.
1012         (build_modify_expr): Likewise.
1014         PR c++/18625
1015         * decl.c (duplicate_decls): Return error_mark_node on error, as
1016         specified.
1018         PR c++/18466
1019         * decl.c (grokvardecl): Keep track of whether or not a there was
1020         explicit qualification.
1021         * name-lookup.c (set_decl_namespace): Complain about explicit
1022         qualification of a name within its own namespace.
1024         PR c++/18545
1025         * typeck.c (check_return_expr): Robustify.
1027 2004-11-25  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1029         Friend class name lookup 3/n, PR c++/3332
1030         * name-lookup.c (push_inner_scope, pop_inner_scope): New functions.
1031         (lookup_type_scope): Don't deal with name from user declaration
1032         specially.
1033         * name-lookup.h (push_inner_scope, pop_inner_scope): Add declarations.
1034         * parser.c (cp_parser_class_specifier): Use push_inner_scope and
1035         pop_inner_scope.
1037 2004-11-25  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1039         Friend class name lookup 2/n, PR c++/14513, c++/15410
1040         * name-lookup.c (lookup_name_real): Simplify.
1041         (lookup_type_scope): Add SCOPE parameter.  Handle friend class
1042         lookup.
1043         * name-lookup.h (tag_scope): New enum type.
1044         (lookup_type_scope): Adjust declaration.
1045         * decl.c (lookup_and_check_tag, xref_tag, xref_tag_from_type):
1046         Change bool parameter GLOBALIZED to TAG_SCOPE parameter SCOPE.
1047         (start_enum): Likewise.  Add assertion test that NAME is 
1048         IDENTIFIER_NODE.  Use anonymous name for dummy ENUMERAL_TYPE in
1049         case of error.
1050         * cp-tree.h (xref_tag, xref_tag_from_type): Adjust declarations.
1051         * parser.c (cp_parser_elaborated_type_specifier,
1052         cp_parser_class_head): Adjust call to xref_tag.
1053         * pt.c (lookup_template_class, instantiate_class_template):
1054         Likewise.
1055         * rtti.c (init_rtti_processing, build_dynamic_cast_1,
1056         tinfo_base_init, emit_support_tinfos): Likewise.
1058 2004-11-25  Joseph S. Myers  <joseph@codesourcery.com>
1060         * g++spec.c, lex.c: Avoid ` as left quote in diagnostics.
1062 2004-11-24  Mark Mitchell  <mark@codesourcery.com>
1064         PR c++/17473
1065         * name-lookup.c (supplement_binding): Do not allow typedefs to be
1066         redefined in class scope.
1068         PR c++/18285
1069         * parser.c (cp_parser_set_decl_type_spec): Do not try to allow
1070         redefinitions of builtin types other that "bool" or "wchar_t".
1072 2004-11-24  Steven Bosscher  <stevenb@suse.de>
1074         * decl.c (cxx_init_decl_processing): Don't clear
1075         flag_inline_functions.
1077 2004-11-24  Mark Mitchell  <mark@codesourcery.com>
1079         * pt.c (tsubst_function_type): Do not permit function types which
1080         return arrays or functions.
1082         PR c++/18586
1083         * parser.c (cp_parser_init_declarator): Do not pop scope twice.
1085         PR c++/18530
1086         * cp-tree.h (CTOR_NAME): Remove.
1087         (DTOR_NAME): Remove.
1088         * decl.c (initialize_predefined_identifiers): Add spaces to the
1089         end of constructor and destructor names.
1091 2004-11-24  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
1093         PR c++/8929
1094         * decl.c (start_decl): Check for invalid specialization headers.
1096 2004-11-24  Paolo Bonzini  <bonzini@gnu.org>
1098         PR c++/16882
1100         * call.c (standard_conversion): Move check for conversions between
1101         vector pointers...
1102         * typeck.c (ptr_reasonably_similar): ... here.
1104 2004-11-23  Ben Elliston  <bje@au.ibm.com>
1106         * cp-tree.h (context_as_string): Remove extern.
1107         * error.c (context_as_string): Remove.
1109         * cp-tree.h (cp_type_qual_from_rid): Remove extern.
1110         * lex.c (cp_type_qual_from_rid): Remove.
1112         * cp-tree.h (do_poplevel): Remove extern.
1113         (check_multiple_declarators): Likewise.
1114         * semantics.c (do_poplevel): Make static.
1115         (check_multiple_declarators): Remove.
1117         * cp-tree.h (check_final_overrider): Remove extern.
1118         * search.c (check_final_overrider): Make static.
1120         * cp-tree.h (build_artificial_parm): Remove extern.
1121         * decl2.c (build_artificial_parm): Make static.
1123 2004-11-22  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
1125         PR c++/18354
1126         * typeck.c (build_unary_op) <CONVERT_EXPR, NEGATE_EXPR>: Unify code.
1127         Make sure the result is always a rvalue.
1129 2004-11-16  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
1131         * decl.c (start_preparsed_function): Call check_function_type even
1132         in templates.
1133         (require_complete_types_for_parms): Skip dependent types.
1134         (check_function_type): Likewise.
1136 2004-11-16  Steven Bosscher  <stevenb@suse.de>
1138         * Make-lang.in (cp/decl.o, cp/search.o): Don't depend on stack.h.
1139         * search.c: Don't include it.
1141 2004-11-15  Andrew Pinski  <pinskia@physics.uc.edu>
1143         * cp-gimplify.c: Include pointer-set.h
1144         (cp_genericize_r): Use pointer_sets instead of a hashtable.
1145         Also instert the new statement for CLEANUP_STMT.
1146         (cp_genericize): Use pointer_sets instead of a hashtable.
1147         * Make-lang.in (cp-gimplify.o): Depend on pointer-set.h.
1149 2004-11-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1151         Friend class name lookup 1/n, PR c++/18471
1152         * decl.c (lookup_and_check_tag): New function.
1153         (xref_tag, start_enum): Use it.
1154         (check_elaborated_type_specifier): Move TEMPLATE_TYPE_PARM check
1155         before !DECL_IMPLICIT_TYPEDEF_P.  Also display previously declared
1156         location.
1157         * name-lookup.c (lookup_name_current_level): Rename to ...
1158         (lookup_name_innermost_nonclass_level): ... this.
1159         (lookup_type_scope): New function.
1160         * name-lookup.h (lookup_name_current_level): Rename to ...
1161         (lookup_name_innermost_nonclass_level): ... this.
1162         (lookup_type_scope): Add declaration.
1164 2004-11-14  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1166         PR c++/17344
1167         * pt.c (coerce_template_parms): Only emit error message about
1168         invalid template argument when TF_ERROR.
1170 2004-11-12  Mark Mitchell  <mark@codesourcery.com>
1172         PR c++/18389
1173         * decl.c (start_decl): Make sure to set *pop_scope_p.  Return
1174         error_mark_node to indicate errors.
1176         PR c++/18429
1177         * parser.c (cp_parser_direct_declarator): Disallow non-constant
1178         array bounds when not inside a function.
1180         PR c++/18436
1181         * pt.c (tsubst_copy_and_build): Do not do Koenig lookup when an
1182         unqualified name resolves to a member function.
1184         PR c++/18407
1185         * pt.c (tsubst_copy_and_build): Handle qualified names used from a
1186         derived class correctly.
1187         
1188         * decl2.c (import_export_decl): Fix typo in comment.
1189         * tree.c (pod_type_p): Likewise.
1191 2004-11-10  Andrew Pinski  <pinskia@physics.uc.edu>
1193         * typeck.c (cxx_mark_addressable): Add braces around the first if.
1195 2004-11-10  Adam Nemet  <anemet@lnxw.com>
1197         PR middle-end/18160  
1198         * typeck.c (cxx_mark_addressable): Issue an error if address of an
1199         explicit register variable is requested.
1201 2004-11-10  Nathan Sidwell  <nathan@codesourcery.com>
1203         PR c++/18143
1204         * cp-tree.h (NON_THUNK_FUNCTION_CHECK, THUNK_FUNCTION_CHECK): New.
1205         (struct lang_decl_flags): Add thunk_p flag.
1206         (struct lang_decl): Remove separate fixed_offset. Place
1207         cloned_function and fixed_offset into union.
1208         (DECL_CLONED_FUNCTION_P, DECL_CLONED_FUNCTION): Adjust.
1209         (DECL_THUNK_P, SET_DECL_THUNK_P): Adjust.
1210         (THUNK_FIXED_OFFSET): Adjust.
1211         * method.c (make_thunk): Adjust.
1213 2004-11-09  Mark Mitchell  <mark@codesourcery.com>
1215         PR c++/18369
1216         * init.c (build_new_1): Handle parenthesized type-ids that name an
1217         array type.  Tidy.
1219 2004-11-09  Joseph S. Myers  <joseph@codesourcery.com>
1221         * call.c, class.c, decl.c, decl2.c, error.c, mangle.c, parser.c,
1222         pt.c, search.c, semantics.c, typeck.c: Use %q, %< and %> for
1223         quoting in diagnostics.
1224         * parser.c (cp_parser_sizeof_operand): Use '' instead of `' for
1225         quoting in printf format.
1226         * decl.c (duplicate_decls, start_decl): Use %qD instead of
1227         unquoted %D.
1229 2004-11-08  Kazu Hirata  <kazu@cs.umass.edu>
1231         * class.c, decl.c, lex.c, name-lookup.c, parser.c, pt.c,
1232         search.c, typeck2.c: Fix comment formatting.
1234 2004-11-04  Ulrich Weigand  <uweigand@de.ibm.com>
1235         
1236         PR tree-optimization/18184
1237         * cp-objcp-common.c (cxx_types_compatible_p): Do not treat pointers
1238         of different modes or alias-all flags as equivalent.
1239         * typeck.c (comptypes): Likewise.
1241 2004-11-04  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
1243         DR 49, 100
1244         * cp-tree.h (TYPE_REF_OBJ_P): New macro.
1245         (TYPE_PTR_P, TYPE_PTROB_P, TYPE_PTROBV_P, TYPE_PTRFN_P,
1246         TYPE_REFFN_P): Document.
1247         (fold_decl_constant_value): New prototype.
1248         * pt.c (convert_nontype_argument_function): Rewrite and extract
1249         parts into...
1250         (fold_decl_constant_value, convert_nontype_argument_function): New.
1251         (lookup_template_class): Add comment about useless double call.
1252         * mangle.c (write_expression): Strip conversions before lowering
1253         pointer to members.
1254         * cvt.c (ocp_convert): Check LOOKUP_COMPLAIN for a pedwarn. Disallow
1255         enum to enum conversion.
1257 2004-11-02  Mark Mitchell  <mark@codesourcery.com>
1259         PR c++/18124
1260         * parser.c (cp_parser_type_parameter): Robustify.
1262         PR c++/18155
1263         * parser.c (cp_parser_single_declaration): Disallow template
1264         typedefs.
1266         PR c++/18177
1267         * typeck.c (build_const_cast): Use error_operand_p.
1269 2004-11-02  Ziemowit Laski  <zlaski@apple.com>
1271         * cp-lang.c (cxx_types_compatible_p): Remove prototype and definition.
1272         (LANG_HOOKS_TYPES_COMPATIBLE_P): Move to cp-objcp-common.h.
1273         * cp-objcp-common.c (cxx_types_compatible_p): Moved definition here
1274         from cp-lang.c.
1275         * cp-objcp-common.h (cxx_types_compatible_p): Moved prototype here
1276         from cp-lang.c.
1277         (LANG_HOOKS_TYPES_COMPATIBLE_P): Moved here from cp-lang.c.
1279 2004-11-01  Nathan Sidwell  <nathan@codesourcery.com>
1281         PR c++/18064
1282         * search.c (check_final_overrider): Deprecate gnu covariant extension.
1284 2004-10-31  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1286         Convert diagnostics to use quoting flag q 9/n
1287         * typeck.c (build_x_unary_op, convert_member_func_to_ptr, 
1288         get_delta_difference):  Use new quotation style.
1289         * repo.c (reopen_repo_file_for_write): Likewise.
1290         * pt.c (do_type_instantiation): Likewise.
1291         * parser.c (cp_parser_diagnose_invalid_type_name): 
1292         * name-lookup.c (push_overloaded_decl, set_decl_namespace): 
1293         * error.c (cp_print_error_function,
1294         print_instantiation_full_context): Likewise.
1295         * decl.c (define_label, grok_reference_init, 
1296         maybe_deduce_size_from_array_init, revert_static_member_fn): 
1297         * decl2.c (check_classfn): Likewise.
1298         * class.c (add_method, check_field_decls, layout_class_type, 
1299         resolve_address_of_overloaded_function): Likewise.
1300         * call.c (build_x_va_arg, build_over_call): Likewise.
1302 2004-10-31  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1304         Convert diagnostics to use quoting flag q 8/n
1305         * cvt.c (cp_convert_to_pointer, warn_ref_binding, 
1306         convert_to_reference, ocp_convert, convert_to_void 
1307         cp_convert_to_pointer): Use new quotation style.
1309 2004-10-31  Mark Mitchell  <mark@codesourcery.com>
1311         PR c++/15172
1312         * typeck2.c (store_init_value): Use split_nonconstant_init even
1313         for types that require construction.
1314         
1315 1004-10-28  Matt Austern  <austern@apple.com>
1317         PR c++/17542
1318         * cp-tree.h (class_key_or_enum_as_string): Declare.
1319         * error.c (class_key_or_enum): Rename to class_key_or_enum_as_string
1320         and remove static qualifier.
1321         * decl.c (shadow_tag): Warn about ignored attributes in class/struct/
1322         union/enum declaration.
1323         
1324 2004-10-29  Kazu Hirata  <kazu@cs.umass.edu>
1326         * pt.c: Fix a comment typo.
1328 2004-10-28  Nathan Sidwell  <nathan@codesourcery.com>
1330         * typeck.c (composite_pointer_type): Remove comment about DR 195.
1331         (build_reinterpret_cast_1): Revert DR195 patch. Only emit a
1332         warning when being pedantic.
1333         (build_reinterpet_cast, build_c_cast): Adjust.
1335 2004-10-29  Mark Mitchell  <mark@codesourcery.com>
1337         PR c++/17695
1338         * decl.c (grokdeclarator): Mark TYPE_DECLs as abstract when they
1339         appear in a constructor/destructor that will be cloned.
1341 1004-10-28  Matt Austern  <austern@apple.com>
1343         PR c++/14124
1344         * decl.c (finish_enum): Handle packed attribute.
1345         * parser.c (cp_parser_enum_specifier): Process trailing attributes.
1346         
1347 2004-10-28  Mark Mitchell  <mark@codesourcery.com>
1349         PR c++/17132
1350         * pt.c (instantiate_class_template): Increment
1351         processing_template_decl when substituting into a member class
1352         template.
1354 2004-10-27  Mark Mitchell  <mark@codesourcery.com>
1356         PR c++/17435
1357         * call.c (convert_like_real): Fix formatting.
1358         (initialize_reference): When binding a temporary to a base class,
1359         ensure that the nominal copy made is to the derived class, not the
1360         base class.
1362         PR c++/18140
1363         * parser.c (cp_parser_next_token_ends_template_argument_p): Do not
1364         include ">>".
1366 2004-10-27  Andrew Pinski  <pinskia@physics.uc.edu>
1368         * decl.c (bad_specifiers): Move the q after the %.
1370 2004-10-27  Andrew Pinski  <pinskia@physics.uc.edu>
1372         * parser.c (cp_parser_diagnose_invalid_type_name): Move the q after
1373         the %.
1375 2004-10-26  Mark Mitchell  <mark@codesourcery.com>
1377         * name-lookup.c (do_namespace_alias): Use FROB_CONTEXT.
1378         * search.c (current_scope): Fix prototype.
1380         PR c++/18093
1381         * search.c (current_scope): Return the innermost non-block scope,
1382         not the innermost non-block, non-namespace scope.
1383         (at_namespace_scope_p): Adjust accordingly.
1384         (dfs_accessible_post): Do not pass namespaces to is_friend.
1385         (dfs_walk_once_accessible_r): Likewise.
1386         * decl.c (grokvardecl): Adjust call to current_scope.
1387         (build_enumerator): Likewise.
1388         * parser.c (cp_parser_using_declaration): Likewise.
1389         (cp_parser_direct_declarator): Use at_namespace_scope_p instead of
1390         current_scope.
1391         (cp_parser_class_head): Adjust call to current_scope.
1392         * name-lookup.c (do_namespace_alias): Set the DECL_CONTEXT for the
1393         alias.
1395         PR c++/18020
1396         * pt.c (tusbst_copy_and_build): Resolve enumeration constants to
1397         their underlying values.
1399         PR c++/18161
1400         * typeck.c (build_binary_op): Honor build_type, even when in a
1401         template.
1403 2004-10-26  Nathan Sidwell  <nathan@codesourcery.com>
1405         * parser.c (cp_lexer_get_preprocessor_token): Remove unneeded
1406         padding token checking.
1408 2004-10-25  Andrew Pinski  <pinskia@physics.uc.edu>
1410         PR c++/18121
1411         * decl.c (grokdeclarator) <case cdk_array>: Remove the call
1412         layout_type as it is already done by create_array_type_for_decl.
1414 2004-10-22  Nathan Sidwell  <nathan@codesourcery.com>
1416         PR c++/18095
1417         * parser.c (eof_token): Make const, correctly initialize rid and
1418         location fields.
1419         (struct cp_lexer): Replace buffer_end pointer with buffer_length
1420         count. Adjust.
1421         (cp_lexer_new_main): Directly grow lexer's buffer here.  Don't
1422         zero it out.
1423         (cp_lexer_new_from_tokens): Adjust.
1424         (cp_lexer_grow_buffer): Remove.
1425         (cp_lexer_peek_nth_token, cp_lexer_consume_token,
1426         cp_lexer_purge_token): Add const casts.
1428 2004-10-21  Mark Mitchell  <mark@codesourcery.com>
1430         PR c++/18073
1431         PR c++/10841
1432         * cp-tree.h (convert_to_base): Change prototype.
1433         (build_ptrmemfunc): Likewise.
1434         (convert_ptrmem): New function.
1435         * call.c (struct conversion): Adjust documentation for base_p.
1436         (standard_conversion): Set base_p for ck_pmem conversions as
1437         appropriate.
1438         (convert_like_real): Use convert_to_base for ck_pmem and ck_ptr
1439         conversions.
1440         * class.c (convert_to_base): Handle both pointers and objects.
1441         Add nonnull parameter.
1442         (build_vfield_ref): Adjust call to convert_to_base.
1443         * cvt.c (cp_convert_to_pointer): Adjust call to build_ptrmemfunc.
1444         (convert_force): Likewise.
1445         * typeck.c (build_unary_op): Likewise.
1446         (convert_ptrmem): New function.
1447         (build_static_cast_1): Use it.
1448         (build_reinterpret_cast): Allow conversions to vector types.
1449         (get_delta_difference): Add c_cast_p parameter.
1450         (build_ptrmemfunc): Likewise.  Adjust calls to
1451         get_delta_difference.
1453 2004-10-21  Andrew Pinski  <pinskia@physics.uc.edu>
1455         PR c++/13560
1456         * error.c (cp_error_at): Output the context as it might be
1457         different file as the other location.
1459 2004-10-21  Kazu Hirata  <kazu@cs.umass.edu>
1461         * typeck.c: Fix a comment typo.
1463 2004-10-20  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1465         PR c++/13495
1466         * decl.c (make_unbound_class_template): Add PARM_LIST parameter.
1467         * cp-tree.h (make_unbound_class_template): Adjust prototype.
1468         * parser.c (cp_parser_lookup_name): Adjust call to
1469         make_unbound_class_template.
1470         (cp_parser_single_declaration): Handle member class of class
1471         template as template friend parsing correctly.
1472         * friend.c (is_friend): Call is_specialization_of_friend for
1473         template friend class.
1474         (make_friend_class): Handle member class of class template as
1475         template friend.
1476         * pt.c (is_specialization_of_friend): Likewise.
1477         (instantiate_class_template): Likewise.
1478         (tsubst): Adjust call to make_unbound_class_template.
1480 2004-10-20  Nathan Sidwell  <nathan@codesourcery.com>
1482         * typeck.c (composite_pointer_type): Add comment about DR 195
1483         (build_reinterpret_cast_1): Add for_reinterpret_cast_p parameter.
1484         Allow function pointer conversions that DR195 suggests.
1485         (build_reinterpret_cast, build_c_cast): Update
1486         build_reinterpret_cast_1 calls. 
1488 2004-10-20  Kazu Hirata  <kazu@cs.umass.edu>
1490         * call.c, typeck.c: Fix comment typos.
1492 2004-10-20  Nathan Sidwell  <nathan@codesourcery.com>
1494         * parser.c (cp_token_position): New typedef. Define VEC thereof.
1495         (struct cp_lexer): Allow buffer and buffer_end to be NULL. Make
1496         next_token and last_token cp_token_position. Make saved_tokens a
1497         VEC(cp_token_position).
1498         (eof_token): New static variable.
1499         (CP_SAVED_TOKENS_SIZE): Rename to ...
1500         (CP_SAVED_TOKEN_STACK): ... here.
1501         (cp_lexer_new_main): Adjust main lexer creation and buffer
1502         filling.
1503         (cp_lexer_new_from_tokens): Do not copy the tokens, merely point
1504         to the parent buffer.  Do not append eof token.
1505         (cp_lexer_destroy): Only free buffer if non-NULL. Free token
1506         stack.
1507         (cp_lexer_next_token, cp_lexer_prev_token): Remove.
1508         (cp_lexer_token_position, cp_lexer_token_at): New.
1509         (cp_lexer_saving_tokens): Adjust. Make inline.
1510         (cp_lexer_advance_token, cp_lexer_token_difference): Remove.
1511         (cp_lexer_peek_token_emit_debug_info): Fold into ...
1512         (cp_lexer_peek_token): ... here.
1513         (cp_lexer_peek_nth_token): Don't peek past EOF.
1514         (cp_lexer_consume_token): Set next_token to eof_token, if reaching
1515         EOF.
1516         (cp_lexer_purge_token): Adjust eof setting.
1517         (cp_lexer_purge_tokens_after): Likewise.
1518         (cp_lexer_save_tokens): Push next_token directly.
1519         (cp_lexer_commit_tokens): Adjust.
1520         (cp_lexer_rollback_tokens): Pop next_token directly.
1521         (cp_parser_check_for_invalid_template_id): Adjust token purging.
1522         (cp_parser_translation_unit): Do not consume the EOF.
1523         (cp_parser_nested_name_specifier_opt): Adjust token purging.
1524         (cp_parser_template_id, cp_parser_template_name): Likewise.
1526 2004-10-19  Mark Mitchell  <mark@codesourcery.com>
1528         PR c++/14035
1529         * call.c (struct conversion): Add base_p.
1530         (convert_like): Add c_cast_p argument.
1531         (convert_like_with_conversion): Likewise.
1532         (build_conv): Clear base_p.
1533         (standard_conversion): Set it, for derived-to-base conversions.
1534         (convert_like_real): Add c_cast_p parameter.  Handle pointer
1535         conversions directly rather than relying on ocp_convert.
1536         (perform_direct_initialization_if_possible): Add c_cast_p
1537         parameter.
1538         * cp-tree.h (perform_direct_initialization_if_possible): Change
1539         prototype.
1540         (convert_member_func_to_ptr): New function.
1541         * typeck.c (check_for_casting_away_constness): Add diag_fn
1542         parameter.
1543         (build_static_cast_1): New function, split out from ...
1544         (build_static_cast): ... here.  Use build_static_cast_1.
1545         (build_reinterpret_cast_1): New function, split out from ...
1546         (build_reinterpret_cast): ... here.  Use build_reinterpret_cast_1.
1547         (build_const_cast_1): New function, split out from ...
1548         (build_const_cast): ... here.  Use build_const_cast_1.
1549         (build_c_cast): Rewrite to use build_const_cast_1,
1550         build_static_cast_1, and build_reinterpret_cast_1.
1551         (convert_member_func_to_ptr): New function.
1553 2004-10-19  Paolo Bonzini  <bonzini@gnu.org>
1555         PR c++/18047
1556         * parser.c (enum cp_parser_prec): Give relational expressions
1557         a higher precedence than equality expressions.
1559 2004-10-15  Nathan Sidwell  <nathan@codesourcery.com>
1561         * cp-tree.h (UNIQUELY_DERIVED_FROM_P): Adjust lookup_base call.
1562         (ACCESSIBLY_UNIQUELY_DERIVED_P): Remove.
1563         (PUBLICLY_UNIQUELY_DERIVED_P): Adjust lookup_base call.
1564         (enum base_access): Reorganize.
1565         (accessible_base_p, accessible_p): Add consider_local_p parameter.
1566         * call.c (standard_conversion): Update comment about
1567         DERIVED_FROM_P.
1568         (enforce_access): Adjust accessible_p call.
1569         (build_over_call): Adjust accessible_base_p call.
1570         * class.c (convert_to_base): Adjust lookup_base call.
1571         (build_vtbl_ref_1): Likewise.
1572         (warn_about_ambiguous_bases): Likewise. Add early exit.
1573         * cvt.c (convert_to_pointer_force) Adjust lookup_base call.
1574         * search.c (accessible_base_p): Add consider_local_p parameter.
1575         (lookup_base): Pass consider_local_p to accessible_base_p call.
1576         (friend_accessible_p): Check whether scope is a class member.
1577         Remove unnecessary class template check.
1578         (accessible_p): Add consider_local_p parameter. Use it.
1579         (adjust_result_of_qualified_name_lookup): Adjust lookup_base call.
1580         * tree.c (maybe_dummy_object): Likewise.
1581         * typeck.c (comp_except_type): Use PUBLICLY_UNIQUELY_DERIVED_P.
1582         (build_class_member_access_expr): Adjust lookup_base call.
1583         * typeck2.c (binfo_or_else): Likewise.
1584         * rtti.c (build_dynamic_cast_1): Access can consider friendship
1585         and current scope.
1587 2004-10-17  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
1589         PR c++/17743
1590         * decl2.c (grokfield): Apply attributes also to TYPE_DECLs.
1592 2004-10-16  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
1594         PR c++/10479
1595         * parser.c (cp_parser_parenthesized_expression_list): Fold
1596         non-dependent expressions in attribute lists.
1598 2004-10-15  Mark Mitchell  <mark@codesourcery.com>
1600         PR c++/17042
1601         * decl.c (declare_global_var): Use the return value from pushdecl.
1603         PR c++/14667
1604         * parser.c (cp_parser_simple_declaration): Do not diagnose invalid
1605         type names if we have already found a valid type.
1606         (cp_parser_member_declaration): Likewise.
1607         
1608         PR c++/17916
1609         * parser.c (cp_parser_member_specification_opt): Handle
1610         CPP_PRAGMA.
1612 2004-10-15  Kazu Hirata  <kazu@cs.umass.edu>
1614         * dump.c, g++spec.c, repo.c: Update copyright.
1616 2004-10-15  Kazu Hirata  <kazu@cs.umass.edu>
1618         * decl.c: Fix a comment typo.
1620 2004-10-13  Andrew Pinski  <pinskia@physics.uc.edu>
1622         PR c++/16301
1623         * name-lookup.c (parse_using_directive): If we have a
1624         error_mark_node, do not set the decl namespace associations
1625         on it.
1627 2004-10-14  Mark Mitchell  <mark@codesourcery.com>
1629         PR c++/17976
1630         * decl.c (cp_finish_decl): Do not call expand_static_init more
1631         than once for a single variable.
1633 2004-10-14  Matt Austern  <austern@apple.com>
1635         * Make-lang.in (pt.o): depends on pointer-set.h
1636         * cp-tree.h (cp_walk_subtrees): Last argument is pointer_set_t* now.
1637         * pt.c (struct pair_fn_data): Use pointer_set_t, not htab_t
1638         (for_each_template_parm): Convert from htab_t to pointer_set_t.
1639         * tree.c (cp_walk_subtrees): Last argument is pointer_set_t* now.
1640         
1641 2004-10-13  Andrew Pinski  <pinskia@physics.uc.edu>
1643         PR c++/17661
1644         * semantics.c (finish_for_expr): Convert expression to void
1645         so that we don't create temporaries for a?b:c.
1647 2004-10-13  Kazu Hirata  <kazu@cs.umass.edu>
1649         * search.c: Fix a comment typo.
1651 2004-10-12  Nathan Sidwell  <nathan@codesourcery.com>
1653         * class.c (dfs_modify_vtables): Simplify condition. Return
1654         dfs_skip_bases as appropriate.
1655         (modify_all_vtables): Walk in pre-order.
1656         * search.c (dfs_walk_all, dfs_walk_once_r,
1657         dfs_walk_once_accessible_r): Assert post order function never
1658         returns dfs_skip_bases.
1660         * search.c (struct lookup_base_data_s): New.
1661         (lookup_base_r): Replace with ...
1662         (dfs_lookup_base): ... this.
1663         (lookup_base): Use dfs_walk_all.
1665 2004-10-12  Kazu Hirata  <kazu@cs.umass.edu>
1667         * search.c: Fix comment typos.
1669 2004-10-11  Mark Mitchell  <mark@codesourcery.com>
1671         PR c++/15786
1672         * parser.c (cp_parser_declarator): Add member_p parameter. 
1673         (cp_parser_condition): Adjust calls to cp_parser_declarator.
1674         (cp_parser_explicit_instantiation): Likewise.
1675         (cp_parser_init_declarator): Likewise.
1676         (cp_parser_direct_declarator): Add member_p parameter.  Do not
1677         parse tentatively when parsing the parameters to a member.
1678         (cp_parser_type_id): Adjust calls to cp_parser_declarator.
1679         (cp_parser_parameter_declaration): Likewise.
1680         (cp_parser_member_declaration): Likewise.
1681         (cp_parser_exception_declaration): Likewise.
1683         PR c++/17936
1684         * cp-tree.h (CLASSTYPE_TEMPLATE_SPECIALIZATION): Add a comment.
1685         * pt.c (optimize_specialization_lookup_p): Do not optimize lookups
1686         for members of partial or explicit specializations.
1688         PR c++/17929
1689         * decl2.c (finish_anon_union): Robustify.
1691 2004-10-11  Nathan Sidwell  <nathan@codesourcery.com>
1693         * cp-tree.h (get_dynamic_cast_base_type): Rename to ...
1694         (dcast_base_hint): ... here.
1695         * rtti.c (build_dynamic_cast_1): Use dcast_base_hint.
1696         * search.c (struct dcast_data_s): New.
1697         (dynamic_cast_base_recurse): Remove. Replace with ...
1698         (dfs_dcast_hint_pre, dfs_dcast_base_post): ... these. New.
1699         (get_dynamic_cast_base_type): Rename to ...
1700         (dcast_base_hint): ... here.  Use dfs_walk_once_accessible.
1701         (accessible_r): Remove.
1702         (dfs_accessible_post): New, broken out of accessible_r.
1703         (accessible_p): Use dfs_walk_once_accessible.
1704         (dfs_walk_once_accessible_r): New. From accessible_r.
1705         (dfs_walk_once_accessible): New. From acessible_p.
1707         * cp-tree.h (SAME_BINFO_TYPE_P): New.
1708         * class.c (build_base_path): Use SAME_BINFO_TYPE_P to compare
1709         binfo types.
1710         (convert_to_base_statically, determine_primary_bases,
1711         update_vtable_entry_for_fn, dfs_modify_vtables, build_vtt_inits,
1712         dfs_build_secondary_vptr_vtt_inits, build_ctor_vtbl_group,
1713         accumulate_vtbl_inits, dfs_accumulate_vtbl_inits,
1714         build_vtbl_initializer, add_vcall_offset_vtbl_entries_1): Likewise.
1715         * init.c (expand_member_init): Likewise.
1716         * search.c (lookup_base_r, dynamic_cast_base_recurse,
1717         binfo_via_virtual, copied_binfo, binfo_for_vbase,
1718         original_binfo): Likewise.
1719         * tree.c (copy_binfo): Likewise.
1721 2004-10-11  Kazu Hirata  <kazu@cs.umass.edu>
1723         * semantics.c: Fix comment typos.
1725 2004-10-10  Andrew Pinski  <pinskia@physics.uc.edu>
1727         PR c++/17554
1728         part of c++/17657
1729         middle-end/17703
1730         * semantics.c (maybe_cleanup_point_expr): Call
1731         fold_build_cleanup_point_expr.
1732         (maybe_cleanup_point_expr_void): New function.
1733         (add_decl_expr): Call maybe_cleanup_point_expr_void.
1734         (finish_expr_stmt): Likewise.
1735         (finish_return_stmt): Likewise.
1736         (finish_for_expr): Likewise.
1737         (finish_asm_stmt): Likewise.
1738         * typeck.c (condition_conversion): Call
1739         fold_build_cleanup_point_expr.
1741 2004-10-10  Andrew Pinski  <pinskia@physics.uc.edu>
1743         PR c++/17907
1744         * semantics.c (add_decl_expr): If the decl has a size which
1745         has side effects then the decl expression needs a cleanup point.
1747 2004-10-10  Mark Mitchell  <mark@codesourcery.com>
1749         PR c++/17393
1750         * decl.c (grokdeclarator): Robustify error-recovery on invalid
1751         declarations.
1753 2004-10-10  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1755         Convert diagnostics to use quoting flag q 7/n
1756         * typeck.c (composite_pointer_type_r, composite_pointer_type, 
1757         cxx_sizeof_or_alignof_type, cxx_sizeof_or_alignof_expr, 
1758         string_conv_p, build_class_member_access_expr, 
1759         build_class_member_access_expr, lookup_destructor, 
1760         finish_class_member_access_expr, build_indirect_ref, 
1761         get_member_function_from_ptrfunc, build_function_call, 
1762         convert_arguments, build_binary_op, pointer_diff, build_unary_op, 
1763         check_for_casting_away_constness, build_static_cast, 
1764         build_reinterpret_cast, build_const_cast, build_c_cast, 
1765         build_modify_expr, get_delta_difference, build_ptrmemfunc, 
1766         dubious_conversion_warnings, convert_for_assignment, 
1767         convert_for_initialization, 
1768         maybe_warn_about_returning_address_of_local, check_return_expr): 
1769         Use quoting marks.
1771         * typeck2.c (error_not_base_type, readonly_error, 
1772         abstract_virtuals_error, cxx_incomplete_type_diagnostic, 
1773         store_init_value, digest_init, build_x_arrow, 
1774         build_m_component_ref, require_complete_eh_spec_types): Likewise.
1776         * tree.c (cp_build_qualified_type_real, 
1777         handle_java_interface_attribute, handle_init_priority_attribute):
1778         Likewise.
1780         * semantics.c (finish_asm_stmt, finish_non_static_data_member, 
1781         finish_pseudo_destructor_expr, 
1782         check_template_template_default_arg, begin_class_definition, 
1783         finish_base_specifier, qualified_name_lookup_error, 
1784         finish_id_expression, finish_typeof): Likewise.
1786         * search.c (lookup_base, check_final_overrider,
1787         look_for_overrides_r): Likewise.
1789         * rtti.c (get_tinfo_decl, build_dynamic_cast_1): Likewise.
1791 2004-10-09  Mark Mitchell  <mark@codesourcery.com>
1793         PR c++/17867
1794         * error.c (dump_expr): Correct handling of AGGR_INIT_EXPRs using a
1795         constructor.
1797         PR c++/17670
1798         * init.c (build_new): Correct comments.
1799         * parser.c (cp_parser_new_expression): Use NULL_TREE for nelts in
1800         the non-array case.
1802         PR c++/17821
1803         * parser.c (cp_parser_postfix_dot_deref_expression): If the
1804         pseduo-destructor-name production does not work, fall back to the
1805         ordinary production.
1807         PR c++/17826
1808         * tree.c (cp_tree_equal): Handle a BASELINK.
1810         PR c++/17524
1811         * cp-tree.h (check_var_type): New function.
1812         * decl.c (check_var_type): New function, split out from ...
1813         (grokdeclarator): ... here.
1814         * pt.c (tsubst_decl): Use check_var_type.
1816         PR c++/17685
1817         * decl.c (grokdeclarator): Disallow declarations of operators as
1818         non-functions.
1819         
1820 2004-10-08  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1822         PR c++/17868
1823         * error.c (dump_expr): Add missing case for RDIV_EXPR.
1825 2004-10-08  Kazu Hirata  <kazu@cs.umass.edu>
1827         * pt.c, search.c: Fix comment typos.
1829 2004-10-08  Nathan Sidwell  <nathan@codesourcery.com>
1831         * cp-tree.h (dfs_walk, dfs_walk_real, dfs_unmark, markedp,
1832         unmarkedp): Remove.
1833         (dfs_skip_bases, dfs_walk_all, dfs_walk_once): New.
1834         * class.c (struct find_final_overrider_data): Remove most_derived,
1835         vpath_list and vpath fields.  Add path field.
1836         (dfs_find_final_ocerrider_1): Add DEPTH parameter. Adjust.
1837         (dfs_find_final_overrider): Rename to ...
1838         (dfs_find_final_overrider_pre): ... here. Adjust.
1839         (dfs_find_final_overrider_post): Adjust.
1840         (dfs_find_final_overrider_q): Fold into
1841         dfs_find_final_overrider_pre.
1842         (find_final_overrider): Adjust dfs searching.
1843         (dfs_modify_vtables): Don't mark binfo here.
1844         (modify_all_vtables): Use dfs_walk_once.
1845         (build_vtt_inits): Likwise. Use dfs_walk_all.
1846         (dfs_build_secondary_vptr_vtt_inits): Don't mark binfo here.
1847         Return dfs_skip_bases as appropriate.
1848         (dfs_fixup_binfo_vtbls): Return dfs_skip_bases as appropriate.
1849         * init.c (dfs_initialized_vtbl_ptrs): Return dfs_skip_bases as
1850         appropriate. Don't mark binfo here.
1851         (initialize_vtbl_ptrs): Use dfs_walk_once.
1852         * search.c (struct vbase_info): Remove unused struct.
1853         (access_in_type): Use dfs_walk_once.
1854         (dfs_access_in_type): Don't mark binfo here.
1855         (dfs_accessible_queue_p, dfs_accessible_p) Remove.
1856         Fold into ...
1857         (accessible_r): ... here. New. Specialize dfs_walk_once.
1858         (accessible_p): Use accessible_r.
1859         (lookup_field_queue_p): Remove. Fold into ...
1860         (lookup_field_r): ... here. Adjust.
1861         (lookup_member): Use dfs_walk_all.
1862         (dfs_walk_real, dfs_walk): Replace with ...
1863         (dfs_walk_all, dfs_walk_once): ... these.
1864         (dfs_walk_once_r, dfs_unmark_r): Workers for dfs_walk_once.
1865         (dfs_unmark, unmarkedp, markedp): Remove.
1866         (dfs_get_pure_virtuals): Don't mark binfo here.
1867         (get_pure_virtuals): Use dfs_walk_once.
1868         (dfs_debug_unmarked_p): Remove. Fold into ...
1869         (dfs_debug_mark): ... here.
1870         (note_debug_info_needed): Use dfs_walk_all.
1872 2004-10-07  Andrew Pinski  <pinskia@physics.uc.edu>
1874         * pt.c (tsubst_expr) <case ASM_EXPR>: Look passed the
1875         CLEANUP_POINT_EXPR to get the asm expression.
1877 2004-10-07  Mark Mitchell  <mark@codesourcery.com>
1879         * cp-tree.h (ICS_USER_FLAG): Remove comment about obsolete flag.
1880         (DECL_MEMBER_TEMPLATE_P): New macro.
1881         (is_member_template): Remove.
1882         (class_method_index_for_fn): New function.
1883         * pt.c (build_over_call): Use DECL_MEMBER_TEMPLATE_P.
1884         * class.c (finish_struct_methods): Remove out-of-date comment.
1885         * decl.c (copy_fn_p): Use DECL_MBMER_TEMPLATE_P.
1886         * decl2.c (check_classfn): Use DECL_MEMBER_TEMPLATE_P and
1887         class_method_index_for_fn.
1888         * pt.c (is_member_template): Remove.
1889         (is_member_template_class): Likewise.
1890         (optimize_specialization_lookup_p): New function.
1891         (retrieve_specialization): Optimize lookups for members that are
1892         not member templates.
1893         (register_specialization): Adjust accordingly.
1894         (build_template_decl): Add member_template_p parameter.  Set
1895         DECL_MEMBER_TEMPLATE_P.
1896         (process_partial_specialization): Adjust call to
1897         retrieve_specialization.
1898         (push_template_decl_real): Determine whether the template is a
1899         member template.
1900         (lookup_template_class): Use retrieve_specialization.
1901         (tsubst_decl): Adjust call to retrieve_specialization.
1902         (tsubst_exception_specification): New function.
1903         (tsubst): Use it.
1904         (tsubst_copy): Use DECL_MEMBER_TEMPLATE_P.
1905         (instantiate_template): Adjust call to retrieve_specialization.
1906         (regenerate_decl_from_template): Do not actually generate a new
1907         DECL.
1908         (instantiate_decl): Adjust call to retrieve_specialization.
1909         (class_method_index_for_fn): New method.
1911 2004-10-07  Andrew Pinski  <pinskia@physics.uc.edu>
1913         * parser.c (cp_parser_asm_definition): Look passed the
1914         CLEANUP_POINT_EXPR to get the asm expression.
1916 2004-10-06  Andrew Pinski  <pinskia@physics.uc.edu>
1918         PR c++/17368
1919         * semantics.c (finish_asm_stmt): Asm expressions need cleanup
1920         also.
1922 2004-10-05  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1924         Convert diagnostics to use quoting flag q 6/n
1925         * pt.c (finish_member_template_decl, check_specialization_scope, 
1926         maybe_process_partial_specialization, determine_specialization, 
1927         check_explicit_specialization, maybe_check_template_type, 
1928         process_partial_specialization, check_default_tmpl_args, 
1929         push_template_decl_real, redeclare_class_template, 
1930         convert_nontype_argument, coerce_template_parms, 
1931         lookup_template_class, push_tinst_level, 
1932         instantiate_class_template, tsubst_arg_types, 
1933         tsubst_function_type, tsubst, tsubst_qualified_id, 
1934         tsubst_copy_and_build, check_instantiated_args, 
1935         do_decl_instantiation, do_type_instantiation, 
1936         invalid_nontype_parm_type_p, check_specialization_namespace, 
1937         convert_template_argument, determine_specialization, 
1938         check_template_shadow, tsubst_decl 
1939         instantiate_pending_templates): Use quoting marks.
1941 2004-10-05  Nathan Sidwell  <nathan@codesourcery.com>
1943         PR c++/17829
1944         * parser.c (cp_parser_postfix_expression): Inhibit Koenig when
1945         unqualified lookup finds a member function.
1947 2004-10-04  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1949         Convert diagnostics to use quoting flag q 5/n
1950         * parser.c (cp_parser_name_lookup_error, 
1951         cp_parser_diagnose_invalid_type_name, 
1952         cp_parser_primary_expression, cp_parser_unqualified_id, 
1953         cp_parser_nested_name_specifier_opt, cp_parser_labeled_statement, 
1954         cp_parser_jump_statement, cp_parser_simple_declaration, 
1955         cp_parser_decl_specifier_seq, cp_parser_mem_initializer_id, 
1956         cp_parser_type_parameter, cp_parser_template_id, 
1957         cp_parser_template_name, cp_parser_direct_declarator, 
1958         cp_parser_parameter_declaration_list, cp_parser_class_head, 
1959         cp_parser_base_specifier, cp_parser_lookup_name, 
1960         cp_parser_late_parsing_default_args, 
1961         cp_parser_optional_template_keyword 
1962         cp_parser_elaborated_type_specifier, cp_parser_check_class_key, 
1963         cp_parser_check_access_in_redeclaration): Use quoting marks.
1965         * name-lookup.c (supplement_binding, pushdecl, 
1966         check_for_out_of_scope_variable, validate_nonmember_using_decl, 
1967         do_nonmember_using_decl, lookup_tag, set_decl_namespace, 
1968         push_namespace, do_namespace_alias, do_using_directive, 
1969         ambiguous_decl, lookup_namespace_name, add_function): Likewise.
1971         * method.c (use_thunk): Likewise.
1973         * lex.c (unqualified_name_lookup_error, 
1974         unqualified_fn_lookup_error): Likewise.
1976 2004-10-04  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1978         Convert diagnostics to use quoting flag q 4/n
1979         * except.c (decl_is_java_type, build_throw, 
1980         is_admissible_throw_operand, check_handlers_1, check_handlers): 
1981         Use quoting formats.
1982         * friend.c (add_friend, make_friend_class, do_friend): Likewise.
1983         * init.c (sort_mem_initializers, emit_mem_initializers, 
1984         member_init_ok_or_else, expand_member_init, is_aggr_type, 
1985         build_offset_ref, build_java_class_ref): Likewise.
1987 2004-10-03  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1989         Convert diagnostics to use quoting flag q 3/n
1990         * decl.c (pop_label, duplicate_decls, redeclaration_error_message,
1991         redeclaration_error_message, lookup_label, check_goto,
1992         make_typename_type, make_unbound_class_template,
1993         fixup_anonymous_aggr, check_tag_decl, start_decl, start_decl_1, 
1994         grok_reference_init, layout_var_decl, maybe_commonize_var, 
1995         check_for_uninitialized_const_var, reshape_init_array, 
1996         reshape_init, check_initializer, cp_finish_decl,
1997         member_function_or_else, bad_specifiers, grokfndecl, grokvardecl, 
1998         check_static_variable_definition, compute_array_index_type, 
1999         create_array_type_for_decl, check_special_function_return_type, 
2000         grokdeclarator, check_default_argument, grokparms, 
2001         grok_ctor_properties, grok_op_properties, 
2002         check_elaborated_type_specifier, xref_tag, finish_enum, 
2003         build_enumerator, check_function_type, start_preparsed_function, 
2004         store_parm_decls): Use quoting formats.
2005         * decl2.c (grok_array_decl, delete_sanity, check_member_template, 
2006         check_java_method, check_classfn, finish_static_data_member_decl, 
2007         grokfield, grokbitfield, grok_function_init,
2008         build_anon_union_vars, coerce_new_type, coerce_delete_type,
2009         check_default_args): Likewise.
2010         * parser.c (cp_parser_decl_specifier_seq): Likewise.
2012 2004-10-03  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2014         Convert diagnostics to use quoting flag q 2/n
2015         * class.c (build_base_path, add_method, alter_access,
2016         handle_using_decl, check_bases,
2017         maybe_warn_about_overly_private_class, find_final_overrider,
2018         warn_hidden, finish_struct_anon, add_implicitly_declared_members,
2019         check_bitfield_decl, check_field_decls, layout_empty_base,
2020         build_base_field, check_methods, layout_virtual_bases,
2021         warn_about_ambiguous_bases, layout_class_type, finish_struct_1,
2022         resolve_address_of_overloaded_function, instantiate_type,
2023         note_name_declared_in_class): Use format flag "q" for quoting.
2025 2004-10-03  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2027         Convert diagnostics to use quoting flag q 1/n
2028         * error.c (locate_error): Ignore quoting flag q.
2029         * call.c (build_user_type_conversion_1, build_operator_new_call,
2030         build_object_call, op_error, build_conditional_expr,
2031         build_new_op, build_op_delete_call, enforce_access,
2032         convert_like_real, convert_arg_to_ellipsis, build_x_va_arg,
2033         convert_default_arg, build_over_call, build_new_method_call,
2034         joust, perform_implicit_conversion, initialize_reference): Use the
2035         quoting flag q.
2037 2004-10-03  Andrew Pinski  <pinskia@physics.uc.edu>
2039         PR c++/17797
2040         * typeck.c (build_reinterpret_cast): Return if the inner type
2041         is error_mark_node.
2043 2004-10-01  Jan Hubicka  <jh@suse.cz>
2045         * semantics.c (expand_body): Update call of tree_rest_of_compilation.
2047 2004-09-30  Nathan Sidwell  <nathan@codesourcery.com>
2049         * cp-tree.h (struct lang_decl): Shrink by reordering fields and
2050         turning operator_code and fixed_offset into bitfields.
2052 2004-09-29  Joseph S. Myers  <jsm@polyomino.org.uk>
2054         * decl.c (duplicate_decls): Merge TREE_DEPRECATED.
2056 2004-09-29  Jason Merrill  <jason@redhat.com>
2058         PR tree-optimization/17697
2059         * decl.c (duplicate_decls): Copy TREE_NOTHROW from newdecl to olddecl.
2061 2004-09-28  Jason Merrill  <jason@redhat.com>
2063         PR middle-end/17525
2064         * class.c (build_base_field): Set TYPE_MODE.
2066 2004-09-28  Roger Sayle  <roger@eyesopen.com>
2068         PR driver/17537
2069         * g++spec.c (lang_specific_driver): Unrecognized libraries, other
2070         than -lc and -lm, may require linking against libstc++.
2072 2004-09-28  Kazu Hirata  <kazu@cs.umass.edu>
2074         * tree.c: Fix a comment typo.
2076 2004-09-28  Nathan Sidwell  <nathan@codesourcery.com>
2078         * class.c (VTT_TOP_LEVEL_P, VTT_MARKED_BINFO_P): Remove.
2079         (struct secondary_vptr_vtt_init_data_s): New.
2080         (build_vtt_inits): Adjust dfs_walkers.
2081         (dfs_build_secondary_vptr_vtt_inits): Caller data is a
2082         secondary_vptr_vtt_init_data_s structure. Adjust.
2083         (dfs_ctor_vtable_bases_queue_p): Remove.
2084         (dfs_fixup_binfo_vtbls): No need to clear BINFO_MARKED. Simplify.
2086         * pt.c (struct get_template_base_data_s): Remove.
2087         (get_template_base_r): Fold into get_template_base.
2088         (get_template_base): Walk base binfos directly in inheritance
2089         graph order.
2091 2004-09-27  Mark Mitchell  <mark@codesourcery.com>
2093         PR c++/17642
2094         * cp-tree.h (fold_if_not_in_template): New function.
2095         * call.c (build_conditional_expr): Use fold_if_not_in_template.
2096         (build_cxx_call): Likewise.
2097         * cvt.c (convert_to_complex): Likewise.
2098         (ocp_convert): Likewise.
2099         (convert): Likewise.
2100         (convert_force): Likewise.
2101         * decl.c (compute_array_index_type): Clear
2102         processing_template_decl while folding array bounds.
2103         * pt.c (convert_nontype_argument): Clear
2104         processing_template_decl while processing non-type argument
2105         initialization.
2106         * tree.c (fold_if_not_in_template): New function.
2107         * typeck.c (build_class_member_access_expr): Use
2108         fold_if_not_in_template.
2109         (build_array_ref): Likewise.
2110         (build_binary_op): Likewise.  Do not try to optimize computations
2111         when processing templates.
2112         (cp_pointer_int_sum): Use fold_if_not_in_template.
2113         (pointer_diff): Likewise.
2114         (build_unary_op): Likewise.
2115         (build_reinterpret_cast): Likewise.
2116         (get_delta_difference): Likewise.
2117         (expand_ptrmemfunc_cst): Likewise.
2118         (dubious_conversion_warnings): Likewise.
2120 2004-09-27  Matt Austern  <austern@apple.com>
2122         * cp/parser.c (struct cp_token): New one-bit field , implicit_extern_c
2123         (cp_lexer_get_preprocessor_token): Set implicit_extern_c for
2124         tokens that come from headers that are implicitly extern "C".
2125         (struct cp_parser): new one-bit field, implicit_extern_c.
2126         (cp_parser_new): Set parser's implicit_extern_c to false.
2127         (cp_parser_translation_unit): Pop lang context if we were in a
2128         header that was implicitly extern "C".
2129         (cp_parser_declaration_seq_opt): Push/pop lang context as
2130         required by the token's and parser's implicit_extern_c.
2131         
2132 2004-09-27  Mark Mitchell  <mark@codesourcery.com>
2134         PR c++/17585
2135         * cp-tree.h (shared_member_p): Declare.
2136         * search.c (shared_member_p): Give it external linkage.
2137         * semantics.c (finish_qualified_id_expr): Use it.
2138         (finish_id_expression): Likewise.
2140         PR c++/17585
2141         * semantics.c (finish_id_expression): Do not add "this->" to
2142         static member functions.
2144 2004-09-27  Nathan Sidwell  <nathan@codesourcery.com>
2146         PR c++/17681
2147         * error.c (dump_type): Change TREE_VEC case into TREE_BINFO.
2149         * class.c (struct count_depth_data): Remove.
2150         (dfs_depth_post, dfs_depth_q): Remove.
2151         (find_final_overrider): Use number of vbase classes as depth
2152         bound.
2153         
2154         * cp-tree.h (types_overlap_p): Remove.
2155         * search.c (struct overlap_info): Remove.
2156         (dfs_check_overlap, dfs_no_overlap_yet, types_overlap_p): Remove.
2157         
2158         * pt.c (GTB_VIA_VIRTUAL, GTB_IGNORE_TYPE): Remove.
2159         (get_template_base_recursive): Remove. Replace with ...
2160         (get_template_base_r): ... this.
2161         (struct get_template_base_data_s): New.
2162         (get_template_base): Use get_template_base_r via dfs_walk.  Always
2163         return NULL on failure.
2164         (unify): Remove error_mark_node check from get_template_base result.
2166 2004-09-24  Paolo Bonzini  <bonzini@gnu.org>
2168         * parser.c (cp_parser_expression_stack): Clarify why it is
2169         an array of NUM_PREC_VALUES elements.
2170         (cp_parser_binary_expression): Clarify why we do not need to
2171         handle stack overflow.
2173 2004-09-24  Nathan Sidwell  <nathan@codesourcery.com>
2175         PR c++/16889
2176         * search.c (lookup_field_queue_p): Correct check for hidden base.
2178         * search.c (bfs_walk): Remove.
2179         (lookup_member): Use dfs_walk_real.
2180         (dfs_walk_real): Move and adjust documentation from bfs_walk.
2182 2004-09-23  Zack Weinberg  <zack@codesourcery.com>
2184         * decl.c (grokfndecl): If ::main is found not to return int,
2185         correct it after issuing a diagnostic.
2186         (grokdeclarator): If the incoming type was error_mark_node, do
2187         not complain about declaring something with no type.
2188         (start_function): Change check for ::main not returning int to
2189         an assertion, as grokfndecl now catches this when the user did it.
2190         * init.c (perform_member_init, sort_mem_initializers)
2191         (emit_mem_initializers): Make most diagnostics be issued on
2192         the line of current_function_decl, not whatever the current
2193         input line is.
2194         * parser.c (cp_lexer_peek_token_emit_debug_info): Surround
2195         definition and declaration with #ifdef ENABLE_CHECKING.
2196         Avoid unnecessary use of fprintf.
2197         (cp_lexer_print_token, cp_lexer_debug_stream): Adjust stub
2198         definitions to avoid warnings.
2199         (cp_lexer_new_main): Add assertion that first token is not a
2200         padding token.
2201         (cp_lexer_new_from_token_array): Fold into ...
2202         (cp_lexer_new_from_tokens): ... here.  Add assertion that
2203         first token is not a padding token.
2204         (cp_lexer_set_source_position_from_token): Move nearer to callers.
2205         Remove unused lexer argument.
2206         (cp_lexer_peek_token): Just print debugging report (if enabled)
2207         and return lexer->next_token.
2208         (cp_lexer_skip_purged_tokens): Delete.
2209         (cp_lexer_next_token_is, cp_lexer_next_token_is_not): Make
2210         inline, simplify bodies.
2211         (cp_lexer_peek_nth_token): Add debugging report a la
2212         cp_lexer_peek_token.
2213         (cp_lexer_consume_token): Correct commentary.  Advance over
2214         purged tokens here.  Set current source position here, from
2215         token to be returned.  Avoid unnecessary use of fprintf.
2216         (cp_lexer_purge_token): Advance next_token pointer over this and
2217         subsequent purged tokens.
2218         (cp_parser_error): Adjust source position to that of the
2219         peeked token.
2220         (cp_parser_push_lexer_for_tokens, cp_parser_pop_lexer): New functions.
2221         (cp_parser_string_literal): Remove some excessive cleverness.
2222         (cp_parser_enum_specifier): Call start_enum before consuming
2223         the opening brace.
2224         (cp_parser_member_declaration): Make the "extra semicolon"
2225         diagnostic consistently-worded with the other place this is
2226         diagnosed.  Explicitly set the diagnostic location to the
2227         location of the offending semicolon.
2228         (cp_parser_enclosed_template_argument_list): Use %</%> quoting
2229         in diagnostics.  Do not use cp_parser_require.  Set location
2230         of diagnostics about improper use of '>>' to location of
2231         offending token.
2232         (cp_parser_late_parsing_for_member):
2233         Use cp_parser_push_lexer_for_tokens and cp_parser_pop_lexer.
2234         (cp_parser_late_parsing_default_args): Likewise.  Manually
2235         move some logic outside the loop.
2237 2004-09-23  Andrew Pinski  <pinskia@physics.uc.edu>
2239         PR c++/17618
2240         * cvt.c (cp_convert_to_pointer): Return early when the type is
2241         an error_mark_node.
2243 2004-09-21 Fariborz Jahanian <fjahanian@apple.com>
2245         PR c++/13989
2246         PR c++/9844
2247         * decl.c (grokfndecl): Add new argument "attrlist", use it
2248         to call cplus_decl_attributes.
2249         (start_function): Remove call to cplus_decl_attributes.
2250         * cvt.c (ocp_convert): Add support to use type conversion
2251         function to vector type.
2252         * parser.c (cp_parser_conversion_type_id): Add attributes, if any,
2253         to the parsed type.
2255 2004-09-23  Paolo Bonzini  <bonzini@gnu.org>
2257         PR c++/17596
2259         * parser.c (cp_parser_token_tree_map_node,
2260         cp_parser_pm_expression, cp_parser_additive_expression,
2261         cp_parser_multiplicative_expression, cp_parser_shift_expression,
2262         cp_parser_relational_expression, cp_parser_equality_expression,
2263         cp_parser_and_expression, cp_parser_exclusive_or_expression,
2264         cp_parser_inclusive_or_expression,
2265         cp_parser_logical_and_expression,
2266         cp_parser_logical_or_expression): Removed.
2267         (enum cp_parser_prec, struct cp_parser_token_tree_map_node,
2268         binops, binops_by_token): New.
2269         (cp_parser_assignment_expression): Use cp_parser_binary_expression.
2270         (cp_parser_new): Initialize binops_by_token.
2271         (cp_parser_binary_expression): Rewritten.
2272         (N_CP_TTYPES): New.
2274 2004-09-23  Kazu Hirata  <kazu@cs.umass.edu>
2276         * parser.c: Fix a comment typo.
2278 2004-09-23  Nathan Sidwell  <nathan@codesourcery.com>
2280         PR c++/17620
2281         * decl.c (xref_basetypes): Look through typedefs before checking
2282         for duplicate base.
2284 2004-09-22  Nathan Sidwell  <nathan@codesourcery.com>
2286         * cp-tree.h (unemitted_tinfo_decls): Make a VEC(tree).
2287         * decl2.c (cp_finish_file): Adjust tinfo decl emission loop.
2288         * rtti.c (unemitted_tinfo_decls): Make a VEC(tree).
2289         (init_rtti_processing): Initialize it to something realistic.
2290         (get_tinfo_decl): Adjust pushing the new decl.
2292         * cp-tree.h (struct lang_type_class): Remove marked flags, add
2293         diamond_shaped and repeated_base flags.  Reorder to keep 8-bit blocks.
2294         (TYPE_MARKED_P): New.
2295         (CLASSTYPE_DIAMOND_SHAPED_P, CLASSTYPE_REPEATED_BASE_P): New.
2296         (CLASSTYPE_MARKED_N, SET_CLASSTYPE_MARKED_N,
2297         CLEAR_CLASSTYPE_MARKED_N): Remove.
2298         (CLASSTYPE_MARKED_*, SET_CLASSTYPE_MARKED_*,
2299         CLEAR_CLASSTYPE_MARKED_*): Remove.
2300         * decl.c (xref_basetypes): Use TYPE_MARKED_P. Determine diamond
2301         shaped and repeated base properties.
2302         * lex.c (cxx_make_type): Don't clear TYPE_ALIAS_SET.
2303         * rtti.c (dfs_class_hint_mark, dfs_class_hint_unmark,
2304         class_hint_flags): Remove.
2305         (get_pseudo_ti_init): Use CLASSTYPE_REPEATED_BASE_P and
2306         CLASSTYPE_DIAMOND_SHAPED_P.
2308 2004-09-21  Ziemowit Laski  <zlaski@apple.com>
2310         * cp-lang.c (LANG_HOOKS_FOLD_OBJ_TYPE_REF): Moved here from
2311         cp-objcp-common.h.
2312         (objcp_tsubst_copy_and_build): Reformat function signature.
2313         * cp-objcp-common.h (objcp_tsubst_copy_and_build): Likewise.
2314         (LANG_HOOKS_FOLD_OBJ_TYPE_REF): Moved to cp-lang.c.
2316 2004-09-21  Zack Weinberg  <zack@codesourcery.com>
2318         * parser.c (cp_lexer_peek_token, cp_lexer_consume_token):
2319         Don't handle CPP_PRAGMA tokens specially.
2320         (cp_lexer_handle_pragma): Use cp_lexer_consume_token.  Don't
2321         purge the token; do clear token->value after processing.  Add
2322         assertion at beginning that token->value is nonzero.
2323         (cp_parser_statement, cp_parser_declaration_seq_opt): Handle
2324         CPP_PRAGMA as a full statement or declaration in its own right.
2326 2004-09-21  Matt Austern  <austern@apple.com>
2328         PR c++/15049
2329         * decl.c (grokvardecl): Accept declarations of global variables
2330         using anonymous types.
2332 2004-09-21  Roger Sayle  <roger@eyesopen.com>
2334         PR c++/7503
2335         * tree.c (lvalue_p_1):  Disallow MIN_EXPR and MAX_EXPR as lvalues
2336         if either operand has side-effects.
2337         * typeck.c (rationalize_conditional_expr): Assert that neither
2338         operand of MIN_EXPR or MAX_EXPR has side-effects.
2339         (build_modify_expr):  Add support for MIN_EXPR and MAX_EXPR.
2340         Check that the "lhs" is a valid lvalue, i.e. that neither operand
2341         of a MIN_EXPR or MAX_EXPR has a side-effect.
2343 2004-09-21  Nathan Sidwell  <nathan@codesourcery.com>
2345         * cp-tree.h (struct lang_type_header): Remove
2346         uses_multiple_inheritance field.
2347         (TYPE_USES_MULTIPLE_INHERITANCE): Remove.
2348         (TYPE_BASE_CONVS_MAY_REQUIRE_CODE_P): Remove.
2349         (TYPE_USES_VIRTUAL_BASECLASSES): Remove.
2350         (DECL_NEEDS_VTT_PARM_P): Use CLASSTYPE_VBASECLASSES.
2351         (TYPE_CONTAINS_VPTR_P): Likewise.
2352         * call.c (add_template_candidate_real): Use
2353         CLASSTYPE_VBASECLASSES.
2354         (build_special_member_call): Likewise.
2355         * class.c (finish_struct_bits): Remove
2356         TYPE_BASE_CONVS_MAY_REQUIRE_CODE_P & TYPE_USES_VIRTUAL_BASECLASSES
2357         bookkeeping.
2358         (check_bases_and_members): Use TYPE_CONTAINS_VPTR_P.
2359         (create_vtable_ptr): Remove TYPE_BASE_CONVS_MAY_REQUIRE_CODE_P
2360         bookkeeping.
2361         (build_vtt_inits): Use CLASSTYPE_VBASECLASSES.
2362         (accumulate_vtbl_inits, build_vbase_offset_vtbl_entries):
2363         Likewise.
2364         * decl.c (xref_basetypes): Remove TYPE_USES_MULTIPLE_INHERITANCE,
2365         TYPE_BASE_CONVS_MAY_REQUIRE_CODE_P, TYPE_USES_VIRTUAL_BASECLASSES
2366         bookkeeping.
2367         (cxx_maybe_build_cleanup): Use CLASSTYPE_VBASECLASSES.
2368         * decl2.c (maybe_retrofit_in_chrg): Likewise.
2369         * init.c (expand_member, push_base_cleanups): Likewise.
2370         * pt.c (instantiate_class_template): Remove
2371         TYPE_USES_MULTIPLE_INHERITANCE,
2372         TYPE_BASE_CONVS_MAY_REQUIRE_CODE_P, TYPE_USES_VIRTUAL_BASECLASSES
2373         bookkeeping.
2374         * ptree.c (cxx_print_type): Remove TYPE_USES_MULTIPLE_INHERITANCE
2375         check.
2376         * typeck2.c (process_init_constructor): Replace some sorrys with
2377         asserts.
2379 2004-09-21  Andreas Tobler  <a.tobler@schweiz.ch>
2381         * decl.c (reshape_init_array): Initialize max_index_cst to fix
2382         bootstrap failure.
2384 2004-09-20  Mark Mitchell  <mark@codesourcery.com>
2386         PR c++/17530
2387         * pt.c (tsubst): Fix parentheses to accomodate emacs.
2388         (tsubst_baselink): If we get a single function, mark it as used.
2390 2004-09-20  Matt Austern <austern@apple.com>
2391             Zack Weinberg  <zack@codesourcery.com>
2393         * decl.c (make_rtl_for_nonlocal_decl, start_preparsed_function):
2394         Apply lbasename to input_filename before passing to get_fileinfo.
2395         * semantics.c (begin_class_definition): Likewise.
2396         * lex.c (handle_pragma_interface): Apply get_fileinfo to the
2397         correct filename.  Rename variables to be less confusing.
2398         (handle_pragma_implementation): Likewise.  Disable "appears
2399         after file is included" diagnostic.
2401         * parser.c (struct cp_token): Add in_system_header fiag.
2402         (CP_TOKEN_BLOCK_NUM_TOKENS, struct cp_token_block)
2403         (CP_TOKEN_BUFFER_SIZE, cp_token_cache_push_token)
2404         (CPP_NONE, cp_lexer_read_token): Delete.
2405         (struct cp_lexer): Remove first_token, string_tokens,
2406         main_lexer_p fields.  Clarify comments.
2407         (struct cp_token_cache): Now just a pair of pointers.
2408         (CP_LEXER_BUFFER_SIZE): New #define.
2409         (CPP_PURGED): New fake token type.
2410         (cp_lexer_new_from_token_array, cp_lexer_destroy)
2411         (cp_lexer_peek_token_emit_debug_info, cp_lexer_skip_purged_tokens)
2412         (cp_lexer_handle_pragma, cp_token_cache_new, cp_parser_string_literal):
2413         New functions.
2414         (cp_lexer_new_from_tokens): Now a simple wrapper around
2415         cp_lexer_new_from_token_array.
2416         (cp_lexer_set_source_position_from_token): Also update
2417         in_system_header.
2418         (cp_lexer_next_token, cp_lexer_prev_token, cp_lexer_advance_token):
2419         Don't wrap round.
2420         (cp_lexer_token_difference): Dont handle wrapping round.
2421         (cp_lexer_new_main): Enable pragma deferral and raw strings,
2422         read the entire translation unit through c_lex_with_flags into
2423         this lexer's buffer, then turn raw strings back off again.
2424         (cp_lexer_grow_buffer): Adjust for buffer no longer being circular.
2425         (cp_lexer_get_preprocessor_token): No need to handle not being
2426         the main lexer.  Set token->in_system_header too.
2427         (cp_lexer_peek_token): Skip purged tokens.  Feed pragma tokens
2428         to cp_lexer_handle_pragma.  No need to call cp_lexer_read_token.
2429         (cp_lexer_peek_nth_token): Likewise.
2430         (cp_lexer_purge_token): Mark the token PURGED, don't shift all
2431         the other tokens down.
2432         (cp_lexer_purge_tokens_after): Likewise.
2433         (cp_lexer_save_tokens, cp_lexer_rollback_tokens): Don't worry
2434         about there being no tokens.
2435         (cp_lexer_print_token): Revise to give useful information on
2436         all tokens.
2437         (struct cp_parser): Add field translate_strings_p.
2438         (cp_parser_new): Initialize it.
2439         (cp_parser_translation_unit): Destroy the lexer when done.
2440         (cp_parser_parameter_declaration): Restructure saving of
2441         default arguments.
2442         (cp_parser_save_member_function_body): Likewise.
2443         (cp_parser_check_for_invalid_template_id)
2444         (cp_parser_nested_name_specifier_opt, cp_parser_template_id):
2445         Adjust calls to cp_lexer_advance_token.
2446         (cp_parser_skip_to_closing_parenthesis, cp_parser_declaration):
2447         No need to fiddle c_lex_string_translate.
2448         (cp_parser_primary_expression, cp_parser_linkage_specification)
2449         (cp_parser_asm_definition, cp_parser_asm_specification_opt)
2450         (cp_parser_asm_operand_list, cp_parser_asm_clobber_list)
2451         Use cp_parser_string_literal.
2452         (cp_parser_attribute_list): Save and restore
2453         parser->translate_strings_p, not c_lex_string_translate.
2454         (cp_parser_cache_group): Delete.
2455         (cp_parser_cache_group_1): Rename cp_parser_cache_group.  Do
2456         not take a cache argument.
2458 2004-09-20  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
2460         PR c++/14179
2461         * decl.c (reshape_init): Extract array handling into...
2462         (reshape_init_array): New function. Use integers instead of trees
2463         for indices. Handle out-of-range designated initializers.
2465 2004-09-20  Steven Bosscher  <stevenb@suse.de>
2467         * lex.c (cxx_init): Don't set the ridpointer for RID_NULL
2468         to null_node.
2470 2004-09-19  Mark Mitchell  <mark@codesourcery.com>
2472         * decl2.c (determine_visibility): Allow class visibility
2473         directives to override targetm.cxx.export_class_data.
2475 2004-09-18  Kazu Hirata  <kazu@cs.umass.edu>
2477         * call.c, semantics.c: Follow spelling conventions.
2478         * class.c: Fix a comment typo.
2480 2004-09-16  Geoffrey Keating  <geoffk@apple.com>
2482         PR pch/13361
2483         * cp/lex.c (handle_pragma_interface): Duplicate string from tree.
2484         (handle_pragma_implementation): Likewise.
2486 2004-09-17  Jeffrey D. Oldham  <oldham@codesourcery.com>
2487             Zack Weinberg  <zack@codesourcery.com>
2489         * cp-tree.def: Use tree_code_class enumeration constants
2490         instead of code letters.
2491         * call.c, class.c, cp-gimplify.c, cp-lang.c, cxx-pretty-print.c
2492         * mangle.c, pt.c, semantics.c, tree.c, typeck.c:
2493         Update for new tree-class enumeration constants.
2495 2004-09-16  Mark Mitchell  <mark@codesourcery.com>
2497         PR c++/16002
2498         * parser.c (cp_parser_simple_declaration): Commit to tentative
2499         parses after seeing a decl-specifier.
2500         (cp_parser_simple_declaration): Eliminate spurious message.
2501         (cp_parser_init_declarator): Adjust error message.
2503         PR c++/16029
2504         * lex.c (unqualified_name_lookup_error): Mark the dummy
2505         declaration as used.
2507         PR c++/17501
2508         * parser.c (cp_parser_nested_name_specifier): Do not resolve
2509         typename types if the user explicitly said "typename".
2511 2004-09-16  Andrew MacLeod  <amacleod@redhat.com>
2513         * error.c (dump_decl): Make sure there is lang_specific info before
2514         checking for DTOR and CTOR decls.
2516 2004-09-16  Nathan Sidwell  <nathan@codesourcery.com>
2518         * class.c (copy_virtuals): Remove.
2519         (build_primary_vtable): Use copy_list directly.
2520         (build_secondary_vtable): Likewise.
2521         (update_vtable_entry_for_fn): Clear BV_CALL_INDEX here.
2522         (create_vtable_ptr): Likewise.
2524 2004-09-16  Kazu Hirata  <kazu@cs.umass.edu>
2526         * search.c: Follow spelling conventions.
2528 2004-09-16  Nathan Sidwell  <nathan@codesourcery.com>
2530         * cp-tree.h (struct lang_type_class): Make pure_virtuals a
2531         VEC(tree).
2532         (CLASSTYPE_INLINE_FRIENDS, CLASSTYPE_PURE_VIRTUALS): Update
2533         comments.
2534         * call.c (build_new_method_call): Don't confirm a pure virtual is
2535         in CLASSTYPE_PURE_VIRTUALS.  Reorder checks. Make it a warning.
2536         * class.c (check_methods): CLASSTYPE_INLINE_FRIENDS is a VEC(tree).
2537         (fixup_inline_methods, finish_struct): Likewise.
2538         * decl.c (finish_method): Likewise.
2539         * search.c (dfs_get_pure_virtuals, get_pure_virtuals):
2540         CLASSTYPE_PURE_VIRTUALS is a VEC(tree).
2541         * typeck2.c (abstract_virtuals_error): Likewise. Truncate the
2542         vector to avoid repeating the list in error messages.
2544 2004-09-15  Mark Mitchell  <mark@codesourcery.com>
2546         * cp-objcp-common.h (LANG_HOOKS_COMDAT_GROUP): Define.
2547         * cp-tree.h (cxx_comdat_group): Declare.
2548         * decl.c (cxx_comdat_group): New function.
2550 2004-09-15  Nathan Sidwell  <nathan@codesourcery.com>
2552         * search.c (get_pure_virtuals): Remove unused variables.
2554         * cp-tree.h (struct lang_decl_flags): Remove
2555         needs_final_overrider.
2556         (DECL_NEEDS_FINAL_OVERRIDER_P): Remove.
2557         * decl.c (duplicate_decls): Do not copy DECL_NEEDS_FINAL_OVERRIDER_P.
2558         * class.c (finish_struct_bits): Correct comment about
2559         CLASSTYPE_PURE_VIRTUALS.
2560         * search.c (get_pure_virtuals): Remove useless loop.
2562 2004-09-14  Mark Mitchell  <mark@codesourcery.com>
2564         PR c++/17324
2565         * mangle.c (partially_mangled_name): New variable.
2566         (partially_mangled_name_len): Likewise.
2567         (save_partially_mangled_name): New function.
2568         (restore_partially_mangled_name): Likewise.
2569         (write_encoding): Save and restore partially mangled names around
2570         calls to get_mostly_instantiated_function_type.
2571         (write_unqualified_name): Likewise.
2573 2004-09-14  Nathan Sidwell  <nathan@codesourcery.com>
2575         * pt.c (unify): Replace gcc_unreachable with gcc_assert.
2577 2004-09-13  Mark Mitchell  <mark@codesourcery.com>
2579         PR c++/16162
2580         * parser.c (cp_parser_id_expression): Correct value for
2581         is_declarator.
2582         (cp_parser_nested_name_specifier_opt): Look through typenames as
2583         necessary.
2584         (cp_parser_template_name): Honor check_dependency_p.
2586         PR c++/16716
2587         * parser.c (cp_parser_parse_and_diagnose_invalid_type_name):
2588         Robustify.
2590         PR c++/17327
2591         * pt.c (unify): Add ENUMERAL_TYPE case.  Replace sorry with
2592         gcc_unreacable.
2594 2004-09-12  Richard Henderson  <rth@redhat.com>
2596         PR c++/16254
2597         * semantics.c (maybe_cleanup_point_expr): Don't call fold.
2598         * typeck.c (condition_conversion): Likewise.
2600 2004-09-11  Richard Henderson  <rth@redhat.com>
2602         PR c++/17404
2603         * pt.c (cur_stmt_expr): Move from tsubst_expr.
2604         (tsubst_expr) <case STMT_EXPR>: Move ...
2605         (tsubst_copy_and_build): ... here.
2607 2004-09-10  Zack Weinberg  <zack@codesourcery.com>
2609         * cp-tree.h (interface_only, interface_unknown): Delete declarations;
2610         comment explaining them moved to c-common.h.
2611         * lex.c (interface_only, interface_unknown, extract_interface_info):
2612         Delete definitions.
2613         (cxx_finish): Don't reset interface_unknown.
2614         (handle_pragma_interface): Don't set interface_only and
2615         interface_unknown; just the like-named fields in finfo.
2616         (handle_pragma_implementation): Adjust comment.
2617         * decl2.c (cp_finish_file): Don't reset interface_only and
2618         interface_unknown.
2619         * method.c (synthesize_method): Don't reset interface_unknown or
2620         call extract_interface_info.
2621         * pt.c (pop_tinst_level): Don't call extract_interface_info.
2622         * decl.c (start_cleanup_fn): Don't save or restore interface_only
2623         and interface_unknown.
2624         (make_rtl_for_nonlocal_decl): Call get_fileinfo on input_filename
2625         and use the result instead of the interface_only/interface_unknown
2626         globals.
2627         (start_preparsed_function): Likewise.
2628         * lex.c (cxx_make_type): Likewise.
2629         * semantics.c (begin_class_definition): Likewise.
2630         (expand_body): Don't call extract_interface_info.
2632 2004-09-10  Ziemowit Laski  <zlaski@apple.com>
2634         * decl.c (objc_mark_locals_volatile): Make description of
2635         routine more descriptive; only mark VAR_DECLs at each
2636         binding level.
2638 2004-09-10  Richard Henderson  <rth@redhat.com>
2640         PR c++/17386
2641         * call.c (build_vfield_ref): Move...
2642         * class.c (build_vfield_ref): ... here.  Convert datum to the
2643         primary base containing the vptr.
2644         (make_new_vtable): Simplify build_primary_vtable arguments.
2645         (finish_struct_1): Do not duplicate TYPE_VFIELD.
2646         * typeck.c (build_class_member_access_expr): Don't warn for
2647         null object access to base fields.
2649 2004-09-10  Ziemowit Laski  <zlaski@apple.com>
2651         * decl.c (objc_get_current_scope, objc_mark_locals_volatile):
2652         New functions, to be called from ObjC++.
2654 2004-09-10  Kazu Hirata  <kazu@cs.umass.edu>
2656         * class.c, cp-tree.h, decl.c, decl2.c, mangle.c,
2657         name-lookup.h, parser.c, search.c, semantics.c, typeck2.c: Fix
2658         comment typos.
2660 2004-09-09  Ziemowit Laski  <zlaski@apple.com>
2662         * typeck.c (build_c_cast): Preserve the cast if casting
2663         to and from an Objective-C type.
2665 2004-09-09  Ziemowit Laski  <zlaski@apple.com>
2667         * Make-lang.in (cp/typeck.o): Depend on c-common.h.
2668         * typeck.c: Include c-common.h.
2669         (comptypes): For RECORD_TYPEs, call objc_comptypes() and
2670         return the result if nonnegative.
2672 2004-09-09  Zack Weinberg  <zack@codesourcery.com>
2674         * decl2.c (import_export_class)
2675         * lex.c (handle_pragma_interface):
2676         Test MULTIPLE_SYMBOL_SPACES with if, not #ifdef.
2678 2004-09-08  Ziemowit Laski  <zlaski@apple.com>
2680         * Make-lang.in (cp/semantics.o): Depend on c-common.h.
2681         * semantics.c: Include c-common.h.
2682         (finish_compound_stmt): Call objc_clear_super_receiver().
2684 2004-09-08  Ziemowit Laski  <zlaski@apple.com>
2686         * cp-tree.h (do_poplevel): New prototype.
2687         * semantics.c (do_poplevel): Make externally visible.
2689 2004-09-08  Nathan Sidwell  <nathan@codesourcery.com>
2691         * cp-tree.h (tree_pair_s): Define a GC'd vector.
2692         * name-lookup.h (cxx_saved_binding, cp_class_binding): Likewise.
2693         * semantics.c (deferred_access): Likewise.
2695 2004-09-06  Daniel Jacobowitz  <dan@debian.org>
2697         * semantics.c (expand_body): Assert that we are not nested.
2699 2004-09-06  Zack Weinberg  <zack@codesourcery.com>
2701         * decl.c (build_enumerator): Use add_double and int_fits_type_p
2702         instead of cp_build_binary_op, to avoid creating short-lived trees.
2703         * parser.c (cp_parse_type_specifier <RID_ENUM>): Use two-token
2704         lookahead instead of backtracking.  Move some code to avoid a
2705         conditional branch.
2706         (cp_parser_enum_specifier): Avoid duplication of effort with caller.
2707         Use cp_lexer_next_token_is/cp_lexer_next_token_is_not as appropriate.
2708         (cp_parser_enumerator_list, cp_parser_enumerator_definition):
2709         Use cp_lexer_next_token_is/cp_lexer_next_token_is_not as appropriate.
2711 2004-09-04  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2713         * decl.c (grok_declarator): Remove a redundant semicolon.
2715         * parser.c (cp_parser_decl_specifier_seq, cp_parser_type_specifier):
2716         Correct comments describing function parameters.
2718 2004-09-03  Matt Austern  <austern@apple.com>
2719         Compile speed improvement.
2720         * parser.c (cp_lexer_print_token): Only define if ENABLE_CHECKING set.
2721         Otherwise define a stub macro that expands to nothing.
2722         (cp_lexer_debugging_p): Only define if ENABLE_CHECKING set.  Otherwise
2723         define a stub macro that expands to 0.
2724         (cp_lexer_start_debugging): Only define if ENABLE_CHECKING set.
2725         (cp_lexer_stop_debugging): Likewise.
2726         (cp_lexer_debug_stream): Only define if ENABLE_CHECKING set.  Otherwise
2727         define a stub macro that expands to NULL.
2728         (cp_lexer_new_main): Only set debugging_p if ENABLE_CHECKING set.
2729         (cp_lexer_new_from_tokens): Likewise.
2731 2004-09-03  Jan Hubicka  <jh@suse.cz>
2733         * decl.c (finish_function): Clean out pointers we no longer need.
2735 2004-09-03  Jan Beulich  <jbeulich@novell.com>
2737         * g++spec.c (MATH_LIBRARY_PROFILE): Default to MATH_LIBRARY rather
2738         than "-lm".
2740 2004-09-02  Paul Brook  <paul@codesourcery.com>
2742         * decl2.c (determine_visibility): Only check data visibility
2743         for VAR_DECLS.
2745 2004-08-31  Mark Mitchell  <mark@codesourcery.com>
2747         * cp-tree.h (DECL_CONSTRUCTION_VTABLE_P): New macro.
2748         * class.c (build_ctor_vtbl_group): Set DECL_CONSTRUCTION_VTABLE_P.
2749         * decl2.c (determine_visibility): Honor
2750         TARGET_CXX_EXPORT_CLASS_DATA.
2752         * class.c (key_method): Rename to ...
2753         (determine_key_method): ... this.
2754         (finish_struct_1): Adjust accordingly.
2755         * cp-tree.h (key_method): Declare.
2756         * decl2.c (maybe_emit_vtables): Determine the key method here if
2757         it has not already been done.
2759 2004-08-31  Ziemowit Laski  <zlaski@apple.com>
2761         * Make-lang.in (CXX_AND_OBJCXX_OBJS): Add cp/cp-objcp-common.o.
2762         (cp/cp-lang.o): Depend on debug.h, gtype-cp.h and cp/cp-objcp-common.h.
2763         (cp/cp-decl.c): Do not depend on gtype-cp.h.
2764         (cp/cp-objcp-common.o): New target.
2765         * cp-lang.c: Include debug.h, cp-objcp-common.h and gtype-cp.h.
2766         (cxx_get_alias_set, cxx_warn_unused_global_decl, cp_expr_size,
2767         cp_tree_size, cp_var_mod_type_p, cxx_initialize_diagnostics): Move
2768         prototypes and definitions to cp-objcp-common.h and cp-objcp-common.c,
2769         respectively.
2770         (LANG_HOOKS_TREE_SIZE, LANG_HOOKS_FINISH,
2771         LANG_HOOKS_CLEAR_BINDING_STACK, LANG_HOOKS_INIT_OPTIONS,
2772         LANG_HOOKS_INITIALIZE_DIAGNOSTICS, LANG_HOOKS_HANDLE_OPTION,
2773         LANG_HOOKS_HANDLE_FILENAME, LANG_HOOKS_MISSING_ARGUMENT,
2774         LANG_HOOKS_POST_OPTIONS, LANG_HOOKS_GET_ALIAS_SET,
2775         LANG_HOOKS_EXPAND_CONSTANT, LANG_HOOKS_EXPAND_EXPR,
2776         LANG_HOOKS_EXPAND_DECL, LANG_HOOKS_PARSE_FILE,
2777         LANG_HOOKS_DUP_LANG_SPECIFIC_DECL, LANG_HOOKS_TRUTHVALUE_CONVERSION,
2778         LANG_HOOKS_SET_DECL_ASSEMBLER_NAME, LANG_HOOKS_MARK_ADDRESSABLE,
2779         LANG_HOOKS_PRINT_STATISTICS, LANG_HOOKS_PRINT_XNODE,
2780         LANG_HOOKS_PRINT_DECL, LANG_HOOKS_PRINT_TYPE,
2781         LANG_HOOKS_PRINT_IDENTIFIER, LANG_HOOKS_PRINT_ERROR_FUNCTION,
2782         LANG_HOOKS_WARN_UNUSED_GLOBAL_DECL, LANG_HOOKS_WRITE_GLOBALS,
2783         LANG_HOOKS_FUNCTION_INIT, LANG_HOOKS_FUNCTION_FINAL,
2784         LANG_HOOKS_FUNCTION_MISSING_NORETURN_OK_P,
2785         LANG_HOOKS_COMMON_ATTRIBUTE_TABLE, LANG_HOOKS_FORMAT_ATTRIBUTE_TABLE,
2786         LANG_HOOKS_ATTRIBUTE_TABLE, LANG_HOOKS_TREE_INLINING_WALK_SUBTREES,
2787         LANG_HOOKS_TREE_INLINING_CANNOT_INLINE_TREE_FN,
2788         LANG_HOOKS_TREE_INLINING_ADD_PENDING_FN_DECLS,
2789         LANG_HOOKS_TREE_INLINING_AUTO_VAR_IN_FN_P,
2790         LANG_HOOKS_TREE_INLINING_ANON_AGGR_TYPE_P,
2791         LANG_HOOKS_TREE_INLINING_VAR_MOD_TYPE_P,
2792         LANG_HOOKS_TREE_DUMP_DUMP_TREE_FN,
2793         LANG_HOOKS_TREE_DUMP_TYPE_QUALS_FN, LANG_HOOKS_EXPR_SIZE,
2794         LANG_HOOKS_CALLGRAPH_ANALYZE_EXPR,
2795         LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION, LANG_HOOKS_MAKE_TYPE,
2796         LANG_HOOKS_TYPE_FOR_MODE, LANG_HOOKS_TYPE_FOR_SIZE,
2797         LANG_HOOKS_SIGNED_TYPE, LANG_HOOKS_UNSIGNED_TYPE,
2798         LANG_HOOKS_SIGNED_OR_UNSIGNED_TYPE, LANG_HOOKS_INCOMPLETE_TYPE_ERROR,
2799         LANG_HOOKS_TYPE_PROMOTES_TO, LANG_HOOKS_REGISTER_BUILTIN_TYPE,
2800         LANG_HOOKS_GIMPLIFY_EXPR, LANG_HOOKS_FOLD_OBJ_TYPE_REF): Move
2801         hooks to cp-objcp-common.h.
2802         (finish_file): New function.
2803         * cp-objcp-common.c: New file.
2804         * cp-objcp-common.h: New file.
2805         * cp-tree.h (cp_finish_file): New prototype.
2806         * decl.c: Do not include gtype-cp.h.
2807         * decl2.c (finish_file): Rename to cp_finish_file.
2809 2004-08-31  Richard Henderson  <rth@redhat.com>
2811         PR c++/17221
2812         * pt.c (tsubst_expr): Move OFFSETOF_EXPR handling ...
2813         (tsubst_copy_and_build): ... here.
2815 2004-08-30  Mark Mitchell  <mark@codesourcery.com>
2817         * cp-tree.h (initialize_artificial_var): Declare.
2818         * decl.c (initialize_artifical_var): New function.
2819         * class.c (initialize_array): Remove.
2820         (initialize_vtable): Use initialize_artificial_var.
2821         (build_vtt): Likewise.
2822         (build_ctor_vtbl_group): Likewise.
2824 2004-08-30  Richard Henderson  <rth@redhat.com>
2826         * class.c (build_base_path): Use build_address directly.
2827         * typeck.c (build_unary_op): Don't lower &a.b to pointer
2828         arithmetic directly.
2829         * typeck2.c (store_init_value): Don't assume !TREE_CONSTANT
2830         means !initializer_constant_valid_p.
2832 2004-08-30  Richard Henderson  <rth@redhat.com>
2834         * class.c (fixed_type_or_null): Use get_base_address before
2835         assuming an ADDR_EXPR is non-null.
2837 2004-08-30  Nathan Sidwell  <nathan@codesourcery.com>
2839         * name-lookup.c (pop_binding, pushdecl,
2840         set_identifier_type_value_with_scope, push_overloaded_decl,
2841         arg_assoc_type): Replace abort with gcc_assert or gcc_unreachable.
2842         * parser.c (cp_parser_diagnose_invalid_type_name,
2843         cp_parser_postfix_expression, cp_parser_unary_expression,
2844         cp_parser_check_declarator_template_para): Likewise.
2845         * pt.c (push_inline_template_parms_recursive,
2846         check_explicit_specialization, convert_nontype_argument,
2847         coerce_template_template_parms, uses_template_parms,
2848         instantiate_class_template, tsubst_decl, tsubst, tsubst_copy,
2849         tsubst_expr, instantiate_template,
2850         maybe_adjust_types_for_deduction, type_unification_real,
2851         resolve_overloaded_unification, template_decl_level,
2852         type_dependent_expression_p): Likewise.
2853         * search.c (lookup_base_r): Likewise.
2854         * semantics.c (finish_stmt_expr, simplify_aggr_init_expr): Likewise.
2855         * tree.c (lvalue_p_1, count_functions, cxx_printable_name,
2856         verify_stmt_tree_r, get_type_decl, stabilize_call): Likewise.
2857         * typeck.c (common_type, get_member_function_from_ptrfunc,
2858         build_binary_op, build_unary_op, expand_ptrmemfunc_cst): Likewise.
2859         * typeck2.c (cxx_incomplete_type_diagnostic,
2860         split_nonconstant_init_1, store_init_value,
2861         process_init_constructor): Likewise.
2863 2004-08-30  Nathan Sidwell  <nathan@codesourcery.com>
2865         * call.c (check_dtor_name): Replace abort with gcc_assert or
2866         gcc_unreachable.
2867         (build_call, add_builtin_candidate, build_new_op,
2868         convert_like_real, build_over_call, in_charge_arg_for_name,
2869         source_type, joust): Likewise.
2870         * class.c (build_simple_base_path, get_vcall_index,
2871         finish_struct_1, instantiate_type, get_enclosing_class,
2872         add_vcall_offset_vtbl_entries_1, cp_fold_obj_type_ref): Likewise.
2873         * cp-gimplify.c (cp_genericize): Likewise.
2874         * cp-lang.c (cp_expr_size, cp_tree_size): Likewise.
2875         * cvt.c (cp_convert_to_pointer, ocp_convert): Likewise.
2876         * decl.c (poplevel, make_unbound_class_template, reshape_init,
2877         check_special_function_return_type, grokdeclarator,
2878         grok_op_properties, tag_name, xref_tag, start_preparsed_function,
2879         finish_function): Likewise.
2880         * decl2.c (grokfield, maybe_emit_vtables):Likewise.
2881         * error.c (dump_global_iord, dump_decl, dump_template_decl,
2882         language_to_string): Likewise.
2883         * except.c (choose_personality_routine): Likewise.
2884         * friend.c (do_friend): Likewise.
2885         * g++spec.c (lang_specific_driver): Likewise.
2886         * init.c (build_zero_init, expand_default_init, build_new_1,
2887         build_vec_delete_1, build_vec_init, build_dtor_call): Likewise.
2888         * lex.c (retrofit_lang_decl, cp_type_qual_from_rid): Likewise.
2889         * mangle.c (add_substitution, write_unscoped_name,
2890         write_template_prefix, write_identifier,
2891         write_special_name_destructor, write_type, write_builtin_type,
2892         write_expression, write_template_param,
2893         write_java_integer_type_codes): Likewise.
2894         * method.c (implicitly_declare_fn): Likewise.
2896 2004-08-30  Nathan Sidwell  <nathan@codesourcery.com>
2898         * cp-tree.h (BINFO_PRIMARY_P): Use a binfo flag.
2899         (BINFO_INDIRECT_PRIMARY_P): Remove.
2900         * class.c (determine_primary_base): Rename to ...
2901         (determine_primary_bases): ... here.  Set all primary bases.
2902         (set_primary_base): Remove.
2903         (mark_primary_bases): Remove.
2904         (build_simple_base_path, walk_subobject_offsets,
2905         propagate_binfo_offsets, end_of_class): Adjust.
2906         (layout_class_type): Rename determine_primary_base call.
2907         (dump_class_hierarchy_r, dump_vtable): Adjust. Don't pass a binfo
2908         to type_as_string.
2909         (dfs_build_secondary_vptr_vtt_inits, dfs_accumulate_vtbl_inits,
2910         build_rtti_vtbl_entries): Adjust.
2911         * init.c (build_vtbl_address): Adjust.
2913         * cp-tree.h (SET_BINFO_NEW_VTABLE_MARKED): Use gcc_assert.
2915 2004-08-28  Ziemowit Laski  <zlaski@apple.com>
2917         * Make-lang.in (CXX_OBJS): Split up into CXX_OBJS and
2918         CXX_AND_OBJCXX_OBJS.
2919         (CXX_C_OBJS): Include in CXX_AND_OBJCXX_OBJS instead of listing
2920         separately on the link line.
2922 2004-08-28  Jason Merrill  <jason@redhat.com>
2924         * decl.c (expand_static_init): Avoid bogus warnings.
2926 2004-08-27  Jason Merrill  <jason@redhat.com>
2928         PR c++/16851
2929         * tree.c (stabilize_init): See through a COMPOUND_EXPR.
2931         PR c++/13684
2932         * decl.c (expand_static_init): Use thread-safety API.
2933         (register_dtor_fn): Return the call, don't expand it.
2934         * tree.c (add_stmt_to_compound): New fn.
2935         (stabilize_call): Use it.
2937 2004-08-27  Richard Henderson  <rth@redhat.com>
2939         * cp-tree.def (OFFSETOF_EXPR): New.
2940         * parser.c (cp_parser_builtin_offsetof): Either built an
2941         OFFSETOF_EXPR, or call fold_offsetof immediately.
2942         * pt.c (tsubst_expr): Handle OFFSETOF_EXPR.
2944 2004-08-27  Nathan Sidwell  <nathan@codesourcery.com>
2946         * call.c (validate_conversion_obstack): Replace
2947         my_friendly_assert with gcc_assert or gcc_unreachable.
2948         (direct_reference_binding, merge_conversion_sequences,
2949         build_user_type_conversion_1, perform_overload_resolution,
2950         build_op_delete_call, enforce_access, call_builtin_trap,
2951         build_over_call, build_special_member_call, build_new_method_call,
2952         initialize_reference): Likewise.
2953         * class.c (build_base_path, build_primary_vtable, alter_access,
2954         check_bases, update_vtable_entry_for_fn, layout_empty_base,
2955         clone_function_decl, adjust_clone_args,
2956         type_requires_array_cookie, include_empty_classes,
2957         finish_struct_1, resolve_address_of_overloaded_function,
2958         instantiate_type, get_vtbl_decl_for_binfo, build_vtt_inits,
2959         dfs_build_secondary_vptr_vtt_inits, build_ctor_vtbl_group,
2960         accumulate_vtbl_inits, build_vtbl_initializer,
2961         build_vbase_offset_vtbl_entries, build_rtti_vtbl_entries): Likewise.
2962         * cvt.c (build_up_reference, convert_to_reference): Likewise.
2963         * decl.c (poplevel, duplicate_decls, make_typename_type,
2964         cxx_init_decl_processing, reshape_init, check_initializer,
2965         make_rtl_for_nonlocal_decl, initialize_local_var, cp_finish_decl,
2966         expand_static_init, grokfndecl, grokvardecl, build_ptrmem_type,
2967         grokdeclarator, copy_fn_p, grok_op_properties, xref_tag,
2968         xref_basetypes, start_preparsed_function, save_function_data,
2969         finish_function, finish_method, maybe_register_incomplete_var,
2970         complete_vars): Likewise.
2971         * decl2.c (grok_array_decl, check_member_template,
2972         check_classfn, finish_static_data_member_decl, coerce_new_type,
2973         coerce_delete_type, import_export_class, decl_needed_p,
2974         determine_visibility, import_export_decl, build_cleanup,
2975         start_static_initialization_or_destructi, do_static_destruction,
2976         prune_vars_needing_no_initialization,
2977         build_offset_ref_call_from_tree): Likewise.
2978         * error.c (dump_decl, dump_expr): Likewise.
2979         * init.c (finish_init_stmts, build_zero_init,
2980         expand_virtual_init, expand_default_init, expand_aggr_init_1,
2981         build_offset_ref, build_new_1, build_delete, build_vbase_delete):
2982         Likewise.
2983         * mangle.c (write_method_parms, write_template_args,
2984         write_expression, write_template_arg): Likewise.
2985         * method.c (make_thunk, finish_thunk, use_thunk): Likewise.
2986         * name-lookup.c (pop_binding, begin_scope, leave_scope,
2987         resume_scope, push_using_decl, validate_nonmember_using_decl,
2988         is_ancestor, poplevel_class, set_inherited_value_binding_p,
2989         push_class_level_binding, do_class_using_decl, push_namespace,
2990         pop_namespace, add_using_namespace, ambiguous_decl,
2991         lookup_namespace_name, lookup_type_current_level,
2992         maybe_process_template_type_declaration): Likewise.
2993         * parser.c (cp_lexer_peek_nth_token,
2994         cp_parser_parse_and_diagnose_invalid_typ,
2995         cp_parser_translation_unit, cp_parser_template_id,
2996         cp_parser_lookup_name, cp_parser_late_parsing_for_member): Likewise.
2997         * pt.c (push_access_scope, finish_member_template_decl,
2998         push_inline_template_parms_recursive, add_outermost_template_args,
2999         get_innermost_template_args, begin_explicit_instantiation,
3000         end_explicit_instantiation, retrieve_specialization,
3001         is_specialization_of, is_specialization_of_friend,
3002         register_specialization, check_explicit_specialization,
3003         comp_template_parms, process_template_parm,
3004         process_partial_specialization, convert_nontype_argument,
3005         coerce_template_template_parms, coerce_template_parms,
3006         mangle_class_name_for_template, lookup_template_function,
3007         lookup_template_class, instantiate_class_template, tsubst_decl,
3008         tsubst_function_type, tsubst, tsubst_qualified_id, tsubst_copy,
3009         instantiate_template, fn_type_unification, type_unification_real,
3010         get_template_base, regenerate_decl_from_template,
3011         template_for_substitution, instantiate_decl,
3012         get_mostly_instantiated_function_type, dependent_scope_ref_p,
3013         value_dependent_expression_p, resolve_typename_type): Likewise.
3014         * repo.c (repo_emit_p): Likewise.
3015         * rtti.c (build_headof, get_tinfo_decl, get_pseudo_ti_init,
3016         create_tinfo_types, emit_tinfo_decl): Likewise.
3017         * search.c (lookup_base_r, lookup_base, lookup_field_1,
3018         dfs_access_in_type, build_baselink, lookup_member,
3019         adjust_result_of_qualified_name_lookup, copied_binfo): Likewise.
3020         * semantics.c (perform_or_defer_access_check,
3021         finish_non_static_data_member, finish_stmt_expr_expr,
3022         finish_stmt_expr, finish_call_expr, finish_pseudo_destructor_expr,
3023         finish_template_template_parm, finish_member_declaration,
3024         emit_associated_thunks): Likewise.
3025         * tree.c (build_target_expr_with_type, force_target_expr,
3026         copy_binfo, get_first_fn, cp_tree_equal): Likewise.
3027         * typeck.c (type_after_usual_arithmetic_conversions, comptypes,
3028         cxx_sizeof_or_alignof_type, perform_integral_promotions,
3029         build_class_member_access_expr, finish_class_member_access_expr,
3030         build_ptrmemfunc_access_expr, build_unary_op,
3031         unary_complex_lvalue, cxx_mark_addressable, build_modify_expr,
3032         build_ptrmemfunc, expand_ptrmemfunc_cst, check_return_expr
3033         * typeck2.c (complete_type_check_abstract,
3034         abstract_virtuals_error, process_init_constructor,
3035         add_exception_specifier): Likewise.
3037 2004-08-27  Nathan Sidwell  <nathan@codesourcery.com>
3039         * class.c (build_vtbl_initializer): Use ssize_int.
3040         * decl.c (complete_array_type): Likewise.
3041         * method.c (finish_thunk): Likewise.
3042         * search.c (get_dynamic_base_type): Likewise.
3044 2004-08-26  Richard Henderson  <rth@redhat.com>
3046         * cp-tree.h (DECL_FIELD_IS_BASE): New.
3047         * class.c (build_base_field): Set it.
3048         (build_simple_base_path): Use it.
3049         (fixed_type_or_null): Don't consider base fields definitive.
3051 2004-08-25  Roger Sayle  <roger@eyesopen.com>
3053         PR middle-end/16693
3054         PR tree-optimization/16372
3055         * decl.c (finish_enum): Make the precision of the enumerated type
3056         the same width as the underlying integer type.
3058 2004-08-25  Mark Mitchell  <mark@codesourcery.com>
3060         PR c++/17155
3061         * lex.c (build_lang_decl): Set DECL_NO_STATIC_CHAIN for all C++
3062         functions.
3064         * mangle.c (get_identifier_nocopy): Add cast.
3066         * cp-tree.h (mangle_type): Remove.
3067         * mangle.c (globals): GTY it.
3068         (mangle_obstack): New variable.
3069         (name_obstack): Likewise.
3070         (name_base): Likewise.
3071         (write_char): Adjust accordingly.
3072         (write_chars): Likewise.
3073         (write_string): Likewise.
3074         (start_mangling): Initialize G.substitutions only one.  Add
3075         ident_p parameter.
3076         (finish_mangling): Use VARRAY_CLEAR to reclaim
3077         storage in G.substitutions.  Use obstack_finish.
3078         (init_mangle): Adjust for changes to variable names above.
3079         Initialize G.substitutions.
3080         (mangle_decl_string): Adjust call to start_mangling.
3081         (get_identifier_nocopy): New function.
3082         (mangle_decl): Use it.
3083         (mangle_type_string): Adjust call to start_mangling.
3084         (mangle_special_for_type): Likewise.
3085         (mangle_vtt_for_type): Likewise.
3086         (mangle_ctor_vtbl_for_type): Likewise.
3087         (mangle_thunk): Likewise.
3088         (mangle_guard_variable): Likewise.
3089         (mangle_ref_init_variable): Likewise.
3091 2004-08-25  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3093         PR c++/14428
3094         * pt.c (redeclare_class_template): Check the type of non-type and
3095         template template parameter.
3097 2004-08-25  Nathan Sidwell  <nathan@codesourcery.com>
3099         * call.c (convert_class_to_reference): Adjust build_int_cst calls.
3100         (build_user_type_conversion_1, convert_like_real,
3101         build_java_interface_fn_ref, build_special_member_call): Likewise.
3102         * class.c (finish_struct_1, build_vtbl_initializer): Likewise.
3103         * cp-gimplify.c (cp_gimplify_expr): Likewise.
3104         * cvt.c (cp_convert_to_pointer): Likewise.
3105         * decl.c (cxx_init_decl_processing, complete_array_type): Likewise.
3106         * decl2.c (start_static_initialization_or_destruction,
3107         generate_ctor_or_dtor_function): Likewise.
3108         * except.c (build_throw): Likewise.
3109         * mangle.c (write_integer_cst): Likewise.
3110         * method.c (finish_thunk): Likewise.
3111         * rtti.c (build_headof, get_tinfo_decl_dynamic,
3112         build_dynamic_cast_1, ptr_initializer, ptm_initializer,
3113         get_pseudo_ti_init): Likewise.
3114         * search.c (get_dynamic_cast_base_type): Likewise.
3116 2004-08-25  Zack Weinberg  <zack@codesourcery.com>
3118         * class.c, search.c: Remove references to DWARF_DEBUG.
3120 2004-08-25  Adam Nemet  <anemet@lnxw.com>
3122         * repo.c (extract_string): Reset backquote after one character.
3123         (get_base_filename): Fix indentation.
3125 2004-08-24  Nathan Sidwell  <nathan@codesourcery.com>
3127         * decl.c (cxx_init_decl_processing): Adjust
3128         build_common_tree_nodes call.
3130 2004-08-24  Nathan Sidwell  <nathan@codesourcery.com>
3132         PR c++/16889
3133         * (is_subobject_of_p): Resurrect & optimize.
3134         (lookup_field_r): Use it.
3136 2004-08-24  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3138         PR c++/16706
3139         * search.c (friend_accessible_p): Increment processing_template_decl
3140         when deal with TEMPLATE_DECL of SCOPE.
3142 2004-08-24  Nathan Sidwell  <nathan@codesourcery.com>
3144         PR c++/17149
3145         * semantics.c (check_accessibility_of_qualified_id): Defer check
3146         if qualifying_type is a template parameter.
3148 2004-08-23  Mark Mitchell  <mark@codesourcery.com>
3150         PR c++/17163
3151         * pt.c (instantiate_decl): Do not try to apply
3152         DECL_DECLARED_INLINED_P to a VAR_DECL.
3154         * search.c (build_baselink): Fix typo in comment.
3156 2004-08-22 Andrew Pinski  <apinski@apple.com>
3158         Revert:
3159         2004-08-22  Andrew Pinski  <apinski@apple.com>
3160         PR c++/14029
3161         * typeck.c (build_unary_op): Use &a.b if the folded lowered
3162         expression is not constant.
3164 2004-08-23  Nathan Sidwell  <nathan@codesourcery.com>
3166         * name-lookup.c (pushdecl): Rename build_type_copy call.
3167         * tree.c (cp_build_qualified_type_real,
3168         build_exception_variant, handle_java_interface_attribute): Likewise.
3170 2004-08-22  Andrew Pinski  <apinski@apple.com>
3172         PR c++/14029
3173         * typeck.c (build_unary_op): Use &a.b if the folded lowered
3174         expression is not constant.
3176 2004-08-20  Mark Mitchell  <mark@codesourcery.com>
3178         PR c++/17121
3179         * decl.c (expand_static_init): Use DECL_FUNCTION_SCOPE_P.
3181 2004-08-21  Joseph S. Myers  <jsm@polyomino.org.uk>
3183         PR c++/17120
3184         * pt.c (tsubst_copy_and_build): Avoid clearing TREE_NO_WARNING for
3185         MODOP_EXPR.
3187 2004-08-20  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3189         * pt.c (register_specialization): Check DECL_TEMPLATE_SPECIALIZATION
3190         before calling comp_template_args.
3192 2004-08-20  Nathan Sidwell  <nathan@codesourcery.com>
3194         * class.c (build_vtbl_initializer): Use build_int_cst for
3195         negative size types.
3196         * decl.c (complete_array_type): Likewise.
3197         * method.c (finish_thunk): Likewise.
3199 2004-08-20  Andreas Tobler  <a.tobler@schweiz.ch>
3201         * tree.c: Remove unused mark_local_for_remap_r.
3203 2004-08-19  Eric Christopher  <echristo@redhat.com>
3205         * cp-tree.h (cxx_unsave_expr_now): Delete prototype.
3206         * tree.c (cxx_unsave_expr_now): Delete.
3207         (cp_unsave_r): Ditto.
3209 2004-08-19  Mark Mitchell  <mark@codesourcery.com>
3211         PR c++/15890
3212         * pt.c (push_template_decl_real): Disallow template allocation
3213         functions with fewer than two parameters.
3215 2004-08-19  Nathan Sidwell  <nathan@codesourcery.com>
3217         * cp-tree.h (build_shared_int_cst): Remove.
3218         * tree.c (shared_int_cache): Remove.
3219         (build_shared_int_cst): Remove.
3220         * class.c (finish_struct_1): Use build_int_cst.
3222 2004-08-19  Nathan Sidwell  <nathan@codesourcery.com>
3224         * decl.c (finish_enum): Do not copy value node early, copy
3225         later.
3226         * lex.c (cxx_init): Force null_node to be unique.
3228 2004-08-19  Joseph S. Myers  <jsm@polyomino.org.uk>
3230         PR c++/17041
3231         * pt.c (tsubst_copy, tsubst_copy_and_build): Copy TREE_NO_WARNING
3232         from input for MODOP_EXPR.
3234 2004-08-18  Mark Mitchell  <mark@codesourcery.com>
3236         * pt.c (dependent_template_p): Fix typo in commment.
3238         PR c++/17068
3239         * pt.c (dependent_template_p): Treat IDENTIFIER_NODEs as
3240         dependent.
3242 2004-08-17  Mark Mitchell  <mark@codesourcery.com>
3244         PR c++/16246
3245         * pt.c (unify): Tidy ARRAY_TYPE handling.  Make sure that non-type
3246         arguments have the same type as the corresponding parameter.
3248         PR c++/16215
3249         * parser.c (cp_parser_name_lookup_error): If parser->object_scope
3250         is set use it for diagnostic purposes.
3251         (cp_parser_pseudo_destructor_name): Remove special-case error
3252         message.
3254         PR c++/15871
3255         * semantics.c (expand_or_defer_fn): Honor -fkeep-inline-functions.
3257         PR c++/16965
3258         * cp-tree.h (qualified_name_lookup_error): Add parameter.
3259         * name-lookup.c (do_class_using_decl): Restrict set of entities
3260         passed to cp_emit_debug_info_for_using more carefully.
3261         (lookup_qualified_name): Allow lookup_member to return sets of
3262         ambiguous entries.
3263         * parser.c (cp_parser_lookup_name): Add ambiguous_p parameter.
3264         (cp_parser_primary_expression): Handle ambiguous lookups.
3265         (cp_parser_template_name): Adjust use of cp_parser_lookup_name.
3266         (cp_parser_template_argument): Likewise.
3267         (cp_parser_elaborate_type_specifier): Likewise.
3268         (cp_parser_namespace_name): Likewise.
3269         (cp_parser_class_name): Likewise.
3270         (cp_parser_lookup_name_simple): Likewise.
3271         * pt.c (tsubst_qualified_id): Handle ambiguous results.
3272         (tsubst_expr): Likewise.
3273         * semantics.c (qualified_name_lookup_error): Add decl paramter.
3274         For ambiguous lookups, print candidates.
3276 2004-08-16  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3278         PR c++/6749
3279         * pt.c (instantiate_pending_templates): Add int parameter.  Don't
3280         return anything.
3281         * cp-tree.h (instantiate_pending_templates): Adjust prototype.
3282         * decl2.c (finish_file): Adjust call to
3283         instantiate_pending_templates.
3285 2004-08-15  Roger Sayle  <roger@eyesopen.com>
3287         * call.c (build_vfield_ref, build_call, build_conditional_expr,
3288         convert_arg_to_ellipsis, build_x_va_arg, build_over_call,
3289         build_java_interface_fn_ref, build_special_member_call,
3290         build_new_method_call, initialize_reference): Replace calls to
3291         build with calls to buildN.
3292         * class.c (build_base_path, convert_to_base_statically,
3293         build_vfn_ref, instantiate_type, dfs_accumulate_vtbl_inits,
3294         build_vtbl_initializer): Likewise.
3295         * cp-gimplify.c (genericize_try_block, genericize_catch_block,
3296         gimplify_if_stmt, cp_genericize_r): Likewise.
3297         * cvt.c (convert_to_void): Likewise.
3298         * decl.c (check_initializer, finish_constructor_body,
3299         finish_destructor_body): Likewise.
3300         * error.c (dump_expr): Likewise.
3301         * except.c (build_exc_ptr, expand_start_catch_block, build_throw):
3302         Likewise.
3303         * init.c (perform_member_init, expand_virtual_init,
3304         expand_cleanup_for_base, build_init, expand_default_init,
3305         build_offset_ref, decl_constant_value, build_new, build_new_1,
3306         build_vec_delete_1, build_vec_init, build_delete,
3307         push_base_cleanups, build_vec_delete): Likewise.
3308         * mangle.c (write_integer_cst): Likewise.
3309         * method.c (thunk_adjust, do_build_copy_constructor,
3310         do_build_assign_ref): Likewise.
3311         * pt.c (lookup_template_function, tsubst, tsubst_copy_and_build,
3312         unify, build_non_dependent_expr): Likewise.
3313         * rtti.c (build_headof, build_typeid, ifnonnull,
3314         build_dyanmic_cast_1, tinfo_base_init): Likewise.
3315         * semantics.c (begin_compound_stmt, finish_call_expr,
3316         finish_pseudo_destructor_expr, finish_id_expression,
3317         simplify_aggr_init_expr, finalize_nrv_r): Likewise.
3318         * tree.c (build_target_expr, build_cplus_new, array_type_nelts_top,
3319         array_type_nelts_total, stabilize_call): Likewise.
3320         * typeck.c (decay_conversion, build_class_member_access_expr,
3321         lookup_destructor, build_ptrmemfunc_access_expr, build_array_ref,
3322         get_member_function_from_ptrfunc, build_binary_op, pointer_diff,
3323         build_x_unary_op, build_unary_op, unary_complex_lvalue,
3324         build_compound_expr, build_modify_expr, expand_ptrmemfunc_cst,
3325         check_return_expr): Likewise.
3326         * typeck2.c (split_nonconstant_1, split_nonconstant_init_1,
3327         split_nonconstant_init, store_init_value, build_m_component_ref):
3328         Likewise.
3330 2004-08-15  Nathan Sidwell  <nathan@codesourcery.com>
3332         * call.c (convert_class_to_reference,
3333         build_user_type_conversion_1, convert_like_real,
3334         build_java_interface_fn_ref, build_special_member_call): Use
3335         build_int_cst.
3336         * class.c (build_vtbl_initializer): Likewise.
3337         * cp-gimplify.c (cp_gimplify_expr): Likewise.
3338         * cvt.c (cp_convert_to_pointer): Likewise.
3339         * decl.c (cxx_init_decl_processing, complete_array_type): Likewise.
3340         * decl2.c (start_static_initialization_or_destruction,
3341         generate_ctor_or_dtor_function): Likewise.
3342         * except.c (build_throw): Likewise.
3343         * lex.c (cxx_init): Likewise.
3344         * mangle.c (write_integer_cst): Likewise.
3345         * rtti.c (build_headof, get_tinfo_decl_dynamic,
3346         build_dynamic_cast_1, ptr_initializer, ptm_initializer,
3347         get_pseudo_ti_init): Likewise.
3348         * search.c (get_dynamic_cast_base_type): Likewise.
3349         * tree.c (build_shared_int_cst): Likewise.
3351 2004-08-12  Mark Mitchell  <mark@codesourcery.com>
3353         PR c++/16273
3354         * class.c (count_depth_data): New type.
3355         (dfs_depth_post): New function.
3356         (dfs_depth_q): Likewise.
3357         (find_final_overrider_data_s): Change type of vpath.
3358         Add vpath_list.
3359         (dfs_find_final_overrider_1): New function.
3360         (dfs_find_final_overrider): Use it.
3361         (dfs_find_final_overrider_q): Adjust use of vpath.
3362         (dfs_find_final_overrider_post): Likewise.
3363         (find_final_overrider): Use dfs_depth.  Allocate and deallocate
3364         vpath_list.
3366 2004-08-12 Jan Beulich <jbeulich@novell.com>
3368         * parser.c (cp_parser_asm_definition): Properly consume scope operator
3369         tokens preceding the clobbers. Don't check for scope operator
3370         following inputs. Simplify inputs handling to match that now used for
3371         clobbers.
3373 2004-08-11  Mark Mitchell  <mark@codesourcery.com>
3375         PR c++/16698
3376         * except.c (build_throw): Allocate cleanup_type and the function
3377         for __cxa_throw separately.
3379         PR c++/16853
3380         * call.c (standard_conversion): Do not accept conversions between
3381         pointers to members if the class types are unrelated.
3383         PR c++/16618
3384         * parser.c (cp_parser_builtin_offsetof): Cast to "const volatile
3385         char &" instead of just "char &".
3387         PR c++/16870
3388         * pt.c (tsubst): Just return the unknown_type_node.
3390 2004-08-11  Mark Mitchell  <mark@codesourcery.com>
3392         PR c++/16964
3393         * parser.c (cp_parser_class_specifier): Robustify.
3395         PR c++/16904
3396         * pt.c (tsubst_copy_and_build): Complain about invalid
3397         qualification.
3399         PR c++/16929
3400         * pt.c (tsubst_default_argument): Clear out current_class_ptr and
3401         current_class_ref while tsubsting.
3403 2004-08-10  Mark Mitchell  <mark@codesourcery.com>
3405         PR c++/16971
3406         * parser.c (cp_parser_init_declarator): Robustify.
3408 2004-08-06  Richard Sandiford  <rsandifo@redhat.com>
3410         * typeck2.c (process_init_constructor): Guard the missing field warning
3411         with warn_missing_field_initializers rather than extra_warnings.
3413 2004-08-06  Paolo Bonzini  <bonzini@gnu.org>
3415         * class.c (instantiate_type) <ENTRY_VALUE_EXPR>: Do not handle.
3417 2004-08-05  Mark Mitchell  <mark@codesourcery.com>
3419         * decl.c (start_preparsed_function): Move determine_visibility
3420         call.
3421         * decl2.c (determine_visibility): Incorporate dllexport testing.
3423 2004-08-05  Geoffrey Keating  <geoffk@apple.com>
3425         * g++spec.c (lang_specific_driver): An -Xlinker or -Wl, option
3426         means that libstdc++ is needed.
3428 2004-08-05  Nathan Sidwell  <nathan@codesourcery.com>
3430         * cvt.c (cp_convert_to_pointer): Adjust force_fit_type call.
3432 2004-08-04  Geoffrey Keating  <geoffk@apple.com>
3434         * decl.c (make_rtl_for_nonlocal_decl): Set DECL_ASSEMBLER_NAME rather
3435         than passing it as a parameter to rest_of_decl_compilation.
3436         * decl2.c (grokfield): Use set_user_assembler_name.
3438 2004-08-04  Nathan Sidwell  <nathan@codesourcery.com>
3440         * decl.c (complete_array_type): Don't gratuitously copy
3441         maxindex. Its type is always set.
3443 2004-08-04  Paul Brook  <paul@codesourcery.com>
3445         * Make-lang.in (cp/semantics.o, cp/optimize.o): Depend on TARGET_H.
3446         * cp-tree.h (struct language_function): Rename x_dtor_label to
3447         x_cdtor_label.
3448         (dtor_label): Rename ...
3449         (cdtor_label): ... to this.
3450         * decl.c (begin_constructor_body): Remove.
3451         (check_special_function_return_type): Maybe change the return type.
3452         (grokdeclarator): Pass the class type.
3453         (start_preparsed_function): Constructors may need a return label.
3454         (finish_constructor_body, finish_destructor_body): Set the return
3455         value.
3456         (begin_function_body): Don't call begin_constructor_body.
3457         (finish_function): Don't warn for constructors or destructors.
3458         (implicitly_declare_fn): Maybe change the return type.
3459         * optimize.c: Include target.h.
3460         (maybe_clone_body): Remap the function result.
3461         * semantics.c: Include target.h.
3462         (finish_return_stmt): Maybe jump to return label for constructors.
3464 2004-08-03  Mark Mitchell  <mark@codesourcery.com>
3466         * class.c (build_vtable): Do not set DECL_VISIBILITY here.
3467         (check_field_decls): Or here.
3468         (check_methods): Or here.
3469         (initialize_array): Don't mess with DECL_CONTEXT.
3470         * cp-tree.h (start_decl): Adjust prototype.
3471         (determine_visibility): New function.
3472         * decl.c (duplicate_decls): Remove checks for hidden "operator
3473         new".
3474         (build_library_fn_1): Give all library functions default
3475         visibility.
3476         (start_decl): Add pop_scope_p parameter.  Tidy.
3477         (cp_finish_decl): Do not pop scopes here.  Call
3478         determine_visibility for variable definitions.
3479         (start_preparsed_function): Call determine_visibility.
3480         * decl2.c (determine_visibility): New function.
3481         * method.c (use_thunk): Fix formatting.
3482         * parser.c (cp_parser_condition): Adjust calls to start_decl.
3483         (cp_parser_init_declarator): Likewise.
3484         * pt.c (instantiate_decl): Always call pop_nested_class.
3485         * rtti.c (get_tinfo_decl): Do not set DECL_VISIBILITY.
3486         (tinfo_base_init): Likewise.
3488 2004-08-02  Mark Mitchell  <mark@codesourcery.com>
3490         PR c++/16707
3491         * name-lookup.c (validate_nonmember_using_decl): Robustify.
3493 2004-08-01  Mark Mitchell  <mark@codesourcery.com>
3495         PR c++/16224
3496         * name-lookup.c (decl_namespace): Remove.
3497         (current_decl_namespace): Use decl_namespace_context instead of
3498         decl_namespace.
3499         (push_decl_namespace): Likewise.
3500         (arg_assoc_class): Likewise.
3501         (arg_assoc_type): Likewise.
3502         * pt.c (check_specialization_namespace): New function.
3503         (maybe_process_partial_specialization): Use it.
3504         (register_specialization): Likewise.
3506         PR c++/16489
3507         * cp-tree.h (DECL_INTEGRAL_CONSTANT_VAR_P): New macro.
3508         * call.c (null_ptr_cst_p): Handle variables with constant
3509         initializers.
3510         * pt.c (convert_nontype_argument): Use
3511         DECL_INTEGRAL_CONSTANT_VAR_P.
3512         * semantics.c (finish_id_expression): Likewise.
3514         PR c++/16529
3515         * decl.c (duplicate_decls): Reject duplicate namespace
3516         declarations.
3518         PR c++/16810
3519         * typeck.c (build_ptrmemfunc): Loosen assertion.
3521 2004-08-01  Gabriel Dos Reis  <gdr@integrable-solutions.net>
3523         * call.c (z_candidate::template_decl): Rename from template.
3524         (add_template_candidate_real): Adjust member reference.
3525         (joust): Likewise.
3527 2004-07-29  Mark Mitchell  <mark@codesourcery.com>
3529         * cp-tree.h (IDENTIFIER_REPO_CHOSEN): Define.
3530         (lang_decl_flags): Narrow the width of "languages".  Add
3531         repo_available_p.
3532         (DECL_NEEDED_P): Remove.
3533         (FOR_EACH_CLONE): New macro.
3534         (DECL_REPO_AVAILABLE_P): Likewise.
3535         (DECL_TINFO_P): Likewise.
3536         (set_linkage_according_to_type): Declare.
3537         (import_export_vtable): Remove.
3538         (import_export_tinfo): Likewise.
3539         (mark_needed): New function.
3540         (decl_needed_p): Likewise.
3541         (note_vauge_linkage_fn): Likewise.
3542         (init_repo): Change prototype.
3543         (repo_template_used): Remove.
3544         (repo_template_instantiated): Likewise.
3545         (repo_emit_p): New function.
3546         (repo_export_class_p): Likewise.
3547         (no_linkage_check): Change prototype.
3548         * class.c (set_linkage_according_to_type): New function.
3549         (build_vtable): Use it.  Do not call import_export_vtable.  Set
3550         DECL_IGNORED_P if appropriate.
3551         * decl.c (duplicate_decls): Preserve DECL_REPO_AVAILABLE_P.
3552         (make_rtL_for_nonlocal_decls): Check for template instantiations
3553         explicitly.
3554         (grokfndecl): Adjust call to no_linkage_check.
3555         (set_linkage_for_static_data_member): New function.
3556         (grokvardecl): Use it.  Adjust call to no_linkage_check.
3557         (grokdeclarator): Use set_linkage_for_static_data_member.
3558         * decl2.c (note_vague_linkage_fn): New function.
3559         (note_vague_linkage_var): Likewise.
3560         (finish_static_data_member_decl): Use it.
3561         (import_export_vtable): Remove.
3562         (import_export_class): Use repo_export_class_p.
3563         (var_finalized_p): Simplify.
3564         (maybe_emit_vtables): Simplify.
3565         (mark_needed): New function.
3566         (decl_needed_p): Likewise.
3567         (import_export_decl): Add documentation and consistency checks.
3568         Use repo_emit_p.  Handle virtual tables and RTTI information
3569         here.
3570         (import_export_tinfo): Remove.
3571         (write_out_vars): Call import_export_decl.
3572         (cxx_callgraph_analyze_expr): Ensure that all vtables are emitted
3573         whenever one is.
3574         (finish_file): Use decl_needed_p.  Do not call import_export_decl
3575         for undefined static data members.  Do not warn about undefined
3576         inlines when using a repository.
3577         (mark_used): Use note_vague_linkage_fn.  Always defer template
3578         instantiations.
3579         * lex.c (cxx_init): Adjust call to init_repo.  Always set
3580         flag_unit_at_a-time.
3581         * method.c (synthesize_method): Remove unncessary
3582         import_export_decl call.
3583         (implicitly_declare_fn): Use set_linkage_according_to_type.
3584         * optimize.c (maybe_clone_body): Use FOR_EACH_CLONE.
3585         * pt.c (instantiate_class_template): Don't redundantly add classes
3586         to keyed_classes.  Don't call repo_template_used.
3587         (tsubst_decl): Set DECL_INTERFACE_KNOWN for instantiations of
3588         templates with internal linkage.
3589         (check_instantiated_args): Adjust call to no_linkage_check.
3590         (instantiate_template): Use FOR_EACH_CLONE.
3591         (mark_definable): New function.
3592         (mark_decl_instantiated): Use it.
3593         (do_decl_instantiation): Adjust tests for explicit instantiation
3594         after "extern template".
3595         (instantiate_class_member): Do not use repo_template_instantiated.
3596         (do_type_instantiation): Simplify.
3597         (instantiate_decl): Use mark_definable.  Check repo_emit_p.
3598         Simplify.
3599         * repo.c (repo_get_id): Remove.
3600         (original_repo): Remove.
3601         (IDENTIFIER_REPO_USED): Remove.
3602         (IDENTIFIER_REPO_CHOSEN): Remove.
3603         Remove all #if 0'd code.
3604         (repo_template_used): Remove.
3605         (repo_template_instantiated): Remove.
3606         (temporary_obstack_initialized_p): New variable.
3607         (init_repo): Register with lang_post_pch_load.  Avoid creating
3608         identifiers unnecessarily.  Don't use original_repo.  Close the
3609         file here.
3610         (reopen_repo_file_for_write): Not here.
3611         (finish_repo): Always write out a new repository file.
3612         (repo_emit_p): New function.
3613         (repo_export_class_p): Likewise.
3614         * rtti.c (get_tinfo_decl): Use set_linkage_according_to_type.
3615         (involves_incomplete_p): New function.
3616         (tinfo_base_init): Use it.
3617         (ptr_initializer): Remove non_public_ptr parameter.
3618         (ptm_initializer): Likewise.
3619         (get_pseudo_ti_init): Likewise.
3620         (unemitted_tinfo_decl_p): Remove.
3621         (emit_tinfo_decl): Use import_export_decl.
3622         * semantics.c (expand_body): Move updates of static_ctors and
3623         static_dtors to ...
3624         (expand_or_defer_fn): ... here.
3625         * tree.c (no_linkage_check): Add relaxed_p parameter.
3627 2004-07-28  Eric Christopher  <echristo@redhat.com>
3629         * cp-lang.c (LANG_HOOKS_UNSAFE_FOR_REEVAL): Delete.
3631 2004-07-28  Nathan Sidwell  <nathan@codesourcery.com>
3633         * cp-tree.h (struct tree_pair_s): New.
3634         (typedef tree_pair_p): New.
3635         (DEF_VEC_O(tree_pair_s)): New.
3636         (struct lang_type_class): Make vcall_indices a VEC(tree_pair_s).
3637         (CLASSTYPE_VCALL_INDICES): Update documentation.
3638         * class.c (get_vcall_index): Adjust.
3639         (add_vcall_offset): Adjust.
3641 2004-07-27  Kelley Cook  <kcook@gcc.gnu.org>
3643         * pt.c, typeck.c: Remove spurious carriage returns.
3645 2004-07-27  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3647         PR c++/14429
3648         * pt.c (coerce_template_template_parms) <PARM_DECL case>: Only check
3649         when the type of ARG is not dependent.
3651 2004-07-26  Geoffrey Keating  <geoffk@apple.com>
3653         * g++spec.c (LIBSTDCXX_PROFILE): Default to LIBSTDCXX.
3654         (lang_specific_driver): If the C++ or math library options don't
3655         start with '-l', don't count them as added libraries.
3657 2004-07-26  Nathan Sidwell  <nathan@codesourcery.com>
3659         * decl.c (xref_basetypes): Adjust base access vector creation.
3660         * rtti.c (get_pseudo_ti_init, get_pseudo_ti_desc): Adjust base
3661         access accesses.
3662         * search.c (dynamic_cast_base_recurse, dfs_access_in_type): Likewise.
3664 2004-07-26  Niall Douglas  <s_fsfeurope2@nedprod.com>
3665             Brian Ryner  <bryner@brianryner.com>
3667         PR c++/15000
3668         PR c++/9283
3669         * class.c (check_field_decls): Apply hidden visibility if
3670         -fvisibility-inlines-hidden and inlined unless otherwise specified
3671         (build_vtable): Set vtable visibility to class visibility.
3672         (check_field_decls): Default static member visibility to class
3673         visibility.
3674         (check_methods): Default method visibility to class visibility.
3675         * cp-tree.h: Added CLASSTYPE_VISIBILITY and
3676         CLASSTYPE_VISIBILITY_SPECIFIED macro.
3677         * decl.c (duplicate_decls): New logic for merging definition decls
3678         with declaration decls. Added ignore & warning when non default
3679         applied to global operator new or delete.
3680         * method.c, optimize.c, rtti.c: Added setting of VISIBILITY_SPECIFIED
3681         wherever VISIBILITY was changed
3682         * rtti.c (get_tinfo_decl): Set typeinfo visibility to class
3683         visibility.
3684         (tinfo_base_init): Set typeinfo name visibility to class visibility.
3686 2004-07-25  Bernardo Innocenti  <bernie@develer.com>
3688         * decl.c: Rename all identifiers named `class' to `cl'.
3689         * cp-tree.h: Likewise.
3691 2004-07-25  Gabriel Dos Reis  <gdr@integrable-solutions.net>
3693         * cp-tree.h (TYPE_SET_PTRMEMFUNC_TYPE): Use GGC_CNEW.
3694         * typeck2.c (abstract_virtuals_error): Use GGC_NEW.
3695         * name-lookup.c (binding_entry_make): Use GGC_NEW.
3696         (binding_table_construct): Use GGC_CNEWVEC.
3697         (binding_table_new): Use GGC_NEW.
3698         (cxx_binding_make): Likewise.
3699         (begin_scope): Likewise.
3700         (push_to_top_level): Use GCC_CNEW.
3701         * parser.c (cp_token_cache_new): Likewise.
3702         (cp_token_cache_push_token): Likewise.
3703         (cp_lexer_new_main): Likewise.
3704         (cp_lexer_new_from_tokens): Likewise.
3705         (cp_parser_context_new): Likewise.
3706         (cp_parser_new): Likewise.
3707         (cp_lexer_new_from_tokens): Use GGC_NEWVEC.
3708         * lex.c (cxx_make_type): Use GGC_CNEW.
3709         (retrofit_lang_decl): Use GGC_NEWVAR.
3710         (cxx_dup_lang_specific_decl): Likewise.
3711         (copy_lang_type): Likewise.
3712         * decl.c (use_label): Use GGC_NEW instead of ggc_alloc.
3713         (save_function_data): Likewise.
3714         (lookup_label): Use GGC_CNEW instead of ggc_alloc_cleared.
3715         (cxx_push_function_context): Likewise.
3717 2004-07-25  Richard Henderson  <rth@redhat.com>
3719         * decl.c (start_preparsed_function): Set DECL_ARTIFICIAL and
3720         DECL_IGNORED_P on RESULT_DECL.
3721         * semantics.c (finalize_nrv): Copy them too.
3723 2004-07-23  Nathan Sidwell  <nathan@codesourcery.com>
3725         * search.c (lookup_conversion_operator): Avoid two loops.
3726         (add_conversions): Remove.
3727         (check_hidden_convs, split_conversions,
3728         lookup_conversions_r):  New.
3729         (lookup_conversions): Use lookup_conversions_r.
3731 2004-07-22  Nathan Sidwell  <nathan@codesourcery.com>
3733         * pt.c (get_template_base): Check type is completable.
3735 2004-07-21  Eric Christopher  <echristo@redhat.com>
3737         * decl.c (poplevel): Inline unused variable checking.
3738         Change formatting.
3740 2004-07-21  Paolo Bonzini  <bonzini@gnu.org>
3742         * typeck.c (build_binary_op): Do not use RDIV_EXPR for
3743         integer vectors.
3745 2004-07-21  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
3747         PR c++/14497
3748         * pt.c (check_explicit_specialization): Remove extension to accept
3749         specializations without template headers. Fall-through to normal
3750         processing.
3752 2004-07-21  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
3754         PR c++/509
3755         * pt.c (determine_specialization): New parameter template_count.
3756         Disambiguate between member templates and member functions counting
3757         the template headers.
3758         (check_explicit_specialization): Update caller.
3759         (tsubst_friend_function): Likewise.
3761 2004-07-20  Steven Bosscher  <stevenb@suse.de>
3763         * cp-tree.def (TINST_LEVEL): Make it an 'x' node.
3764         * cp-tree.h (tinst_level_t): New tree type.
3765         (union lang_tree_node): Handle it.
3766         (TINST_LOCATION): New accessor macro.
3767         (make_tinst_level): New prototype.
3768         * cp-lang.c (cp_tree_size): Handle TINST_LEVEL.
3769         * decl.c (cp_tree_node_structure): Likewise.
3770         * error.c (print_instantiation_full_context): Use TINST_LOCATION.
3771         (print_instantiation_partial_context): Likewise.
3772         * pt.c (pop_tinst_level): Likewise.
3773          (push_tinst_level): Use make_tinst_level.
3774         * tree.c (make_tinst_level): New function.
3775         (cp_walk_subtrees): Walk TINST_DECL for a TINST_LEVEL node.
3777 2004-07-20  Mark Mitchell  <mark@codesourcery.com>
3779         * parser.c (cp_parser_simple_type_specifier): Fix typo.
3781         PR c++/16637
3782         * parser.c (cp_parser_simple_type_specifier): Do not record usage
3783         of globally-qualified names.
3785 2004-07-20  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3787         PR c++/16175
3788         * error.c (dump_type) <BOUND_TEMPLATE_TEMPLATE_PARM case>: Output
3789         cv qualifier.
3791 2004-07-19  Mark Mitchell  <mark@codesourcery.com>
3793         PR c++/16623
3794         * cp-tree.h (lang_type_class): Add lazy_assignment_op.
3795         (CLASSTYPE_LAZY_ASSIGNMENT_OP): New macro.
3796         * class.c (add_implicitly_declared_members): Use
3797         CLASSTYPE_LAZY_ASSIGNMENT_OP.
3798         * method.c (lazily_declare_fn): Clear
3799         CLASSTYPE_LAZY_ASSIGNMENT_OP.
3800         * search.c (lookup_fnfields_1): Check it.
3802 2004-07-20  Nathan Sidwell  <nathan@codesourcery.com>
3804         * cp-tree.h (vec_binfo_member): Remove.
3805         * tree.c (vec_binfo_member): Remove.
3807         * cp-tree.h (struct lang_type_class): Remove vfields field.
3808         (CLASSTYPE_VFIELDS): Remove.
3809         (SET_BINFO_NEW_VTABLE_MARKED): Adjust.
3810         * class.c (determine_primary_base): Remove CLASSTYPE_VFIELDS
3811         handling.
3812         (dfs_modify_vtables): Use TYPE_CONTAINS_VPTR_P.
3813         (finish_struct_1): Remove CLASSTYPE_VFIELDS handling.
3814         * init.c (dfs_initialize_vtbl_ptrs): Use TYPE_CONTAINS_VPTR_P.
3816 2004-07-20  Nathan Sidwell  <nathan@codesourcery.com>
3818         * cp-tree.h (DEF_VEC_P(tree)): Remove here.
3819         (BINFO_SUBVTT_INDEX, BINFO_VPTR_INDEX, BINFO_PRIMARY_BASE_OF):
3820         Moved to common.
3821         (BINFO_LANG_SLOTS): Remove.
3822         * tree.c (copy_binfo): Adjust BINFO creation and accessors.
3823         * decl.c (xref_basetypes): Adjust BINFO creation and accessors.
3824         * class.c (check_bases): Adjust BINFO accessors.
3825         (determine_primary_base, finish_struct_bits,
3826         maybe_warn_about_overly_private_class, warn_hidden,
3827         walk_subobject_offsets, propagate_binfo_offsets, end_of_class,
3828         warn_about_ambiguous_bases, get_vfield_name,
3829         dump_class_hierarchy_r, build_vtt_inits, accumulate_vtbl_inits,
3830         add_vcall_offset_vtbl_entries_r): Likewise.
3831         * dump.c (cp_dump_tree): Likewise.
3832         * init.c (sort_mem_initializers, expand_member_init, build_delete,
3833         push_base_cleanups): Likewise.
3834         * method.c (do_build_copy_constructor, do_build_assign_ref,
3835         synthesize_exception_spec): Likewise.
3836         name-lookup.c (arg_assoc_class): Likewise.
3837         * pt.c (instantiate_class_template,
3838         get_template_base_recursive): Likewise.
3839         * rtti.c (get_pseudo_ti_init, get_pseudo_ti_desc): Likewise.
3840         * typeck2.c (process_init_constructor): Likewise.
3841         * search.c (lookup_base_r, dynamic_cast_base_recurse,
3842         dfs_access_in_type, dfs_walk_real, look_for_overrides,
3843         types_overlap_p, copied_binfo, original_binfo): Likewise.
3844         (binfo_for_vtable): Remove
3846 2004-07-20  Steven Bosscher  <stevenb@suse.de>
3848         * cp-tree.h (struct lang_decl_flags): Unify the template_info and
3849         thunk_alias, and the access and virtual_offset fields.
3850         (THUNK_VIRTUAL_OFFSET, THUNK_ALIAS): Adjust.
3851         * decl.c (finish_case_label): Update c_add_case_node call.
3853 2004-07-19  Mark Mitchell  <mark@codesourcery.com>
3855         Revert patch for PR c++/16623.
3857 2004-07-19  Kelley Cook  <kcook@gcc.gnu.org>
3859         * except.c: Remove two spurious carriage returns.
3861 2004-07-19  Mark Mitchell  <mark@codesourcery.com>
3863         PR c++/16623
3864         * cp-tree.h (lang_type_class): Add lazy_assignment_op.
3865         (CLASSTYPE_LAZY_ASSIGNMENT_OP): New macro.
3866         * class.c (add_implicitly_declared_members): Use
3867         CLASSTYPE_LAZY_ASSIGNMENT_OP.
3868         * method.c (lazily_declare_fn): Clear
3869         CLASSTYPE_LAZY_ASSIGNMENT_OP.
3870         * search.c (lookup_fnfields_1): Check it.
3872 2004-07-19  Nathan Sidwell  <nathan@codesourcery.com>
3874         * class.c (add_method): Delay adding the slot until the end.
3875         (determine_primary_base): Adjust VEC_iterate invokation.
3876         (resort_type_method_vec, finish_struct_methods, warn_hidden,
3877         walk_subobject_offsets, end_of_class, warn_about_ambiguous_bases,
3878         build_vtbl_initializer): Likewise.
3879         * init.c (sort_mem_initializers, build_delete, push_base_cleanups,
3880         build_vbase_delete): Likewise.
3881         * method.c (do_build_copy_constructor): Likewise.
3882         * name-lookup.c (new_class_binding, print_binding_level,
3883         poplevel_class, store_class_bindings, push_to_top_level,
3884         pop_from_top_level): Likewise.
3885         * pt.c (check_explicit_specialization): Likewise.
3886         * search.c (lookup_conversion_operator, lookup_fnfields_1,
3887         get_pure_virtuals, add_conversions, dfs_check_overlap,
3888         binfo_for_vbase): Likewise.
3890 2004-07-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3892         PR c++/12170
3893         * pt.c (unify) <BOUND_TEMPLATE_TEMPLATE_PARM case>: Use only
3894         innermost set of template arguments during deduction.  Simplify.
3896 2004-07-19  Joseph S. Myers  <jsm@polyomino.org.uk>
3898         * typeck.c (build_modify_expr, build_x_modify_expr): Set
3899         TREE_NO_WARNING on assignments with an operator other than '='.
3901 2004-07-10  Steven Bosscher  <stevenb@suse.de>
3902             Joseph S. Myers  <jsm@polyomino.org.uk>
3904         * cp-tree.h (C_SET_EXP_ORIGINAL_CODE): Remove.
3905         * decl2.c (grokfield): Don't check current_class_depth via
3906         unused TREE_COMPLEXITY.
3907         * semantics.c (finish_parenthesized_expr): Set TREE_NO_WARNING
3908         to avoid the missing parentheses warning.
3909         Don't set C_SET_EXP_ORIGINAL_CODE.
3911 2004-07-18  Mark Mitchell  <mark@codesourcery.com>
3913         * tree.c (no_linkage_helper): Remove.
3914         (no_linkage_check): Don't use walk_tree_without_duplicates.
3916         * mangle.c (write_expression): Issue a sorry for zero-operand
3917         functional casts.
3919 2004-07-18  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3921         PR c++/13092
3922         * init.c (build_offset_ref): Build SCOPE_REF with non-null
3923         TREE_TYPE for non-dependent names.
3924         * typeck.c (build_x_unary_op): Handle non-dependent SCOPE_REF.
3925         * pt.c (type_dependent_expression_p): Handle SCOPE_REF with
3926         unknown_type_node as its TREE_TYPE.
3927         * cxx-pretty_print.c (pp_cxx_unqualified_id): Handle BASELINK.
3928         * error.c (dump_decl) <SCOPE_REF case>: Use pp_expression.
3929         (dump_expr) <SCOPE_REF case>: Likewise.
3931 2004-07-17  Jason Merrill  <jason@redhat.com>
3933         PR c++/16115
3934         * call.c (type_passed_as): Make the invisible reference type
3935         __restrict.
3936         * cp-gimplify.c (gimplify_cleanup_stmt): Rename to
3937         cp_genericize_r.  Handle invisible reference lowering.
3938         (is_invisiref_parm): New fn.
3939         (cp_genericize): Adjust the types of invisible reference parms.
3940         Don't repeat the walk for clones.
3941         * decl.c (store_parm_decls): Don't generate any code for clones.
3943 2004-07-17  Joseph S. Myers  <jsm@polyomino.org.uk>
3945         * cp-tree.h (builtin_function): Declare.
3947 2004-07-16  Mark Mitchell  <mark@codesourcery.com>
3949         * class.c (finish_struct_methods): Remove unncessary code.
3950         (add_implicitly_declared_members): Create declarations for default
3951         constructors and copy constructors lazily.
3952         * cp-tree.h (lang_type_class): Remove lazy_default_ctor and
3953         lazy_copy_ctor.
3954         (CLASSTYPE_LAZY_DEFAULT_CTOR): New macro.
3955         (CLASSTYPE_LAZY_COPY_CTOR): Likewise.
3956         * decl2.c (check_classfn): Robustify.
3957         (locate_dtor): Handle empty CLASSTYPE_METHOD_VEC.
3958         (locate_ctor): Handle lazy default constructors.
3959         (locate_copy): Handle lazy copy constructors.
3960         (implicitly_declare_fn): Make sure we're looking at the
3961         TYPE_MAIN_VARIANT for a class before creating functions.  Don't
3962         set TYPE_HAS_CONSTRUCTOR.
3963         (lazily_declare_fn): New function.
3964         * name-lookup.c (constructor_name_full): Simplify.
3965         * search.c (lookup_fnfields_1): Lazily create methods, as
3966         necessary.
3967         (lookup_for_overrides): Handle empty CLASSTYPE_METHOD_VEC.
3969 2004-07-16  Steven Bosscher  <stevenb@suse.de>
3971         * cp-tree.h (struct lang_type): Don't have three GTY options on a
3972         single bit GTY desc.
3974 2004-07-16  Richard Henderson  <rth@redhat.com>
3976         * cp-lang.c (LANG_HOOKS_TREE_INLINING_COPY_RES_DECL_FOR_INLINING): Die.
3977         * cp-tree.h (cp_copy_res_decl_for_inlining): Remove.
3978         * tree.c (cp_copy_res_decl_for_inlining): Remove.
3980 2004-07-16  Nathan Sidwell  <nathan@codesourcery.com>
3982         * class.c (finish_struct_bits): Use for loop.
3983         (propagate_binfo_offsets): Do primary binfo outside of loop.
3985         PR c++/16583
3986         * dump.c (cp_dump_tree): Don't dump the bases if there's no
3987         binfo.
3989         * pt.c (tsubst) <TREE_BINFO case>: We should never get here.
3991 2004-07-15  Mark Mitchell  <mark@codesourcery.com>
3993         * cp-tree.h (lang_type_class): Remove has_real_assign_ref and
3994         has_abstract_assign_ref.  Make methods a VEC(tree) *.
3995         (TYPE_HAS_CONST_ASSIGN_REF): Add documentation.
3996         (CLASSTYPE_CONSTRUCTORS): Adjust for changes to CLASSTYPE_METHOD_VEC.
3997         (CLASSTYPE_DESTRUCTORS): Likewise.
3998         (TYPE_HAS_REAL_ASSIGN_REF): Remove.
3999         (TYPE_HAS_ABSTRACT_ASSIGN_REF): Likewise.
4000         (add_method): Change prototoype.
4001         * class.c (add_method): Remove error_p parameter.  Adjust for
4002         changes to CLASSTYPE_METHOD_VEC.
4003         (handle_using_decl): Adjust call to add_method.
4004         (maybe_warn_about_overly_private_class): Adjust for
4005         changes to CLASSTYPE_METHOD_VEC.
4006         (resort_type_method_vec): Likewise.
4007         (finish_struct_methods): Likewise.
4008         (check_for_override): Likewise.
4009         (warn_hidden): Likewise.
4010         (add_implicitly_declared_members): Defer creation of assignment
4011         operators.  Adjust call to add_method.
4012         (clone_function_decl): Adjust call to add_method.
4013         (check_bases_and_members): Don't set TYPE_HAS_REAL_ASSIGN_REF.
4014         (finish_struct_1): Use CLASSTYPE_DESTRUCTORS.
4015         * decl.c (grok_special_member_properties): Don't set
4016         TYPE_HAS_ABSTRACT_ASSIGN_REF.
4017         * decl2.c (check_classfn): Adjust for
4018         changes to CLASSTYPE_METHOD_VEC.
4019         * method.c (locate_dtor): Use CLASSTYPE_DESTRUCTORS.
4020         (locate_ctor): Use CLASSTYPE_CONSTRUCTORS.
4021         (locate_copy): Adjust for changes to CLASSTYPE_METHOD_VEC.
4022         (implicitly_declare_fn): Set DECL_SOURCE_LOCATION.  Do not call
4023         cp_finish_decl.
4024         * pt.c (check_explicit_specialization): Adjust for
4025         changes to CLASSTYPE_METHOD_VEC.
4026         (instantiate_class_template): Do not set
4027         TYPE_HAS_ABSTRACT_ASSIGN_REF.
4028         * ptree.c (cxx_print_type): Don't try to print
4029         CLASSTYPE_METHOD_VEC.
4030         * rtti.c (emit_support_tinfos): Use CLASSTYPE_DESTRUCTORS.
4031         * search.c (lookup_field_r): Adjust for
4032         changes to CLASSTYPE_METHOD_VEC.
4033         (lookup_fnfields): Likewise.
4034         (lookup_conversion_operator): Likewise.
4035         (lookup_fnfields_1): Likewise.  Create assignment operators
4036         lazily.
4037         (look_for_overrides_here): Adjust for
4038         changes to CLASSTYPE_METHOD_VEC.
4039         (add_conversions): Likewise.
4040         * semantics.c (finish_member_declaration): Adjust call to add_method.
4042 2004-07-15  Jason Merrill  <jason@redhat.com>
4044         * cp-lang.c (cxx_types_compatible_p): To the middle-end,
4045         references and pointers are compatible.
4047 2004-07-15  Nathan Sidwell  <nathan@codesourcery.com>
4049         * decl.c (xref_basetypes): Refactor.
4050         * tree.c (copy_base_binfos): Replace with ...
4051         (copy_binfo): ... this. Deep copy the given binfo, (not the just
4052         bases of the given base).
4053         * cp-tree.h (copy_base_binfo): Remove.
4054         (copy_binfo): Declare.
4056 2004-07-15  Mark Mitchell  <mark@codesourcery.com>
4058         * name-lookup.c (set_inherited_value_binding_p): Add class_type
4059         parameter.
4060         (get_class_binding): Adjust.
4061         (push_class_level_binding): Don't use set_inherited_value_binding_p.
4063 2004-07-15  Nathan Sidwell  <nathan@codesourcery.com>
4065         * class.c (finish_struct_bits): Don't set TYPE_HAS_CONVERSION here.
4066         * decl.c (xref_basetypes): Set it here.
4068         * class.c (check_bases): Don't set CLASSTYPE_NON_AGGREGATE here.
4069         Don't check for incomplete base.
4070         (get_vfield_name): Simplify while loop.
4071         * decl.c (xref_basetypes): Set CLASSTYPE_NON_AGGREGATE here.
4073 2004-07-14  Mark Mitchell  <mark@codesourcery.com>
4075         * lex.c (cxx_make_type): Remove call to get_pointer_type.
4077         * cp-tree.h (IDENTIFIER_VALUE): Remove.
4078         (BINFO_PUSHDECLS_MARKED): Likewise.
4079         (maybe_inject_for_scope_var): Likewise.
4080         (push_class_decls): Likewise.
4081         * name-lookup.h (push_class_binding): Remove.
4082         (innermost_non_namespace_value): New function.
4083         (outer_binding): Likewise.
4084         * class.c (add_method): Push bindings before adding to
4085         TYPE_METHODS.
4086         (restore_class_cache): Do not restore class_shadowed.
4087         (pushclass): Do not add USING_DECLs.  Do not call
4088         push_class_decls.
4089         * config-lang.in (gtfiles): Remove $(srcdir)/cp/search.c.
4090         * decl.c (pushdecl): Use outer_binding.
4091         (poplevel): Set the scope for an out-of-scope for-loop declaration
4092         appropriately.
4093         (cp_finish_decl): Don't call maybe_inject_for_scope_var.
4094         * name-lookup.c (new_class_binding): New function.
4095         (push_binding): Use it.
4096         (pushdecl): Use innermost_non_namespace_value.
4097         (maybe_inject_for_scope_var): Remove.
4098         (push_class_binding): Remove.
4099         (set_inherited_value_binding_p): New function.
4100         (get_class_binding): New function.
4101         (push_class_level_binding): Assert that the current_class_type is
4102         being defined.
4103         (outer_binding): New function.
4104         (innermost_non_namespace_value): Likewise.
4105         (lookup_name_real): Use outer_binding.
4106         (lookup_name_current_level): Ignore out-of-scope variables.
4107         * pt.c (check_template_shadow): Use innermost_non_namespace_value.
4108         (lookup_template_class): Likewise.
4109         * search.c (dfs_push_type_decls): Remove.
4110         (dfs_push_decls): Likewise.
4111         (setup_class_bindings): Likewise.
4112         (lookup_field_1): Handle USING_DECLs from dependent scopes.
4113         (marked_pushdecls_p): Remove.
4114         (unmarked_pushdecls_p): Remove.
4115         (marked_identifiers): Remove.
4116         (setup_class_bindings): Remove.
4117         (dfs_push_type_decls): Remove.
4118         (dfs_push_decls): Remove.
4119         (push_class_decls): Remove.
4121 2004-07-13  Mark Mitchell  <mark@codesourcery.com>
4123         PR c++/16518
4124         PR c++/16337
4125         * decl.c (grokvardecl): Make declspecs parameter const.
4126         (grokdeclarator): Likewise.  Adjust accordingly.
4127         * decl.h (grokdeclarator): Adjust declaration.
4128         * parser.c (cp_parser_init_declarator): Do not clear
4129         decl_specifiers->attributes.
4131         * cp-tree.h (lang_identifier): Remove class_value.
4132         (IDENTIFIER_CLASS_VALUE): Remove.
4133         (pop_class_decls): Likewise.
4134         (init_search_processing): Likewise.
4135         * class.c (handle_using_decl): Use lookup_member, not
4136         IDENTIFIER_CLASS_VALUE.
4137         (restore_class_cache): New function, split out from ...
4138         (pushclass): ... here.  Do not call clear_identifier_class_values.
4139         (invalidate_class_lookup_cache): Do not clear
4140         IDENTIFIER_CLASS_VALUE.
4141         (popclass): Do not call pop_class_decls.
4142         (maybe_note_name_used_in_class): Do not save names looked up after
4143         the class is complete.  Use lookup_member, not
4144         IDENTIFIER_CLASS_VALUE.
4145         * config-lang.in (gtfiles): Add $(srcdir)/cp/search.c.
4146         * decl.c (cxx_init_decl_processing): Do not call
4147         init_search_processing.
4148         * method.c (do_build_copy_constructor): Remove unnecessary code.
4149         (do_build_assign_ref): Likewise.
4150         * name-lookup.c (pushdecl): Use lookup_member, not
4151         IDENTIFIER_CLASS_VALUE.
4152         (set_identifier_type_value_with_scope): Set TREE_TYPE on the
4153         type_shadowed list.
4154         (poplevel_class): Do not restore IDENTIFIER_CLASS_VALUE.
4155         (push_class_binding): Do not set it.
4156         (clear_identifier_class_values): Remove.
4157         (push_class_level_binding): Do not set IDENTIFIER_CLASS_VALUE.
4158         (store_binding): Do not save it.
4159         (pop_from_top_level): Do not restore it.
4160         * name-lookup.h (cxx_saved_binding): Remove class_value.
4161         (clear_identifier_class_values): Remove.
4162         * ptree.c (cxx_print_identifier): Do not print
4163         IDENTIFIER_CLASS_VALUE.
4164         * search.c (search_obstack): Remove.
4165         (push_stack_level): Remove.
4166         (pop_stack_level): Remove.
4167         (search_level): Remove.
4168         (search_stack): Remove.
4169         (lookup_member): Don't check IDENTIFIER_CLASS_VALUE.
4170         (setup_class_bindings): Use IDENTIFIER_MARKED, not
4171         IDENTIFIER_CLASS_VALUE.
4172         (marked_identifiers): New variable.
4173         (push_class_decls): Clear IDENTIFIER_MARKED.
4174         (pop_class_decls): Don't call pop_search_level.
4175         (init_search_processing): Remove.
4177 2004-07-12  Mark Mitchell  <mark@codesourcery.com>
4179         * cp-tree.h (get_aggr_typedef): Remove.
4180         * init.c (get_aggr_typedef): Likewise.
4182         * name-lookup.c (push_class_level_binding): Simplify.
4184 2004-07-12  Andrew Pinski  <apinski@apple.com>
4186         PR c++/16475
4187         Revert:
4188         2004-07-07  H.J. Lu  <hongjiu.lu@intel.com>
4189                 PR c++/16276
4190                 * rtti.c (emit_tinfo_decl): Turn off DECL_ONE_ONLY if typeinfo
4191                 is not public.
4193 2004-07-12  Eric Christopher  <echristo@redhat.com>
4195         * parser.c (cp_parser_class_head): Remove unused variable.
4197 2004-07-12  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
4199         * decl.c (grok_op_properties): Reject [de-]allocation functions
4200         declared in a namespace, or declared as static.
4202 2004-07-12  Nathan Sidwell  <nathan@codesourcery.com>
4204         * cp-tree.h (make_binfo): Remove.
4205         * decl.c (xref_basetypes): Use make_tree_binfo directly.
4206         * tree.h (copy_base_binfos): Likewise.
4207         (make_binfo): Remove.
4209         * call.c (build_user_type_conversion_1, build_new_op,
4210         check_constructor_callable, build_temp,
4211         perform_direct_initialization_of_possible): Pass type directly to
4212         lookup_fnfields & build_special_member_call.
4213         (build_special_member_call): Accept a type, and complete it.
4214         * class.c (finish_stuct_bits): Copy the BINFOs here.
4215         * cvt.c (ocp_convert): Pass type directly to
4216         build_special_member_call.
4217         * decl.c (build_ptrmemfunc_type): Call xref_bastypes here.
4218         (xref_basetypes): Allocate the binfo here. Adjust.
4219         * init.c (build_init, build_new_1): Pass type directly to
4220         build_special_member_call.
4221         * lex.c (cxx_make_type): Do not allocate binfo here.
4222         * name-lookup.c (arg_assoc_class): Incomplete types have no binfo.
4223         * parser.c (cp_parser_class_head): Always call xref_basetypes.
4224         * pt.c (instantiate_class_template): Likewise. Inhibit access
4225         checking for template friends.
4226         * ptree.c (cxx_print_type): Adjust record printing.
4227         * search.c (lookup_base): When taking a type, complete it before
4228         looking for a binfo.
4229         (lookup_member): Delay completing a type.
4230         (push_class_decls): Don't walk an incomplete type.
4231         (lookup_conversions): Likewise.
4232         * semantics.c (finish_stmt_expr_expr): Pass type directly to
4233         build_special_member_call.
4234         * tree.c (copy_base_binfos): Adjust.
4235         (make_binfo): Likewise.
4236         * typeck.c (build_modify_expr): Pass type directly to
4237         build_special_member_call.
4238         * typeck2.c (process_init_constructor): Check a binfo exists.
4239         (build_m_component_ref): Allow accessing an incomplete type.
4240         (build_functional_cast): Pass type directly to
4241         build_special_member_call.
4243 2004-07-12  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
4245         PR c++/2204
4246         * config-lang.in (gtfiles): Add typeck2.c.
4247         * Make-lang.in: Tweak typeck2.c dependencies, and add rule for
4248         gt-cp-typeck2.h.
4249         * cp-tree.h: Declare complete_type_check_abstract.
4250         * typeck2.c (pat_calc_hash, pat_compare,
4251         complete_type_check_abstract): New functions.
4252         (abstract_virtuals_error): If the type is abstract, register the
4253         declaration within abstract_pending_vars for further checks.
4254         Inspect also dependent types. Handle IDENTIFIER_NODEs as decl.
4255         * decl.c (cp_finish_decl): Do not strip array types.
4256         (create_array_type_for_decl): Check for abstractness of the element
4257         type.
4258         (complete_vars): Call complete_type_check_abstract.
4259         * class.c (finish_struct): Prepare a list of virtual functions for
4260         template types, and call complete_vars on it to check for abstractness.
4262 2004-07-12  Paolo Bonzini  <bonzini@gnu.org>
4264         PR tree-optimization/14107
4265         * decl.c (finish_function): Remove temporary band-aid.
4267 2004-07-11  Mark Mitchell  <mark@codesourcery.com>
4269         * call.c (build_operator_new_call): Avoid using push_to_top_level.
4270         (build_new_op): Adjust call to lookup_function_nonclass.
4271         * name-lookup.c (identifier_type_value): Adjust call to
4272         lookup_name_real.
4273         (lookup_name_real): Add block_p parameter.
4274         (lookup_name_nonclass): Adjust call to lookup_name_real.
4275         (lookup_function_nonclass): Likewise.
4276         (lookup_name): Likewise.
4277         * name-lookup.h (lookup_name_real): Change prototype.
4278         (lookup_name_nonclass): Likewise.
4279         * parser.c (cp_parser_lookup_name): Likewise.
4281         * cp-tree.h (saved_scope): Make old_bindings a vector.
4282         (unuse_fields): Remove.
4283         * name-lookup.h (cxx_saved_binding): Define it.
4284         * class.c (pushclass): Don't use unuse_fields.
4285         * name-lookup.c (cxx_saved_binding_make): Remove.
4286         (store_binding): Add new bindings to a vector, using an
4287         accumulator style, rather than adding them to a list.
4288         (store_bindings): Adjust accordingly.
4289         (store_class_bindings): Likewise.
4290         (push_to_top_level): Likewise.
4291         (pop_from_top_level): Likewise.
4292         * optimize.c (maybe_clone_body): Must push_to_top_level and
4293         pop_from_top_level calls outside of loop.
4294         * parser.c (cp_parser_class_specifier): Move push_scope/pop_scope
4295         calls here from cp_parser_late_parsing_default_args.
4296         (cp_parser_save_default_args): Record the class type in which the
4297         function is declared.
4298         (cp_parser_late_parsing_default_args): Do not call
4299         push_nested_class/pop_nested_class.
4300         * search.c (dfs_unuse_fields): Remove.
4301         (unuse_fields): Remove.
4303 2004-07-11  Joseph S. Myers  <jsm@polyomino.org.uk>
4305         * cp-lang.c (LANG_HOOKS_MAYBE_BUILD_CLEANUP, LANG_HOOKS_PUSHLEVEL,
4306         LANG_HOOKS_POPLEVEL, LANG_HOOKS_UPDATE_DECL_AFTER_SAVING): Remove.
4307         * cp-tree.h (poplevel): Declare.
4308         (set_block): Remove.
4309         * decl.c (set_block): Remove.
4311 2004-07-10  Mike Stump  <mrs@apple.com>
4313         * decl2.c (import_export_class): Never export/import vtables
4314         with inline key functions.
4316 2004-07-09  Steven Bosscher  <stevenb@suse.de>
4318         * typeck.c (c_expand_asm_operands): Remove.
4320 2004-07-09  Mike Stump  <mrs@apple.com>
4322         * typeck.c (build_class_member_access_expr): Skip null deref
4323         warning when we don't dereference it.
4325 2004-07-09  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
4327         PR c++/8211
4328         PR c++/16165
4329         * class.c (check_field_decls): Improve -Weffc++ warning: do not
4330         warn for pointers to functions/members, or for classes without
4331         destructors.
4333 2004-07-08  Mark Mitchell  <mark@codesourcery.com>
4335         * name-lookup.h (struct cp_binding_level): Update documentation
4336         for class_shadowed.
4338 2004-07-08  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
4340         PR c++/16169
4341         * typeck.c (check_return_expr): Improve -Weffc++ warning: handle
4342         returning CALL_EXPR, and non-reference return type.
4344 2004-07-08  Nathan Sidwell  <nathan@codesourcery.com>
4346         * name-lookup.c (push_binding): Use VEC_reserve.
4348 2004-07-08  Richard Henderson  <rth@redhat.com>
4350         * cp-tree.h (expand_eh_spec_block): Remove.
4352 2004-07-07  Mark Mitchell  <mark@codesourcery.com>
4354         * cp-tree.h (saved_scope): Remove x_previous_class_type and
4355         x_previous_class_values; add x_previous_class_level.
4356         (previous_class_type): Remove.
4357         (previous_class_values): Remove.
4358         (previous_class_level): New macro.
4359         * class.c (pushclass): Restore the identifier cache more
4360         expeditiously.
4361         (invalidate_class_lookup_cache): Use vector for class_shadowed and
4362         previous_class_values.
4363         * decl.c (poplevel): Likewise.
4364         * name-lookup.c (cxx_binding_init): New function.
4365         (cxx_binding_make): Use it.
4366         (push_binding): For a binding in a class level, use a vector of
4367         cp_class_binding nodes.
4368         (push_binding_level): New function.
4369         (begin_scope): Use it.
4370         (leave_scope): Do not put class binding levels on the free list.
4371         (print_binding_level): Adjust for the fact that class_shadowed is
4372         a vector.
4373         (poplevel_class): Likewise.
4374         (clear_identifier_class_values): Likewise.
4375         (push_class_level_binding): Likewise.
4376         (set_class_shadows): Remove.
4377         (store_binding): New function.
4378         (store_class_bindings): New function.
4379         (push_to_top_level): Use store_class_bindings as appropriate.
4380         (pop_from_top_level): Use previous_class_level, not
4381         previous_class_type.
4382         * name-lookup.h (cp_class_binding): New type.
4383         (cp_binding_level): Use a vector object for class_shadowed.
4384         (push_binding_level): Declare.
4385         (set_class_shadows): Remove.
4387 2004-07-07  Andrew Pinski  <apinski@apple.com>
4389         * class.c (instantiate_type): BUFFER_REF is dead.
4390         * lex.c (init_operators): IN_EXPR is dead.
4392 2004-07-07  Jason Merrill  <jason@redhat.com>
4394         PR c++/16334
4395         * call.c (build_new_op): Give overload warnings for built-in
4396         candidates.
4398 2004-07-07  H.J. Lu  <hongjiu.lu@intel.com>
4400         PR c++/16276
4401         * rtti.c (emit_tinfo_decl): Turn off DECL_ONE_ONLY if typeinfo
4402         is not public.
4404 2004-07-07  Nathan Sidwell  <nathan@codesourcery.com>
4406         * cp-tree.h (CLASSTYPE_N_BASECLASSES): Remove.
4407         * class.c (build_primary_vtable, check_bases,
4408         determine_primary_base, finish_struct_bits,
4409         maybe_warn_about_overly_private_class, dfs_find_final_overrider_q,
4410         get_basefndecls, warn_hidden, walk_subobject_offsets,
4411         build_base_fields, create_vtable_ptr, propagate_binfo_offsets,
4412         layout_virtual_bases, end_of_class, warn_about_ambiguous_bases,
4413         finish_struct_1, get_vfield_name, contains_empty_class_p,
4414         dump_class_hierarchy_r, finish_vtbls, build_vtt_inits,
4415         dfs_ctor_vtable_bases_queue_p, accumulate_vtbl_inits,
4416         add_vcall_offset_vtbl_entries_r, cp_fold_obj_type_ref): Adjust
4417         BINFO macros.
4418         * decl.c (xref_basetypes): Likewise.
4419         * dump.c (cp_dump_tree): Likewise.
4420         * error.c (dump_expr): Likewise.
4421         * init.c (sort_mem_initializers, expand_member_init,
4422         push_base_cleanups): Likewise.
4423         * method.c (do_build_copy_constructor, do_build_assign_reg,
4424         synthesize_exception_spec): Likewise.
4425         * name-lookup.c (arg_assoc_class): Likewise.
4426         * pt.c (instantiate_class_template, tsubst,
4427         get_template_base_recursive): Likewise.
4428         * ptree.c (cxx_print_type): Likewise.
4429         * rtti.c (get_psuedo_ti_init, get_pseudo_ti_desc): Likewise.
4430         * search.c (lookup_base_r, dynamic_cast_base_recurse,
4431         dfs_access_in_type, access_in_type, lookup_field_queue_p,
4432         bfs_walk, dfs_walk_real, look_for_overrides, markedp, unmarkedp,
4433         marked_pushdecls_p, unmarked_pushdecls_p, dfs_debug_markedp,
4434         dfs_debug_unmarkedp, dfs_check_overlap, dfs_no_overlap_yet,
4435         binfo_for_vtable, copied_binfo, original_binfo): Likewise
4436         * tree.c (copy_base_binfos, make_binfo): Likewise.
4437         * typeck.c (commmon_base_type): Likewise
4438         * typeck2.c (process_init_constructor): Likewise
4440 2004-07-06  Joseph S. Myers  <jsm@polyomino.org.uk>
4442         * decl.c (check_tag_decl): Name redeclared type in diagnostic.
4444 2004-07-06  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
4446         PR c++/3671
4447         * pt.c (convert_nontype_argument): Disallow conversions between
4448         different enumeration types.
4450 2004-07-06  Nathan Sidwell  <nathan@codesourcery.com>
4452         * cp-tree.h (BINFO_MARKED): Remove.
4453         (BINFO_VTABLE_PATH_MARKED, BINFO_NEW_VTABLE_MARKED,
4454         BINFO_DEPENDENT_BASE_P, BINFO_LOST_PRIMARY_P,
4455         BINFO_INDIRECT_PRIMARY_P): Use appropriate BINFO_FLAG_n.
4456         (SET_BINFO_NEW_VTABLE_MARKED): Use BINFO_VIRTUAL_P.
4457         * class.c (build_base_path): Use BINFO_VIRTUAL_P.
4458         (mark_primary_bases, determine_primary_base, base_derived_from,
4459         dfs_find_final_overrider, dfs_find_final_overrider_q,
4460         dfs_find_inal_overrider_post, update_vtable_entry_for_fn,
4461         dfs_modify_vtables, walk_subobject_offsets,
4462         layout_nonempty_base_or_field, build_base_field,
4463         build_base_fields, propagate_binfo_offsets, layout_virtual_bases,
4464         end_of_class, get_vfield_name, dump_class_hierarchy, dump_vtable,
4465         finish_vtbls, build_vtt_inits, dfs_build_secondary_vptr_vtt_inits,
4466         build_ctor_vtbl_group, accumulate_vtble_inits,
4467         dfs_accumulate_vtbls_inits, build_vbase_offset_vtbl_entries,
4468         build_vcall_offset_vtbl_entries, add_vcall_offset_vtbl_entries_r,
4469         add_vcall_offset_vtbl_entries_1): Likewise.
4470         * decl.c (xref_basetypes): Incomming virtual base indicated by
4471         TREE_TYPE. Adjust.
4472         * dump.c (cp_dump_tree): Use BINFO_VIRTUAL_P.
4473         * init.c (finish_init_stmts, sort_mem_initializers,
4474         emit_mem_initializers, build_vtble_address, expand_member_init,
4475         push_base_cleanups): Likewise.
4476         * method.c (do_build_copy_constructor): Likewise.
4477         * pt.c (instantiate_class_template,
4478         get_template_base_recursive): Likewise.
4479         * rtti.c (dfs_class_hint_mark, get_pseudo_ti_init,
4480         get_pseudo_ti_desc): Likewise.
4481         * search.c (lookup_base_r, dynamic_cast_base_recurse,
4482         binfo_from_vbase, binfo_via_virtual, copied_binfo,
4483         original_binfo): Likewise.
4484         * semantics.c (finish_base_specifier): Virtualness is indicated
4485         by TREE_TYPE.
4486         * tree.c (copy_base_binfos): Use BINFO_VIRTUAL_P.
4488 2004-07-06  Mark Mitchell  <mark@codesourcery.com>
4490         Revert:
4491         2004-06-24  Jason Merrill  <jason@redhat.com>
4492         PR c++/16115
4493         * decl.c (grokparms): Give the PARM_DECL reference type if the
4494         parameter is passed by invisible reference.
4496 2004-07-05  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4498         * cp-lang.c (cp_var_mod_type_p): Add extra arg.
4499         * decl.c (grokdeclarator): Extra arg to variably_modified_type_p.
4500         * pt.c (check_instantiated_args, unify): Likewise.
4502 2004-07-05  Phil Edwards  <phil@codesourcery.com>
4504         * Make-lang.in (check-c++, lang_checks):  Add some comments.
4506 2004-07-05  Zack Weinberg  <zack@codesourcery.com>
4508         * cp-mudflap.c: Delete file.
4509         * Makefile.in: Remove all references to cp-mudflap.o.
4511 2004-07-05  Zack Weinberg  <zack@codesourcery.com>
4513         * decl.c (cxx_init_decl_processing): Call
4514         build_common_tree_nodes before creating the global NAMESPACE_DECL.
4516 2004-07-05  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
4518         PR c++/2518
4519         * call.c (build_operator_new_call): Look only at global scope.
4521 2004-07-05  Nathan Sidwell  <nathan@codesourcery.com>
4523         * call.c (enforce_access): Expect TREE_BINFO.
4524         * class.c (binfo_ctor_vtable): Check TREE_BINFO.
4525         * cp-tree.h (RECORD_OR_UNION_TYPE_CHECK): Remove.
4526         (BINFO_SUBVTT_INDEX, BINFO_VPTR_INDEX, BINFO_PRIMARY_BASE_OF):
4527         Adjust.
4528         (BINFO_LANG_ELTS): Remove.
4529         (BINFO_LANG_SLOTS): New.
4530         (TYPE_RAISES_EXCEPTIONS, ENUM_TEMPLATE_INFO): Use TYPE_LANG_SLOT_1.
4531         (CLASSTYPE_TEMPLATE_INFO): Adjust.
4532         * pt.c (tsubst): Split TREE_BINFO case from TREE_VEC case.
4533         * search.c (lookup_member): Check TREE_BINFO.
4534         * semantics.c (perform_or_defer_access_check): Likewise.
4535         (check_accessibility_of_qualified_id): Check
4536         deferred_access_no_check.
4537         * tree.c (make_binfo): Use make_tree_binfo.
4539 2004-07-04  Mark Mitchell  <mark@codesourcery.com>
4541         * method.c (implicitly_declare_fn): Set linkage of generated
4542         functions.
4544 2004-07-04  Richard Henderson  <rth@redhat.com>
4546         * typeck.c (cxx_mark_addressable): Don't put_var_into_stack.
4548 2004-07-03  Scott Brumbaugh  <scottb.lists@verizon.net>
4550         PR c++/3761
4551         * name-lookup.c (push_class_level_binding): Don't pass a
4552         TREE_LIST of ambiguous names to check_template_shadow as it
4553         only handles declarations. Instead, pull the declaration
4554         out and pass that.
4556 2004-07-03  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
4558         PR c++/14971
4559         * pt.c (check_explicit_specialization): Clarify error message.
4561 2004-07-02  Richard Henderson  <rth@redhat.com>
4563         * tree.c (cp_unsave_r): Update remap_save_expr call.
4565 2004-07-02  Mark Mitchell  <mark@codesourcery.com>
4567         PR c++/16240
4568         * mangle.c (write_template_arg): Correct mangling.
4570         PR c++/16297
4571         * decl.c (grokdeclarator): Robustify.
4573 2004-07-01  Richard Henderson  <rth@redhat.com>
4575         * class.c (fixed_type_or_null): Don't handle RTL_EXPR.
4576         * method.c (synthesize_method): Don't clear_last_expr.
4577         * name-lookup.c (maybe_push_cleanup_level): Likewise.
4579 2004-07-01  Nick Clifton  <nickc@redhat.com>
4581         * decl2.c (import_export_class): Invoke the
4582         import_export_class field in the gcc_target structure if it is not
4583         empty.
4585 2004-06-30  Richard Henderson  (rth@redhat.com>
4587         * decl.c (start_preparsed_function): Don't set immediate_size_expand.
4588         * method.c (use_thunk): Likewise.
4590 2004-06-30  Joseph S. Myers  <jsm@polyomino.org.uk>
4592         * call.c (build_over_call), typeck.c (build_function_call): Call
4593         check_function_arguments instead of check_function_format.
4595 2004-06-30  Joseph S. Myers  <jsm@polyomino.org.uk>
4597         * call.c (build_over_call), typeck.c (build_function_call): Update
4598         calls to check_function_format.
4600 2004-06-30  Richard Henderson  <rth@redhat.com>
4602         * call.c (build_over_call): Use __builtin_memcpy for copying
4603         CLASS_AS_BASE rather than funny casting.
4605 2004-06-30  Richard Henderson  <rth@redhat.com>
4607         * init.c (build_new_1): Fill in TYPE_DOMAIN, TYPE_SIZE and
4608         TYPE_SIZE_UNIT of full_type.
4610 2004-06-30  Per Bothner  <per@bothner.com>
4612         Conditionally compile support for --enable-mapped_location.
4613         * decl.c (pop_label):  Handle (imperfectly) USE_MAPPED_LOCATION case.
4614         * decl2.c:  If USE_MAPPED_LOCATION, don't do some line number
4615         adjustments - which I don't understand.
4616         * error.c (dump_decl):  Rename "<interrnal>" to "<built-in>".
4617         * error.c:  Use LOCATION_FILE and EXPR_LOCATION macros.
4618         (print_instantiation_partial_context):  Use expand_location.
4619         * decl.c (duplicate_decl):  Use new DECL_IS_BUILTIN macro.
4620         * name-lookup.c:  Likewise.
4621         * lex.c (cxx_init):  Likewise.  Also use BUILTINS_LOCATION.
4622         * name-lookup.c:  Use input_line macro.
4623         * parser.c (cp_lexer_get_preprocessor_token):  Use UNKNOWN_LOCATION.
4624         (cp_parser_statement):  Rename locaal variable statement_locus to
4625         statement_location and use SET_EXPR_LOCATION macro.
4626         * pt.c:  Handle USE_MAPPED_LOCATION case.  Use new macros.
4627         * tree.c (cp_walk_subtrees):  Likewise.
4629 2004-06-29  Per Bothner  <per@bothner.com>
4631         * tree.c (build_min_nt, build_min, build_min_non_dep):
4632         Don't set TREE_COMPLEXITY from input_line.
4634 2004-06-29  Paul Brook  <paul@codesourcery.com>
4636         * init.c: Include target.h.
4637         (get_cookie_size): Remove and replace with target hook.
4638         Update callers.
4639         (build_new_1): Store the element size in the cookie.
4641 2004-06-29  Nathan Sidwell  <nathan@codesourcery.com>
4643         PR c++/16260
4644         * parser.c (cp_parser_template_declaration_after_export): Disable
4645         access checks here ...
4646         (cp_parser_class_specifier): ... not here.
4648 2004-06-28  Nathan Sidwell  <nathan@codesourcery.com>
4650         * cp-tree.h (VAR_OR_FUNCTION_DECL_CHECK,
4651         VAR_FUNCTION_OR_PARM_DECL_CHECK, RECORD_OR_UNION_TYPE_CHECK,
4652         BOUND_TEMPLATE_TEMPLATE_PARM_TYPE_CHECK): Use appropriate
4653         TREE_CHECK macro.
4655 2004-06-28  Nathan Sidwell  <nathan@codesourcery.com>
4657         * cp-tree.h (struct deferred_access): Move to ...
4658         * semantics.c (struct deferred_access): ... here. Adjust.
4659         (deferred_access_stack): Make a VEC(deferred_access),
4660         (deferred_access_free_list): Remove.
4661         (deferred_access_no_check): New.
4662         (push_deferring_access_checks, resume_deferring_access_checks,
4663         stop_deferring_access_checks, pop_deferring_access_checks,
4664         get_deferred_access_checks, pop_to_parent_deferring_access_checks,
4665         perform_deferred_access_checks, perform_or_defer_access_check): Adjust.
4667 2004-06-28  Nathan Sidwell  <nathan@codesourcery.com>
4669         PR c++/16174
4670         * call.c (build_temp): Declare.
4671         (check_constructor_callable): New.
4672         (reference_binding): Only set CHECK_COPY_CONSTRUCTOR if not for
4673         CONSTRUCTOR_CALLABLE.
4674         (convert_like_real, initialize_reference): Use
4675         check_constructor_callable.
4676         * cp-tree.h (LOOKUP_CONSTRUCTOR_CALLABLE): New.
4677         (LOOKUP_*): Renumber.
4679 2004-06-28  Nathan Sidwell  <nathan@codesourcery.com>
4681         * friend.c (add_friend): Only perform access checks when context
4682         is a class.
4683         * lex.c (cxx_make_type): Only create a binfo for aggregate types.
4684         * parser.c (cp_parser_class_specifier): Disable access checks here
4685         when parsing the body of a templated class.
4686         * semantics.c (perform_or_defer_access_checks): Reorder to allow
4687         NULL binfos when not checking access.
4689 2004-06-28  Nathan Sidwell  <nathan@codesourcery.com>
4691         Use vector API for vbase list.
4692         * cp-tree.h: Include vec.h
4693         (DEF_VEC_P (tree)): New type.
4694         (struct lang_type_class): Change vbase's member type.
4695         (binfo_for_vbase): Declare.
4696         * class.c (determine_primary_base, base_derived_from,
4697         update_vtable_entry_for_fn, walk_subobject_offsets, end_of_class,
4698         warn_about_ambiguous_bases, dfs_accumulate_vtbl_inits,
4699         build_vtbl_initializer): Adjust.
4700         * decl.c (xref_basetypes): Adjust, accumulate upper bound of
4701         vbases.
4702         * init.c (sort_mem_initializers, expand_member_init,
4703         push_base_cleanups): Adjust.
4704         * method.c (do_build_copy_constructor): Adjust.
4705         * search.c (get_pure_virtuals, copied_binfo, original_binfo): Adjust.
4706         (binfo_for_vbase): New.
4707         * tree.c (copy_base_binfos): Adjust.
4709 2004-06-28  Mark Mitchell  <mark@codesourcery.com>
4711         * parser.c (cp_parser_set_decl_spec_type): Fix thinko.
4713 2004-06-27  Gabriel Dos Reis  <gdr@integrable-solutions.net>
4715         PR c++/14123
4716         * cxx-pretty-print.c (pp_cxx_ptr_operator): Properly put
4717         paranthesis in case of pointers to array members.
4718         * error.c (dump_type_prefix): Likewise.
4719         (dump_type_suffix): Maybe issue a whitespace when printing
4720         ARRAY_TYPE.
4722 2004-06-27  Mark Mitchell  <mark@codesourcery.com>
4724         PR c++/16193
4725         * parser.c (cp_parser_set_decl_spec_type): Refine test for
4726         redefinition of built-in types.
4728 2004-06-27  Gabriel Dos Reis  <gdr@integrable-solutions.net>
4730         * error.c (pp_template_argument_list_start): Remove.
4731         (pp_template_argument_list_end): Likewise.
4732         (pp_separate_with_comma): Use pp_cxx_separate_with.
4733         (reinit_global_formatting_buffer): Remove.
4734         (pp_non_consecutive_character): Likewise.
4735         (dump_scope): Use pp_cxx_colon_colon.
4736         (dump_template_parameter): Use pp_cxx_identifier,
4737         pp_cxx_tree_identifier and pp_cxx_whitespace.
4738         (dump_templat_bindings): Replace use of pp_string with sequence
4739         of pp_cxx_whitespace and pp_equal.
4740         (dump_type): Use pp_cxx_identifier, pp_cxx_tree_identifier,
4741         pp_cxx_colon_colon, pp_cxx_whitespace throughout.  Don't set
4742         padding here.
4743         (dump_aggr_type): Use pp_cxx_identifier amd pp_cxx_tree_identifier.
4744         (dump_type_prefix): Don't set padding.  Use pp_cxx_whitespace,
4745         pp_cxx_left_parent, pp_cxx_colon_colon and pp_cxx_star troughout.
4746         (dump_type_suffix): Use pp_cxx_right_paren, pp_cxx_left_bracket,
4747         pp_cxx_right_bracket, pp_cxx_identifier throughout,
4748         (dump_decl): Likewise.
4749         (dump_template_decl): Likewise.
4750         (dump_function_decl): Likewise.  Set padding as appropriate.
4751         (dump_parameters): Use pp_cxx_left_paren, pp_cxx_identifier and
4752         pp_cxx_right_paren.
4753         (dump_exception_spec): Likewise.
4754         (dump_function_name): Use pp_cxx_tree_identifier and
4755         pp_cxx_identifier.
4756         (dump_template_parms): Use pp_cxx_begin_template_argument_list and
4757         pp_cxx_end_template_argument_list.
4758         (dump_expr): Use pp_cxx_left_paren, pp_cxx_right_paren,
4759         pp_cxx_colon_colon, pp_cxx_identifier, pp_cxx_tree_identifier and
4760         pp_cxx_whitespace throughout.
4761         (dump_binary_op): Use pp_cxx_whitespace, pp_cxx_left_paren and
4762         pp_cxx_right_paren.
4763         (dump_unary_op): Likewise.
4764         (reinit_cxx_pp): New function.
4765         (type_as_string); Use it.
4766         (expr_as_string): Likewise.
4767         (decl_as_string); Likewise.
4768         (context_as_string): Likewise.
4769         (lang_decl_name): Likewise.
4770         (decl_to_string): Likewise.
4771         (expr_to_string): Likewise.
4772         (parm_to_string): Likewise.
4773         (type_to_string): Likewise.
4774         (args_to_string): Likewise.
4775         (cv_to_string): Likewise.
4777 2004-06-26  Mark Mitchell  <mark@codesourcery.com>
4779         * cp-tree.h (cp_cv_quals): New type.
4780         (cp_declarator): Use it instead of "tree" as appropriate.
4781         (grok_method_quals): Adjust prototype.
4782         (grokclassfn): Likewise.
4783         (do_friend): Likewise.
4784         * decl.c (grokfndecl): Use cp_cv_quals, not tree.
4785         (grokdeclarator): Likewise.
4786         * decl2.c (grok_method_quals): Likewise.
4787         (grokclassfn): Likewise.
4788         * friend.c (do_friend): Likewise.
4789         * method.c (implicitly_declare_fn): Adjust call to grokclassfn.
4790         * parser.c (make_call_declarator): Use cp_cv_quals, not tree.
4791         (make_pointer_declarator): Likewise.
4792         (make_reference_declarator): Likewise.
4793         (make_ptrmem_declarator): Likewise.
4794         (cp_parser_ptr_operator): Likewise.
4795         (cp_parser_cv_qualifier_seq_opt): Likewise.
4796         (cp_parser_cv_qualifier_opt): Remove.
4797         (cp_parser_new_declarator_opt): Adjust call to
4798         cp_parser_ptr_operator.
4799         (cp_parser_conversion_declaration_opt): Likewise.
4800         (cp_parser_declarator): Use cp_cv_quals, not tree.
4801         (cp_parser_direct_declarator): Likewise.
4803 2004-06-26  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4805         * call.c, cp-tree.h, cxx-pretty-print.c, decl.c, decl2.c:
4806         Rename DECL_STMT to DECL_EXPR.
4807         * init.c, name-lookup.c, parser.c, pt.c, semantics.c: Likewise.
4808         * cp-lang.c (LANG_HOOKS_SAFE_FROM_P): Deleted.
4809         * tree.c (cp_walk_subtrees): Don't call c_walk_subtrees.
4811 2004-06-26  Jan Hubicka  <jh@suse.cz>
4813         PR C++/14865
4814         * decl2.c (maybe_emit_vtables):  Always import_export_vtable for the
4815         reachability analysis.
4817 2004-06-25  Mark Mitchell  <mark@codesourcery.com>
4819         * cp-mudflap.c (mflang_flush_calls): Fix thinkos resulting from
4820         2004-06-23 change.
4822 2004-06-25  Paul Brook  <paul@codesourcery.com>
4824         * decl2.c (get_guard): Call targetm.cxx.guard_type.
4825         (get_guard_bits, get_guard_cond): Call targetm.cxx.guard_mask_bit.
4827 2004-06-24  Mark Mitchell  <mark@codesourcery.com>
4829         * decl.c (grokdeclarator): Restore error messages about __thread.
4830         * parser.c (cp_parser_decl_specifier_seq): Likewise.
4832 2004-06-24  Jason Merrill  <jason@redhat.com>
4834         PR c++/16115
4835         * decl.c (grokparms): Give the PARM_DECL reference type if the
4836         parameter is passed by invisible reference.
4838 2004-06-24  Andreas Schwab  <schwab@suse.de>
4840         * cp-tree.h (enum cp_storage_class): Remove trailing comma.
4842 2004-06-23  Mark Mitchell  <mark@codesourcery.com>
4844         * Make-lang.in (cp/lex.o): Do not depend on cp/lex.h.
4845         (cp/decl.o): Likewise.
4846         (cp/decl2.o): Likewise.
4847         (cp/pt.o): Likewise.
4848         (cp/semantics.o): Likewise.
4849         * config-lang.in (gtfiles): Do not reference cp/lex.h.
4850         * class.c: Do not include lex.h.
4851         (add_implicitly_declared_members): Do not use
4852         adding_implicit_members.
4853         (check_bases_and_members): Do not talk about grok_x_components.
4854         * cp/cp-tree.h (adding_implicit_members): Remove.
4855         (cp_storage_class): New type.
4856         (cp_decl_spec): Likewise.
4857         (cp_decl_specifier_seq): Likewise.
4858         (cp_parameter_declarator): Use it for the decl_specifiers field.
4859         (check_tag_decl): Adjust prototype.
4860         (shadow_tag): Likewise.
4861         (groktypename): Likewise.
4862         (start_decl): Likewise.
4863         (start_function): Likewise.
4864         (start_method): Likewise.
4865         (grok_x_components): Remove.
4866         (grokfield): Adjust prototype.
4867         (grokbitfield): Likewise.
4868         (finish_member_class_template): Remove.
4869         * decl.c: Do not include lex.h.
4870         (adding_implicit_members): Do not define.
4871         (check_tag_decl): Do not use trees to represent decl-specifiers.
4872         (shadow_tag): Likewise.
4873         (groktypename): Likewise.
4874         (start_decl): Likewise.
4875         (grokvardecl): Likewise.
4876         (grokdeclarator): Likewise.
4877         (grokparms): Likewise.
4878         (start_function): Likewise.
4879         (start_method): Likewise.
4880         * decl.h (grokdeclarator): Adjust prototype.
4881         * decl2.c: Do not include lex.h.
4882         (grok_x_components): Remove.
4883         (grokfield): Do not use trees to represent decl-specifiers.
4884         (grokbitfield): Likewise.
4885         * lex.c: Do not include lex.h.
4886         * lex.h: Remove.
4887         * parser.c: Include target.h.
4888         (clear_decl_specs): New function.
4889         (cp_parser_translation_unit): Do not use trees to represent
4890         decl-specifiers.
4891         (cp_parser_postfix_expression): Likewise.
4892         (cp_parser_new_type_id): Likewise.
4893         (cp_parser_condition): Likewise.
4894         (cp_parser_simple_declaration): Likewise.
4895         (cp_parser_decl_specifier_seq): Likewise.
4896         (cp_parser_function_specifier_opt): Likewise.
4897         (cp_parser_conversion_type_id): Likewise.
4898         (cp_parser_template_parameter): Likewise.
4899         (cp_parser_explicit_instantiation): Likewise.
4900         (cp_parser_type_specifier): Likewise.
4901         (cp_parser_simple_type_specifier): Likewise.
4902         (cp_parser_init_declarator): Likewise.
4903         (cp_parser_type_id): Likewise.
4904         (cp_parser_type_specifier_seq): Likewise.
4905         (cp_parser_parameter_declaration): Likewise.
4906         (cp_parser_member_declaration): Likewise.
4907         (cp_parser_exception_declaration): Likewise.
4908         (cp_parser_function_definition_from_specifiers_and_declarator):
4909         Likewise.
4910         (cp_parser_single_declaration): Likewise.
4911         (cp_parser_save_member_function_body): Likewise.
4912         (cp_parser_friend_p): Likewise.
4913         (cp_parser_set_storage_class): New function.
4914         (cp_parser_set_decl_spec_type): Likewise.
4915         * pt.c: Do not include lex.h.
4916         * semantics.c: Likewise.
4917         (finish_member_class_template): Remove.
4919 2004-06-23  Roger Sayle  <roger@eyesopen.com>
4921         * call.c (build_cxx_call): Don't call expand_tree_builtin.  No
4922         longer take both "args" and "convert_args" as arguments.
4923         (build_op_delete_call): Update call to build_cxx_call.
4924         (build_over_call): Likewise, update call to build_cxx_call.
4925         * cp-tree.h (build_cxx_call): Update funtion prototype.
4926         * typeck.c (build_function_call): Don't call expand_tree_builtin.
4927         * rtti.c (throw_bad_cast): Update call to build_cxx_call.
4928         (throw_bad_typeid): Likewise.
4929         (build_dynamic_cast_1): Likewise.
4931 2004-06-22  Richard Henderson  <rth@redhat.com>
4933         * class.c (build_vfn_ref): Take a pointer not object.  Build
4934         an OBJ_TYPE_REF.
4935         (cp_fold_obj_type_ref): New.
4936         * call.c (build_over_call): Update build_vfn_ref call.
4937         * cp-lang.c (LANG_HOOKS_FOLD_OBJ_TYPE_REF): New.
4938         * cp-tree.h (cp_fold_obj_type_ref): Declare.
4940 2004-06-21  Jason Merrill  <jason@redhat.com>
4942         PR c++/16112
4943         * cp-gimplify.c (cp_gimplify_init_expr): Look through
4944         CLEANUP_POINT_EXPR.
4946 2004-06-21  Mark Mitchell  <mark@codesourcery.com>
4948         * cp-tree.def (NEW_EXPR): Add a fourth slot.
4949         * cp-tree.h (PARMLIST_ELLIPSIS_P): Remove.
4950         (TREE_PARMLIST): Likewise.
4951         (CALL_DECLARATOR_PARMS): Likewise.
4952         (CALL_DECLARATOR_QUALS): Likewise.
4953         (CALL_DECLARATOR_EXCEPTION_SPEC): Likewise.
4954         (cp_declarator_kind): New type.
4955         (cp_parameter_declarator): Likewise.
4956         (cp_declarator): Likewise.
4957         (cp_error_declarator): Likewise.
4958         (no_parameters): Likewise.
4959         (groktypename): Change prototype.
4960         (start_decl): Likewise.
4961         (start_handler_parms): Likewise.
4962         (get_scope_of_declarator): Likewise.
4963         (start_function): Likewise.
4964         (start_preparsed_function): New function.
4965         (start_function): Change prototype.
4966         (start_method): Likewise.
4967         (grokfield): Likewise.
4968         (grokbitfield): Likewise.
4969         (build_new): Likewise.
4970         (make_pointer_declarator): Remove.
4971         (make_reference_declarator): Likewise.
4972         (make_call_declarator): Likewise.
4973         (set_quals_and_spec): Likewise.
4974         (process_template_parm): Change prototype.
4975         (begin_function_definition): Remove.
4976         (finish_parmlist): Remove.
4977         * decl.c (groktypename): Do not use trees to represent
4978         declarators.
4979         (start_decl): Likewise.
4980         (start_handler_parms): Remove.
4981         (get_scope_of_declarator): Reimplement.
4982         (grokdeclarator): Do not use trees to represent declarators.
4983         (grokparms): Likewise.
4984         (start_function): Likewise.
4985         (start_method): Likewise.
4986         (build_void_list_mode): Do not use TREE_PARMLIST.
4987         * decl.h (grokdeclarator): Change prototype.
4988         * decl2.c (grok_method_quals): Robustify.
4989         (grok_x_components): Do not use trees to represent declarators.
4990         (grokfield): Likewise.
4991         (grokbitfield): Likewise.
4992         (start_objects): Build FUNCTION_DECLs, not declarators.
4993         (start_static_storage_duration_function): Likewise.
4994         * init.c (build_new): Simplify.
4995         * lex.c (make_pointer_declarator): Remove.
4996         (make_reference_declarator): Likewise.
4997         (make_call_declarator): Likewise.
4998         (set_quals_and_spec): Likewise.
4999         * method.c (use_thunk): Use start_preparsed_function.
5000         (synthesize_method): Likewise.
5001         (implicitly_declare_fn): Build FUNCTION_DECLs, not declarators.
5002         * optimize.c (maybe_clone_body): Use start_preparsed_function.
5003         * parser.c (cp_error_declarator): New variable.
5004         (declarator_obstack): Likewise.
5005         (alloc_declarator): New function.
5006         (make_declarator): Likewise.
5007         (make_id_declarator): Likewise.
5008         (make_pointer_declarator): Likewise.
5009         (make_reference_declarator): Likewise.
5010         (make_ptrmem_declarator): Likewise.
5011         (make_call_declarator): Likewise.
5012         (make_array_declarator): Likewise.
5013         (no_parameters): New variable.
5014         (make_parameter_declarator): Likewise.
5015         (cp_parser_check_for_definition_in_return_type): Do not use trees
5016         to represent declarators.
5017         (cp_parser_translation_unit): Likewise.
5018         (cp_parser_new_expression): Likewise.
5019         (cp_parser_new_type_id): Likewise.
5020         (cp_parser_new_declarator_opt): Likewise.
5021         (cp_parser_direct_new_declarator): Likewise.
5022         (cp_parser_condition): Likewise.
5023         (cp_parser_declaration_statement): Likewise.
5024         (cp_parser_declaration): Likewise.
5025         (cp_parser_conversion_type_id): Likewise.
5026         (cp_parser_conversion_declarator_opt): Likewise.
5027         (cp_parser_template_parameter_list): Likewise.
5028         (cp_parser_template_parameter): Likewise.
5029         (cp_parser_explicit_instantiation): Likewise.
5030         (cp_parser_init_declarator): Likewise.
5031         (cp_parser_declarator): Likewise.
5032         (cp_parser_direct_declarator): Likewise.
5033         (cp_parser_type_id): Likewise.
5034         (cp_parser_parameter_declaration_clause): Likewise.
5035         (cp_parser_parameter_declaration_list): Likewise.
5036         (cp_parser_parameter_declaration): Likewise.
5037         (cp_parser_member_declaration): Likewise.
5038         (cp_parser_exception_declaration): Likewise.
5039         (cp_parser_check_declarator_template_parameters): Likewise.
5040         (cp_parser_function_definition_from_specifiers_and_declarator):
5041         Likewise.
5042         (cp_parser_save_member_function_body): Likewise.
5043         * pt.c (process_template_parm): Add is_non_type parameter.
5044         (convert_template_argument): Adjust call to groktypename.
5045         (tsubst_call_declarator_parms): Remove use of TREE_PARMLIST.
5046         (tsubst): Do not expect declarators.
5047         (tsubst_copy_and_build): Adjust NEW_EXPR case to handle additional
5048         argument.
5049         (instantiate_decl): Use start_preparsed_function.
5050         * semantics.c (begin_function_definition): Remove.
5051         (finish_parmlist): Remove.
5052         * cp-mudflap.c (mflang_flush_calls): Build FUNCTION_DECLs, not
5053         declarators.
5055 2004-06-21  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5057         * call.c (build_vfield_ref): Add new operand for COMPONENT_REF.
5058         (build_new_method_call): Likewise.
5059         * decl.c (local_variable_p_walkfn): Don't walk into types.
5060         * decl2.c (grok_array_decl): Add new operands for ARRAY_REF.
5061         (build_anon_union_vars): Add new operand for COMPONENT_REF.
5062         * init.c (buld_new): Add new operand for ARRAY_REF.
5063         * method.c (do_build_copy_constructor): New op for COMPONENT_REF.
5064         (do_build_assign_ref): Likewise.
5065         * parser.c (cp_parser_direct_new_declarator): Add new operands
5066         for ARRAY_REF.
5067         (cp_parser_direct_declarator): Likewise.
5068         * pt.c (tsubst): Likewise.
5069         (tsubst_copy, tsubst_copy_and_build): Likewise; also add new operand
5070         for COMPONENT_REF.
5071         * semantics.c (finish_non_static_data_member): Add new operand
5072         for COMPONENT_REF.
5073         * typeck.c (build_class_member_access_expr): Likewise.
5074         (build_class_member_access_expr, finish_class_member_access_expr):
5075         Likewise.
5076         (build_ptrmemfunc_access_expr): Likewise.
5077         (build_array_ref): Add new operands for ARRAY_REF.
5078         * typeck2.c (split_nonconstant_init_1): Likewise; COMPONENT_REF too.
5079         * tree.c (count_trees_r, no_linkage_helper): Don't walk in types.
5081 2004-06-21  Richard Henderson  <rth@redhat.com>
5083         * dump.c (cp_dump_tree): Don't use dump_next_stmt.
5084         * parser.c (cp_parser_jump_statement): Update commentary.
5085         * pt.c (tsubst_expr): Use RETURN_EXPR.
5086         * semantics.c (finish_return_stmt): Likewise.
5087         (finalize_nrv_r): Likewise.
5088         * typeck.c, typeck2.c: Update file start commentary.
5090 2004-06-21  Richard Henderson  <rth@redhat.com>
5092         * semantics.c (finish_expr_stmt): Call verify_sequence_points.
5094 2004-06-20  Richard Henderson  <rth@redhat.com>
5096         * cp-tree.h (add_decl_stmt): Declare.
5097         * pt.c (tsubst_copy): Abort for CLEANUP_POINT_EXPR.
5098         * semantics.c (maybe_cleanup_point_expr): New.
5099         (add_decl_stmt, finish_expr_stmt, finish_return_stmt,
5100         finish_for_expr, finish_switch_cond): Use it.
5101         (finalize_nrv_r): Don't build an EXPR_STMT.  Don't frob TREE_CHAIN.
5103 2004-06-20  Richard Henderson  <rth@redhat.com>
5105         * cp-tree.def (CLEANUP_STMT, IF_STMT): Move from c-common.def.
5106         * cp-gimplify.c (gimplify_if_stmt): Move from c-gimplify.c.
5107         (cp_gimplify_expr): Call it.
5108         (gimplify_cleanup_stmt): Move from c-gimplify.c.
5109         (cp_genericize): New.
5110         * decl.c (finish_function): Call it.
5111         * cp-tree.h (cp_stmt_codes): Add CLEANUP_STMT, IF_STMT.
5112         (CLEANUP_BODY, CLEANUP_EXPR, CLEANUP_DECL): Move from c-common.h.
5113         (IF_COND, THEN_CLAUSE, ELSE_CLAUSE): Likewise.
5114         (cp_genericize): Declare.
5115         * cxx-pretty-print.c (pp_cxx_statement): Add CLEANUP_STMT, IF_STMT.
5116         * dump.c (cp_dump_tree): Likewise.
5117         * semantics.c (push_cleanup): Move from c-semantics.c.
5119 2004-06-20  Zack Weinberg  <zack@codesourcery.com>
5121         * cp-lang.c (has_c_linkage): Implement.
5123         * cp-tree.h (set_mangled_name_for_decl): Don't prototype.
5124         * decl.c (duplicate_decls): Use COPY_DECL_RTL.
5125         (builtin_function_1): Don't call make_decl_rtl.
5126         (build_cp_library_fn): Don't call set_mangled_name_for_decl.
5127         (grokvardecl): Don't call mangle_decl.
5128         * except.c (nothrow_libfn_p): Look at DECL_NAME, not
5129         DECL_ASSEMBLER_NAME.
5130         * method.c (set_mangled_name_for_decl): Delete.
5131         * name-lookup.c (pushdecl): When a local extern shadows a
5132         file-scope declaration of the same object, give both DECLs the
5133         same DECL_UID.
5134         * typeck.c (cxx_mark_addressable): Don't set TREE_ADDRESSABLE
5135         on DECL_ASSEMBLER_NAME.
5137 2004-06-19  Richard Henderson  <rth@redhat.com>
5139         * cp-gimplify.c: Remove unnecessary prototypes.
5140         (cp_gimplify_stmt): Merge into ...
5141         (cp_gimplify_expr): ... here.  Move to end of file.  Handle
5142         stmts_are_full_exprs_p frobbing.
5143         * cp-tree.h (cp_gimplify_stmt): Remove.
5144         * pt.c (tsubst_expr): Merge prep_stmt and unify.
5145         * tree.c (init_tree): Don't set lang_gimplify_stmt.
5147 2004-06-18  Richard Henderson  <rth@redhat.com>
5149         PR c++/16034
5150         * semantics.c (begin_cond): New.
5151         (finish_cond): Rewrite to handle template DECL_STMTs specially.
5152         Assume that non-template decls go land before the conditional.
5153         (simplify_loop_decl_cond): Likewise.
5154         (begin_if_stmt, finish_if_stmt_cond, begin_while_stmt,
5155         finish_while_stmt_cond, finish_for_init_stmt, finish_for_cond,
5156         begin_switch_stmt, finish_switch_cond): Update to match.
5158 2004-06-17  Jason Merrill  <jason@redhat.com>
5160         PR c++/16015
5161         * semantics.c (simplify_aggr_init_expr): Don't return the slot.
5162         (finish_stmt_expr_expr): Update type after conversions.
5163         (finish_stmt_expr): Wrap initializer in CLEANUP_POINT_EXPR.
5164         Handle void initializer.
5165         * tree.c (build_cplus_new): Make AGGR_INIT_EXPRs void.
5167 2004-06-17  Geoffrey Keating  <geoffk@apple.com>
5169         * class.c (build_clone): Don't call defer_fn, let mark_used do it.
5170         * cp-tree.h (defer_fn): Delete.
5171         * decl2.c (defer_fn): Delete.
5172         (finish_file): Simplify deferred_fns loops; check that
5173         only used inline functions get into deferred_fns.
5174         (mark_used): Inline previous contents of defer_fn.
5176 2004-06-16  Richard Henderson  <rth@redhat.com>
5178         * cp-tree.h (COMPOUND_STMT_TRY_BLOCK, COMPOUND_STMT_BODY_BLOCK): Kill.
5179         (BIND_EXPR_TRY_BLOCK, BIND_EXPR_BODY_BLOCK): New.
5180         * cxx-pretty-print.c (pp_cxx_function_definition): Move handling
5181         of CTOR_INITIALIZER ...
5182         (pp_cxx_statement): ... here.
5183         * decl.c (begin_function_body): Don't set COMPOUND_STMT_BODY_BLOCK.
5184         (finish_function): Use alloc_stmt_list to zap entire function.
5185         * parser.c (cp_parser_compound_statement): Update commentary.
5186         * pt.c (tsubst_expr): Use BIND_EXPR instead of COMPOUND_STMT.
5187         * semantics.c (begin_compound_stmt, finish_compound_stmt): Likewise.
5188         (finish_stmt_expr): Don't look through COMPOUND_STMT.
5190 2004-06-16  Geoffrey Keating  <geoffk@apple.com>
5192         * pt.c (mark_decl_instantiated): Don't call defer_fn.
5194 2004-06-16  Richard Henderson  <rth@redhat.com>
5196         * parser.c (cp_parser_labeled_statement): Update commentary.
5197         * pt.c (tsubst_expr): Use CASE_LABEL_EXPR.
5198         * tree.c (mark_local_for_remap_r): Likewise.
5200 2004-06-16  Richard Henderson  <rth@redhat.com>
5202         * parser.c (cp_parser_asm_definition): Update commentary.
5203         * pt.c (tsubst_expr): Use ASM_EXPR.
5204         * semantics.c (finish_asm_stmt): Likewise.
5206 2004-06-16  Richard Henderson  <rth@redhat.com>
5208         * decl.c (finish_destructor_body): Use LABEL_EXPR.
5209         * parser.c (cp_parser_statement): Update commentary.
5210         * pt.c (tsubst_expr): Use LABEL_EXPR, GOTO_EXPR.
5211         * semantics.c (finish_goto_stmt, finish_label_stmt): Likewise.
5212         * tree.c (mark_local_for_remap_r): Likewise.
5214 2004-06-16  Richard Henderson  <rth@redhat.com>
5216         PR c++/16012
5217         * semantics.c (begin_for_stmt, begin_for_stmt): Do put the init
5218         statement in FOR_INIT_STMT for templates.
5220 2004-06-15  Richard Henderson  <rth@redhat.com>
5222         * call.c (initialize_reference): Don't build CLEANUP_STMT here.
5223         * cp-gimplify.c (cp_gimplify_stmt): Remove next_p argument.
5224         (genericize_try_block): Use gimplify_stmt.
5225         (genericize_catch_block, genericize_eh_spec_block): Likewise.
5226         (cp_gimplify_init_expr): Remove STMT_EXPR special case.
5227         (gimplify_must_not_throw_expr): Update voidify_wrapper_expr call.
5228         * cp-lang.c (LANG_HOOKS_TREE_INLINING_TREE_CHAIN_MATTERS_P): Remove.
5229         (cp_tree_chain_matters_p): Remove.
5230         * cp-tree.h (COMPOUND_STMT_TRY_BLOCK): New.
5231         (COMPOUND_STMT_BODY_BLOCK): New.
5232         (STATEMENT_LIST_NO_SCOPE, STATEMENT_LIST_TRY_BLOCK): New.
5233         (EXPR_STMT_STMT_EXPR_RESULT): New.
5234         (building_stmt_tree): Check cur_stmt_list.
5235         (tf_stmt_expr_cmpd, tf_stmt_expr_body): Remove.
5236         (BCS_NO_SCOPE, BCS_TRY_BLOCK, BCS_FN_BODY): New.
5237         * decl.c (poplevel): Use pop_stmt_list for minding cleanups.
5238         (cp_finish_decl): Use push_cleanup.
5239         (start_function, finish_function): Use statement lists.
5240         (finish_stmt): Do nothing.
5241         * except.c (begin_eh_spec_block): Use statement lists.
5242         (check_handlers_1, check_handlers): Likewise.
5243         * init.c (construct_virtual_base): Don't add extra compound stmts.
5244         (build_vec_init): Likewise.
5245         * name-lookup.c (maybe_push_cleanup_level): Use statement lists.
5246         * name-lookup.h (struct cp_binding_level): Add statement_list.
5247         * parser.c (cp_parser_statement): Take the STMT_EXPR node, not a bool.
5248         (cp_parser_labeled_statement, cp_parser_expression_statement,
5249         cp_parser_statement_seq_opt): Likewise.
5250         (cp_parser_compound_statement): Likewise.  Take bool for try block.
5251         (cp_parser_selection_statement): Tidy if processing.
5252         (cp_parser_already_scoped_statement): Rewrite to do what it says.
5253         * pt.c (tsubst_copy): Move STMT_EXPR to tsubst_expr.
5254         (tsubst_expr): Rewrite STMT_EXPR processing.  Handle STATEMENT_LIST.
5255         Mind COMPOUND_STMT_TRY_BLOCK, EXPR_STMT_STMT_EXPR_RESULT.
5256         * semantics.c (do_poplevel, do_pushlevel): Use statement lists.
5257         (finish_cond): New, rewritten from FINISH_COND.
5258         (simplify_loop_decl_cond): New.
5259         (finish_expr_stmt): Avoid nested EXPR_STMTs.
5260         (begin_if_stmt, finish_if_stmt_cond, finish_then_clause,
5261         begin_else_clause, finish_else_clause, finish_if_stmt,
5262         begin_while_stmt, finish_while_stmt_cond, finish_while_stmt,
5263         begin_do_stmt, finish_do_body, begin_for_stmt, finish_for_init_stmt,
5264         finish_for_cond, finish_for_stmt, begin_switch_stmt,
5265         finish_switch_cond, finish_switch_stmt, begin_try_block,
5266         finish_try_block, finish_cleanup_try_block, finish_function_try_block,
5267         finish_handler_sequence, finish_function_handler_sequence,
5268         begin_handler, finish_handler_parms, finish_handler,
5269         begin_stmt_expr, finish_stmt_expr_expr, finish_stmt_expr): Rewrite
5270         using statement lists.
5271         (begin_compound_stmt): Replace has_no_scope argument with flags.
5272         Update all callers.  Use statement lists.
5273         (finish_compound_stmt): Likewise.
5274         (finish_decl_cleanup, finish_eh_cleanup): Use push_cleanup.
5275         (current_scope_stmt_stack): Remove.
5276         (simplify_aggr_init_expr): Don't muck with TREE_CHAIN.
5277         * typeck2.c (split_nonconstant_init_1, split_nonconstant_init):
5278         Rewrite with statement lists.
5280 2004-06-15  Alexandre Oliva  <aoliva@redhat.com>
5282         * parser.c: Change all assignments of c_lex_string_translate
5283         to true and false to 1 and 0.
5284         (cp_lexer_read_token): Convert type of the translated string.
5285         (cp_parser_skip_to_closing_parentheses): Preserve original
5286         value of c_lex_string_translate, and set it to -1 while
5287         running.
5288         (cp_parser_cache_group): Likewise.
5289         (cp_parser_cache_group_1): Renamed.
5290         (cp_parser_asm_operand_list): Remove redundant setting of
5291         c_lex_string_translate.
5292         (cp_parser_primary_expression) [CPP_STRING, CPP_WSTRING]:
5293         Handle chained strings.
5295 2004-06-12  Andrew Pinski  <apinski@apple.com>
5297         PR c++/14639
5298         Revert:
5299         2004-06-02  Andrew Pinski  <pinskia@physics.uc.edu>
5301                 * cp-tree.h: Fix typo.
5303                 * cp-tree.h: Include cgraph.h
5304                 (DECL_NEEDED_P): Use cgraph_*node on the decl instead of
5305                 TREE_SYMBOL_REFERENCED on the DECL_ASSEMBLER_NAME of the decl.
5307 2004-06-12  Jason Merrill  <jason@redhat.com>
5309         PR tree-optimization/14107
5310         * decl.c (finish_function): Warn about no return in all functions.
5312 2004-06-15  Paolo Bonzini  <bonzini@gnu.org>
5314         * cp-tree.h (struct language_function): Remove cannot_inline.
5315         * decl.c (save_function_data): cannot_inline is no more.
5316         (cxx_push_function_context): Likewise.
5317         * decl2.c (start_objects, start_static_storage_duration_function):
5318         Reset DECL_INLINE, set DECL_UNINLINABLE.
5320 2004-06-14  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
5322         PR c++/15967
5323         * search.c (lookup_field): Propagate the ambiguity list.
5324         (lookup_fnfields): Likewise.
5326 2004-06-14  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
5328         PR c++/15947
5329         * parser.c (cp_parser_template_name): Ctors/dtors never need a
5330         template keyword to disambiguate.
5332 2004-06-14  Mark Mitchell  <mark@codesourcery.com>
5334         PR c++/15096
5335         * decl.c (grokdeclarator): Ignore pointer-to-members when
5336         computing template depth.
5338         PR c++/14930
5339         * name-lookup.c (pushtag): Do not try to put class declarations in
5340         explicit specialization scopes.
5342 2004-06-11  Andrew Pinski  <pinskia@physics.uc.edu>
5344         * decl.c (grokdeclarator): Do not depend on C99's _Bool's behavior.
5346 2004-06-11  Mark Mitchell  <mark@codesourcery.com>
5348         PR c++/15862
5349         * name-lookup.c (unqualified_namespace_lookup): Do not ignore type
5350         bindings for undeclared built-ins.
5352 2004-06-11  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
5354         * typeck2.c (abstract_virtual_errors): Reword diagnostics, make them
5355         appear at the correct location.
5357 2004-06-10  Jason Merrill  <jason@redhat.com>
5359         PR c++/15875
5360         Revert:
5361         2004-06-01  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
5362         * init.c (build_offset_ref): Build SCOPE_REF with non-null
5363         TREE_TYPE for non-dependent names.
5364         * pt.c (type_dependent_expression_p): Handle SCOPE_REF with
5365         unknown_type_node as its TREE_TYPE.
5366         * cxx-pretty_print.c (pp_cxx_unqualified_id): Handle BASELINK.
5367         * error.c (dump_decl) <SCOPE_REF case>: Use pp_expression.
5368         (dump_expr) <SCOPE_REF case>: Likewise.
5370 2004-06-10  Mark Mitchell  <mark@codesourcery.com>
5372         PR c++/15227
5373         * parser.c (cp_parser_direct_declarator): Robustify.
5375         PR c++/15877
5376         * pt.c (tsubst_copy): Use decl_constant_value on enumeration
5377         constants in non-dependent contexts.
5379         PR c++/14211
5380         PR c++/15076
5381         * typeck.c (build_static_cast): Wrap casts in NON_LVALUE_EXPR when
5382         necessary.
5384 2004-06-10  Jakub Jelinek  <jakub@redhat.com>
5386         PR c++/14791
5387         * decl.c (duplicate_decls): Handle fileptr_type_node arguments
5388         specially.
5390 2004-06-09  Mark Mitchell  <mark@codesourcery.com>
5392         Revert:
5393         PR c++/15815
5394         2004-06-07  Mark Mitchell  <mark@codesourcery.com>
5395         * lex.c (handle_pragma_interface): Deprecate.
5396         (handle_pragma_implementation): Likewise.
5398 2004-06-09  Andrew Pinski  <pinskia@physics.uc.edu>
5400         * g++spec.c (lang_specific_driver): Remove check for -lm
5401         and -lmath when check it see if it was the math library.
5403 2004-06-08  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
5405         PR c++/7841
5406         * parser.c (cp_parser_direct_declarator): Reject constructor named
5407         as qualified template-id.
5409 2004-06-07  Mark Mitchell  <mark@codesourcery.com>
5411         PR c++/15815
5412         * lex.c (handle_pragma_interface): Deprecate.
5413         (handle_pragma_implementation): Likewise.
5415 2004-06-07  Mark Mitchell  <mark@codesourcery.com>
5417         PR c++/15766
5418         * parser.c (cp_parser_iteration_statement): Fix typo in error
5419         message.
5421         PR c++/14777
5422         * pt.c (tsubst_default_argument): Do not defer access checks
5423         while substituting into the default argument.
5425         PR c++/15554
5426         * pt.c (tsubst_copy): Do not try to substitute for an enumeration
5427         constant in a non-dependent context.
5429         PR c++/15057
5430         * except.c (build_throw): Ensure that temp_expr has been
5431         initialized.
5433 2004-06-06  Roger Sayle  <roger@eyesopen.com>
5435         * cp/cp-tree.h (lvalue_or_else): Add function prototype.
5437 2004-06-06  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
5439         PR c++/15503
5440         * parser.c (cp_parser_mem_initializer_id): Gracefully reject
5441         'typename', and accept 'template'.
5443 2004-06-03  Andrew Pinski  <pinskia@physics.uc.edu>
5444             Jan Hubicka  <jh@suse.cz>
5446         PR c++/14639
5447         * method.c (use_think): Do not mark thunk as referenced.
5449 2004-06-03  Matt Austern  <austern@apple.com>
5451         PR c++/15428
5452         * decl2.c (maybe_emit_vtables): If TARGET_WEAK_NOT_IN_ARCHIVE_TOC
5453         is nonzero, and if we see a noninline definition of a key method,
5454         make the vtables nonweak.
5456 2004-06-02  Matt Austern  <austern@apple.com>
5458         * cp-tree.h (instantiate_decl): new boolean parameter,
5459         undefined_ok. Current behavior is equivalent to its being 0.
5460         * decl2.c (mark_used): Add new argument when calling instantiate_decl
5461         * pt.c (mark_decl_instantiated): Unconditionally make
5462         instantiations explicit unconditionally
5463         (do_decl_instantiation): Don't call SET_DECL_EXPLICIT_INSTANTIATION,
5464         since mark_decl_instantiated now does it.
5465         (instantiate_class_member): New.  Instantiate a member of an
5466         explicitly instantiated class template.
5467         (do_type_instantiation): Explicitly instantiate members of an
5468         explicitly instantiated class template.
5469         (instantiate_decl): if undefined_ok is nonzero, and if we're
5470         trying to explicitly instantiated a template with no definition,
5471         change it to an implicit instantiation.
5472         (instantiate_pending_templates): Add new argument to instantiate_decl.
5473         * tree.c (cp_cannot_inline_tree_fn): Likewise.
5475 2004-06-02  Andrew Pinski  <pinskia@physics.uc.edu>
5477         * cp-tree.h: Fix typo.
5479         * cp-tree.h: Include cgraph.h
5480         (DECL_NEEDED_P): Use cgraph_*node on the decl instead of
5481         TREE_SYMBOL_REFERENCED on the DECL_ASSEMBLER_NAME of the decl.
5483 2004-06-01  Jason Merrill  <jason@redhat.com>
5485         PR c++/15142
5486         * call.c (call_builtin_trap): Remove type parm.
5487         (convert_arg_to_ellipsis): Change a non-POD argument to integer type.
5488         (build_x_va_arg): Dereference a null pointer for a non-POD argument.
5490 2004-06-01  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
5492         PR c++/13092
5493         * init.c (build_offset_ref): Build SCOPE_REF with non-null
5494         TREE_TYPE for non-dependent names.
5495         * pt.c (type_dependent_expression_p): Handle SCOPE_REF with
5496         unknown_type_node as its TREE_TYPE.
5497         * cxx-pretty_print.c (pp_cxx_unqualified_id): Handle BASELINK.
5498         * error.c (dump_decl) <SCOPE_REF case>: Use pp_expression.
5499         (dump_expr) <SCOPE_REF case>: Likewise.
5501 2004-06-01  Richard Henderson  <rth@redhat.com>
5502             Andrew Pinski  <pinskia@physics.uc.edu>
5504         * lex.c (reswords): Rename "__offsetof" to "__builtin_offsetof".
5505         * parser.c (struct cp_parser): Remove in_offsetof.
5506         (cp_parser_new): Don't set it.
5507         (cp_parser_unary_expression): Don't check it.
5508         (cp_parser_postfix_open_square_expression): Split out from ...
5509         (cp_parser_postfix_expression): ... here.
5510         (cp_parser_postfix_dot_deref_expression): Likewise.
5511         (cp_parser_builtin_offsetof): New.
5512         (cp_parser_primary_expression): Use it.
5514 2004-06-01  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
5516         PR c++/14932
5517         * parser.c (cp_parser_postfix_expression): Allow subscript
5518         operator in offsetof.
5520 2004-05-31  Mark Mitchell  <mark@codesourcery.com>
5522         PR c++/15701
5523         * friend.c (add_friend): Do not try to perform access checks for
5524         functions from dependent classes.
5526 2004-05-31  Gabriel Dos Reis  <gdr@integrable-solutions.net>
5528         * cxx-pretty-print.c (pp_cxx_colon_colon): Expor.
5529         (pp_cxx_begin_template_argument_list): Turn into a function.
5530         (pp_cxx_end_template_argument_list): Likewise.
5531         (pp_cxx_separate_with): Define.
5532         (pp_cxx_unqualified_id): Tidy.
5533         (pp_cxx_primary_expression): Likewise.
5534         (pp_cxx_postfix_expression): Likewise.
5535         (pp_cxx_expression): Likewise.
5536         (pp_cxx_simple_type_specifier): Likewise.
5537         (pp_cxx_type_specifier_seq): Likewise.
5538         (pp_cxx_parameter_declaration_clause): Likewise.
5539         (pp_cxx_exception_specification): Likewise.
5540         (pp_cxx_direct_declarator): Likewise.
5541         (pp_cxx_type_id): Likewise.
5542         * cxx-pretty-print.h (pp_cxx_whitespace): Export from
5543         cxx-pretty-print.c.
5544         (pp_cxx_left_paren): Likewise.
5545         (pp_cxx_right_paren): Likewise.
5546         (pp_cxx_left_brace): Likewise.
5547         (pp_cxx_right_brace): Likewise.
5548         (pp_cxx_left_bracket): Likewise.
5549         (pp_cxx_right_bracket): Likewise.
5550         (pp_cxx_dot): Likewise.
5551         (pp_cxx_identifier): Likewise.
5552         (pp_cxx_tree_identifier): Likewise.
5553         (pp_cxx_ampersand): New macro.
5554         (pp_cxx_star): Likewise.
5555         (pp_cxx_arrow): Likewise.
5556         (pp_cxx_semicolon): Likewise.
5557         (pp_cxx_complement): Likewise.
5558         (pp_cxx_begin_template_argument_list): Declaree.
5559         (pp_cxx_end_template_argument_list): Likewise.
5560         (pp_cxx_colon_colon): likewise.
5562 2004-05-31  Eric Botcazou  <ebotcazou@libertysurf.fr>
5564         * parser.c (cp_parser_simple_type_specifier): Explicitly test
5565         against NULL_TREE.
5567 2004-05-31  Kazu Hirata  <kazu@cs.umass.edu>
5569         * call.c, class.c, cp-tree.def, decl2.c, name-lookup.c, pt.c,
5570         typeck.c: Fix comment formatting.
5572 2004-05-30  Andrew Pinski  <pinskia@physics.uc.edu>
5574         * cp-lang.c (cp_expand_decl): Remove.
5575         (LANG_HOOKS_EXPAND_DECL): Use c_expand_decl.
5577 2004-05-30  Andreas Jaeger  <aj@suse.de>
5579         * lang-specs.h: Add missing initializers for .ii.
5581 2004-05-28  Aldy Hernandez  <aldyh@redhat.com>
5583         * decl.c (cp_make_fname_decl): Free return value from
5584         fname_as_string.
5586 2004-05-28  Mark Mitchell  <mark@codesourcery.com>
5588         PR c++/15083
5589         * decl2.c (delete_sanity): Set TREE_SIDE_EFFECTS on a DELETE_EXPR,
5590         even in a templat.e
5591         * init.c (build_new): Likewise.
5593         PR c++/15640
5594         * name-lookup.c (arg_assoc): Robustify.
5596         PR c++/15471
5597         * typeck.c (unary_complex_lvalue): Use context_for_name_lookup
5598         when determining the scope to use for a pointer to member.
5599         (lookup_anon_field): Give it external linkage.
5600         * cp-tree.h (lookup_anon_field): Declare it.
5601         * expr.c (cplus_expand_constant): Use it.
5603 2004-05-28  Mark Mitchell  <mark@codesourcery.com>
5605         PR c++/14668
5606         * parser.c (cp_parser_simple_type_specifier): Call
5607         maybe_note_name_used_in_class.
5609 2004-05-28  Tom Marshall  <tmarshall@real.com>
5611         PR c++/15214
5612         * class.c (finish_struct_1): Warn only if the dtor is non-private or
5613         the class has friends.
5615 2004-05-27  Adam Nemet  <anemet@lnxw.com>
5617         PR c++/12883
5618         * decl.c (complete_array_type): Set TYPE_NEEDS_CONSTRUCTING and
5619         TYPE_HAS_NONTRIVIAL_DESTRUCTOR based on the underlying type.
5621 2004-05-24  Geoffrey Keating  <geoffk@apple.com>
5623         * method.c (implicitly_declare_fn): Don't call defer_fn; abort
5624         if it might be needed.
5625         * pt.c (mark_decl_instantiated): Only call defer_fn if
5626         the function actually needs processing in finish_file.
5627         * decl2.c (finish_file): Add check that elements in
5628         deferred_fns_used are really needed there.  Remove unnecessary
5629         test of DECL_SAVED_TREE.
5631 2004-05-23  Paolo Bonzini  <bonzini@gnu.org>
5633         * Make-lang.in: No need to specify $(LIBCPP).
5635 2004-05-23  Mark Mitchell  <mark@codesourcery.com>
5637         PR c++/15044
5638         * parser.c (cp_parser_class_head): Robustify.
5640         PR c++/15317
5641         * parser.c (cp_parser_decl_specifier_seq): Correct error in
5642         comment.
5643         (cp_parser_constructor_declarator_p): Treat attributes
5644         as decl-specifiers.
5646         PR c++/15329
5647         * typeck.c (build_unary_op): Do not attempt to resolve casts to
5648         base classes in templates.
5650 2004-05-23  Mark Mitchell  <mark@codesourcery.com>
5652         PR c++/15165
5653         * pt.c (instantiate_template): Robustify.
5655 2004-05-23  Mark Mitchell  <mark@codesourcery.com>
5657         PR c++/15025
5658         * decl.c (xref_tag): Issue errors about redeclaring template
5659         classes as non-template classes.
5661 2004-05-23  Mark Mitchell  <mark@codesourcery.com>
5663         PR c++/14821
5664         * name-lookup.c (supplement_binding): Allow redefinitions of
5665         namespace aliases.
5667         PR c++/14883
5668         * parser.c (cp_parser_template_argument): Robustify.
5670 2004-05-23  Gabriel Dos Reis  <gdr@integrable-solutions.net>
5672         * class.c (alter_access): Use %E format specifier to print an
5673         identifier node.  Avoid looking at the IDENTIFIER_POINTER.
5674         (push_lang_context): Likewise.
5675         * decl.c (lookup_label): Likewise.
5676         (grokdeclarator): Likewise.
5677         * parser.c (cp_parser_check_for_invalid_template_id): Likewise.
5678         * pt.c (do_type_instantiation): Likewise.
5679         * tree.c (handle_java_interface_attribute): Likewise.
5680         (handle_com_interface_attribute): Likewise.
5681         (handle_init_priority_attribute): Likewise.
5683 2004-05-22  Mark Mitchell  <mark@codesourcery.com>
5685         PR c++/15285
5686         PR c++/15299
5687         * pt.c (build_non_dependent_expr): Expand the set of tree nodes
5688         recognized as overloaded functions.
5690 2004-05-22  Mark Mitchell  <mark@codesourcery.com>
5692         PR c++/15507
5693         * class.c (layout_nonempty_base_or_field): Do not try to avoid
5694         layout conflicts for unions.
5696         PR c++/15542
5697         * typeck.c (build_x_unary_op): Instantiate template class
5698         specializations before looking for "operator &".
5700         PR c++/15427
5701         * typeck.c (complete_type): Layout non-dependent array types, even
5702         in templates.
5704         PR c++/15287
5705         * typeck.c (build_unary_op): Do not optimize "&x[y]" when in a
5706         template.
5708 2004-05-22  Roger Sayle  <roger@eyesopen.com>
5710         * name-lookup.c (check_for_out_of_scope_variable): Avoid ICE by
5711         returning when TREE_TYPE is error_mark_node.
5712         * typeck.c (require_complete_type): Return error_mark_node if
5713         value's type is an error_mark_node.
5715 2004-05-20  Andrew Pinski  <pinskia@physics.uc.edu>
5717         * optimize.c (calls_setjmp_r): Remove.
5718         (calls_setjmp_p): Remove.
5719         * cp-tree.c (calls_setjmp_p): Remove.
5720         * decl.c (finish_function): Do not call calls_setjmp_p.
5722 2004-05-18  Zack Weinberg  <zack@codesourcery.com>
5724         * decl.c (cp_finish_decl): Use mark_decl_referenced.
5725         * decl2.c (maybe_make_one_only): Likewise.
5726         * method.c (use_thunk): Likewise.
5728 2004-05-18  Jason Merrill  <jason@redhat.com>
5730         * class.c (build_base_path): Tidy a bit.
5732 2004-05-14  Geoffrey Keating  <geoffk@apple.com>
5734         * name-lookup.c (struct scope_binding): New.
5735         (EMPTY_SCOPE_BINDING): New.
5736         (lookup_using_namespace): Take a scope_binding instead of a
5737         cxx_binding.
5738         (qualified_lookup_using_namespace): Likewise.
5739         (cxx_binding_clear): Delete.
5740         (do_nonmember_using_decl): Use a scope_binding instead of a
5741         cxx_binding.
5742         (lookup_tag): Don't call select_decl.
5743         (ambiguous_decl): Don't return anything (and change callers to match).
5744         Take a scope_binding as the second parameter.
5745         (lookup_namespace_name): Use a scope_binding instead of a
5746         cxx_binding.
5747         (unqualified_namespace_lookup): Likewise.
5748         (lookup_qualified_name): Likewise.
5749         (select_decl): Take a scope_binding instead of a cxx_binding.
5750         Use macros rather than hand-coding tests for type-ness.
5752 2004-05-13  Diego Novillo  <dnovillo@redhat.com>
5754         * cp-gimplify.c: Rename from cp-simplify.c.
5755         * Make-lang.in, optimize.c: Update.
5757 2004-05-13  Diego Novillo  <dnovillo@redhat.com>
5759         Merge from tree-ssa-20020619-branch.  See
5760         ChangeLog.tree-ssa for details.
5762         * Make-lang.in, call.c, class.c, cp-lang.c, cp-tree.def,
5763         cp-tree.h, cvt.c, decl.c, decl2.c, error.c, except.c,
5764         expr.c, init.c, name-lookup.h, optimize.c, parser.c,
5765         pt.c, rtti.c, semantics.c, tree.c, typeck.c, typeck2.c:
5766         Merged.
5767         * cp-mudflap.c: New file.
5768         * cp-simplify.c:: New file.
5770 2004-05-03  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
5772         PR c++/14389
5773         * decl2.c (check_classfn): For member templates, compare also the
5774         template parameters to match the declaration.
5775         * cp-tree.h: Adjust declaration of check_classfn.
5776         * decl.c (start_decl, grokfndecl): Adjust callers of check_classfn.
5777         * friend.c (do_friend): Likewise.
5778         * pt.c (tsubst_friend_function): Likewise.
5780 2004-05-01  Zack Weinberg  <zack@codesourcery.com>
5782         * decl.c (reshape_init): Do not apply TYPE_DOMAIN to a VECTOR_TYPE.
5783         Instead, dig into the representation type to find the array bound.
5785 2004-04-30  Jason Merrill  <jason@redhat.com>
5787         Refer to base members using COMPONENT_REFs where possible.
5788         * class.c (build_simple_base_path): New fn.
5789         (build_base_path): Use it for non-virtual base references.
5790         (layout_class_type): Change base fields to their real type
5791         after layout is done.
5792         * cp-tree.h (IS_FAKE_BASE_TYPE): New macro.
5793         * cp-lang.c (cxx_get_alias_set): Use it.
5795 2004-04-30  Kazu Hirata  <kazu@cs.umass.edu>
5797         * class.c, cp-tree.h, decl.c, decl2.c, pt.c, rtti.c: Fix
5798         comment typos.
5800 2004-04-23  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
5802         PR c++/15064
5803         * parser.c (cp_parser_postfix_expression): typeid operator cannot be
5804         used in integral constant expressions.
5806 2004-04-22  Mark Mitchell  <mark@codesourcery.com>
5808         * init.c (build_aggr_init): Fix accidental use of C99 construct in
5809         previous change.
5811         * class.c (initialize_array): Don't set TREE_HAS_CONSTRUCTOR on
5812         braced initializer.
5813         * cp-tree.h (BRACE_ENCLOSED_INITIALIZER_P): New macro.
5814         * decl.c (reshape_init): Use it.
5815         * init.c (perform_member_init): Remove redundant condition.
5816         (build_aggr_init): Adjust to handle brace-enclosed initializers
5817         correctly.
5818         (expand_default_init): Use BRACE_ENCLOSED_INITIALIZER_P.
5820         * parser.c (cp_parser_initializer_clause): Do not set
5821         TREE_HAS_CONSTRUCTOR on the initializer.
5822         * rtti.c (tinfo_base_init): Likewise.
5823         (generic_initializer): Likewise.
5824         (ptr_initializer): Likewise.
5825         (ptm_initializer): Likewise.
5826         (class_initializer): Likewise.
5827         (get_pseudo_ti_init): Likewise.
5828         * typeck2.c (digest_init): Use BRACE_ENCLOSED_INITIALIZER_P.
5830 2004-04-22  Alan Modra  <amodra@bigpond.net.au>
5832         * name-lookup.c (anonymous_namespace_name): Make static.
5834 2004-04-19  Roger Sayle  <roger@eyesopen.com>
5836         PR middle-end/14531
5837         * class.c (build_base_path): Call fold whilst building the NULL
5838         pointer check expression trees.
5840 2004-04-15  Bryce McKinlay  <mckinlay@redhat.com>
5842         * init.c (build_new_1): Don't use type size argument for Java
5843         _Jv_AllocObject call.
5845 2004-04-09  Danny Smith  <dannysmith@users.sourceforge.net>
5847         * method.c (make_alias_for_thunk): Remove preprocessor guard on
5848         declaration and definition.
5850 2004-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
5852         PR c++/14808
5853         * method.c (use_thunk): Test TARGET_USE_LOCAL_THUNK_ALIAS_P rather
5854         than ASM_OUTPUT_DEF.
5856 2004-04-08  Jakub Jelinek  <jakub@redhat.com>
5858         * decl2.c (mark_used): Don't segfault if cfun != NULL but
5859         current_function_decl == NULL.
5861 2004-04-05  Nathan Sidwell  <nathan@codesourcery.com>
5863         PR c++/3518
5864         * pt.c (check_cv_quals_for_unify): Ignore bogus CV quals at outer
5865         level.
5867 2004-04-05  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5869         * init.c (decl_constant_value): Don't look at DECL_INITIAL
5870         of PARM_DECL.
5871         * tree.c (bot_manip, build_min): Don't look at TREE_CONSTANT
5872         or TREE_SIDE_EFFECTS of a type.
5874 2004-04-02  Nathan Sidwell  <nathan@codesourcery.com>
5876         PR c++/14007
5877         * pt.c (check_cv_quals_for_unify): Correct logic for disallowed
5878         cv-qualifier unification.
5879         * tree.c (cp_build_qualified_type_real): Renable DR295 logic.
5881 2004-04-02  Jan Hubicka  <jh@suse.cz>
5883         * cp-lang. (LANG_HOOKS_UPDATE_DECL_AFTER_SAVING): Define.
5884         * cp-tree.h (cp_update_decl_after_saving): Declare.
5885         * tree.c (cp_update_decl_after_saving): Define.
5887 2004-04-01  Mark Mitchell  <mark@codesourcery.com>
5889         PR c++/14803
5890         * typeck.c (get_delta_difference): Call fold before returning the
5891         value.
5893 2004-04-01  Richard Henderson  <rth@redhat.com>
5895         PR c++/14804
5896         * decl.c (cp_finish_decl): Preserve TREE_READONLY more often.
5897         * typeck2.c (split_nonconstant_init): Clear TREE_READONLY.
5899 2004-04-01  Mark Mitchell  <mark@codesourcery.com>
5901         PR c++/14810
5902         * name-lookup.c (maybe_push_cleanup_level): Robustify.
5904 2004-04-01  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5906         * class.c (VTT_TOP_LEVEL_P): Use unsigned_flag directly.
5908 2004-03-31  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5910         * call.c (joust): Use TYPE_UNSIGNED, not TREE_UNSIGNED.
5911         * class.c (check_bitfield_decl): Likewise.
5912         * cvt.c (type_promotes_to): Likewise.
5913         * decl.c (finish_enum): Likewise.
5914         * mangle.c (write_builtin_type): Likewise.
5915         * semantics.c (finish_switch_cond, finish_unary_op_expr): Likewise.
5916         * typeck.c (type_after_usual_arithmetic_conversions): Likewise.
5917         (build_binary_op): Likewise.
5919 2004-03-31  Jan Hubicka  <jh@suse.cz>
5921         * tree.h (optimize_function): Kill prototype.
5922         * optimize.c (dump_function, optimize_function, dump_finction): Kill.
5923         * semantics.c (expand_body): Kill.
5925 2004-03-30  Mark Mitchell  <mark@codesourcery.com>
5927         PR c++/14724
5928         * decl.c (start_decl_1): Do not decide whether or not to create a
5929         new cleanup level until after the type has been completed.
5931         PR c++/14763
5932         * pt.c (tsubst_default_argument): Clear current_function_decl.
5934 2004-03-30  Zack Weinberg  <zack@codesourcery.com>
5936         * name-lookup.c, parser.c: Use new shorter form of GTY markers.
5938 2004-03-29  Zack Weinberg  <zack@codesourcery.com>
5940         * error.c (dump_function_name): If T's DECL_LANG_SPECIFIC
5941         is null, just print the literal name and return.
5943 2004-03-25  Kazu Hirata  <kazu@cs.umass.edu>
5945         * cxx-pretty-print.c: Fix comment typos.
5947 2004-03-24  Kazu Hirata  <kazu@cs.umass.edu>
5949         * cxx-pretty-print.c, cxx-pretty-print.h, decl.h, friend.c:
5950         Update copyright.
5952 2004-03-23  Ziemowit Laski  <zlaski@apple.com>
5954         * Make-lang.in (cp/mangle.o): Depend on $(TARGET_H).
5955         * mangle.c (write_type): Add call to 'mangle_fundamental_type'
5956         target hook.
5958 2004-03-23  Zack Weinberg  <zack@codesourcery.com>
5960         PR 12267, 12391, 12560, 13129, 14114, 14133
5961         * cp-lang.c (c_reset_state): Delete.
5962         (push_file_scope, pop_file_scope): New stubs.
5963         * parser.c (c_parse_file): Call sorry() here if called more than once.
5965 2004-03-23  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5967         * typeck.c (build_c_cast): Only look at TREE_CONSTANT_OVERFLOW
5968         for INTEGER_CST.
5970 2004-03-22  Gabriel Dos Reis  <gdr@integrable-solutions.net>
5972         * cxx-pretty-print.c (pp_cxx_parameter_declaration_clause): Declare.
5974 2004-03-21  Gabriel Dos Reis  <gdr@integrable-solutions.net>
5976         * error.c (enum pad): Remove.
5977         (dump_qualifiers): Likewise.
5978         (dump_type): Replace dump_qualifiers with pp_cxx_cv_qualifier_seq.
5979         (dump_aggr_type): Likewise.
5980         (dump_type_suffix): Likewise.
5981         (dump_simple_decl): Likewise.
5982         (dump_function_decl): Likewise.
5983         (cv_to_string): Likewise.
5984         (dump_type_prefix): Likewise.  Adjust return void.
5985         * cxx-pretty-print.c (pp_cxx_cv_qualifier_seq): Move to
5986         cxx_pretty_print.h.
5987         (pp_cxx_template_keyword_if_needed): Document.
5988         (pp_cxx_qualified_id): Document case FUNCTION_DECL.  Tidy.
5989         (pp_cxx_expression): Handle NON_DEPENDENT_EXPR and
5990         MUST_NOT_THROW_EXPR.
5992 2004-03-21  Mark Mitchell  <mark@codesourcery.com>
5994         PR c++/14616
5995         * decl.c (cp_finish_decl): Compute the size of arrays declared in
5996         templates, if their type is non-dependent.
5998 2004-03-19  Mark Mitchell  <mark@codesourcery.com>
6000         * call.c (build_op_delete_call): Do not forget the placement
6001         arguments when iterating through mutiple delete operators.
6003         * cp-tree.h (svaed_scope): Remove last_parms.
6004         (NEW_DELETE_OPNAME_P): New macro.
6005         (last_function_parms): Remove.
6006         (do_friend): Adjust prototype.
6007         * decl.c (grokparms): Return the PARM_DECLs directly, rather than
6008         using last_function_parms.
6009         (grokfndecl): Take the PARM_DECLs as an argument, rather than
6010         using last_function_parms.
6011         (grokdeclarator): Adjust accordingly.  Do not form METHOD_TYPEs
6012         for class-specific operator new and operator delete.
6013         (grok_op_properties): Do not look for allocation functions with
6014         METHOD_TYPEs.
6015         (start_function): Use DECL_ARGUMENTS instead of
6016         last_function_parms.
6017         * decl.h (last_function_parms): Do not declare.
6018         * decl2.c (grokclassfn): Do not use last_function_parms.
6019         * friend.c (do_friend): Remove parmdecls parameter.
6020         * name-lookup.c (push_to_top_level): Do not save last_function_parms.
6021         (pop_from_top_level): Do not restore it.
6022         * pt.c (check_explicit_specialization): Do not adjust
6023         last_function_parms.
6025         * name-lookup.c (do_local_using_decl): Create a local binding for
6026         types brought in via using declarations.
6028         * name-lookup.c (lookup_arg_dependent): Handle block-scope
6029         function declarations correctly.
6031         * semantics.c (finish_id_expression): Correct handling of
6032         conversion operators to dependent types.
6034         * typeck.c (lookup_destructor): Allow the use of destructors from
6035         base classes.
6037 2004-03-19  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6039         * cxx-pretty-print.c (pp_cxx_unqualified_id): Use
6040         TEMPLATE_TYPE_PARM_INDEX instead of TYPE_FIELDS.
6041         * search.c (dfs_unuse_fields): Add two more TREE_CODES that mean
6042         the field is named TEMPLATE_TYPE_PARM_INDEX.
6044 2004-03-19  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6046         PR c++/14545
6047         * parser.c (cp_parser_functional_cast): A cast to anything
6048         but integral or enumaration type is not an integral constant
6049         expression.
6050         * pt.c (value_dependent_expression_p): Handle cast expressions
6051         without operands (such as "int()").
6053 2004-03-18  Mark Mitchell  <mark@codesourcery.com>
6055         * semantics.c (finish_pseudo_destructor_expr): Allow differing
6056         cv-qualification between the type named by the
6057         pseudo-destructor-name and the object-type.
6059         * search.c (accessible_base_p): Handle non-proper bases.
6061         * name-lookup.c (do_nonmember_using_decl): If a using declaration
6062         refers to a single overloaded function, set the type of the
6063         function.
6064         * tree.c (lvalue_type): Simplify.
6065         * typeck.c (type_unknown_p): Do not assume all OVERLOADs have an
6066         unknown type.
6067         (build_unary_op): Handle OVERLOADs with known types.
6069         * decl.c (duplicate_decls): Do not destroy DECL_ARGUMENTS for
6070         function templates.
6072         * parser.c (cp_parser_postfix_expression): Handle the use of
6073         "typename" in non-dependent contexts.  Convert appropriately when
6074         when using a qualified name after "->" or ".".
6076         * call.c (conditional_conversion): Honor the requirement that some
6077         conversions refer to the original object.
6079 2004-03-18  Mark Mitchell  <mark@codesourcery.com>
6081         * call.c (build_conditional_expr): Do not call force_rvalue for
6082         operands of void_type when the conditional expression itself has
6083         void type.
6084         * name-lookup.c (pushdecl): Don't consider a declaration of a
6085         function named "main" to be an overload of a type named "main".
6086         * parser.c (cp_parser_template_name): Perform name lookup when the
6087         template name is proceeded by "template" if the qualifying scope
6088         is non-dependent.
6089         * typeck.c (composite_pointer_type_r): Correctly handle
6090         pointer-to-member types.
6091         (build_const_cast): Likewise.
6093 2004-03-18  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6095         * cp-tree.def (TEMPLATE_TYPE_PARM, TYPEOF_TYPE): Update comments.
6096         * cp-tree.h (NEW_EXPR_USE_GLOBAL, DELETE_EXPR_USE_GLOBAL): Add check.
6097         (DELETE_EXPR_USE_VEC, COMPOUND_EXPR_OVERLOADED): Likewise.
6098         (KOENIG_LOOKUP_P, PTRMEM_OK_P, TEMPLATE_TYPE_PARM_INDEX): Likewise.
6099         (TYPENAME_TYPE_FULLNAME): Add check and use type.values.
6100         (TYPEOF_TYPE_EXPR): New macro.
6101         * class.c (finish_struct_bits): Use TYPE_VFIELD and TYPE_METHODS.
6102         * error.c (dump_type): Use TYPEOF_TYPE_EXPR.
6103         * pt.c (tsubst): Likewise.
6104         * semantics.c (finish_typeof): Likewise.
6105         * search.c (dfs_unuse_fields): Handle TYPENAME_TYPE, TYPEOF_TYPE,
6106         and TEMPLATE_TYPE_PARM.
6107         * typeck.c (comptypes): Use TYPE_ORIG_SIZE_TYPE, not TYPE_DOMAIN.
6108         (build_array_ref): Use TYPE_DOMAIN, not TYPE_VALUES.
6110 2004-03-16  Mark Mitchell  <mark@codesourcery.com>
6112         PR c++/14586
6113         * cp-tree.h (build_new_op): Change prototype.
6114         (build_x_binary_op): Likewise.
6115         * call.c (build_new_op): Add overloaded_p parameter.
6116         * decl2.c (grok_array_decl): Adjust call to build_new_op.
6117         * parser.c (cp_parser_binary_expression): Note that uses of
6118         overloaded operators prevents an expression from being considered
6119         an integral constant.
6120         * pt.c (tsubst_copy_and_build): Adjust calls to build_new_op and/or
6121         build_x_binary_op.
6122         * semantics.c (finish_call_expr): Likewise.
6123         * typeck.c (rationalize_conditional_expr): Likewise.
6124         (build_x_indirect_ref): Likewise.
6125         (build_x_binary_op): Likewise.
6126         (build_x_unary_op): Likewise.
6127         (build_x_compound_expr): Likewise.
6128         (build_modify_expr): Likewise.
6129         * typeck2.c (build_x_arrow): Likewise.
6131 2004-03-15  Kazu Hirata  <kazu@cs.umass.edu>
6133         * cp-lang.c, ptree.c: Update copyright.
6135 2004-03-13  Mark Mitchell  <mark@codesourcery.com>
6137         PR c++/14550
6138         * parser.c (cp_parser_non_integral_constant_expression): Encode
6139         more of the idiom that surrounded calls to this function within
6140         the function itself
6141         (cp_parser_primary_expression): Adjust accordingly.
6142         (cp_parser_postfix_expression): Likewise.
6143         (cp_parser_unary_expression): Likewise.
6144         (cp_parser_cast_expression): Likewise.
6145         (cp_parser_assignment_expression): Likewise.
6146         (cp_parser_expression): Likewise.
6147         (cp_parser_new_expression): Note that new-expressions are not
6148         allowed in integral constant expressions.
6149         (cp_parser_delete_expression): Likewise.
6151 2004-03-12  Matt Austern  <austern@apple.com>
6153         * decl2.c (maybe_make_one_only): Look at
6154         TARGET_EXPLICIT_INSTANTIATION_ONE_ONLY when deciding whether
6155         to make an explicit instantiation weak.
6156         * method.c (use_thunk): Make sure we call comdat_linkage
6157         when appropriate.
6158         * pt.c (do_type_instantiation): On systems where weak symbols
6159         don't go in a static archive's TOC, explicit instantiation of a
6160         class must imply *explicit* instantiation of its memeber.
6162 2004-03-11  Kazu Hirata  <kazu@cs.umass.edu>
6164         * call.c, cp-tree.h, pt.c: Fix comment typos.
6166 2004-03-10  Mark Mitchell  <mark@codesourcery.com>
6168         PR c++/14510
6169         * decl.c (xref_tag): Disregard non-type declarations when
6170         looking up a tagged type.
6172 2004-03-09  Nathan Sidwell  <nathan@codesourcery.com>
6174         PR c++/14397
6175         * call.c (convert_like_real): Build a const qualified temporary,
6176         when testing ctor access.
6178 2004-03-09  Mark Mitchell  <mark@codesourcery.com>
6180         * call.c (initialize_reference): Fix typo.
6182 2004-03-09  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6184         PR c++/14409
6185         * pt.c (determine_specialization): For member templates, match also
6186         constness.
6188         PR c++/14448
6189         * parser.c (cp_parser_initializer_clause): Fold initializer if it is
6190         non-dependent.
6191         * pt.c (tsubst_copy_and_build): Handle NOP_EXPRs.
6193 2004-03-09  Mark Mitchell  <mark@codesourcery.com>
6195         PR c++/14230
6196         * call.c (initialize_reference): Handle initializers that are
6197         class-member access expressions applies to rvalues.
6199 2004-03-09  Mark Mitchell  <mark@codesourcery.com>
6201         PR c++/14432
6202         * name-lookup.c (supplement_binding): Ignore functions that are
6203         marked DECL_ANTICIPATED.
6205 2004-03-08  Mark Mitchell  <mark@codesourcery.com>
6207         PR c++/14401
6208         * class.c (check_field_decls): Complain about non-static data
6209         members of reference type in unions.  Propagate
6210         CLASSTYPE_REF_FIELDS_NEED_INIT and
6211         CLASSTYPE_READONLY_FIELDS_NEED_INIT from the types of non-static
6212         data members.
6213         * init.c (perform_member_init): Complain about mbmers with const
6214         type that are not explicitly initialized.
6216 2004-03-08  Mark Mitchell  <mark@codesourcery.com>
6218         * class.c (check_methods): Don't use IDENTIFIER_ERROR_LOCUS.
6219         * cp-tree.h (DECL_INVALID_OVERRIDER_P): New macro.
6220         (lang_identifier): Remove implicit_decl and error_locus.
6221         (IDENTIFIER_IMPLICIT_DECL): Remove.
6222         (SET_IDENTIFIER_IMPLICTI_DECL): Likewise.
6223         (IDENTIFIER_ERROR_LOCUS): Likewise.
6224         (SET_IDENTIFIER_ERROR_LOCUS): Likewise.
6225         (TYPE_ASSEMBLER_NAME_STRING): Likewise.
6226         (TYPE_ASSEMBLER_NAME_LENGTH): Likewise.
6227         (implicitly_declare): Remove.
6228         * decl.c (warn_extern_redeclared_static): Remove check of
6229         IDENTIFIER_IMPLICIT_DECL.
6230         (duplicate_decls): Don't check IDENTIFIER_ERROR_LOCUS.
6231         (implicitly_declare): Remove.
6232         (grok_ctor_properties): Don't set IDENTIFIER_ERROR_LOCUS.
6233         (start_function): Don't check IDENTIFIER_IMPLICIT_DECL.
6234         (start_method): Don't check IDENTIFIER_ERROR_LOCUS.
6235         * lex.c (unqualified_name_lookup_error): Create a dummy VAR_DECL
6236         in the innermost scope, rather than at namespace scope.
6237         * name-lookup.c (push_local_binding): Give it external linkage.
6238         (pushdecl): Remove dead code.
6239         * name-lookup.h (push_local_binding): Declare it.
6240         * ptree.c (cxx_print_identifier): Don't print
6241         IDENTIFIER_IMPLICIT_DECL or IDENTIFIER_ERROR_LOCUS.
6242         * search.c (check_final_overrider): Use DECL_INVALID_OVERRIDER_P,
6243         not IDENTIFIER_ERROR_LOCUS.
6244         * typeck.c (build_function_call): Remove dead code.
6246 2004-03-08  Jason Merrill  <jason@redhat.com>
6248         PR c++/13170
6249         * decl.c (xref_tag): Remove attribute handling.
6250         * cp-tree.h: Adjust prototype.
6251         * decl.c, parser.c, rtti.c: Adjust callers.
6252         * parser.c (cp_parser_class_head): Pass back attributes in the
6253         class head.
6254         (cp_parser_class_specifier): Adjust.
6256 2004-03-08  Matt Austern  <austern@apple.com>
6258         PR debug/14079
6259         * name-lookup.c (add_decl_to_level): Add extern variables, as well
6260         as static, to static_decls array.
6262 2004-03-05  Jason Merrill  <jason@redhat.com>
6264         * tree.c (list_hash_pieces): s/TYPE_HASH/TREE_HASH/.
6266 2004-03-04  Geoffrey Keating  <geoffk@apple.com>
6268         * decl.c (grokfndecl): Update old incorrect comment.
6269         (grokvardecl): Diagnose C++ variables of type with no linkage.
6271 2004-03-01  Mark Mitchell  <mark@codesourcery.com>
6273         PR c++/14369
6274         * pt.c (build_non_dependent_expr): Do not create a
6275         NON_DEPENDENT_EXPR for a THROW_EXPR.
6277 2004-03-01  Gabriel Dos Reis  <gdr@integrable-solutions.net>
6279         PR c++/14369
6280         * error.c (dump_expr): Handle THROW_EXPR.
6282 2004-03-01  Mark Mitchell  <mark@codesourcery.com>
6284         PR c++/14360
6285         * parser.c (cp_parser_postfix_expression): Do not perform Koenig
6286         lookup if ordinary name-lookup finds a non-function.
6287         * pt.c (tsubst_copy_and_build): Likewise.
6289         PR c++/14361
6290         * parser.c (cp_parser_late_parsing_default_args): Check that there
6291         are no extra tokens after the end of the default-argument
6292         expression.
6294 2004-03-01  Mark Mitchell  <mark@codesourcery.com>
6296         PR c++/14324
6297         * lex.c (retrofit_lang_decl): Treat entities with no linkage as
6298         having C++ linkage for name-mangling purposes.
6300         PR c++/14260
6301         * parser.c (cp_parser_direct_declarator): Recognize constructor
6302         declarators that use a template-id to name the class being
6303         constructed.
6305         PR c++/14337
6306         * pt.c (tsubst_qualified_id): Handle dependent qualifying scopes.
6307         (tsubst_expr): Do not call tsubst_copy, even when
6308         processing_template_decl.
6310 2004-03-01  Jeff Law  <law@redhat.com>
6312         * init.c (build_vec_delete_1): Convert 2nd argument to NE_EXPR to
6313         the proper type.
6315 2004-02-29  Mark Mitchell  <mark@codesourcery.com>
6317         PR c++/14138
6318         * name-lookup.h (push_scope): Change prototype.
6319         * name-lookup.c (push_scope): Do not reenter the current class
6320         scope.
6321         * decl.c (grokfndecl): Check return code from push_scope before
6322         calling pop_scope.
6323         * decl2.c (check_classfn): Likewise.
6324         * parser.c (cp_parser_conversion_function_id): Likewise.
6325         (cp_parser_init_declarator): Likewise.
6326         (cp_parser_direct_declarator): Likewise.
6327         (cp_parser_class_specifier): Likewise.
6328         (cp_parser_class_head): Likewise.
6329         (cp_parser_lookup_name): Likewise.
6330         (cp_parser_constructor_declarator_p): Likewise.
6331         * pt.c (instantiate_class_template): Likewise.
6332         (resolve_typename_type): Likewise.
6334 2004-02-29  Mark Mitchell  <mark@codesourcery.com>
6336         PR c++/14267
6337         * typeck.c (build_modify_expr): Remove more of the cast-as-lvalue
6338         extension.
6340         PR debug/12103
6341         * class.c (update_vtable_entry_for_fn): Do not go through
6342         covariance machinery if the type returned by an overrider is the
6343         same as the original.
6345 2004-02-29  Kazu Hirata  <kazu@cs.umass.edu>
6347         * call.c: Fix a comment typo.
6349 2004-02-27  Ziemowit Laski  <zlaski@apple.com>
6351         * tree.c (pod_type_p): Treat VECTOR_TYPEs as PODs.
6353 2004-02-26  Mark Mitchell  <mark@codesourcery.com>
6355         PR c++/14278
6356         * parser.c (cp_parser_parameter_declaration_list): Commit
6357         to fewer tentative parses.
6359 2004-02-26  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6361         PR c++/14284
6362         * pt.c (dependent_type_p_r): A template template parameter is a
6363         dependent type.
6365 2004-02-26  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6367         PR c++/14246
6368         * mangle.c (write_template_arg_literal): Don't rely on identity for
6369         boolean constants.
6371 2004-02-24  Jason Merrill  <jason@redhat.com>
6373         * tree.c (build_exception_variant): Use check_qualified_type.
6375 2004-02-23  Zack Weinberg  <zack@codesourcery.com>
6376             Kazu Hirata  <kazu@cs.umass.edu>
6378         * decl.c (cxx_init_decl_processing): Don't check
6379         flag_writable_strings.
6381 2004-02-23  Andrew Pinski  <pinskia@physics.uc.edu>
6383         PR c++/14156
6384         * typeck.c (maybe_warn_about_returning_address_of_location):
6385         Change check for VAR_DECL to use DECL_P instead.
6387 2004-02-23  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6389         PR c++/14250
6390         * cvt.c (build_expr_type_conversion): Type must be complete before
6391         looking up for conversions.
6393 2004-02-23  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6395         PR c++/14143
6396         * name-lookup.c (arg_assoc_class): Don't look into template
6397         arguments if it is not a primary template.
6399 2004-02-20  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
6401         PR c++/12007
6402         * method.c (use_thunk): Always clone function argument tree.
6404 2004-02-20  Mark Mitchell  <mark@codesourcery.com>
6406         PR c++/14199
6407         * pt.c (tsubst_copy): Call mark_used for a PARM_DECL.
6409         PR c++/14173
6410         * semantics.c (begin_class_definition): Set TYPE_PACKED correctly
6411         for all type variants.
6413 2004-02-19  Mark Mitchell  <mark@codesourcery.com>
6415         PR c++/13927
6416         * decl.c (duplicate_decls): Return error_mark_node for invalid
6417         redeclarations.
6418         * name-lookup.c (push_namespace): Ignore the return value from
6419         pushdecl.
6420         * pt.c (push_template_decl_real): Robustify.
6422         PR c++/14186
6423         * name-lookup.c (push_class_level_binding): Do not complain about
6424         adding a binding for a member whose name is the same as the
6425         enclosing class if the member is located in a base class of the
6426         current class.
6428 2004-02-19  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6430         PR c++/14181
6431         * parser.c (cp_parser_new_expression): Parse an ill-formed
6432         direct-new-declarator after a parenthesized type-id to emit good
6433         diagnostic.
6435 2004-02-18  Kazu Hirata  <kazu@cs.umass.edu>
6437         * cp-tree.def, cvt.c: Update copyright.
6439 2004-02-17  Mark Mitchell  <mark@codesourcery.com>
6441         PR c++/11326
6442         * cp-tree.h (abi_version_at_least): Remove.
6443         * mangle.c: Include flags.h.
6445 2004-02-15  Mark Mitchell  <mark@codesourcery.com>
6447         PR c++/13971
6448         * call.c (build_conditional_expr): Handle conversions between
6449         class types which result in differently cv-qualified type
6450         variants.
6452         PR c++/14086
6453         * class.c (delete_duplicate_fields_1): Remove.
6454         (delete_duplicate_fields): Likewise.
6455         (finish_struct_anon): Remove check for members with the same name
6456         as their enclosing class.
6457         (check_field_decls): Do not call duplicate_fields.
6458         * decl.c (grokdeclarator): Remove check for static data members
6459         with the same name as their enclosing class.
6460         * name-lookup.c (push_class_level_binding): Check for members with
6461         the same name as their enclosing class.
6463 2004-02-15  Gabriel Dos Reis  <gdr@integrable-solutions.net>
6465         PR c++/14085
6466         * error.c (dump_decl): Handle TEMPLATE_TYPE_PARM.
6468 2004-02-14  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6470         PR c++/13635
6471         * pt.c (push_template_decl_real): Make sure DECL_TI_ARGS of DECL
6472         has full set of arguments.
6474 2004-02-13  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6476         PR c++/13927
6477         * error.c (dump_decl) <ALIAS_DECL>: Dump as simple declarations.
6479 2004-02-13  Mark Mitchell  <mark@codesourcery.com>
6481         PR c++/14122
6482         * cp-tree.h (delete_sanity): Change prototype.
6483         * decl2.c (delete_sanity): Make doing_vec a bool, not an int.
6484         Remove dead code.  Adjust code to warn about deleting an array.
6485         * typekc.c (decay_conversion): Use build_address and build_nop.
6487         PR c++/14108
6488         * search.c (accessible_p): Do not check access in thunks.
6490         PR c++/14083
6491         * call.c (build_conditional_expr): Call force_rvalue on the
6492         non-void operand in the case that one result is a throw-expression
6493         and the other is not.
6495 2004-02-13  Ian Lance Taylor  <ian@wasabisystems.com>
6497         PR c++/9851
6498         * parser.c (cp_parser_pseudo_destructor_name): Check for errors on
6499         the type name and look ahead for ::~, and bail out early with a
6500         better error message if the parse is going to fail.
6502 2004-02-12  Mark Mitchell  <mark@codesourcery.com>
6504         * call.c (conversion_kind): New type.
6505         (conversion_rank): Likewise.
6506         (conversion): Likewise.
6507         (CONVERSION_RANK): New macro.
6508         (conversion_obstack): New variable.
6509         (obstack_initialized): Likewise.
6510         (z_candidate): Change type of convs and second_conv.
6511         (candidate_warning): New type.
6512         (IDENTITY_RANK): Remove.
6513         (EXACT_RANK): Likewise.
6514         (PROMO_RANK): Likewise.
6515         (STD_RANK): Likewise.
6516         (PBOOL_RANK): Likewise.
6517         (USER_RANK): Likewise.
6518         (ELLIPSIS_RANK): Likewise.
6519         (BAD_RANK): Likewise.
6520         (ICS_RANK): Likewise.
6521         (ICS_STD_RANK): Likewise.
6522         (ICS_USER_FLAG): Likewise.
6523         (ICS_ELLIPSIS_FLAG): Likewise.
6524         (ICS_THIS_FLAG): Likewise.
6525         (ICS_BAD_FLAG): Likewise.
6526         (NEED_TEMPORARY_P): Likewise.
6527         (CHECK_COPY_CONSTRUCTOR_P): Likewise.
6528         (USER_CONV_CAND): Likewise.
6529         (USER_CONV_FN): Likewise.
6530         (conversion_obstack_alloc): New function.
6531         (alloc_conversion): Likewise.
6532         (validate_conversion_obstack): Likewise.
6533         (alloc_conversions): Likewise.
6534         (build_conv): Adjust to deal with new conversion data structures.
6535         (build_identity_conv): New function.
6536         (build_ambiguous_conv): Likewise.
6537         (standard_conversion): Adjust to deal with new conversion data
6538         structures.
6539         (convert_class_to_reference): Likewise.
6540         (direct_reference_binding): Likewise.
6541         (reference_binding): Likewise.
6542         (implicit_conversion): Likewise.
6543         (add_candidate): Likewise.
6544         (add_function_candidate): Likewise.
6545         (add_conv_candidate): Likewise.
6546         (build_builtin_candidate): Likewise.
6547         (print_z_candidate): Likewise.
6548         (merge_conversion_sequences): Likewise.
6549         (build_user_type_conversion_1): Likewise.
6550         (build_user_type_conversion): Likewise.
6551         (build_new_function_call): Likewise.
6552         (build_object_call): Likewise.
6553         (conditional_conversion): Likewise.
6554         (build_conditional_expr): Likewise.
6555         (build_new_op): Likewise.
6556         (build_op_delete_call): Likewise.
6557         (convert_like_real): Likewise.
6558         (build_over_call): Likewise.
6559         (build_new_method_call): Likewise.
6560         (is_subseq): Likewise.
6561         (maybe_handle_implicit_object): Likewise.
6562         (maybe_handle_ref_bind): Likewise.
6563         (compare_ics): Likewise.
6564         (source_type): Likewise.
6565         (add_warning): Likewise.
6566         (joust): Likewise.
6567         (can_convert_arg): Likewise.
6568         (can_convert_arg_bad): Likewise.
6569         (perform_implicit_conversion): Likewise.
6570         (perform_direct_initialization_if_possible): Likewise.
6571         (initialize_reference): Likewise.
6572         * cp-lang.c (cp_tree_size): Do not handle WRAPPER.
6573         * cp-tree.def (WRAPPER): Likewise.
6574         (IDENTITY_CONV): Remove.
6575         (LVALUE_CONV): Likewise.
6576         (QUAL_CONV): Likewise.
6577         (STD_CONV): Likewise.
6578         (PTR_CONV): Likewise.
6579         (PMEM_CONV): Likewise.
6580         (BASE_CONV): Likewise.
6581         (REF_BIND): Likewise.
6582         (USER_CONV): Likewise.
6583         (AMBIG_CONV): Likewise.
6584         (RVALUE_CONV): Likewise.
6585         * cp-tree.h (tree_wrapper): Remove.
6586         (WRAPPER_ZC): Remove.
6587         (lang_tree_node): Remove wrapper.
6588         (LOOKUP_SPECULATIVELY): Remove.
6589         (build_op_delete_call): Adjust prototype.
6590         (validate_conversion_obstack): Declare.
6591         (build_zc_wrapper): Remove.
6592         * cvt.c (convert_to_reference): Remove dead code.
6593         (ocp_convert): Likewise.
6594         * decl.c (redeclaration_error_message): Correct handling of
6595         templates.
6596         (finish_destructor_body): Do not use LOOKUP_SPECULATIVELY.
6597         (cp_tree_node_structure): Remove WRAPPER case.
6598         * decl2.c (finish_file): Call validate_conversion_obstack.
6599         * init.c (build_new_1): Remove use of LOOKUP_SPECULATIVELY.
6600         (build_op_delete_call): Likewise.
6601         (build_x_delete): Likewise.
6602         (build_delete): Adjust call to build_op_delete_call.
6603         * pt.c (tsubst_friend_declaration): Adjust code to determine
6604         whether or not a friend template is a definition.
6605         (tsubst_decl): Clear DECL_INITIAL for new FUNCTION_DECLs.
6606         * tree.c (build_zc_wrapper): Remove.
6608 2004-02-12  Zack Weinberg  <zack@codesourcery.com>
6610         * cp-lang.c: Don't define LANG_HOOKS_BUILTIN_TYPE_DECLS.
6611         * cp-tree.h: Don't declare cxx_builtin_type_decls.
6612         * decl.c (builtin_type_decls, cxx_builtin_type_decls): Delete.
6613         (record_builtin_type): Call debug_hooks->type_decl on the TYPE_DECL.
6615 2004-02-10  Mark Mitchell  <mark@codesourcery.com>
6617         * typeck.c (lookup_destructor): Fix typo in error message.
6619 2004-02-09  Kazu Hirata  <kazu@cs.umass.edu>
6621         * call.c, parser.c, tree.c: Fix comment typos.
6623 2004-02-07  Zack Weinberg  <zack@codesourcery.com>
6625         Bug 13856
6626         * optimize.c (maybe_clone_body): Don't update DECL_ESTIMATED_INSNS.
6627         * decl.c (duplicate_decls, start_function): Likewise.
6629 2004-02-07  Zack Weinberg  <zack@codesourcery.com>
6631         * name-lookup.c (pushdecl): Issue shadow warnings directly.
6632         * parser.c (free_parser_stacks): Delete.
6634 2004-02-07  Kazu Hirata  <kazu@cs.umass.edu>
6636         * rtti.c: Update copyright.
6638 2004-02-06  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6640         PR c++/14033
6641         * decl.c (require_complete_types_for_parms): Do not insert
6642         error_mark_node in the parameter list.
6644 2004-02-06  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6646         PR c++/14028
6647         * parser.c (cp_parser_enclosed_template_argument_list): Emit straight
6648         error when terminator can not be found.
6650 2004-02-05  Kelley Cook  <kcook@gcc.gnu.org>
6652         Make-lang.in (po-generated):  Delete.
6654 2004-02-05  Kazu Hirata  <kazu@cs.umass.edu>
6656         * call.c (type_passed_as): Replace PROMOTE_PROTOTYPES with
6657         targetm.calls.promote_prototypes.
6659 2004-02-05  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
6661         PR middle-end/13750
6662         Revert:
6663         2004-01-15  Geoffrey Keating  <geoffk@apple.com>
6664         PR pch/13361
6665         * cp/lex.c (handle_pragma_interface): Duplicate string from tree.
6666         (handle_pragma_implementation): Likewise.
6668 2004-02-05  Mark Mitchell  <mark@codesourcery.com>
6670         PR c++/13714
6671         * typeck.c (lookup_destructor): Tweak error message.
6673 2004-02-05  Jan Hubicka  <jh@suse.cz>
6675         * tree.c (cp_cannot_inline_tree_fn):  Allow inlining of comdat
6676         functions.
6678 2004-02-05  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6680         PR c++/14008
6681         * parser.c (cp_parser_diagnose_invalid_typename): Removed parsing
6682         code, only emits the diagnostic now. Added lookup of the identifier
6683         and support for qualified ids.
6684         (cp_parser_parse_and_diagnose_invalid_type_name): New function.
6685         Parse an (invalid) type name as id-expression within a declarator.
6686         (cp_parser_simple_declaration): Use it.
6687         (cp_parser_member_declaration): Likewise.
6688         (cp_parser_make_typename_type): New function. Handle errors through
6689         cp_parser_diagnose_invalid_typename.
6690         (cp_parser_elaborated_type_specifier): Use it.
6692 2004-02-04  Mark Mitchell  <mark@codesourcery.com>
6694         PR c++/13932
6695         * call.c (convert_like_real): Use "converting" rather than
6696         "argument" as the descriptive keyword to
6697         dubious_conversion_warnings.
6698         * typeck.c (convert_for_assignment): Do not call
6699         dubious_conversion_warnings.
6701 2004-02-04  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6703         PR c++/13086
6704         * init.c (build_delete): Emit a more informative error message in
6705         case of an incomplete type, and on the correct source line.
6707 2004-02-04  Kazu Hirata  <kazu@cs.umass.edu>
6709         * error.c, search.c: Update copyright.
6711 2004-02-04  Mark Mitchell  <mark@codesourcery.com>
6713         PR c++/9941
6714         * rtti.c (tinfo_base_init): Use import_export_tinfo to decide the
6715         linkage for the typeinfo name string.
6717 2004-02-04  Mark Mitchell  <mark@codesourcery.com>
6719         PR c++/13969
6720         * cp-tree.h (fold_non_dependent_expr): New function.
6721         * parser.c (cp_parser_fold_non_dependent_expr): Remove.
6722         (cp_parser_template_argument): Use fold_non_dependent_expr.
6723         (cp_parser_direct_declarator): Likewise.
6724         * pt.c (fold_non_dependent_expr): New function.
6725         (convert_nontype_argument): Use it.
6726         (tsubst_qualified_id): Simplify.
6727         (tsubst_copy_and_build): Likewise.
6729 2004-02-04  Mark Mitchell  <mark@codesourcery.com>
6731         * decl.c (cxx_push_function_context): Do not set
6732         current_function_is_thunk.
6733         * method.c (use_thunk): Set CALL_FROM_THUNK on the call to the
6734         actual function.
6736 2004-02-04  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6738         PR c++/13997
6739         * pt.c (more_specialized_class): Increase processing_template_decl
6740         while partial ordering.
6742 2004-02-03  Mark Mitchell  <mark@codesourcery.com>
6744         PR c++/13925
6745         * decl.c (start_function): Do not call pushdecl for any
6746         instantiation or specialization of a primary template.
6748 2004-02-03  Mark Mitchell  <mark@codesourcery.com>
6750         PR c++/13950
6751         * parser.c (cp_parser_class_name): Robustify.
6753         PR c++/13970
6754         * parser.c (cp_parser_cache_group): Do not consume the EOF token.
6756         PR c++/14002
6757         * semantics.c (finish_id_expression): Do not return an
6758         IDENTIFIER_NODE when lookup finds a PARM_DECL.
6760 2004-02-03  Mark Mitchell  <mark@codesourcery.com>
6762         PR c++/13978
6763         * pt.c (build_non_dependent_expr): Do not build
6764         NON_DEPENDENT_EXPRs for FUNCTION_DECLs or TEMPLATE_DECLs.
6766         PR c++/13968
6767         * semantics.c (finish_id_expression): Do not return an
6768         IDENTIFIER_NODE when lookup finds a VAR_DECL.
6770         PR c++/13975
6771         * parser.c (cp_parser_simple_declaration): When skipping to the
6772         end of the statement swallow the terminating semicolon.
6774 2004-02-02  Mark Mitchell  <mark@codesourcery.com>
6776         PR c++/13113
6777         * init.c (build_offset_ref): Improve error recovery for invalid
6778         uses of non-static member functions.
6780         PR c++/13854
6781         * cp-tree.h (cp_build_type_attribute_variant): New function.
6782         * class.c (build_clone): Use cp_build_type_attribute_variant.
6783         * decl.c (duplicate_decls): Likewise.
6784         * pt.c (copy_default_args_to_explicit_spec): Likewise.
6785         (tsubst_function_type): Likewise.
6786         * tree.c (build_exception_variant): Check attributes before
6787         concluding that two types are the same.
6788         (cp_build_type-attribute_variant): New method.
6789         * typeck.c (merge_types): Use cp_build_type_attribute_variant.
6791         PR c++/13907
6792         * call.c (convert_class_to_reference): Keep better track of
6793         pedantically invalid user-defined conversions.
6795 2004-02-01  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6797         PR c++/13957
6798         * pt.c (tsubst_qualified_id): Improved error message when a type
6799         is expected but not found.
6801 2004-01-31  Kazu Hirata  <kazu@cs.umass.edu>
6803         * class.c: Fix comment typos.
6804         * decl.c: Likewise.
6805         * error.c: Likewise.
6806         * parser.c: Likewise.
6807         * pt.c: Likewise.
6808         * search.c: Likewise.
6809         * typeck.c: Likewise.
6811 2004-01-30  Richard Henderson  <rth@redhat.com>
6813         PR c++/13693
6814         * method.c (use_thunk): Don't force_target_expr for void thunks.
6815         * tree.c (build_target_expr_with_type): Assert non-void type.
6816         (force_target_expr): Likewise.
6818 2004-01-30  Michael Matz  <matz@suse.de>
6820         * parser.c (cp_parser_labeled_statement): Accept case ranges.
6822 2004-01-30  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6824         DR206
6825         PR c++/13813
6826         * decl.c (grokdeclarator): Check immediatly type completeness for
6827         non-dependent types.
6829 2004-01-30  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6831         PR c++/13683
6832         * call.c (convert_arg_to_ellipsis): Don't emit a warning if within
6833         a sizeof expression.block
6835 2004-01-29  Mark Mitchell  <mark@codesourcery.com>
6837         PR c++/13883
6838         * mangle.c (write_encoding): Correct encoding of member template
6839         constructors.
6841 2004-01-28  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6843         * parser.c (cp_parser_template_id): Parse tentatively `[:' after a
6844         template name as it was `<::' (digraph typo).
6845         (cp_parser_nth_token_starts_template_argument_list_p): New function.
6846         (cp_parser_id_expression): Use it.
6847         (cp_parser_nested_name_specifier_opt): Likewise.
6848         (cp_parser_template_name): Likewise.
6849         (cp_parser_class_name): Likewise.
6850         (cp_lexer_get_preprocessor_token): Use c_lex_with_flags.
6852 2004-01-28  Mark Mitchell  <mark@codesourcery.com>
6854         PR c++/13791
6855         * typeck.c (merge_types): Do not merge attributes into
6856         TYPENAME_TYPEs.
6858         PR c++/13736
6859         * parser.c (cp_parser_direct_declarator): Do not prevent
6860         backtracking inside a parenthesized declarator.
6861         (cp_parser_parameter_declaration): Fix typo in comment.
6863 2004-01-28  Jan Hubicka  <jh@suse.cz>
6865         * semantics.c (expand_body)  Do emit_associated_thunks before
6866         expansion.
6868 2004-01-27  Devang Patel  <dpatel@apple.com>
6870         * name-lookup.c: Include "debug.h"
6871         (do_namespace_alias): Invoke debug_hooks to emit debug info
6872         for namespace alias.
6873         (do_local_using_decl): Invoke debug_hooks to emit debug info
6874         for using decl.
6875         (do_class_using_decl): Same.
6876         (do_toplevel_using_decl): Same.
6877         (do_using_directive): Same.
6878         (cp_emit_debug_info_for_using): New function.
6879         * Make-lang.in (cp/parser.o): Depend on debug.h
6880         (cp/name-lookup.o): Same.
6882 2004-01-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6884         * cp-tree.h (language_function, lang_type_header): Use
6885         BOOL_BITFIELD.
6886         * name-lookup.h (cp_binding_level): Likewise.
6888 2004-01-26  Mark Mitchell  <mark@codesourcery.com>
6890         PR c++/13663
6891         * semantics.c (finish_for_expr): Check for unresolved overloaded
6892         functions.
6894         * class.c (add_method): Just check processing_template_decl to
6895         determine whether or not we are within a template.
6896         * decl2.c (maybe_retrofit_in_chrg): Likewise.
6897         * init.c (decl_constant_value): Check the type of the declaration,
6898         not TREE_READONLY.
6899         * name-lookup.c (maybe_push_to_top_level): Rename to ...
6900         (push_to_top_level): ... this.
6901         * name-lookup.h (maybe_push_to_top_level): Do not declare it.
6902         * pt.c (push_template_decl_real): Reorder condition for speed.
6903         (convert_template_argument): Use dependency-checking functions in
6904         place of uses_template_parms.
6905         (lookup_template_class): Avoid calling uses_template_parms more
6906         than once.
6907         (uses_template_parms): Reimplement, using dependency-checking
6908         functions.
6909         (instantiate_class_template): Use push_to_top_level, not
6910         maybe_push_to_top_level.
6911         (type_unification_real): Simplify.
6912         (type_dependent_expression_p): Handle OFFSET_REFs and
6913         TEMPLATE_DECLs.
6914         (any_dependent_template_arguments_p): Handle multiple levels of
6915         template argument.
6916         * semantics.c (expand_or_defer_fn): Do not check
6917         uses_template_parms for template instantiations.
6918         * typeck.c (comptypes): Avoid calling cp_type_quals.
6920 2004-01-25  Mark Mitchell  <mark@codesourcery.com>
6922         PR c++/13833
6923         * call.c (build_over_call): Do not convert arguments when
6924         processing a template.
6925         * pt.c (build_non_dependent_expr): Do not build a
6926         NON_DEPENDENT_EXPR for arithmetic constants.
6928 2004-01-25  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6930         PR c++/13810
6931         * parser.c (cp_parser_type_parameter): When cp_parser_id_expression
6932         returns a TYPE_DECL. no further lookup is required.
6933         * semantics.c (check_template_template_default_arg): A TYPE_DECL
6934         is invalid. Rework to give better diagnostics.
6936 2004-01-25  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6938         PR c++/13797
6939         * pt.c (instantiate_class_template): Add an error_mark_node
6940         check.
6941         (tsubst_decl) <TEMPLATE_DECL case>: Likewise.
6943 2004-01-23  Andrew Pinski  <pinskia@physics.uc.edu>
6945         PR c++/13701
6946         * decl.c (finish_function): Move the call to
6947         finish_fname_decls below the call to
6948         finish_eh_spec_block.
6950 2004-01-21  Kazu Hirata  <kazu@cs.umass.edu>
6952         * optimize.c, typeck2.c: Update copyright.
6954 2004-01-21  Kazu Hirata  <kazu@cs.umass.edu>
6956         * Make-lang.in, call.c, class.c, decl2.c, except.c, expr.c,
6957         init.c, mangle.c, typeck.c: Update copyright.
6959 2004-01-21  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
6961         * parser.c (cp_parser_class_specifier): Prevent garbage collection.
6963 2004-01-20  Kelley Cook  <kcook@gcc.gnu.org>
6965         * Make-lang.in: Replace $(docdir) with doc.
6966         (c++.info, c++.srcinfo): Dummy entry.
6967         (c++.man, c++.srcman): New rules.
6968         (c++.install-man): Revamp rule.
6970 2004-01-20  Kelley Cook  <kcook@gcc.gnu.org>
6972         * Make-lang.in (CXX_INSTALL_NAME, GXX_INSTALL_NAME,
6973         CXX_TARGET_INSTALL_NAME, GXX_TARGET_INSTALL_NAME): Define via a
6974         immediate $(shell) instead of deferred backquote.
6976 2004-01-19  Mark Mitchell  <mark@codesourcery.com>
6978         PR c++/13651
6979         * parser.c (cp_parser_postfix_expression): When encountering
6980         incomplete type on left-hand side of "->" or ".", treat the entire
6981         expression as erroneous.
6983         PR c++/13592
6984         * call.c (build_field_call): Remove.
6985         (n_build_method_call): Likewise.
6986         (build_method_call): Likewise.
6987         (build_new_method_call): Do not call build_field_call.
6988         * class.c (n_build_method_call): Remove.
6989         (print_class_statistics): Do not print it.
6990         * cp-tree.h (build_method_call): Remove declaration.
6991         (finish_object_call_expr): Likewise.
6992         (build_new_1): Do not use build_method_call.
6993         * parser.c (cp_parser_postfix_expression): Use finish_call_expr
6994         when the function appearing on the right-hand-side of "." or "->"
6995         is not actually a function.
6996         * pt.c (tsubst_copy_and_build): Likewise.
6997         * semantics.c (finish_object_call_expr): Remove.
6999 2004-01-18  Mark Mitchell  <mark@codesourcery.com>
7001         PR c++/13710
7002         * pt.c (tsubst): Use finish_typeof.
7004 2004-01-18  Jason Merrill  <jason@redhat.com>
7006         PR c++/11725
7007         * except.c (build_throw): In a template, set
7008         current_function_returns_abnormally.
7010 2004-01-17  Fred Fish  <fnf@intrinsity.com>
7012         PR c++/11895
7013         * decl.c (reshape_init): Handle VECTOR_TYPE like ARRAY_TYPE,
7014         except don't call array_type_nelts() with a VECTOR_TYPE.
7016 2004-01-16  Jan Hubicka  <jh@suse.cz>
7018         * mangle.c (write_mangled_name): Remove inline modifier.
7020 2004-01-16  Mark Mitchell  <mark@codesourcery.com>
7022         PR c++/13574
7023         * decl.c (compute_array_index_type): Fix grammar in comment.
7024         * init.c (build_zero_init): Handle zero-sized arrays correctly.
7026         PR c++/13178
7027         * call.c (name_as_c_string): Print conversion operator names
7028         correctly.
7030         PR c++/13478
7031         * call.c (initialize_reference): Pass -1 for inner parameter to
7032         convert_like_real.
7034 2004-01-15  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
7036         PR c++/13407
7037         * parser.c (cp_parser_base_specifier): Check for an invalid
7038         keyword `typename' and emit an user-friendly error message.
7040 2004-01-15  Geoffrey Keating  <geoffk@apple.com>
7042         PR pch/13361
7043         * cp/lex.c (handle_pragma_interface): Duplicate string from tree.
7044         (handle_pragma_implementation): Likewise.
7046 2004-01-15  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
7048         PR c++/9259
7049         * typeck.c (build_class_member_access_expr): Allow to access members
7050         of the currently open class.
7051         (finish_class_member_access_expr): Likewise.
7053 2004-01-15  Alexandre Oliva  <aoliva@redhat.com>
7055         PR c++/13659
7056         * name-lookup.c (validate_nonmember_using_decl): Take scope and
7057         name by value, instead of computing them.
7058         (do_local_using_decl, do_toplevel_using_decl): Add scope and name
7059         arguments.  Pass them to validate_nonmember_using_decl.
7060         * name-lookup.h (do_local_using_decl): Adjust.
7061         (do_toplevel_using_decl): Likewise.
7062         * parser.c (cp_parser_using_declaration): Likewise.
7063         * pt.c (tsubst_expr): Likewise.
7065 2004-01-15  Alexandre Oliva  <aoliva@redhat.com>
7067         PR c++/13594
7068         PR c++/13658
7069         * name-lookup.c (qualified_lookup_using_namespace): Search
7070         strongly-associated namespaces first, and only then try other
7071         namespaces.
7073 2004-01-15  Kelley Cook  <kcook@gcc.gnu.org>
7075         * Make-lang.in (c++.srcextra): Dummy entry.
7077 2004-01-15  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
7079         PR c++/8856
7080         * parser.c (cp_parser_template_name): Don't try to parse a
7081         conversion-function-id, as it cannot be a template-name.
7082         (cp_parser_simple_type_specifier): Check for invalid template-ids
7083         even after a built-in type.
7085 2004-01-14  Jan Hubicka  <jh@suse.cz>
7087         PR c++/12850
7088         * pt.c (instantiate_decl):  Do not increase function_depth.
7090 2004-01-14  Danny Smith  <dannysmith@users,sourceforge.net>
7092         PR c++/9021
7093         PR c++/11005
7094         * parser.c (cp_parser_elaborated_type_specifier): Warn about
7095         attributes and discard.
7096         * decl.c (xref_tag): Don't overwite existing attributes with
7097         NULL_TREE.
7099 2004-01-14  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
7101         PR c++/12335
7102         * parser.c (cp_parser_lookup_name): Return error_mark_node if there
7103         is no destructor while looking up a BIT_NOT_EXPR.
7105 2004-01-13  Ian Lance Taylor  <ian@wasabisystems.com>
7107         * cxxfilt.c: Remove unused file.
7109 2004-01-14  Jan Hubicka  <jh@suse.cz>
7111         Partial fix to PR c++/12850
7112         * decl2.c (mark_used): Do not proactively instantiate templates
7113         when compiling in unit-at-a-time or not optimizing.
7114         * optimize.c (maybe_clone_body): Do not increase function depth.
7116 2004-01-13  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
7118         PR c++/13474
7119         * pt.c (tsubst) <INTEGER_TYPE>: Remove obsolete array index tweaking.
7121 2004-01-12  Steven Bosscher  <stevenb@suse.de>
7123         PR c++/13558
7124         * parser.c (cp_parser_member_declaration): Any non-type is also
7125         not a class or a function.
7127 2004-01-12  Jason Merrill  <jason@redhat.com>
7129         PR c++/12815
7130         * class.c (build_base_path): Do not mark vtable references as
7131         TREE_CONSTANT.
7132         (build_vtbl_ref_1): Likewise.
7134 2004-01-12  Richard Henderson  <rth@redhat.com>
7136         PR opt/10776
7137         * typeck2.c (split_nonconstant_init_1, split_nonconstant_init): New.
7138         (store_init_value): Use it.
7139         * decl.c (check_initializer): Expect full initialization code
7140         from store_init_value.
7141         * init.c (expand_aggr_init_1): Likewise.
7142         * decl2.c (maybe_emit_vtables): Abort if runtime init needed.
7144 2004-01-12  Mark Mitchell  <mark@codesourcery.com>
7146         * class.c (layout_class_type): For non-POD class types, also copy
7147         the DECL_SIZE and DECL_MODE of fields to the base class type.
7149 2004-01-12  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
7151         PR c++/13289
7152         * pt.c (instantiate_decl): Set DECL_TEMPLATE_INSTANTIATED before
7153         calling regenerate_decl_from_template.
7155 2004-01-12  Scott Brumbaugh  <scottb.lists@verizon.net>
7157         PR c++/4100
7158         * parser.c (cp_parser_decl_specifier_seq): Add check for a friend
7159         decl-specifier occurring along with a class definition.
7161 2004-01-12  Ian Lance Taylor  <ian@wasabisystems.com>
7163         * parser.c (cp_parser_decl_specifier_seq): Add parenthetical
7164         clauses to comments describing declares_class_or_enum.
7165         (cp_parser_type_specifier): Set *declares_class_or_enum to 0, not
7166         false.
7168 2004-01-12  Jan Hubicka  <jh@suse.cz>
7170         * pt.c (for_each_template_parm): Do not check for duplicates.
7171         (for_each_template_parm): Use walk_tree duplicate checking code.
7173 2004-01-11  Ian Lance Taylor  <ian@wasabisystems.com>
7175         PR c++/3478
7176         * parser.c (cp_parser_decl_specifier_seq): If the first decl_spec
7177         is error_mark_node, don't add any more decl_specs.
7178         (cp_parser_init_declarator): After committing to a declaration, if
7179         the decl_specifiers start with error_mark_node, issue an error and
7180         change the type to "int".
7182 2004-01-09  Nathanael Nerode  <neroden@gcc.gnu.org>
7184         PR bootstrap/7817
7185         * Make-lang.in: Copy gcc.1 to g++.1 rather than using .so.
7187 2004-01-10  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
7189         DR 337
7190         PR c++/9256
7191         * pt.c (tsubst): Substitution must fail if we are attempting to
7192         create an array with element type that is an abstract class type.
7193         * decl.c (cp_finish_decl): Strip pointers and array types recursively
7194         before calling abstract_virtuals_error.
7196 2004-01-09  Alexandre Oliva  <aoliva@redhat.com>
7198         * name-lookup.c (qualified_lookup_using_namespace): Consider
7199         strong using directives even if we've already found a binding.
7201 2004-01-09  Mark Mitchell  <mark@codesourcery.com>
7203         * cp-tree.h (cxx_expand_expr): Change prototype.
7204         * expr.c (cxx_expand_expr): Add alt_rtl parameter.
7206 2004-01-08  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
7208         PR c++/12573
7209         * pt.c (value_dependent_expression_p): Handle COMPONENT_REFs by
7210         looking into them recursively. They can be there because of the
7211         new __offsetof__ extension.
7213 2004-01-07  Zack Weinberg  <zack@codesourcery.com>
7215         * parser.c (cp_parser_save_member_function_body): Mark the
7216         definition static.
7218 2004-01-05  Mark Mitchell  <mark@codesourcery.com>
7220         PR c++/13057
7221         * class.c (build_clone): Copy type attributes from the original
7222         function to the clone.
7224         PR c++/12815
7225         * class.c (build_vtbl_ref_1): Do not unconditionally mark vtable
7226         references as constant.
7228         PR c++/12132
7229         * parser.c (cp_parser_explicit_instantiation): Improve error
7230         recovery.
7231         (cp_parser_require): Improve indication of the error location.
7233         PR c++/13451
7234         * parser.c (cp_parser_class_head): Reorder logic to check for
7235         invalid qualification.
7237 2004-01-04  Mark Mitchell  <mark@codesourcery.com>
7239         PR c++/13157
7240         * name-lookup.c (lookup_using_namespace): Remove spacesp
7241         parameter.
7242         (unqualified_namespace_lookup): Likewise.
7243         (lookup_qualified_name): Adjust accordingly.
7244         (lookup_name_real): Likewise.
7245         (lookup_arg_dependent): Do not eliminate the namespace of the
7246         functions found by unqualified name lookup unless that is the
7247         current namespace.
7249 2004-01-04  Andrew Pinski  <pinskia@physics.uc.edu>
7251         * semantics.c (push_deferring_access_checks): Fix format.
7252         (resume_deferring_access_checks): Likewise.
7253         (stop_deferring_access_checks): Likewise.
7254         (pop_deferring_access_checks): Likewise.
7255         (get_deferred_access_checks): Likewise.
7256         (pop_to_parent_deferring_access_checks): Likewise.
7257         (perform_deferred_access_checks): Likewise.
7258         (perform_or_defer_access_check): Likewise.
7260 2004-01-04  Richard Henderson  <rth@redhat.com>
7262         * call.c (build_over_call): Don't create a save_expr of an
7263         aggregate, but rather its address.
7265 2004-01-04  Mark Mitchell  <mark@codesourcery.com>
7267         PR c++/13529
7268         * parser.c (cp_parser_postfix_expression): Allow "." to appear in
7269         an offsetof expression.
7271         * parser.c (cp_parser_parameter_declaration): Fix comment.
7273         PR c++/12226
7274         * call.c (CHECK_COPY_CONSTRUCTOR_P): New macro.
7275         (reference_binding): Set it when appropriate.
7276         (build_temp): New function, split out from ...
7277         (convert_like_real): ... here.  Honor CHECK_COPY_CONSTRUCTOR_P.
7278         (initialize_reference): Likewise.
7280         PR c++/13536
7281         * parser.c (cp_parser): Add in_type_id_in_expr_p.
7282         (cp_parser_new): Initialize it.
7283         (cp_parser_postfix_expression): Set it.
7284         (cp_parser_sizeof_operand): Likewise.
7285         (cp_parser_parameteR_declaration): Do not commit early to tenative
7286         parsers when in_type_id_in_expr_p is set.
7288 2004-01-03  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
7290         PR c++/13094
7291         * parser.c (cp_parser_template_argument): Don't call
7292         make_unbound_class_template directly.
7293         (cp_parser_lookup_name): Don't extract TEMPLATE_DECL from
7294         UNBOUND_CLASS_TEMPLATE tree node.
7296 2004-01-02  Richard Sandiford  <rsandifo@redhat.com>
7298         PR target/12729
7299         * method.c (use_thunk): Pass the CALL_EXPR through force_target_expr.
7301 2004-01-02  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
7303         PR c++/13520
7304         * cp-tree.h (DECL_UNBOUND_CLASS_TEMPLATE_P): New macro.
7305         (DECL_FUNCTION_TEMPLATE_P): Use it.
7306         (DECL_CLASS_TEMPLATE_P): Likewise.
7307         * parser.c (cp_parser_lookup_name): Add is_template parameter.
7308         (cp_parser_type_parameter): Adjust call to cp_parser_lookup_name.
7309         (cp_parser_template_name): Likewise.
7310         (cp_parser_elaborated_type_specifier): Likewise.
7311         (cp_parser_namespace_name): Likewise.
7312         (cp_parser_class_name): Likewise.
7313         (cp_parser_lookup_name_simple): Likewise.
7315 See ChangeLog.3 for earlier changes.