2005-06-28 Paul Brook <paul@codesourcery.com>
[official-gcc.git] / gcc / cp / ChangeLog
blob128ea648dfe8794de079a4a71f706c6a85879054
1 2005-06-28  Paul Brook  <paul@codesourcery.com>
3         * Make-lang.in (cp/except.o): Depend on $(TARGET_H)
4         * except.c: Include target.h.
5         (init_exception_processing): Initialize unwind_resume_libfunc.
6         * doc/tm.texi: Document TARGET_ASM_TTYPE
8 2005-06-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10         * call.c (build_over_call): Pass in named argument list to
11         `check_function_arguments'.
12         * typeck.c (build_function_call): Likewise.
14 2005-06-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16         * cp-tree.h (lang_check_failed): Add noreturn attribute.
18 2005-06-25  Kelley Cook  <kcook@gcc.gnu.org>
20         * all files: Update FSF address in copyright headers.
22 2005-06-23  Jason Merrill  <jason@redhat.com>
24         PR c++/19317
25         * semantics.c (simplify_aggr_init_expr): Use
26         CALL_EXPR_RETURN_SLOT_OPT, not CALL_EXPR_HAS_RETURN_SLOT_ADDR.
28 2005-06-23  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
30         * pt.c (register_specialization): Remove superfluous assertion.
32 2005-06-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
34         * call.c (convert_like_real): Add format attribute.
35         * typeck.c (check_for_casting_away_constness,
36         build_static_cast_1): Likewise.
37         * typeck2.c (readonly_error, cxx_incomplete_type_diagnostic):
38         Likewise.
40 2005-06-17  Geoffrey Keating  <geoffk@apple.com>
42         PR c++/17413
43         * pt.c (type_unification_real): Apply template type deduction even
44         to procedure parameters that are not dependent on a template
45         parameter.
47 2005-06-16  Nathan Sidwell  <nathan@codesourcery.com>
49         * rtti.c (get_tinfo_decl): Avoid caching tinfo_descs when it might
50         change.
51         (create_pseudo_type_info): First parameter is an int.
53 2005-06-15  Aldy Hernandez  <aldyh@redhat.com>
55         * typeck.c (build_binary_op): Same.
56         * testsuite/g++.dg/conversion/simd3.C: New.
58 2005-06-15  Nathan Sidwell  <nathan@codesourcery.com>
60         PR c++/20678
61         * error.c (dump_expr) <COMPONENT_REF case>: Check DECL_NAME is not
62         null.
64         * Make-lang.in: Reformat some long lines.
65         (gt-cp-rtti.h): New target.
66         (cp/rtti.o): Add dependency.
67         * config-lang.in (gtfiles): Add cp/rtti.c.
68         * cp-tree.h (CPTI_TI_DESC_TYPE, CPTI_BLTN_DESC_TYPE,
69         CPTI_PTR_DESC_TYPE, CPTI_ARY_DESC_TYPE, CPTI_FUNC_DESC_TYPE,
70         CPTI_ENUM_DESC_TYPE, CPTI_CLASS_DESC_TYPE,
71         CPTI_SI_CLASS_DESC_TYPE, CPTI_VMI_CLASS_DESC_TYPE,
72         CPTI_PTM_DESC_TYPE, CPTI_BASE_DESC_TYPE): Remove.
73         (ti_desc_type_node, bltn_desc_type_node, ptr_desc_type_node,
74         ary_desc_type_node, func_desc_type_node, enum_desc_type_node,
75         class_desc_type_node, si_class_desc_type_node,
76         vmi_class_desc_type_node, ptm_desc_type_node,
77         base_desc_type_node): Remove.
78         * decl.c: Adjust documentation of global trees.
79         * rtti.c (TINFO_PSEUDO_TYPE, TINFO_VTABLE_DECL,
80         TINFO_REAL_NAME): Remove.
81         (struct tinfo_s): New.
82         (enum tinfo_kind): New.
83         (tinfo_descs): New.
84         (get_tinfo_decl): Adjust use of tinfo descriptor.
85         (tinfo_base_init, generic_initializer, ptr_initializer,
86         ptm_initializer, class_initializer): Likewise.
87         (get_pseudo_ti_init): Take descriptor index. Adjust.
88         (create_pseudo_type_info): Likewise.
89         (get_pseudo_ti_desc): Return descriptor index. Adjust.
90         (create_tinfo_types): Adjust use of create_pseudo_type_info.
91         (emit_tinfo_decl): Adjust use of tinfo descriptor.
93 2005-06-14  Roger Sayle  <roger@eyesopen.com>
95         * decl.c (grokdeclarator): Only check TREE_OVERFLOW on INTEGER_CST.
97 2005-06-13  Geoffrey Keating  <geoffk@apple.com>
99         * Make-lang.in (c++.install-man): Doesn't really depend on installdirs.
100         (rule for installing g++.1 manpage): Does depend on installdirs.
102 2005-06-13  Nathan Sidwell  <nathan@codesourcery.com>
104         PR c++/20789
105         * decl.c (cp_finish_decl): Clear runtime runtime initialization if
106         in-class decl's initializer is bad.
108         PR c++/21929
109         * parser.c (struct cp_parser): Document that scope could be
110         error_mark.
111         (cp_parser_diagnose_invalid_type_name): Cope with error_mark for
112         scope.
113         (cp_parser_nested_name_specifier): Return NULL_TREE on error.
114         (cp_parser_postfix_expression): Deal with null or error_mark
115         scope.
116         (cp_parser_elaborated_type_specifier): Adjust
117         cp_parser_nested_name_specifier call.
119         * parser (cp_parser_skip_to_end_of_block_or_statement): Cleanup.
121 2005-06-12  Roger Sayle  <roger@eyesopen.com>
123         PR c++/21930
124         * error.c (dump_expr): UNARY_PLUS_EXPR need not handle void types.
125         Treat CONVERT_EXPR identically to NOP_EXPR.
127 2005-06-10  Aldy Hernandez  <aldyh@redhat.com>
129         PR c++/10611
130         * cvt.c (build_expr_type_conversion): Same.
131         * typeck.c (build_binary_op): Handle vectors.
132         (common_type): Same.
133         (type_after_usual_arithmetic_conversions): Same.
134         * testsuite/g++.dg/conversion/simd2.C: New.
136 2005-06-08  Nathan Sidwell  <nathan@codesourcery.com>
138         PR c++/19497
139         * cp-tree.def (USING_DECL): Update documentation.
140         * cp-tree.h (DECL_DEPENDENT_P): New.
141         (USING_DECL_DECLS, USING_DECL_SCOPE): New.
142         * class.c (handle_using_decl): Move most of the processing to ...
143         * name-lookup.c (do_class_using_decl): ... here.  Make stricter.
144         (push_using_decl): Use USING_DECL_SCOPE.
145         (cp_emit_debug_info_for_using): Make extern.
146         * cxx-pretty-print.c (pp_cxx_statement) <USING_DECL case>: Adjust.
147         * name-lookup.h (cp_emit_debug_info_for_using): Declare.
148         * pt.c (tsubst_decl) <USING_DECL case>: Use do_class_using_decl
149         when tsubsting.
150         (tsubst_expr): Use USING_DECL_SCOPE.
151         * search.c (lookup_field_1): Use DECL_DEPENDENT_P.
152         * semantics.c (finish_member_declaration): Likewise.
154 2005-06-08  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
156         PR c++/19894
157         * pt.c (tsubst): Reject pointer-to-member of type void.
159         PR c++/20563
160         * parser.c (cp_parser_label_declaration): Deal with invalid/missing
161         identifiers.
163 2005-06-07  Nathan Sidwell  <nathan@codesourcery.com>
165         * cp-tree.def (DEFAULT_ARG): Adjust documentation.
166         * cp-tree.h (DEFARG_INSTANTIATIONS): New.
167         (struct tree_default_arg): Add instantiations member.
168         * parser.c (cp_parser_late_parsing_default_args): Adjust to use a
169         VEC.
170         * pt.c (tsubst_arg_types): Likewise.
172         * parser.c (cp_parser_late_parsing_default_args): Fix overeager
173         assert in previous patch.
175 2005-06-06  Jakub Jelinek  <jakub@redhat.com>
177         * error.c (locate_error): Use gmsgid instead of msgid for argument
178         name.
179         (cp_error_at, cp_warning_at, cp_pedwarn_at): Likewise.
181 2005-06-06  Nathan Sidwell  <nathan@codesourcery.com>
183         PR 21903
184         * cp-tree.def (DEFAULT_ARG): Document TREE_CHAIN use.
185         * parser.c (cp_parser_late_parsing_default_args): Propagate parsed
186         argument to any early instantiations.
187         * pt.c (tsubst_arg_types): Chain early instantiation of default arg.
189         PR c++/20637
190         * cp-tree.h (add_method): Add using_decl parameter.
191         * class.c (add_method): Add using_decl parameter.  Adjust error
192         messages.
193         (handle_using_decl): Pass the using decl to add_method.
194         (clone_function_decl): Adjust add_member calls.
195         * decl2.c (check_classfn): Likewise.
196         * method.c (lazily_declare_fn): Likewise.
197         * semantics.c (finish_member_declaration): Likewise.
199         * method.c (synthesize_method): Use inform, not warning.
201 2005-06-06  Hans-Peter Nilsson  <hp@axis.se>
203         * config-lang.in (target_libs): Remove target-gperf.
205 2005-06-05  Mark Mitchell  <mark@codesourcery.com>
207         PR c++/21619
208         * cp-tree.h (DECL_IS_BUILTIN_CONSTANT_P): New macro.
209         * parser.c (cp_parser_postfix_expression): Allow non-constant
210         expressions as arguments to __builtin_constant_p.
211         * tree.c (builtin_valid_in_constant_expr_p): Use
212         DECL_IS_BUILTIN_CONSTANT_P.
214 2005-06-03  Mark Mitchell  <mark@codesourcery.com>
216         PR c++/21853
217         * typeck.c (casts_away_constness_r): Do not drop cv-qualifiers on
218         the pointed-to type for a pointer-to-member.
220         PR c++/21336
221         * cp-tree.h (grok_op_properties): Remove friendp parameter.
222         * decl.c (grokfndecl): Adjust call.
223         (grok_op_properties): Determine the class of which the function is
224         a member by looking at its DECL_CONTEXT, not current_class_type.
225         * pt.c (tsubst_decl): Adjust call to grok_op_properties.
227 2005-06-02  Nathan Sidwell  <nathan@codesourcery.com>
229         * method.c (synthesize_method): Add addtional arg to warning call.
231         PR c++/21280
232         * Make-lang.in (method.o): Add diagnostic.h
233         * decl.c (start_preparsed_function): Use decl's location for file
234         info.
235         * decl2.c (cp_finish_file): Set input_location before synthesizing
236         a function.
237         (mark_used): When deferring a synthesized function, save current
238         location.  Do not set function's location when actually
239         synthesizing it.
240         * method.c: #include diagnostic.h.
241         (synthesize_method): Set the functions source location.  Show
242         needed location if errors are emitted.
244         * decl.c (start_decl): Simplify specialization handling. Remove
245         unneeded CLASSTYPE_TEMPLATE_INSTANTIATION check.
246         * mangle.c (discriminator_for_local_entity): Use VEC_index.
248         PR c++/20350
249         * decl.c (duplicate_decls): Copy all of DECL_USE_TEMPLATE.
251         PR c++/21151
252         * name-lookup.c (pushtag): Push local class even in a template.
254 2005-05-31  Nathan Sidwell  <nathan@codesourcery.com>
256         PR c++/21165
257         * init.c (integral_constant_value): Check the type of the
258         initializer, not the decl.
260 2005-05-30  Mark Mitchell  <mark@codesourcery.com>
262         PR c++/21784
263         * name-lookup.c (do_nonmember_using_decl): Ignore builtin
264         functions, even when the used name is not a function.
266 2005-05-30  Kazu Hirata  <kazu@cs.umass.edu>
268         * operators.def, optimize.c: Update copyright.
270 2005-05-28  Mark Mitchell  <mark@codesourcery.com>
272         PR c++/21210
273         * call.c (standard_conversion): Permit conversions to complex
274         types if conversion to the corresponding scalar type would be
275         permitted.
277         PR c++/21340
278         * method.c (implicitly_declare_fn): Clear processing_template_decl
279         when generating implicit declaration.
281 2005-05-27  Mark Mitchell  <mark@codesourcery.com>
283         PR c++/21614
284         * typeck.c (get_member_function_from_ptrfunc): Do not attempt
285         conversions to base classes of incomplete types.
287 2005-05-27  Ian Lance Taylor  <ian@airs.com>
289         * semantics.c (add_stmt): Add C++ frontend specific version.
290         * cp-tree.h (STMT_IS_FULL_EXPR_P): Define.
291         (stmts_are_full_exprs_p): Declare.
293 2005-05-27  Roger Sayle  <roger@eyesopen.com>
294             Giovanni Bajo  <giovannibajo@gcc.gnu.org>
296         * cp-tree.def (UNARY_PLUS_EXPR): New C++ unary tree code.
297         * parser.c (cp_parser_unary_expression): Use UNARY_PLUS_EXPR instead
298         of CONVERT_EXPR.
299         (cp_parser_unary_expression): Likewise.
300         * typeck.c (build_unary_op): Likewise.
301         * call.c (add_builtin_candidate, build_new_op): Likewise.
302         * error.c (dump_expr): Likewise.
303         * pt.c (tsubst_copy, tsubst_copy_and_build): Likewise.
304         * decl.c (ambi_op_p, grok_op_properties): Likewise.
305         * dump.c (dump_op): Likewise.
306         * lex.c (init_operators): Likewise.
307         * operators.def ("+"): Likewise.
308         * cp-gimplify.c (cp_gimplify_expr): Handle UNARY_PLUS_EXPR like a
309         conversion, if the result and argument types differ.
310         * tree.c (fold_if_not_in_template): Fold UNARY_PLUS_EXPR much
311         like a NOP_EXPR when !processing_template_decl.
313         * cxx-pretty-print.c (pp_cxx_cast_expression): Prototype.
314         (pp_cxx_unary_expression): Handle new UNARY_PLUS_EXPR tree code.
316 2005-05-27  Nathan Sidwell  <nathan@codesourcery.com>
318         PR c++/21455
319         * typeck.c (get_delta_difference): Cope with incomplete but equal
320         classes.  Reorder if.
322         PR c++/21681
323         * parser.c (cp_parser_late_parsing_for_member): Disable access
324         checking for template functions.
326 2005-05-26  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
328         PR c++/21768
329         * pt.c (redeclare_class_template): Change error message according
330         to coding conventions.
332 2005-05-26  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
334         * call.c (build_op_delete_call): Fix quoting in error message.
336 2005-05-25  Richard Henderson  <rth@redhat.com>
338         PR libgcj/21692
339         * cp-tree.h (make_alias_for): Declare.
340         * decl2.c (build_java_method_aliases): New.
341         (cp_finish_file): Call it.
342         * method.c (make_alias_for): Split out from ...
343         (make_alias_for_thunk): ... here.
345 2005-05-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
347         PR c++/21686
348         * semantics.c (finish_id_expression): Fix quoting in error message.
350 2005-05-25  DJ Delorie  <dj@redhat.com>
352         * decl.c (duplicate_decls): Move warning control from if() to
353         warning(OPT_*).
354         * name-lookup.c (parse_using_directive): Likewise.
355         * parser.c (cp_parser_elaborated_type_specifier): Likewise.
356         (cp_parser_init_declarator): Likewise.
357         * tree.c (handle_com_interface_attribute): Likewise.
359 2005-05-24  Ziemowit Laski  <zlaski@apple.com>
361         * class.c (layout_class_type): Do not issue C++ ABI warnings
362         for ObjC structs.
363         * decl.c (objc_mark_locals_volatile): Streamline by calling
364         objc_volatilize_decl().
365         * parser.c (cp_parser_objc_message_expression): Allow simple
366         type specifiers (instead of merely type names) as message
367         receivers.
368         * pt.c (template_args_equal): Do not call objc_comptypes().
369         * typeck.c (composite_pointer_type): If both pointers are
370         ObjC-esque, arbitrarily choose the first; do not call
371         objc_comptypes().
372         (comptypes): Do not call objc_comptypes().
373         (convert_for_assignment): Call objc_compare_types().
374         (comp_ptr_ttypes_real): Call objc_type_quals_match() before
375         concluding that types do not match.
377 2005-05-24  Andrew Pinski  <pinskia@physics.uc.edu>
379         PR C++/21645
380         * optimize.c (update_cloned_parm): Copy the TYPE also from the
381         original one.
383 2005-05-19  Jakub Jelinek  <jakub@redhat.com>
385         PR c++/21495
386         * decl.c (grokdeclarator): Fix "storage class specified for"
387         error reporting.
389 2005-05-19  Kazu Hirata  <kazu@cs.umass.edu>
391         * parser.c: Fix comment typos.
393 2005-05-18  Geoffrey Keating  <geoffk@apple.com>
395         * Make-lang.in (cc1plus-dummy): New.
396         (cc1plus-checksum.c): New.
397         (cc1plus-checksum.o): New.
398         (cc1plus): Add cc1plus-checksum.o.
400 2005-05-17  H.J. Lu  <hongjiu.lu@intel.com>
402         PR C++/19664
403         * decl2.c (determine_visibility): Don't set visibility to
404         hidden if it has been set explicitly by user.
406 2005-05-17  Ziemowit Laski  <zlaski@apple.com>
407             Mike Stump  <mrs@apple.com>
409         Yet more Objective-C++...
411         * cp-objcp-common.h (cxx_get_alias_set): Move from
412         here...
413         (cxx_warn_unused_global_decl): Likewise.
414         (cp_expr_size): Likewise.
415         (cp_tree_size): Likewise.
416         (cp_var_mod_type_p): Likewise.
417         (cxx_initialize_diagnostics): Likewise.
418         (cxx_types_compatible_p): Likewise.
419         * cp-tree.h: to here.
420         (do_poplevel): Add.
421         * lex.c (D_OBJC): Add.
422         (init_reswords): Add.
423         * Make-lang.in (cp/pt.o): Add cp/cp-objcp-common.h.
424         * parser.c: Add c-common.h include.
425         * pt.c: Add c-common.h and cp-objcp-common.h includes.
426         (template_args_equal): Use objc_comptypes as well.
427         (tsubst_copy_and_build): Use objcp_tsubst_copy_and_build as well.
428         * semantics.c (do_poplevel): Remove static.
430         * decl.c (objc_mark_locals_volatile): Don't change decls that are
431         already ok.
432         * decl2.c (generate_ctor_or_dtor_function): Add code to initialize
433         Objective C++ early enough.
434         * lex.c (struct resword reswords): Add Objective-C++ support.
435         * parser.c (cp_lexer_get_preprocessor_token): Add Objective-C++.
436         (cp_parser_objc_message_receiver): Add.
437         (cp_parser_objc_message_args): Likewise.
438         (cp_parser_objc_message_expression): Likewise.
439         (cp_parser_objc_encode_expression): Likewise.
440         (cp_parser_objc_defs_expression): Likewise.
441         (cp_parser_objc_protocol_expression): Likewise.
442         (cp_parser_objc_selector_expression): Likewise.
443         (cp_parser_objc_expression): Likewise.
444         (cp_parser_objc_visibility_spec): Likewise.
445         (cp_parser_objc_method_type): Likewise.
446         (cp_parser_objc_protocol_qualifiers): Likewise.
447         (cp_parser_objc_typename): Likewise.
448         (cp_parser_objc_selector_p): Likewise.
449         (cp_parser_objc_selector): Likewise.
450         (cp_parser_objc_method_keyword_params): Likewise.
451         (cp_parser_objc_method_tail_params_opt): Likewise.
452         (cp_parser_objc_interstitial_code): Likewise.
453         (cp_parser_objc_method_signature): Likewise.
454         (cp_parser_objc_method_prototype_list): Likewise.
455         (cp_parser_objc_method_definition_list): Likewise.
456         (cp_parser_objc_class_ivars): Likewise.
457         (cp_parser_objc_identifier_list): Likewise.
458         (cp_parser_objc_alias_declaration): Likewise.
459         (cp_parser_objc_class_declaration): Likewise.
460         (cp_parser_objc_protocol_declaration): Likewise.
461         (cp_parser_objc_protocol_refs_opt): Likewise.
462         (cp_parser_objc_superclass_or_category): Likewise.
463         (cp_parser_objc_class_interface): Likewise.
464         (cp_parser_objc_class_implementation): Likewise.
465         (cp_parser_objc_end_implementation): Likewise.
466         (cp_parser_objc_declaration): Likewise.
467         (cp_parser_objc_try_catch_finally_statement): Likewise.
468         (cp_parser_objc_synchronized_statement): Likewise.
469         (cp_parser_objc_throw_statement): Likewise.
470         (cp_parser_objc_statement): Likewise.
471         (cp_parser_primary_expression): Add Objective-C++.
472         (cp_parser_statement): Likewise.
473         (cp_parser_declaration): Likewise.
474         (cp_parser_simple_type_specifier): Likewise.
475         (cp_parser_type_name): Likewise.
476         (cp_parser_parameter_declaration_list): Likewise.
477         (cp_parser_member_declaration) Likewise.
478         * tree.c: Include debug.h.
479         * typeck.c (composite_pointer_type): Add Objective-C++ support.
480         (finish_class_member_access_expr): Likewise.
481         (build_function_call): Allow objc to rewrite FUNCTION_DECLs.
482         (build_modify_expr): Allow objc to generate write barriers.
484         * Make-lang.in (cp/tree.o): Add debug.h.
485         * tree.c (lvalue_p_1, case CONST_DECL): Add.
487 2005-05-18  Jan Hubicka  <jh@suse.cz>
489         * method.c: Include tree-pass.h
490         (use_thunk): Lower body before expanding.
492 2005-05-17  Jakub Jelinek  <jakub@redhat.com>
494         PR c++/21454
495         * decl.c (maybe_deduce_size_from_array_init): Call
496         cp_apply_type_quals_to_decl after completing array type.
498 2005-05-16  Richard Henderson  <rth@redhat.com>
500         * decl.c (build_library_fn_1): Move setting TREE_NOTHROW ...
501         (build_library_fn): ... here.
503 2005-05-12  Ian Lance Taylor  <ian@airs.com>
505         * cp-tree.h (cp_stmt_codes): Don't define.
506         (statement_code_p): Declare.
507         (STATEMENT_CODE_P): Define.
508         * lex.c (statement_code_p): Define.
509         (cxx_init): Use actual codes in stmt_codes initializer, not
510         cp_stmt_codes macro.  Initialize statement_code_p directly, rather
511         than using INIT_STATEMENT_CODES.
513 2005-05-09  Mark Mitchell  <mark@codesourcery.com>
515         * typeck.c (build_unary_op): Do not resort to address arithmetic
516         when taking the address of a COMPONENT_REF.
518 2005-05-08  Kazu Hirata  <kazu@cs.umass.edu>
520         * class.c (vtbl_init_data_s): Change the type of fns to
521         VEC(tree,gc)*.
522         (build_vtbl_initializer, add_vcall_offset, add_vcall_offset):
523         Use VEC instead of VARRAY.
525 2005-05-07  Richard Sandiford  <rsandifo@redhat.com>
527         * mangle.c: Remove a reference to the MIPS -mint64 option.
529 2005-05-07  Kazu Hirata  <kazu@cs.umass.edu>
531         * decl.c (wrapup_globals_for_namespace): Use VEC instead of
532         VARRAY.
533         * name-lookup.c (add_decl_to_level, begin_scope): Likewise.
534         * name-lookup.h (cp_binding_level): Change the type of
535         static_decls to VEC(tree,gc)*.
537         * mangle.c (globals): Change the type of substitutions to
538         VEC(tree,gc)*.
539         (dump_substitution_candidates, add_substitution,
540         find_substitution, finish_mangling, init_mangle): Use VEC
541         instead of VARRAY.
543 2005-05-06  Kazu Hirata  <kazu@cs.umass.edu>
545         * decl2.c (spew_debug): Remove.
547         * decl2.c (ssdf_decls, start_static_storage_duration_function,
548         generate_ctor_or_dtor_function): Use VEC instead of VARRAY.
550         * decl2.c (pending_statics, note_vague_linkage_var,
551         cp_finish_file): Use VEC instead of VARRAY.
552         (pending_statics_used): Remove.
554 2005-05-05  Kazu Hirata  <kazu@cs.umass.edu>
556         * decl2.c (deferred_fns, note_vague_linkage_fn,
557         cp_finish_file): Use VEC instead of VARRAY.
559 2005-05-05  Mark Mitchell  <mark@codesourcery.com>
561         PR c++/21352
562         * pt.c (build_non_dependent_expr): Use is_overloaded_fn.
564 2005-05-05  Kazu Hirata  <kazu@cs.umass.edu>
566         * pt.c: Fix a comment typo.
568 2005-05-04  Kazu Hirata  <kazu@cs.umass.edu>
570         * cp-tree.h (language_function): Change the type of
571         x_local_names to VEC.
572         * decl.c (push_local_name): Adjust uses of local_names.
574 2005-05-03  Kazu Hirata  <kazu@cs.umass.edu>
576         * friend.c, lex.c, mangle.c, repo.c: Update copyright.
578 2005-05-02  Kazu Hirata  <kazu@cs.umass.edu>
580         * class.c (local_classes, init_class_processing): Use VEC
581         instead of VARRAY.
582         * cp-tree.h (local_classes): Likewise.
583         * mangle.c (discriminator_for_local_entity): Likewise.
584         * name-lookup.c (pushtag): Likewise.
586         * class.c (current_lang_depth, push_lang_context,
587         pop_lang_context): Use VEC instead of VARRAY.
588         * cp-tree.h (saved_scope): Use VEC for lang_base instead of
589         VARRAY.
590         * name-lookup.c (push_to_top_level): Use VEC instead of
591         VARRAY.
593 2005-05-02  Paolo Bonzini  <bonzini@gnu.org>
595         * semantics.c (finish_call_expr): Call resolve_overloaded_builtin
596         for BUILT_IN_MD built-ins.
598 2005-05-02  Michael Matz  <matz@suse.de>
600         PR c++/19542
601         * cp-tree.h (cp_tree_index): Remove CPTI_NULL, to be defined in C
602         common frontend.
603         (null_node): Remove.
604         * lex.c (cxx_init): Move null_node initialisation to C common frontend.
606 2005-04-25  Ian Lance Taylor  <ian@airs.com>
608         * cp-tree.def: Add EXPR_STMT.
609         * cp-tree.h (cp_stmt_codes): Add EXPR_STMT.
610         (EXPR_STMT_EXPR): Define.
611         * cp-gimplify.c: Include "flags.h".
612         (gimplify_expr_stmt): New static function.
613         (cp_gimplify_expr): Handle EXPR_STMT.
614         * cxx-pretty-print.c (pp_cxx_statement): Use pp_cxx_expression
615         rather than pp_expression.
616         (pp_cxx_statement): Handle EXPR_STMT.
617         * dump.c (cp_dump_tree): Handle EXPR_STMT.
618         * lex.c (cxx_init): Don't use c_common_stmt_codes in stmt_codes
619         initializer.
621 2005-04-25  Andrew Pinski  <pinskia@physics.uc.edu>
623         PR C++/21188
624         * rtti.c (ifnonnull): Cast the zero comparison operand
625         to the correct type.
627 2005-04-24  Jakub Jelinek  <jakub@redhat.com>
629         PR middle-end/20991
630         * class.c: Include cgraph.h.
631         (cp_fold_obj_type_ref): Set node->local.vtable_method.
632         * Make-lang.in (cgraph.o): Depend on $(CGRAPH_H).
634 2005-04-12  Markus F.X.J. Oberhumer  <markus@oberhumer.com>
636         * mangle.c (write_builtin_type): Handle integer types which are
637         not one of the shared integer type nodes and emit a "vendor
638         extended builtin type" with an encoding in the form of "u5int96".
640 2005-04-24  Ian Lance Taylor  <ian@airs.com>
642         * cp-tree.def (USING_STMT): Change class to tcc_statement.
643         (TRY_BLOCK, EH_SPEC_BLOCK, HANDLER, CLEANUP_STMT): Likewise.
644         (IF_STMT, FOR_STMT, WHILE_STMT, DO_STMT): Likewise.
645         (BREAK_STMT, CONTINUE_STMT, SWITCH_STMT): Likewise.
647 2005-04-23  DJ Delorie  <dj@redhat.com>
649         * call.c, class.c, cvt.c, decl.c, decl2.c, except.c, friend.c,
650         init.c, lex.c, mangle.c, method.c, name-lookup.c, parser.c,
651         repo.c, rtti.c, tree.c, typeck.c, typeck2.c: Adjust warning()
652         callers.
654 2005-04-22  Per Bothner  <per@bothner.com>
656         * decl.c (make_rtl_for_nonlocal_decl): Don't try get_fileinfo if
657         input_filename is NULL, as it is for (say) __PRETTY_FUNCTION__.
659 2005-04-22  Alexandre Oliva  <aoliva@redhat.com>
661         PR c++/21087
662         * name-lookup.c (push_overloaded_decl): Do not overload with
663         non-duplicate anticipated built-in.
665 2005-04-21  Kazu Hirata  <kazu@cs.umass.edu>
667         * cp-tree.h (THROW_NAME, AUTO_VTABLE_NAME, AUTO_TEMP_FORMAT,
668         VTABLE_BASE, VTABLE_NAME_PREFIX, STATIC_NAME_FORMAT): Remove.
670 2005-04-21  Nathan Sidwell  <nathan@codesourcery.com>
672         * cp-tree.h: Adjust for new VEC API.
673         Define VEC(tree_pair_s,gc).
674         (struct save_scope): Adjust.
675         (struct lang_type_class): Adjust.
676         (unemitted_tinfo_decls): Adjust.
677         * class.c (add_method, resort_type_method_vec,
678         finish_struct_methods, struct find_final_overrider_data,
679         dfs_find_final_overrider_pre, find_final_overrider,
680         get_vcall_index, warn_hidden, walk_subobject_offsets,
681         check_methods, fixup_inline_methods, end_of_class,
682         warn_about_ambiguous_bases, finish_struct, build_vtbl_initializer,
683         add_vcall_offset): Adjust.
684         * decl.c (xref_basetypes, finish_method): Adjust.
685         * decl2.c (check_classfn): Adjust.
686         * init.c (sort_mem_initializers, push_base_cleanups): Adjust.
687         * method.c (do_build_copy_constructor): Adjust.
688         * name-lookup.c (new_class_binding, store_binding,
689         store_bindings, store_class_bindings): Adjust.
690         * name-lookup.h: Define VEC(cxx_saved_binding,gc),
691         VEC(cp_class_binding,gc).
692         (struct cp_binding_level): Adjust.
693         * parser.c: Define VEC(cp_token_position,heap).
694         (struct cp_lexer): Adjust.
695         (cp_lexer_new_main, cp_lexer_new_from_tokens, cp_lexer_destroy,
696         cp_lexer_save_tokens): Adjust.
697         * pt.c (retrieve_specialization,
698         check_explicit_specialization): Adjust.
699         * rtti.c (unemitted_tinfo_decls): Adjust.
700         (init_rtti_processing, get_tinfo_decl, get_pseudo_ti_init,
701         get_pseudo_ti_desc): Adjust.
702         * search.c (dfs_access_in_type, lookup_conversion_operator,
703         lookup_fnfields_1, dfs_walk_once, dfs_walk_once_accessible,
704         dfs_get_pure_virtuals, lookup_conversions_r, binfo_for_vbase): Adjust.
705         * semantics.c: Define VEC(deferred_access,gc).
706         (push_deferring_access_checks): Adjust.
707         * typeck2.c (abstract_virtuals_error): Adjust.
709 2005-04-20  Ian Lance Taylor  <ian@airs.com>
711         * cp-tree.def: Add STMT_EXPR.
712         * cp-tree.h (STMT_EXPR_NO_SCOPE): Define.
713         (STMT_EXPR_STMT): Define.
714         * cxx-pretty-print.c (pp_cxx_primary_expression): Handle
715         STMT_EXPR.
716         (pp_cxx_expression): Likewise.
717         (pp_cxx_statement): Call pp_cxx_statement, not pp_statement.
718         * dump.c (cp_dump_tree): Handle STMT_EXPR.
720 2005-04-18  Kazu Hirata  <kazu@cs.umass.edu>
722         * decl.c (expand_static_init): Call build2 and build3 instead
723         of build.
725         * cp-tree.h (VPTR_NAME, VPTR_NAME_P): Remove.
727 2005-04-17  Ian Lance Taylor  <ian@airs.com>
729         * cp-tree.def: Add SIZEOF_EXPR, ARROW_EXPR and ALIGNOF_EXPR.
730         * cxx-pretty-print.c (pp_cxx_postfix_expression): Handle
731         ARROW_EXPR.
732         (pp_cxx_unary_expression): Handle SIZEOF_EXPR and ALIGNOF_EXPR.
733         (pp_cxx_expression): Handle ARROW_EXPR, SIZEOF_EXPR, and
734         ALIGNOF_EXPR.
735         * typeck.c (cxx_sizeof_or_alignof_type): Update call to
736         c_sizeof_or_alignof_type for change in parameter type.
738 2005-04-16  Mark Mitchell  <mark@codesourcery.com>
740         PR c++/21025
741         * typeck.c (cxx_sizeof_or_alignof_type): Check whether the type to
742         which sizeof/alignof is dependent, rather than just whether we are
743         processing_template_decl.
745 2005-04-17  Kazu Hirata  <kazu@cs.umass.edu>
747         * cp-tree.h (LOOKUP_GLOBAL): Remove.
748         (LOOKUP_ONLYCONVERTING, DIRECT_BIND, LOOKUP_NO_CONVERSION,
749         LOOKUP_DESTRUCTOR, LOOKUP_NO_TEMP_BIND, LOOKUP_PREFER_TYPES,
750         LOOKUP_PREFER_NAMESPACES, LOOKUP_CONSTRUCTOR_CALLABLE): Adjust
751         their values.
753 2005-04-15  Richard Henderson  <rth@redhat.com>
755         PR middle-end/14311
756         * semantics.c (finish_call_expr): Call resolve_overloaded_builtin.
758 2005-04-15  Kazu Hirata  <kazu@cs.umass.edu>
760         * cp-tree.h (lang_type_class): Remove redefined.  Move
761         java_interface into where redefined was.  Increment the width
762         of dummy.
763         (TYPE_REDEFINED): Remove.
765 2005-04-14  Kazu Hirata  <kazu@cs.umass.edu>
767         * cp-tree.h (SET_TMPL_ARG, ENUM_TI_TEMPLATE, ENUM_TI_ARGS,
768         CLASSTYPE_TEMPLATE_LEVEL): Remove.
770 2005-04-11  Mark Mitchell  <mark@codesourcery.com>
772         * decl2.c (determine_visibility): Don't use export_class_data.
773         (import_export_decl): Honor TARGET_CXX_CLASS_DATA_ALWAYS_WEAK and
774         TARGET_CXX_DETERMINE_CLASS_DATA_VISIBILITY.
776 2005-04-09  Kazu Hirata  <kazu@cs.umass.edu>
778         * cp-tree.h (cxx_alignof): Remove.
780         * cp-tree.h (DECL_ARRAY_DELETE_OPERATOR_P): Remove.
782         * cp-tree.h (EXCEPTION_CLEANUP_NAME, B_SET, B_CLR, B_TST,
783         CONV_STATIC_CAST): Remove.
785         * pt.c (UNIFY_ALLOW_MAX_CORRECTION): Remove.
787         * cp-tree.h (VF_BINFO_VALUE, VF_BASETYPE_VALUE): Remove.
789         * cp-tree.h (cp_deprecated): Remove.
791 2005-04-08  Ian Lance Taylor  <ian@airs.com>
793         * cp-tree.def: Define FOR_STMT, WHILE_STMT, DO_STMT, BREAK_STMT,
794         CONTINUE_STMT, SWITCH_STMT.
795         * cp-tree.h (cp_stmt_codes): Add FOR_STMT, WHILE_STMT, DO_STMT,
796         BREAK_STMT, CONTINUE_STMT, SWITCH_STMT.
797         (WHILE_COND, WHILE_BODY): Define.
798         (DO_COND, DO_BODY): Define.
799         (FOR_INIT_STMT, FOR_COND, FOR_EXPR, FOR_BODY): Define.
800         (SWITCH_STMT_COND, SWITCH_STMT_BODY, SWITCH_STMT_TYPE): Define.
801         * cp-gimplify.c (enum bc_t): Define.
802         (struct cp_gimplify_ctx, ctxp): Define.
803         (push_context, pop_context): New static functions.
804         (begin_bc_block, finish_bc_block): New static functions.
805         (build_bc_goto): New static function.
806         (gimplify_cp_loop, gimplify_for_stmt): New static functions.
807         (gimplify_while_stmt, gimplify_do_stmt): Likewise.
808         (gimplify_switch_stmt): Likewise.
809         (cp_gimplify_expr): Handle FOR_STMT, WHILE_STMT, DO_STMT,
810         SWITCH_STMT, CONTINUE_STMT, BREAK_STMT.
811         (cp_genericize): Call push_context and pop_context.
812         * semantics.c (finish_break_stmt): Just call build_stmt
813         (BREAK_STMT) rather than build_break_stmt.
814         (finish_continue_stmt): Corresponding change.
815         * decl.c (pop_switch): Update call to c_do_switch_warnings for new
816         parameters.
817         * cxx-pretty-print.c (pp_cxx_statement): Handle SWITCH_STMT,
818         WHILE_STMT, DO_STMT, FOR_STMT, BREAK_STMT, CONTINUE_STMT.
819         * dump.c (cp_dump_tree): Likewise.
821 2005-04-08  Mark Mitchell  <mark@codesourcery.com>
823         PR c++/20905
824         * parser.c (cp_parser_type_specifier_seq): Add is_condition
825         parameter.
826         (cp_parser_new_type_id): Pass it.
827         (cp_parser_condition): Likewise.
828         (cp_parser_conversion_type_id): Likewise.
829         (cp_parser_type_id): Likewise.
830         (cp_parser_type_specifier_seq): In a condition, do not allow
831         invalid type-specifier combinations.
832         (cp_parser_exception_declaration): Adjust call to
833         cp_parser_type_specifier_seq.
835         * cp-tree.def (TINST_LEVEL): Document TINST_IN_SYSTEM_HEADER_P.
836         * cp-tree.h (struct tinst_level): Add in_system_header_p.
837         (TINST_IN_SYSTEM_HEADER_P): New macro.
838         (make_tinst_level): Remove.
839         * pt.c (lookup_template_class): Preserve DECL_IN_SYSTEM_HEADER on
840         the instantiated class.
841         (push_tinst_level): Do not use make_tinst_level.  Set
842         TINST_IN_SYSTEM_HEADER_P.
843         (pop_tinst_level): Likewise.
844         (instantiate_class_template): Set in_system_header.
845         (instantiate_pending_templates): Likewise.
846         * tree.c (make_tinst_level): Remove.
848 2005-04-06  Joseph S. Myers  <joseph@codesourcery.com>
850         * decl.c (start_decl): Apply pending #pragma weak regardless of
851         scope.
853 2005-04-06  Mark Mitchell  <mark@codesourcery.com>
855         PR c++/20212
856         * pt.c (regenerate_decl_from_template): Copy attributes for
857         parameters from the pattern to the instantiation.
859 2005-04-05  Mark Mitchell  <mark@codesourcery.com>
861         PR c++/20734
862         * cp-tree.def (OFFSET_REF): Correct comments.
863         * init.c (build_offset_ref): Remove misleading comment.
864         * typeck.c (build_unary_op): Handle pointer-to-member creation
865         here, rather than ...
866         (unary_complex_lvalue): ... here.
868 2005-04-06  Jason Merrill  <jason@redhat.com>
870         PR c++/19312
871         * tree.c (stabilize_init): Don't bother trying to stabilize
872         something with no side-effects.
874 2005-04-05  Mark Mitchell  <mark@codesourcery.com>
876         PR c++/20763
877         * decl.c (grokdeclarator): Correct attribute handling.
879 2005-04-05  Mark Mitchell  <mark@codesourcery.com>
881         PR c++/19159
882         * decl2.c (import_export_decl): Use non-COMDAT external linkage
883         for virtual tables, typeinfo, etc. that will be emitted in only
884         one translation unit on systems without weak symbols.
886 2005-04-04  Mark Mitchell  <mark@codesourcery.com>
888         PR c++/20679
889         * parser.c (cp_parser_template_name): Fix thinko.
891 2005-04-04  Nathan Sidwell  <nathan@codesourcery.com>
893         PR c++/20746
894         * method.c (use_thunk): Protect covariant pointer return
895         adjustments from NULL pointers.
897 2005-04-04  Jan Hubicka  <jh@suse.cz>
899         * decl2.c (finish_objects): Revert my previous patch.
900         (cp_finish_file): Likewise.
902 2005-04-03  Kazu Hirata  <kazu@cs.umass.edu>
904         * pt.c: Fix comment typos.
906 2005-04-03  Nathan Sidwell  <nathan@codesourcery.com>
908         PR c++/20723
909         * pt.c (more_specialized_fn): Member functions are unordered wrt
910         non-members.  Conversion operators are unordered wrt other
911         functions.
913 2005-04-01  Nathan Sidwell  <nathan@codesourcery.com>
915         * call.c (add_template_candidates_real): Remove length parameter
916         from fn_type_unification call.
917         * class.c (resolve_address_of_overloaded_function): Likewise
918         * cp-tree.h (fn_type_unification): Remove length parameter.
919         * pt.c (get_bindings_overload): Remove.
920         (get_bindings_real): Rename to ...
921         (get_bindings): ... here.  Remove length and strict
922         parameters. Change return type flag to boolean.  Remove original
923         forwarding function.
924         (determine_specialization): Adjust get_bindings call.
925         (fn_type_unification): Remove length parameter.  Adjust.
926         (type_unification_real): Remove length parameter.  Adjust.
927         (resolve_overloaded_unification): Adjust get_bindings call.
928         (try_one_overload): Simplify confusing cascaded if control flow.
929         (unify): Remove length paramter from type_unification_real call.
930         (most_specialized_instantiation): Adjust get_bindings calls.
931         (most_specialized): Likewise.
933 2005-03-31  Nathan Sidwell  <nathan@codesourcery.com>
935         PR c++/19203, implement DR 214
936         * call.c (joust): Use more_specialized_fn.
937         * cp-tree.h (DEDUCE_ORDER): Remove.
938         (more_specialized): Replace with ...
939         (more_specialized_fn): ... this.
940         * pt.c (maybe_adjust_types_for_deduction): Remove DEDUCE_ORDER
941         case.
942         (type_unification_real): Remove DEDUCE_ORDER case.
943         (more_specialized): Replace with ...
944         (more_specialized_fn): ... this.  Implement DR 214.
945         (most_specialized_instantiation): Use get_bindings_real directly.
947 2005-03-31  Gabriel Dos Reis  <gdr@integrable-solutions.net>
949         PR c++/18644
950         * call.c (build_new_op): Remove check for -Wsynth.
952 2005-03-31  Jan Hubicka  <jh@suse.cz>
954         * decl2.c (finish_objects): Mark ctor as needed.
955         (cp_finish_file): Output variables only in nonunit-at-a-time.
957 2005-03-29  Richard Henderson  <rth@redhat.com>
959         PR c/20519
960         * decl.c (cp_complete_array_type): Rename from complete_array_type.
961         Use the new complete_array_type in c-common.c.  Update all callers.
962         * cp-tree.h (cp_complete_array_type): Update to match.
964 2005-03-24  Geoffrey Keating  <geoffk@apple.com>
966         * typeck.c (build_static_cast_1): Allow scalar_cast between
967         any integral, floating, or enumeration type.
969 2005-03-24  Steven Bosscher  <stevenb@suse.de>
971         * typeck.c (comptypes): First determine if the types are compatible
972         from a target-independent point of view.  Check target attributes
973         last.
975         * class.c (build_base_path):
976         (build_vbase_offset_vtbl_entries):
977         (add_vcall_offset): Replace fold (buildN (...)) with fold_buildN.
978         * error.c (dump_expr): Likewise.
979         * init.c (build_zero_init, expand_cleanup_for_base,
980         build_vec_delete_1): Likewise.
981         * mangle.c (write_integer_cst): Likewise.
982         * method.c (thunk_adjust): Likewise.
983         * pt.c (convert_nontype_argument, tsubst, unify): Likewise.
984         * tree.c (cxx_print_statistics, array_type_nelts_total): Likewise.
985         * typeck.c (build_ptrmemfunc_access_expr,
986         (get_member_function_from_ptrfunc): Likewise.
988 2005-03-23  Joseph S. Myers  <joseph@codesourcery.com>
990         * cp-objcp-common.h (LANG_HOOKS_TRUTHVALUE_CONVERSION): Remove.
992 2005-03-23  Joseph S. Myers  <joseph@codesourcery.com>
994         * cp-tree.h (perform_integral_promotions): Remove.
995         (default_conversion): Add.
997 2005-03-22  Mark Mitchell  <mark@codesourcery.com>
999         * parser.c (cp_parser_warn_min_max): New function.
1000         (cp_parser_binary_expression): Use it.
1001         (cp_parser_assignment_operator_opt): Likewise.
1002         (cp_parser_operator): Likewise.
1004 2005-03-22  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1006         PR c++/19980
1007         * decl.c (start_preparsed_function): Robustify.
1009 2005-03-22  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1011         PR c++/20499
1012         * parser.c (cp_parser_class_head): Return NULL_TREE when
1013         encountering a redefinition.
1015 2005-03-22  Nathan Sidwell  <nathan@codesourcery.com>
1017         PR c++/20465
1018         PR c++/20381
1019         * typeck.c (build_ptrmemfunc): Allow OFFSET_REF when processing a
1020         template.
1022 2005-03-21  Paolo Carlini  <pcarlini@suse.de>
1024         PR c++/20461
1025         PR c++/20536
1026         * init.c (emit_mem_initializers): Don't crash on undefined
1027         types.
1029 2005-03-21  Paolo Carlini  <pcarlini@suse.de>
1031         PR c++/20147
1032         * semantics.c (finish_stmt_expr_expr): Return immediately
1033         if error_operand_p (expr).
1035 2005-03-21  Joseph S. Myers  <joseph@codesourcery.com>
1037         * cp-tree.h (lvalue_or_else, lvalue_p): New.
1038         * typeck.c (lvalue_or_else): New.  Call lvalue_error.
1040 2005-03-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1042         PR c++/20240
1043         * decl.c (decls_match): Compare context of VAR_DECL.
1045 2005-03-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1047         PR c++/20333
1048         * parser.c (cp_parser_postfix_expression) <case RID_TYPENAME>:
1049         Check the return value of cp_parser_nested_name_specifier.
1051 2005-03-18  Dale Johannesen <dalej@apple.com>
1053         * cp/tree.c (cp_tree_equal):  Handle SSA_NAME.
1055 2005-03-18  Paolo Carlini  <pcarlini@suse.de>
1057         PR c++/20463
1058         * parser.c (cp_parser_diagnose_invalid_type_name):
1059         Check TYPE_BINFO (current_class_type) before attempting
1060         to emit inform messages.
1062 2005-03-17  Paolo Carlini  <pcarlini@suse.de>
1064         PR c++/19966
1065         * cp-tree.h (grok_op_properties): Change return type to void.
1066         * decl.c (grok_op_properties): Return early - don't check the
1067         arity - in case of a static member or an operator that cannot
1068         be non-member; tidy a bit.
1070 2005-03-17  Nathan Sidwell  <nathan@codesourcery.com>
1072         PR c++/20186
1073         * pt.c (contains_dependent_cast_p): Remove.
1074         (fold_non_dependent_expr): Don't use it.
1075         (value_dependent_expression_p): Use a switch statement.
1076         reference_exprs can be dependent.
1078 2005-03-14  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1080         PR c++/4403
1081         PR c++/9783, DR433
1082         * name-lookup.c (pushtag): Skip template parameter scope when
1083         scope is ts_global.  Don't push tag into template parameter
1084         scope.
1085         * pt.c (instantiate_class_template): Reorder friend class
1086         template substitution to handle non-dependent friend class
1087         that hasn't been previously declared.
1089 2005-03-14  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1091         Friend class name lookup 5/n
1092         PR c++/1016
1093         * cp-tree.h (pushtag): Adjust declaration.
1094         * decl.c (lookup_and_check_tag): Call lookup_type_scope if
1095         lookup_name fails.
1096         (xref_tag): Adjust call to pushtag.  Make hidden class visible.
1097         (start_enum): Adjust call to pushtag.
1098         * name-lookup.c (ambiguous_decl): Ignore hidden names.
1099         (qualify_lookup): Change return type to bool.
1100         (hidden_name_p): New function.
1101         (lookup_namespace_name, unqualified_namespace_lookup,
1102         lookup_name_real): Use it.
1103         (lookup_type_scope): Update comments.
1104         (maybe_process_template_type_declaration): Change parameter name
1105         from globalize to is_friend.
1106         (pushtag): Change globalize parameter of type int to tag_scope.
1107         Hide name if introduced by friend declaration.
1108         * name-lookup.h (hidden_name_p): Add declaration.
1109         * parser.c (cp_parser_lookup_name): Don't deal with hidden name
1110         here.
1111         * pt.c (push_template_decl_real): Make hidden class template
1112         visible.
1113         (lookup_template_class, instantiate_class_template): Adjust call
1114         to pushtag.
1115         * semantics.c (begin_class_definition): Likewise.
1116         * rtti.c (init_rtti_processing, build_dynamic_cast_1,
1117         tinfo_base_init, emit_support_tinfos): Use ts_current instead of
1118         ts_global.
1120 2005-03-13  Mark Mitchell  <mark@codesourcery.com>
1122         PR c++/20157
1123         * pt.c (determine_specialization): Reject non-specializations.
1125 2005-03-11  Per Bothner  <per@bothner.com>
1127         * cp-tree.h (struct cp_declarator): New id_loc field.
1128         * cp/parser.c (cp_lexer_get_preprocessor_token): Set cp_token's
1129         location using c_lex_with_flags, instead of input_location.
1130         (cp_parser_direct_declarator): Set declarator's id_loc from
1131         cp_token's id_loc.
1133 2005-03-10  Jakub Jelinek  <jakub@redhat.com>
1135         PR c++/18384, c++/18327
1136         * decl.c (reshape_init_array): Use UHWI type for max_index_cst
1137         and index.  Convert max_index to size_type_node if it isn't
1138         host_integerp (, 1).
1140 2005-03-09  Mark Mitchell  <mark@codesourcery.com>
1142         PR c++/20208
1143         * pt.c (tsubst_decl): Apply array-to-pointer and
1144         function-to-pointer conversions to function arguments.
1145         (regenerate_decl_from_template): Likewise.
1147 2005-03-09  Paolo Carlini  <pcarlini@suse.de>
1149         PR c++/16859
1150         * decl.c (complete_array_type): In pedantic mode, return
1151         3 for an empty initializer list as the initializer for an
1152         array of unknown bound (8.5.1/4).
1153         (maybe_deduce_size_from_array_init): Fix final test to use
1154         the above.
1156 2005-03-08  Nathan Sidwell  <nathan@codesourcery.com>
1158         PR c++/20186
1159         * pt.c (contains_dependent_cast_p): New.
1160         (fold_non_dependent_expr): Call it.
1162 2005-03-08  Mark Mitchell  <mark@codesourcery.com>
1164         PR c++/20142
1165         * cp-tree.h (target_type): Remove.
1166         * decl.c (layout_var_decl): Remove #if 0'd code.
1167         (cp_finish_decl): Remove dead code.
1168         * init.c (build_vec_init): When determining whether or not the
1169         element type has an asignment operator, look through all array
1170         dimensions.
1171         * typeck.c (target_type): Remove.
1173 2005-03-07  Mark Mitchell  <mark@codesourcery.com>
1175         * class.c (finish_struct_1): Do not warn about non-virtual
1176         destructors in Java classes.
1178 2005-03-05  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1180         PR c++/19311
1181         * init.c (build_offset_ref): Don't build non-dependent SCOPE_REF.
1182         * pt.c (build_non_dependent_expr): Don't build NON_DEPENDENT_EXPR
1183         for OFFSET_TYPE.
1184         * typeck.c (build_x_unary_op): Don't build non-dependent SCOPE_REF.
1185         Also set PTRMEM_OK_P for NON_DEPENDENT_EXPR.
1186         (build_unary_op): Handle building ADDR_EXPR of OFFSET_REF inside
1187         template.
1189 2005-03-02  Alexandre Oliva  <aoliva@redhat.com>
1191         * name-lookup.c (push_overloaded_decl): Don't error if the new
1192         decl matches the old one.
1193         * decl.c (redeclaration_error_message): Likewise.
1195 2005-03-01  Per Bothner  <per@bothner.com>
1197         * decl.c (finish_function): Use SET_EXPR_LOCATION instead of
1198         unavailable annotate_with_file_line, if USE_MAPPED_LOCATION.
1200 2005-03-01  Nathan Sidwell  <nathan@codesourcery.com>
1202         PR c++/20232
1203         * class.c (update_vtable_entry_for_fn): Don't crash on invalid
1204         covariancy.
1206         * cp-tree.g (THUNK_TARGET): Expand comment.
1207         * method.c (use_thunk): Make sure we also use the target, if that
1208         is a thunk.
1210 2005-02-27  Jakub Jelinek  <jakub@redhat.com>
1212         PR c++/20206
1213         * decl.c (cxx_comdat_group): Put thunks for
1214         TARGET_USE_LOCAL_THUNK_ALIAS_P (function) functions into the same
1215         comdat group as the thunk target.
1217 2005-02-24  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1219         * call.c, class.c, cp-tree.h, decl2.c, error.c, init.c, mangle.c,
1220         parser.c: Fix comment typo(s).
1222 2005-02-24  Jakub Jelinek  <jakub@redhat.com>
1224         PR c++/20175
1225         * decl.c (reshape_init): Don't warn about missing braces if STRING_CST
1226         initializes a char/wchar_t array.
1228 2005-02-23  Mark Mitchell  <mark@codesourcery.com>
1230         PR c++/19878
1231         * decl.c (grokvardecl): Set DECL_INTERFACE_KNOWN for declarations
1232         with internal linkage.
1234 2005-02-23  Alexandre Oliva  <aoliva@redhat.com>
1236         * decl.c (grokvardecl): Don't exempt anonymous types from having
1237         linkage for variables that have linkage other than "C".
1239 2005-02-23  Kazu Hirata  <kazu@cs.umass.edu>
1241         * cp-objcp-common.h, error.c: Update copyright.
1243 2005-02-22  Mark Mitchell  <mark@codesourcery.com>
1245         PR c++/20073
1246         * decl.c (start_decl_1): Don't clear TREE_READONLY.
1247         (cp_finish_decl): Likewise.
1248         (complete_vars): Call cp_apply_type_quals_to_decl.
1249         * typeck.c (cp_apply_type_quals): Avoid setting TREE_READONLY in
1250         cases where that's not valid.
1252         PR c++/19991
1253         * init.c (integral_constant_value): Iterate if the value of a decl
1254         is itself a constant.
1256         PR c++/20152
1257         * parser.c (cp_parser_class_head): Check for redefintions here.
1258         * semantics.c (begin_class_definition): Not here.
1260         PR c++/20153
1261         * decl2.c (build_anon_union_vars): Add type parameter.
1262         (finish_anon_union): Pass it.
1264         PR c++/20148
1265         * error.c (dump_expr): Do not print the body of a BIND_EXPR.
1266         Handle STATEMENT_LIST.
1268         PR c++/19883
1269         * parser.c (cp_parser_direct_declarator): Always complain about
1270         non-constant array bounds when in a function scope.
1271         * semantics.c (finish_id_expression): Do not mark dependent names
1272         as non-constant.
1274 2005-02-21  Douglas Gregor  <dgregor@cs.indiana.edu>
1276         PR c++/19076
1277         PR c++/6628
1278         * cp-tree.h (cp_apply_type_quals_to_decl): Declared.
1279         * decl.c (grokdeclarator): Pedwarn about qualifying a function
1280         type.
1281         Add qualifiers when declaring a typedef of a function type.
1282         Member function pointers pick up the qualifiers of the typedef
1283         used to declare them.
1284         Don't complain about creating cv-qualified function types.
1285         Complain about qualified function typedefs that are used to
1286         declare non-static member functions or free functions.
1287         Use cp_apply_type_quals_to_decl.
1288         (start_preparsed_function): Use cp_apply_type_quals_to_decl.
1289         (grokclassfn): Use cp_apply_type_quals_to_decl.
1290         * error.c (dump_type_suffix): Print qualifiers for function
1291         types.
1292         * pt.c (tsubst_decl): Use cp_apply_type_quals_to_decl.
1293         (tsubst): When substituting a function type into a member
1294         pointer type, pass along the qualifiers.
1295         (unify): Unify member pointers to member function pointers.
1296         * tree.c (cp_build_qualified_type_real): Function types may be
1297         qualified. This includes restrict qualifiers.
1298         * typeck.c (cp_apply_type_quals_to_decl): New function to replace
1299         use of c_apply_type_quals_to_decl. Drops qualifiers that are being
1300         added to function types.
1302 2005-02-20  Zack Weinberg  <zack@codesourcery.com>
1304         PR 18785
1305         * cp-objcp-common.h (LANG_HOOKS_TO_TARGET_CHARSET): Set to
1306         c_common_to_target_charset.  Delete bogus comment.
1308 2005-02-18  Richard Henderson  <rth@redhat.com>
1310         PR libstdc++/10606
1311         * except.c (do_get_exception_ptr): New.
1312         (expand_start_catch_block): Use it.
1314 2005-02-19  Jakub Jelinek  <jakub@redhat.com>
1316         * decl.c (start_decl_1): Only check TYPE_NEEDS_CONSTRUCTING
1317         if type is not error_mark_node.
1319 2005-01-20  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
1321         PR c++/19508
1322         * decl2.c (grokfield): Do not apply attributes to template parameters
1323         as they are ignored by tsubst anyway.
1325 2005-02-18  Jakub Jelinek  <jakub@redhat.com>
1327         PR c++/19813
1328         * decl.c (start_decl_1): Clear TREE_READONLY flag if
1329         its type has TYPE_NEEDS_CONSTRUCTING.
1330         (complete_vars): Likewise.
1332 2005-02-17  Alexandre Oliva  <aoliva@redhat.com>
1334         PR c++/20028
1335         * class.c (finish_struct): Initialize TYPE_SIZE_UNIT of a
1336         template along with TYPE_SIZE.
1338         PR c++/20022
1339         * semantics.c (perform_deferred_access_checks): Use
1340         get_deferred_access_checks to get the top of the stack.
1342 2005-02-15  Alexandre Oliva  <aoliva@redhat.com>
1344         PR c++/17788
1345         * class.c (add_implicitly_declared_members, check_field_decl)
1346         (check_field_decls, check_bases): Remove arguments, tests and
1347         assignments of cant_have_default_ctor-related variables.
1349 2005-02-15  Alexandre Oliva  <aoliva@redhat.com>
1351         * decl2.c (mark_used): Set the source location of the used decl to
1352         the current input location here...
1353         * method.c (synthesize_method): ... not here.  Set input_location
1354         from the decl instead.
1356 2005-02-14  Nathan Sidwell  <nathan@codesourcery.com>
1358         PR c++/19608
1359         * parser.c (cp_parser_late_parsing_for_member): Use
1360         current_function_decl as scope to push to and from.
1362         PR c++/19884
1363         * pt.c (check_explicit_specialization): Make sure namespace
1364         binding lookup found an overloaded function.
1365         (lookup_template_function): Just assert FNS is an overloaded
1366         function.
1368         PR c++/19895
1369         * decl.c (grokdeclarator): Check for error mark node in ptrmem
1370         construction.
1372 2005-02-14  Alexandre Oliva  <aoliva@redhat.com>
1374         PR c++/17816
1375         * decl.c (redeclaration_error_message): Report redefinition of
1376         pure virtual function.
1378 2005-02-14  Nathan Sidwell  <nathan@codesourcery.com>
1380         PR c++/19891
1381         * class.c (build_simple_base_path): Build the component_ref
1382         directly.
1383         (update_vtable_entry_for_fn): Walk the covariant's binfo chain
1384         rather than using lookup_base.
1385         * search.c (dfs_walk_once): Add non-recursive assert check.
1386         * typeck.c (build_class_member_access_expr): It is possible for
1387         the member type to be both const and volatile.
1389 2005-02-12  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1391         PR c++/14479
1392         PR c++/19487
1393         * pt.c (maybe_check_template_type): Remove.
1394         * cp-tree.h (maybe_check_template_type): Remove prototype.
1395         * name-lookup.c (maybe_process_template_type_declaration): Don't
1396         use maybe_check_template_type.
1398 2005-02-11  Richard Henderson  <rth@redhat.com>
1400         PR c++/19632
1401         * pt.c (get_mostly_instantiated_function_type): Save and restore
1402         flag_access_control instead of push/pop_access_scope.
1404 2005-02-10  Mark Mitchell  <mark@codesourcery.com>
1406         PR c++/19755
1407         * decl.c (reshape_init): Issue warnings about missing braces.
1409 2005-02-11  Kazu Hirata  <kazu@cs.umass.edu>
1411         * cp-tree.def, except.c, ptree.c: Update copyright.
1413 2005-02-09  Mark Mitchell  <mark@codesourcery.com>
1415         PR c++/19811
1416         * call.c (build_op_delete_call): Check COMPLETE_TYPE_P before
1417         attempting name lookup.
1419         * parser.c (cp_parser_unqualified_id): Initialize type_decl.
1421         PR c++/19787
1422         * call.c (initialize_reference): Robustify.
1424         PR ++/19732
1425         * decl.c (grokdeclarator): Check for invalid use of destructor
1426         names.
1428         PR c++/19762
1429         * parser.c (cp_parser_unqualified_id): Avoid creating destructor
1430         names with invalid types.
1432         PR c++/19826
1433         * parser.c (cp_parser_direct_declarator): Allow type-dependent
1434         expressions as array bounds.
1436         PR c++/19739
1437         * parser.c (cp_parser_attributes_list): Allow empty lists.
1439 2005-02-08  Mark Mitchell  <mark@codesourcery.com>
1441         PR c++/19733
1442         * class.c (add_method): Don't set TYPE_HAS_DESTRUCTOR.
1443         (check_bases): Give warnings about a base class with a
1444         non-virtual destructor, even if it is implicit.
1445         (finish_struct_bits): Don't copy TYPE_HAS_DESTRUCTOR.
1446         (maybe_warn_about_overly_private_class): Don't use
1447         TYPE_HAS_DESTRUCTOR.
1448         (finish_struct_methods): Don't set TYPE_HAS_DESTRUCTOR.
1449         (check_for_override): Give it external linkage.
1450         (add_implicitly_declared_members): Generate destructors lazily.
1451         (check_field_decls): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR, not
1452         TYPE_HAS_DESTRUCTOR.
1453         (check_bases_and_members): Call check_methods before
1454         check_field_decls.
1455         (check_bases_and_members): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR, not
1456         TYPE_HAS_DESTRUCTOR.
1457         (finish_struct_1): Do not use TYPE_HAS_DESTRUCTOR.
1458         * cp-tree.def (PSEUDO_DTOR_EXPR): Document.
1459         * cp-tree.h (TYPE_HAS_DESTRUCTOR): Remove.
1460         (lang_type_class): Add lazy_destructor.
1461         (CLASSTYPE_LAZY_DESTRUCTOR): New macro.
1462         (CLASSTYPE_DESTRUCTORS): Robustify.
1463         (TYPE_HAS_DESTRUCTOR): Remove.
1464         (check_for_override): Declare.
1465         (build_vbase_delete): Remove.
1466         * cvt.c (convert_to_void): Issue errors about pseudo-destructor
1467         expressions.
1468         * decl.c (cxx_maybe_build_cleanup): Remove dead code.
1469         * except.c (dtor_nothrow): Lazily create destructors if necessary.
1470         (build_throw): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
1471         * init.c (build_delete): Lazily create destructors, if necessary.
1472         (build_vbase_delete): Remove.
1473         * method.c (locate_dtor): Simplify.
1474         (implicitly_declare_fn): Add support for destructors.
1475         * parser.c (cp_parser_lookup_name): Lazily create destructors, if
1476         necessary.
1477         * pt.c (check_explicit_specialization): Don't use
1478         TYPE_HAS_DESTRUCTOR.
1479         (instantiate_class_template): Likewise.
1480         * ptree.c (cxx_print_type): Don't print TYPE_HAS_DESTRUCTOR.
1481         * rtti.c (emit_support_tinfos): Robustify.
1482         * search.c (lookup_fnfields_1): Lazily create destructors.
1483         * typeck.c (build_class_member_access_expr): Remove
1484         PSEUDO_DTOR_EXPR handling.
1485         (lookup_destructor): Likewise.
1487 2005-02-08  Kazu Hirata  <kazu@cs.umass.edu>
1489         * cxx-pretty-print.c, cxx-pretty-print.h, decl.h: Update
1490         copyright.
1492 2005-02-07  Mark Mitchell  <mark@codesourcery.com>
1494         * parser.c (cp_lexer_start_debugging): Avoid arithmetic operations
1495         on boolean variables.
1496         (cp_lexer_stop_debugging): Likewise.
1498 2005-02-03  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
1500         PR c++/17401
1501         * parser.c (cp_parser_pure_specifier): Emit a specific error
1502         message with an invalid pure specifier.
1503         * decl2.c (grok_function_init): Remove.
1504         (grokfield): An initializer for a method is a always a pure
1505         specifier.
1507 2005-02-02  Matt Austern  <austern@apple.com>
1509         PR c++/19628
1510         * cp-tree.h (builtin_valid_in_constant_expr_p): Declare.
1511         * parser.c (cp_parser_postfix_expression): Accept function call in
1512         constant expression if builtin_valid_in_constant_expr_p is true
1513         for that function.
1514         * pt.c (value_dependent_expression_p): Handle CALL_EXPRs properly.
1515         * semantics.c (finish_id_expression): Accept function call in constant
1516         expression if builtin_valid_in_constant_expr_p is true for that
1517         function.
1518         * tree.c (builtin_valid_in_constant_expr_p): New.
1520 2005-02-02  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1522         PR c++/17413
1523         * pt.c (check_instantiated_args): Improve error message.
1524         Fix logic when to print its second part.
1526 2005-02-02  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1528         * cp-tree.h (complete_type_or_else): Remove macro.
1529         (complete_type_or_diagnostic): Rename to complete_type_or_else
1530         and remove last argument.
1531         * typeck.c (complete_type_or_diagnostic): Rename to
1532         complete_type_or_else and remove last argument.
1534 2005-02-02  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1536         * cp-tree.h (commonparms): Remove prototype.
1537         (convert_arguments): Likewise.
1538         (PFN_FROM_PTRMEMFUNC): Remove.
1539         * typeck.c (commonparms): Make static.
1540         (convert_arguments): Add prototype. Make static.
1541         (PFN_FROM_PTRMEMFUNC): Replace by pfn_from_ptrmemfunc.
1543 2005-01-31  Mark Mitchell  <mark@codesourcery.com>
1545         * parser.c (cp_parser_primary_expression): Don't complain about
1546         floating-point literals in integral constant expressions when
1547         !pedantic.
1549 2005-02-01  Alexandre Oliva  <aoliva@redhat.com>
1551         * parser.c (cp_parser_template_id): Revert comment patch too.
1553         PR c++/18757
1554         PR c++/19366
1555         PR c++/19499
1556         * parser.c (cp_parser_template_id): Revert 2004-12-09's patch.
1557         Issue an error when creating the template id.
1558         * pt.c (fn_type_unification): Return early if the explicit
1559         template arg list is an error_mark_node.
1561 2005-01-31  Mark Mitchell  <mark@codesourcery.com>
1563         * decl.c (build_enumerator): Do not issue duplicate error messages
1564         about invalid enumeration constants.
1565         * parser.c (cp_parser_non_integral_constant_expression): Always
1566         set parser->non_integral_constant_expression_p.
1567         (cp_parser_primary_expression): Add cast_p parameter.  Issue
1568         errors about invalid uses of floating-point literals in
1569         cast-expressions.
1570         (cp_parser_postfix_expression): Add cast_p parameter.
1571         (cp_parser_open_square_expression): Pass it.
1572         (cp_parser_parenthesized_expression_list): Add cast_p parameter.
1573         (cp_parser_unary_expression): Likewise.
1574         (cp_parser_new_placement): Pass it.
1575         (cp_parser_direct_new_declarator): Likewise.
1576         (cp_parser_new_initializer): Likewise.
1577         (cp_parser_cast_expression): Add cast_p parameter.
1578         (cp_parser_binary_expression): Likewise.
1579         (cp_parser_question_colon_clause): Likewise.
1580         (cp_parser_assignment_expression): Likewise.
1581         (cp_parser_expression): Likewise.
1582         (cp_parser_constant_expression): If an integral constant
1583         expression is invalid, return error_mark_node.
1584         (cp_parser_expression_statement): Pass cast_p.
1585         (cp_parser_condition): Likewise.
1586         (cp_parser_iteration_statement): Likewise.
1587         (cp_parser_jump_statement): Likewise.
1588         (cp_parser_mem_initializer): Likewise.
1589         (cp_parser_template_argument): Likewise.
1590         (cp_parser_parameter_declaration): Likewise.
1591         (cp_parser_initializer): Likewise.
1592         (cp_parser_throw_expression): Likewise.
1593         (cp_parser_attribute_list): Likewise.
1594         (cp_parser_simple_cast_expression): Likewise.
1595         (cp_parser_functional_cast): Likewise.
1596         (cp_parser_late_parsing_default_args): Likewise.
1597         (cp_parser_sizeof_operand): Save/restore
1598         non_integral_constant_expression_p.
1600 2005-01-31  Mike Stump  <mrs@apple.com>
1602         * parser.c (cp_lexer_new_main): Get the first token, first, before
1603         doing anything.
1605 2005-01-31  Mark Mitchell  <mark@codesourcery.com>
1607         * decl.c (start_decl): Add missing parentheses.
1609 2005-01-30  Mark Mitchell  <mark@codesourcery.com>
1611         PR c++/19555
1612         * cp-tree.h (DECL_USE_TEMPLATE): Expand documentation.
1613         * decl.c (duplicate_decls): Do not discard
1614         DECL_IMPLICIT_INSTANTIATION when merging declarations.
1615         (start_decl): Do not SET_DECL_TEMPLATE_SPECIALIZATION for
1616         variables that do not have DECL_USE_TEMPLATE.
1618         PR c++/19395
1619         * decl.c (grokdeclarator): Refactor code so that qualified names
1620         are never allowed as the declarator in a typedef.
1622         PR c++/19367
1623         * name-lookup.c (do_nonmember_using_decl): Avoid overloading
1624         builtin declarations.
1626         PR c++/19457
1627         * call.c (convert_like_real): Inline call to
1628         dubious_conversion_warnings here.
1629         * cp-tree.h (dubious_conversion_warnings): Remove.
1630         * semantics.c (finish_unary_op_expr): Copy INTEGER_CSTs before
1631         setting TREE_NEGATED_INT.
1632         * typeck.c (dubious_conversion_warnings): Remove.
1634         PR c++/19349
1635         * name-lookup.c (pushdecl_namespace_level): Avoid accessing free'd
1636         memory.
1638 2005-01-28  Mark Mitchell  <mark@codesourcery.com>
1640         PR c++/19253
1641         * parser.c (cp_parser_diagnose_invalid_type_name): Commit to
1642         tentative parses.
1644         PR c++/19667
1645         * pt.c (redeclare_class_template): Robustify.
1647 2005-01-27  Steven Bosscher  <stevenb@suse.de>
1649         * decl.c (finish_case_label): Use SWITCH_STMT accessor macros
1650         instead of SWITCH_EXPR ones.
1651         * pt.c (tsubst_expr): Likewise.
1652         * semantics.c (begin_switch_stmt, finish_switch_cond,
1653         finish_switch_stmt): Likewise.
1655 2005-01-26  J"orn Rennecke <joern.rennecke@st.com>
1657         PR c++/18370
1658         * parser.c (cp_parser_initializer_clause): Initialize *non_constant_p.
1660 2005-01-25  Andrew Pinski  <pinskia@physics.uc.edu>
1662         * class.c (abort_fndecl_addr): New variable.
1663         (build_vtbl_initializer): If we have a pure virtual function
1664         share the abort function's address.
1665         Include gt-cp-class.h at the end.
1666         * config-lang.in (gtfiles): Add cp/class.c.
1668 2005-01-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1670         * cxx-pretty-print.c (pp_cxx_statement): Add prototype. Make static.
1671         (pp_cxx_function_definition): Make static.
1672         * cxx-pretty-print.h (pp_cxx_statement): Remove prototype.
1673         (pp_cxx_function_definition): Likewise.
1675 2005-01-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1677         * name-lookup.c (print_binding_level): Make static.
1678         (constructor_name_full): Make static inline.
1679         (current_decl_namespace): Make static.
1680         * name-lookup.h (constructor_name_full): Remove prototype.
1681         (print_binding_level): Likewise.
1682         (current_decl_namespace): Likewise.
1684 2005-01-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1686         * decl.h (debug_bindings_indentation): Remove.
1688 2005-01-23  Kazu Hirata  <kazu@cs.umass.edu>
1690         * typeck.c: Fix a comment typo.
1692 2005-01-21  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
1694         PR c++/19208
1695         * pt.c (fold_decl_constant_value): Always call fold_non_dependent_expr
1696         at least once.
1697         (tsubst): Use fold_decl_constant_value in place of a bare call to
1698         integral_constant_value.
1700 2005-01-20  Kazu Hirata  <kazu@cs.umass.edu>
1702         * typeck.c (more_qualified_p): Remove.
1703         * cp-tree.h: Remove the corresponding prototype.
1705 2005-01-19  Matt Austern  <austern@apple.com>
1707         * typeck.c (comptypes): Handle return code from objc_comptypes
1708         correctly.
1710 2005-01-19  Kazu Hirata  <kazu@cs.umass.edu>
1712         * cp-tree.h, name-lookup.h: Remove unused prototypes.
1714 2005-01-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1716         PR c++/19375
1717         * semantics.c (finish_id_expression): Disable access checking for
1718         already lookuped FIELD_DECL.
1720 2005-01-18  Kazu Hirata  <kazu@cs.umass.edu>
1722         * decl.c (delete_block): Remove.
1723         * cp-tree.h: Remove the corresponding prototype.
1725         * decl.c (vtable_decl_p, vtype_decl_p, walk_globals_data,
1726         walk_vtables_r, walk_vtables, walk_globals_r, walk_globals):
1727         Remove.
1728         * cp-tree.h: Remove the corresponding prototypes.
1730         * tree.c (count_functions, bound_pmf_p, cp_is_overload_p,
1731         cp_update_decl_after_saving, name_p): Remove.
1732         * cp-tree.h: Remove the corresponding prototypes.
1734 2005-01-18  Andrew Pinski  <pinskia@physics.uc.edu>
1736         PR c/19472
1737         * semantics.c (finish_asm_stmt): Strip nops off
1738         input memory operands.
1740 2005-01-18  Kazu Hirata  <kazu@cs.umass.edu>
1742         * Make-lang.in, call.c, cvt.c, init.c, rtti.c, tree.c,
1743         typeck2.c: Update copyright.
1745 2005-01-16  Kazu Hirata  <kazu@cs.umass.edu>
1747         * class.c (get_enclosing_class): Remove.
1748         * cp-tree.h: Remove the corresponding prototypes.
1750         * cvt.c (convert_lvalue): Remove.
1751         * cp-tree.h: Remove the corresponding prototype.
1753         * pt.c (tinst_for_decl): Remove.
1754         * cp-tree.h: Remove the corresponding prototypes.
1756         * tree.c (hash_chainon): Remove.
1757         * cp-tree.h: Remove the corresponding prototypes.
1759 2005-01-15  Jakub Jelinek  <jakub@redhat.com>
1761         PR c++/19263
1762         * typeck2.c (split_nonconstant_init_1) <case VECTOR_TYPE>: Put a copy
1763         of CONSTRUCTOR's node into MODIFY_EXPR, as the original is modified.
1765 2005-01-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1767         * Make-lang.in (cp-warn): Don't append $(WERROR).
1769 2005-01-10  Kazu Hirata  <kazu@cs.umass.edu>
1771         * cp-tree.h: Fix a comment typo.
1773 2005-01-07  Nathan Sidwell  <nathan@codesourcery.com>
1775         PR c++/19298
1776         * pt.c (tsubst_qualified_id): Call convert_from_reference.
1778 2005-01-06  Mark Mitchell  <mark@codesourcery.com>
1780         PR c++/19244
1781         * class.c (add_implicitly_declared_members): Remove dead code.
1782         * decl.c (grokfndecl): Add sfk parameter.  Use it do set
1783         DECL_CONSTRUCTOR_P.
1784         (grokdeclarator): Adjust calls to grokfndecl.
1785         * method.c (implicitly_declare_fn): Improve documentation.
1786         * parser.c (cp_parser_direct_declarator): Do not consider a
1787         function to be a constructor if the containing class was
1788         originally anonymous.
1790 2005-01-06  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1792         PR c++/17154
1793         * search.c (lookup_field_1): Handle using declaration in
1794         class template partial specialization.
1796 2005-01-06  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1798         PR c++/19258
1799         * pt.c (push_access_scope): Handle friend defined in class.
1800         (pop_access_scope): Likewise.
1802 2005-01-06  Nathan Sidwell  <nathan@codesourcery.com>
1804         PR c++/19270
1805         * pt.c (tsubst_copy) <ARRAY_REF case>: Handle separately.
1806         (tsubst_copy_and_build) <ARRAY_REF case>: Remove obsolete
1807         array-new handling code.  Use build_x_binary_op.
1809 2005-01-05  Nathan Sidwell  <nathan@codesourcery.com>
1811         PR c++/19030
1812         * cp-tree.h (start_decl): Take pointer to pushed scope, not bool.
1813         * name-lookup.h (push_scope): Return pushed scope, not flag.
1814         * name-lookup.c (push_scope): Return scope that should be popped,
1815         not a flag.
1816         * decl.c (start_decl): Adjust.
1817         (grokfndecl): Adjust scope push and pop.
1818         * decl2.c (check_classfn): Likewise.
1819         * parser.c (cp_parser_condition, cp_parser_conversion_function_id,
1820         cp_parser_init_declarator, cp_parser_direct_declarator,
1821         cp_parser_class_specifier, cp_parser_class_head,
1822         cp_parser_lookup_name,
1823         cp_parser_constructor_declarator_p): Likewise.
1824         * pt.c (instantiate_class_template,
1825         resolve_typename_type): Likewise.
1827 2005-01-03  Volker Reichelt  <reichelt@igpm.rwth-aaachen.de>
1829         PR c++/14136
1830         * parser.c (cp_parser_unqualified_id): Do not issue error message
1831         for typedef-name as destructor declarator when performing an
1832         uncommitted tentative parse.
1834 2005-01-01  Steven Bosscher  <stevenb@suse.de>
1836         PR middle-end/17544
1837         * decl.c (finish_function): Fix comment.  Annotate the compiler
1838         generated return with the current file name and line 0.