* ptree.c (cxx_print_identifier): Print a leading space if the
[official-gcc.git] / gcc / cp / ChangeLog
bloba9c8dd03e911313a105f87b1a56e48c3b6ba05b6
1 2005-07-25  Ian Lance Taylor  <ian@airs.com>
3         * ptree.c (cxx_print_identifier): Print a leading space if the
4         indent level is 0.
6 2005-07-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8         * call.c (convert_for_arg_passing): Check function pointers when
9         -Wmissing-format-attribute is activated.
10         * typeck.c (convert_for_assignment): Likewise.
12 2005-07-22  Manfred Hollstein  <mh@suse.com>
14         * parser.c (cp_parser_declaration): Fix unitialised warnings.
16 2005-07-21  Andrew Pinski  <pinskia@physics.uc.edu>
18         * class.c (build_base_path): Fix typo.
20 2005-07-21  Andrew Pinski  <pinskia@physics.uc.edu>
22         PR C++/22358
23         * class.c (build_base_path): Convert BINFO_OFFSET to the correct type.
25 2005-07-21  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
27         * call.c: Fix comment typo(s).
28         * cxx-pretty-print.h: Likewise.
29         * name-lookup.c: Likewise.
30         * parser.c: Likewise.
32 2005-07-20  Douglas Gregor <doug.gregor@gmail.com>
34         PR c++/2922
35         * semantics.c (perform_koenig_lookup): For dependent calls, just
36         return the set of functions we've found so far. Later, it will be
37         augmented by those found through argument-dependent lookup.
38         * name-lookup.c (lookup_arg_dependent): Implement DR 164 by removing 
39         the optimization that skips namespaces where the functions were
40         originally found.
42 2005-07-20  Giovanni Bajo  <giovannibajo@libero.it>
44         Make CONSTRUCTOR use VEC to store initializers.
45         * call.c (convert_default_arg): Update call to digest_init.
46         * class.c (dump_class_hierarchy, dump_array): Update to cope with
47         VEC in CONSTRUCTOR_ELTS.
48         * cp-tree.h (EMPTY_CONSTRUCTOR_P): Likewise.
49         (finish_compound_literal, digest_init): Update declaration.
50         * decl.c (struct reshape_iter): New data type.
51         (reshape_init_array): Rename to...
52         (reshape_init_array_1): Update to cope with VEC in CONSTRUCTOR_ELTS.
53         (reshape_init): Rewrite from scratch. Split parts into...
54         (reshape_init_array, reshape_init_vector, reshape_init_class,
55         reshape_init_r): New functions.
56         (check_initializer): Update call to reshape_init. Remove obsolete
57         code.
58         (initialize_artificial_var, cp_complete_array_type): Update to cope
59         with VEC in CONSTRUCTOR_ELTS.
60         * decl2.c (grokfield): Update calls to digest_init.
61         (mark_vtable_entries): Update to cope with VEC in CONSTRUCTOR_ELTS.
62         * error.c (dump_expr_init_vec): New function.
63         (dump_expr): Use dump_expr_init_vec.
64         * init.c (build_zero_init, build_vec_init): Update to cope with VEC
65         in CONSTRUCTOR_ELTS.
66         (expand_default_init): Update call to digest_init.
67         * parser.c  (cp_parser_postfix_expression): Use a VEC for the
68         initializers.
69         (cp_parser_initializer_list): Build a VEC of initializers.
70         * pt.c (tsubst_copy, tsubst_copy_and_build): Update to cope with VEC
71         in CONSTRUCTOR_ELTS.
72         * rtti.c (tinfo_base_init, generic_initializer, ptr_initializer,
73         ptm_initializer, class_initializer, get_pseudo_ti_init): Use
74         build_constructor_from_list instead of build_constructor.
75         * semantics.c (finish_compound_literal): Update call to digest_init.
76         * tree.c (stabilize_init): Update to cope with VEC in
77         CONSTRUCTOR_ELTS.
78         * typeck.c (build_ptrmemfunc1): Likewise.
79         * typeck2.c: (cxx_incomplete_type_error, split_nonconstant_init_1):
80         Likewise.
81         (store_init_value): Use build_constructor_from_list and update call
82         to digest_init.
83         (digest_init): Rewrite.
84         (process_init_constructor): Rewrite from scratch. Split into...
85         (process_init_constructor_array, picflag_from_initializer,
86         process_init_constructor_record, process_init_constructor_union):
87         New functions.
88         (PICFLAG_ERRONEOUS, PICFLAG_NOT_ALL_CONSTANT, PICFLAG_NOT_ALL_SIMPLE):
89         New macros.
90         (build_functional_cast): Use build_constructor_from_list instead of
91         build_constructor.
93 2005-07-18  Mark Mitchell  <mark@codesourcery.com>
95         PR c++/22263
96         * cp-tree.h (instantiate_decl): Change prototype.
97         * decl2.c (mark_used): Adjust accordingly.
98         * pt.c (do_decl_instantiation): Likewise.
99         (instantiate_class_member): Likewise.
100         (instantiate_decl): Rename undefined_ok as expl_inst_class_mem_p.
101         Clear DECL_INTERFACE_KNOWN for an explicitly instantiated template
102         that has no definition available.
103         (instantiate_pending_templates): Adjust call to instantiate_decl.
105 2005-07-17  Mark Mitchell  <mark@codesourcery.com>
107         PR c++/22139
108         * cp-tree.h (DECL_TEMPLATE_INFO): Improve documentation.
109         * decl.c (duplicate_decls): Re-register template specializations
110         for functions that have DECL_TEMLPLATE_INFO, even if they do not
111         have DECL_TEMPLATE_INSTANTIATION set.
113 2005-07-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
115         * call.c (diagnostic_fn_t): New.
116         (build_temp, convert_like_real): Use diagnostic_fn_t.
118 2005-07-15  Mark Mitchell  <mark@codesourcery.com>
120         PR c++/22204
121         * repo.c (repo_emit_p): Robustify.
123 2005-07-14  Daniel Berlin  <dberlin@dberlin.org>
125         Fix PR c++/22452
126         * tree.c (decl_linkage): Don't check DECL_COMDAT on CONST_DECL.
128 2005-07-15  Mark Mitchell  <mark@codesourcery.com>
130         PR c++/22132
131         * call.c (implicit_conversion): Add c_cast_p parameter.
132         (standard_conversion): Likewise.  Allow conversions between
133         differently-qualified pointer types when performing a C-style
134         cast.
135         (add_function_candidate): Adjust callee.
136         (build_builtin_candidate): Likewise.
137         (build_user_type_conversion_1): Likewise.
138         (conditional_conversion): Likewise.
139         (can_convert_arg): Likewise.
140         (can_convert_arg_bad): Likewise.
141         (perform_implicit_conversion): Likewise.
142         * cp-tree.h (comp_ptr_ttypes_const): Declare.
143         * typeck.c (comp_ptr_ttypes_const): Give it external linkage.
144         Return bool.
145         
146 2005-07-12  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
147             Nathan Sidwell  <nathan@codesourcery.com>
149         PR c++/20172
150         * pt.c (tsubst_template_parms): Check for invalid non-type
151         parameters.
153 2005-07-09  Andrew Pinski  <pinskia@physics.uc.edu>
155         * cp-lang.c (shadowed_var_for_decl, decl_shadowed_for_var_lookup,
156         decl_shadowed_for_var_insert): Move over to cp-objcp-common.c.
157         (cp_init_ts): Call init_shadowed_var_for_decl.
158         Remove include of gt-cp-cp-lang.h.
159         * cp-objcp-common.c (shadowed_var_for_decl,
160         decl_shadowed_for_var_lookup, decl_shadowed_for_var_insert): Moved from
161         cp-lang.c.
162         (init_shadowed_var_for_decl): New function to initialize
163         shadowed_var_for_decl.
164         Include gt-cp-cp-objcp-common.h.
165         * Make-lang.in (gt-cp-lang.h): Remove.
166         (gt-cp-cp-objcp-common.h): Add.
167         (cp/cp-lang.o): Remove dependancy on gt-cp-lang.h.
168         (cp/cp-objcp-common.o): Add dependancy on gt-cp-cp-objcp-common.h.
169         * config-lang.in (gtfiles): Remove cp-lang.c and Add cp-objcp-common.c.
170         * cp-tree (init_shadowed_var_for_decl): Add prototype.
172 2005-07-08  Daniel Berlin  <dberlin@dberlin.org>
173         
174         * Make-lang.in: Add gt-cp-lang.h.
175         (cp-lang.o): Ditto.     
176         * class.c (create_vtable_ptr): Stop setting DECL_ASSEMBLER_NAME on
177         the field.
178         * config-lang.in: Add cp-lang.c to gtfiles.
179         * cp-lang.c: Include hashtab.h.
180         (cp_init_ts): New function.
181         (LANG_HOOK_INIT_TS): Use macro.
182         (decl_shadowed_for_var_lookup): New function.
183         (decl_shadowed_for_var_insert): Ditto.
184         * cp-tree.h (THUNK_FUNCTION_CHECK): Use decl_common.
185         (NON_THUNK_FUNCTION_CHECK): Ditto.
186         (DECL_NAMESPACE_ASSOCIATIONS): Use decl_non_common.
187         (DECL_INIT_PRIORITY): Ditto.
188         (DECL_HAS_SHADOWED_FOR_VAR_P): Ditto.
189         (DECL_SHADOWED_FOR_VAR): Use hashtable.
190         (SET_DECL_SHADOWED_FOR_VAR): Ditto.
191         * decl.c (duplicate_decls): Update for new/updated structures.
192         (poplevel): Use SET_DECL_SHADOWED_FOR_VAR.
193         * decl2.c (start_static_initialization_or_destruction): Deal with
194         priority. 
195         * pt.c (tsubst_decl): Check TS_DECL_WRTL before doing
196         SET_DECL_RTL.
197         * tree.c (handle_init_priority_attribute): Handle priority.
199 2005-07-08  Nathan Sidwell  <nathan@codesourcery.com>
201         PR c++/21799
202         * pt.c (type_unification_real): Add is_method argument.  Use it
203         for this pointer unification.
204         (fn_type_unification): Adjust type_unification_real call.
205         (unify): Likewise.
207 2005-07-07  Nathan Sidwell  <nathan@codesourcery.com>
209         * pt.c (type_unification_real): Remove allow_incomplete argument.
210         Remove unreachable code.
211         (fn_type_unification): Adjust call to type_unification_real.
212         (unify): Likewise.
214 2005-07-05  Paolo Bonzini  <bonzini@gnu.org>
216         * Makefile.in (class.o, decl2.o): Adjust dependencies.
217         * class.c: Include tree-dump.h.
218         * decl2.c: Include tree-dump.h.
219         
220 2005-07-02  Gabriel Dos Reis  <gdr@integrable-solutions.net>
222         * dump.c: Use dump_string_field.
224 2005-07-03  Joseph S. Myers  <joseph@codesourcery.com>
226         * cp-tree.h (GCC_DIAG_STYLE): #undef before defining.  Change
227         minimum GCC version for format checking to 4.1.
229 2005-07-02  Kazu Hirata  <kazu@codesourcery.com>
231         * Make-lang.in (cc1plus-checksum.c): Use
232         build/genchecksum$(build_exeext), not build/genchecksum$(exeext).
234 2005-07-02  Joseph S. Myers  <joseph@codesourcery.com>
236         * name-lookup.c, parser.c: Use %q, %< and %> to quote in
237         diagnostics.
239 2005-07-02  Zack Weinberg  <zack@codesourcery.com>
240             Joseph S. Myers  <joseph@codesourcery.com>
242         * error.c (location_of): Add comment.
243         (locate_error, cp_error_at, cp_warning_at, cp_pedwarn_at): Remove.
244         * cp-tree.h (cp_error_at, cp_warning_at, cp_pedwarn_at): Remove.
245         * call.c, class.c, decl.c, decl2.c, friend.c, init.c,
246         name-lookup.c, parser.c, pt.c, search.c, semantics.c, typeck.c,
247         typeck2.c: Use '+' flag instead of %J, cp_error_at, cp_warning_at
248         or cp_pedwarn_at.  Mark up some diagnostic strings with N_.
250 2005-06-30  Daniel Berlin  <dberlin@dberlin.org> 
251         
252         * decl.c (require_complete_types_for_parms): Call relayout_decl
253         instead of layout_decl.
255 2005-06-30  Zack Weinberg  <zack@codesourcery.com>
256             Jakub Jelinek  <jakub@redhat.com>
258         * cp-lang.c: No need to include cxx-pretty-print.h.
259         * error.c (cp_printer): Update signature.  No need to process
260         flags.
261         (print_instantiation_partial_context): Output last newline
262         with pp_base_newline.
263         * Make-lang.in: Update dependencies.
265 2005-06-30  Steven Bosscher  <stevenb@suse.de>
267         * decl.c (start_decl): Replace DECL_THREAD_LOCAL with
268         DECL_THREAD_LOCAL_P.
269         (cp_finish_decl): Likewise.
270         (grokvardecl): Set the default DECL_TLS_MODEL here.
272 2005-06-28  Joseph S. Myers  <joseph@codesourcery.com>
274         * cvt.c (ocp_convert): Use invalid_conversion hook.
275         * typeck.c (build_binary_op): Use invalid_binary_op hook.
276         (build_unary_op): Use invalid_unary_op hook.
278 2005-06-28  Paul Brook  <paul@codesourcery.com>
280         * Make-lang.in (cp/except.o): Depend on $(TARGET_H)
281         * except.c: Include target.h.
282         (init_exception_processing): Initialize unwind_resume_libfunc.
283         * doc/tm.texi: Document TARGET_ASM_TTYPE
285 2005-06-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
287         * call.c (build_over_call): Pass in named argument list to
288         `check_function_arguments'.
289         * typeck.c (build_function_call): Likewise.
291 2005-06-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
293         * cp-tree.h (lang_check_failed): Add noreturn attribute.
295 2005-06-25  Kelley Cook  <kcook@gcc.gnu.org>
297         * all files: Update FSF address in copyright headers.
299 2005-06-23  Jason Merrill  <jason@redhat.com>
301         PR c++/19317
302         * semantics.c (simplify_aggr_init_expr): Use
303         CALL_EXPR_RETURN_SLOT_OPT, not CALL_EXPR_HAS_RETURN_SLOT_ADDR.
305 2005-06-23  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
307         * pt.c (register_specialization): Remove superfluous assertion.
309 2005-06-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
311         * call.c (convert_like_real): Add format attribute.
312         * typeck.c (check_for_casting_away_constness,
313         build_static_cast_1): Likewise.
314         * typeck2.c (readonly_error, cxx_incomplete_type_diagnostic):
315         Likewise.
317 2005-06-17  Geoffrey Keating  <geoffk@apple.com>
319         PR c++/17413
320         * pt.c (type_unification_real): Apply template type deduction even
321         to procedure parameters that are not dependent on a template
322         parameter.
324 2005-06-16  Nathan Sidwell  <nathan@codesourcery.com>
326         * rtti.c (get_tinfo_decl): Avoid caching tinfo_descs when it might
327         change.
328         (create_pseudo_type_info): First parameter is an int.
330 2005-06-15  Nathan Sidwell  <nathan@codesourcery.com>
332         PR c++/20678
333         * error.c (dump_expr) <COMPONENT_REF case>: Check DECL_NAME is not
334         null.
336         * Make-lang.in: Reformat some long lines.
337         (gt-cp-rtti.h): New target.
338         (cp/rtti.o): Add dependency.
339         * config-lang.in (gtfiles): Add cp/rtti.c.
340         * cp-tree.h (CPTI_TI_DESC_TYPE, CPTI_BLTN_DESC_TYPE,
341         CPTI_PTR_DESC_TYPE, CPTI_ARY_DESC_TYPE, CPTI_FUNC_DESC_TYPE,
342         CPTI_ENUM_DESC_TYPE, CPTI_CLASS_DESC_TYPE,
343         CPTI_SI_CLASS_DESC_TYPE, CPTI_VMI_CLASS_DESC_TYPE,
344         CPTI_PTM_DESC_TYPE, CPTI_BASE_DESC_TYPE): Remove.
345         (ti_desc_type_node, bltn_desc_type_node, ptr_desc_type_node,
346         ary_desc_type_node, func_desc_type_node, enum_desc_type_node,
347         class_desc_type_node, si_class_desc_type_node,
348         vmi_class_desc_type_node, ptm_desc_type_node,
349         base_desc_type_node): Remove.
350         * decl.c: Adjust documentation of global trees.
351         * rtti.c (TINFO_PSEUDO_TYPE, TINFO_VTABLE_DECL,
352         TINFO_REAL_NAME): Remove.
353         (struct tinfo_s): New.
354         (enum tinfo_kind): New.
355         (tinfo_descs): New.
356         (get_tinfo_decl): Adjust use of tinfo descriptor.
357         (tinfo_base_init, generic_initializer, ptr_initializer,
358         ptm_initializer, class_initializer): Likewise.
359         (get_pseudo_ti_init): Take descriptor index. Adjust.
360         (create_pseudo_type_info): Likewise.
361         (get_pseudo_ti_desc): Return descriptor index. Adjust.
362         (create_tinfo_types): Adjust use of create_pseudo_type_info.
363         (emit_tinfo_decl): Adjust use of tinfo descriptor.
365 2005-06-14  Roger Sayle  <roger@eyesopen.com>
367         * decl.c (grokdeclarator): Only check TREE_OVERFLOW on INTEGER_CST.
369 2005-06-13  Geoffrey Keating  <geoffk@apple.com>
371         * Make-lang.in (c++.install-man): Doesn't really depend on installdirs.
372         (rule for installing g++.1 manpage): Does depend on installdirs.
374 2005-06-13  Nathan Sidwell  <nathan@codesourcery.com>
376         PR c++/20789
377         * decl.c (cp_finish_decl): Clear runtime runtime initialization if
378         in-class decl's initializer is bad.
380         PR c++/21929
381         * parser.c (struct cp_parser): Document that scope could be
382         error_mark.
383         (cp_parser_diagnose_invalid_type_name): Cope with error_mark for
384         scope.
385         (cp_parser_nested_name_specifier): Return NULL_TREE on error.
386         (cp_parser_postfix_expression): Deal with null or error_mark
387         scope.
388         (cp_parser_elaborated_type_specifier): Adjust
389         cp_parser_nested_name_specifier call.
391         * parser (cp_parser_skip_to_end_of_block_or_statement): Cleanup.
393 2005-06-12  Roger Sayle  <roger@eyesopen.com>
395         PR c++/21930
396         * error.c (dump_expr): UNARY_PLUS_EXPR need not handle void types.
397         Treat CONVERT_EXPR identically to NOP_EXPR.
399 2005-06-10  Aldy Hernandez  <aldyh@redhat.com>
401         PR c++/10611
402         * cvt.c (build_expr_type_conversion): Same.
403         * typeck.c (build_binary_op): Handle vectors.
404         (common_type): Same.
405         (type_after_usual_arithmetic_conversions): Same.
406         * testsuite/g++.dg/conversion/simd2.C: New.
408 2005-06-08  Nathan Sidwell  <nathan@codesourcery.com>
410         PR c++/19497
411         * cp-tree.def (USING_DECL): Update documentation.
412         * cp-tree.h (DECL_DEPENDENT_P): New.
413         (USING_DECL_DECLS, USING_DECL_SCOPE): New.
414         * class.c (handle_using_decl): Move most of the processing to ...
415         * name-lookup.c (do_class_using_decl): ... here.  Make stricter.
416         (push_using_decl): Use USING_DECL_SCOPE.
417         (cp_emit_debug_info_for_using): Make extern.
418         * cxx-pretty-print.c (pp_cxx_statement) <USING_DECL case>: Adjust.
419         * name-lookup.h (cp_emit_debug_info_for_using): Declare.
420         * pt.c (tsubst_decl) <USING_DECL case>: Use do_class_using_decl
421         when tsubsting.
422         (tsubst_expr): Use USING_DECL_SCOPE.
423         * search.c (lookup_field_1): Use DECL_DEPENDENT_P.
424         * semantics.c (finish_member_declaration): Likewise.
426 2005-06-08  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
428         PR c++/19894
429         * pt.c (tsubst): Reject pointer-to-member of type void.
431         PR c++/20563
432         * parser.c (cp_parser_label_declaration): Deal with invalid/missing
433         identifiers.
435 2005-06-07  Nathan Sidwell  <nathan@codesourcery.com>
437         * cp-tree.def (DEFAULT_ARG): Adjust documentation.
438         * cp-tree.h (DEFARG_INSTANTIATIONS): New.
439         (struct tree_default_arg): Add instantiations member.
440         * parser.c (cp_parser_late_parsing_default_args): Adjust to use a
441         VEC.
442         * pt.c (tsubst_arg_types): Likewise.
444         * parser.c (cp_parser_late_parsing_default_args): Fix overeager
445         assert in previous patch.
447 2005-06-06  Jakub Jelinek  <jakub@redhat.com>
449         * error.c (locate_error): Use gmsgid instead of msgid for argument
450         name.
451         (cp_error_at, cp_warning_at, cp_pedwarn_at): Likewise.
453 2005-06-06  Nathan Sidwell  <nathan@codesourcery.com>
455         PR 21903
456         * cp-tree.def (DEFAULT_ARG): Document TREE_CHAIN use.
457         * parser.c (cp_parser_late_parsing_default_args): Propagate parsed
458         argument to any early instantiations.
459         * pt.c (tsubst_arg_types): Chain early instantiation of default arg.
461         PR c++/20637
462         * cp-tree.h (add_method): Add using_decl parameter.
463         * class.c (add_method): Add using_decl parameter.  Adjust error
464         messages.
465         (handle_using_decl): Pass the using decl to add_method.
466         (clone_function_decl): Adjust add_member calls.
467         * decl2.c (check_classfn): Likewise.
468         * method.c (lazily_declare_fn): Likewise.
469         * semantics.c (finish_member_declaration): Likewise.
471         * method.c (synthesize_method): Use inform, not warning.
473 2005-06-06  Hans-Peter Nilsson  <hp@axis.se>
475         * config-lang.in (target_libs): Remove target-gperf.
477 2005-06-05  Mark Mitchell  <mark@codesourcery.com>
479         PR c++/21619
480         * cp-tree.h (DECL_IS_BUILTIN_CONSTANT_P): New macro.
481         * parser.c (cp_parser_postfix_expression): Allow non-constant
482         expressions as arguments to __builtin_constant_p.
483         * tree.c (builtin_valid_in_constant_expr_p): Use
484         DECL_IS_BUILTIN_CONSTANT_P.
486 2005-06-03  Mark Mitchell  <mark@codesourcery.com>
488         PR c++/21853
489         * typeck.c (casts_away_constness_r): Do not drop cv-qualifiers on
490         the pointed-to type for a pointer-to-member.
492         PR c++/21336
493         * cp-tree.h (grok_op_properties): Remove friendp parameter.
494         * decl.c (grokfndecl): Adjust call.
495         (grok_op_properties): Determine the class of which the function is
496         a member by looking at its DECL_CONTEXT, not current_class_type.
497         * pt.c (tsubst_decl): Adjust call to grok_op_properties.
499 2005-06-02  Nathan Sidwell  <nathan@codesourcery.com>
501         * method.c (synthesize_method): Add addtional arg to warning call.
503         PR c++/21280
504         * Make-lang.in (method.o): Add diagnostic.h
505         * decl.c (start_preparsed_function): Use decl's location for file
506         info.
507         * decl2.c (cp_finish_file): Set input_location before synthesizing
508         a function.
509         (mark_used): When deferring a synthesized function, save current
510         location.  Do not set function's location when actually
511         synthesizing it.
512         * method.c: #include diagnostic.h.
513         (synthesize_method): Set the functions source location.  Show
514         needed location if errors are emitted.
516         * decl.c (start_decl): Simplify specialization handling. Remove
517         unneeded CLASSTYPE_TEMPLATE_INSTANTIATION check.
518         * mangle.c (discriminator_for_local_entity): Use VEC_index.
520         PR c++/20350
521         * decl.c (duplicate_decls): Copy all of DECL_USE_TEMPLATE.
523         PR c++/21151
524         * name-lookup.c (pushtag): Push local class even in a template.
526 2005-05-31  Nathan Sidwell  <nathan@codesourcery.com>
528         PR c++/21165
529         * init.c (integral_constant_value): Check the type of the
530         initializer, not the decl.
532 2005-05-30  Mark Mitchell  <mark@codesourcery.com>
534         PR c++/21784
535         * name-lookup.c (do_nonmember_using_decl): Ignore builtin
536         functions, even when the used name is not a function.
538 2005-05-30  Kazu Hirata  <kazu@cs.umass.edu>
540         * operators.def, optimize.c: Update copyright.
542 2005-05-28  Mark Mitchell  <mark@codesourcery.com>
544         PR c++/21210
545         * call.c (standard_conversion): Permit conversions to complex
546         types if conversion to the corresponding scalar type would be
547         permitted.
549         PR c++/21340
550         * method.c (implicitly_declare_fn): Clear processing_template_decl
551         when generating implicit declaration.
553 2005-05-27  Mark Mitchell  <mark@codesourcery.com>
555         PR c++/21614
556         * typeck.c (get_member_function_from_ptrfunc): Do not attempt
557         conversions to base classes of incomplete types.
559 2005-05-27  Ian Lance Taylor  <ian@airs.com>
561         * semantics.c (add_stmt): Add C++ frontend specific version.
562         * cp-tree.h (STMT_IS_FULL_EXPR_P): Define.
563         (stmts_are_full_exprs_p): Declare.
565 2005-05-27  Roger Sayle  <roger@eyesopen.com>
566             Giovanni Bajo  <giovannibajo@gcc.gnu.org>
568         * cp-tree.def (UNARY_PLUS_EXPR): New C++ unary tree code.
569         * parser.c (cp_parser_unary_expression): Use UNARY_PLUS_EXPR instead
570         of CONVERT_EXPR.
571         (cp_parser_unary_expression): Likewise.
572         * typeck.c (build_unary_op): Likewise.
573         * call.c (add_builtin_candidate, build_new_op): Likewise.
574         * error.c (dump_expr): Likewise.
575         * pt.c (tsubst_copy, tsubst_copy_and_build): Likewise.
576         * decl.c (ambi_op_p, grok_op_properties): Likewise.
577         * dump.c (dump_op): Likewise.
578         * lex.c (init_operators): Likewise.
579         * operators.def ("+"): Likewise.
580         * cp-gimplify.c (cp_gimplify_expr): Handle UNARY_PLUS_EXPR like a
581         conversion, if the result and argument types differ.
582         * tree.c (fold_if_not_in_template): Fold UNARY_PLUS_EXPR much
583         like a NOP_EXPR when !processing_template_decl.
585         * cxx-pretty-print.c (pp_cxx_cast_expression): Prototype.
586         (pp_cxx_unary_expression): Handle new UNARY_PLUS_EXPR tree code.
588 2005-05-27  Nathan Sidwell  <nathan@codesourcery.com>
590         PR c++/21455
591         * typeck.c (get_delta_difference): Cope with incomplete but equal
592         classes.  Reorder if.
594         PR c++/21681
595         * parser.c (cp_parser_late_parsing_for_member): Disable access
596         checking for template functions.
598 2005-05-26  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
600         PR c++/21768
601         * pt.c (redeclare_class_template): Change error message according
602         to coding conventions.
604 2005-05-26  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
606         * call.c (build_op_delete_call): Fix quoting in error message.
608 2005-05-25  Richard Henderson  <rth@redhat.com>
610         PR libgcj/21692
611         * cp-tree.h (make_alias_for): Declare.
612         * decl2.c (build_java_method_aliases): New.
613         (cp_finish_file): Call it.
614         * method.c (make_alias_for): Split out from ...
615         (make_alias_for_thunk): ... here.
617 2005-05-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
619         PR c++/21686
620         * semantics.c (finish_id_expression): Fix quoting in error message.
622 2005-05-25  DJ Delorie  <dj@redhat.com>
624         * decl.c (duplicate_decls): Move warning control from if() to
625         warning(OPT_*).
626         * name-lookup.c (parse_using_directive): Likewise.
627         * parser.c (cp_parser_elaborated_type_specifier): Likewise.
628         (cp_parser_init_declarator): Likewise.
629         * tree.c (handle_com_interface_attribute): Likewise.
631 2005-05-24  Ziemowit Laski  <zlaski@apple.com>
633         * class.c (layout_class_type): Do not issue C++ ABI warnings
634         for ObjC structs.
635         * decl.c (objc_mark_locals_volatile): Streamline by calling
636         objc_volatilize_decl().
637         * parser.c (cp_parser_objc_message_expression): Allow simple
638         type specifiers (instead of merely type names) as message
639         receivers.
640         * pt.c (template_args_equal): Do not call objc_comptypes().
641         * typeck.c (composite_pointer_type): If both pointers are
642         ObjC-esque, arbitrarily choose the first; do not call
643         objc_comptypes().
644         (comptypes): Do not call objc_comptypes().
645         (convert_for_assignment): Call objc_compare_types().
646         (comp_ptr_ttypes_real): Call objc_type_quals_match() before
647         concluding that types do not match.
649 2005-05-24  Andrew Pinski  <pinskia@physics.uc.edu>
651         PR C++/21645
652         * optimize.c (update_cloned_parm): Copy the TYPE also from the
653         original one.
655 2005-05-19  Jakub Jelinek  <jakub@redhat.com>
657         PR c++/21495
658         * decl.c (grokdeclarator): Fix "storage class specified for"
659         error reporting.
661 2005-05-19  Kazu Hirata  <kazu@cs.umass.edu>
663         * parser.c: Fix comment typos.
665 2005-05-18  Geoffrey Keating  <geoffk@apple.com>
667         * Make-lang.in (cc1plus-dummy): New.
668         (cc1plus-checksum.c): New.
669         (cc1plus-checksum.o): New.
670         (cc1plus): Add cc1plus-checksum.o.
672 2005-05-17  H.J. Lu  <hongjiu.lu@intel.com>
674         PR C++/19664
675         * decl2.c (determine_visibility): Don't set visibility to
676         hidden if it has been set explicitly by user.
678 2005-05-17  Ziemowit Laski  <zlaski@apple.com>
679             Mike Stump  <mrs@apple.com>
681         Yet more Objective-C++...
683         * cp-objcp-common.h (cxx_get_alias_set): Move from
684         here...
685         (cxx_warn_unused_global_decl): Likewise.
686         (cp_expr_size): Likewise.
687         (cp_tree_size): Likewise.
688         (cp_var_mod_type_p): Likewise.
689         (cxx_initialize_diagnostics): Likewise.
690         (cxx_types_compatible_p): Likewise.
691         * cp-tree.h: to here.
692         (do_poplevel): Add.
693         * lex.c (D_OBJC): Add.
694         (init_reswords): Add.
695         * Make-lang.in (cp/pt.o): Add cp/cp-objcp-common.h.
696         * parser.c: Add c-common.h include.
697         * pt.c: Add c-common.h and cp-objcp-common.h includes.
698         (template_args_equal): Use objc_comptypes as well.
699         (tsubst_copy_and_build): Use objcp_tsubst_copy_and_build as well.
700         * semantics.c (do_poplevel): Remove static.
702         * decl.c (objc_mark_locals_volatile): Don't change decls that are
703         already ok.
704         * decl2.c (generate_ctor_or_dtor_function): Add code to initialize
705         Objective C++ early enough.
706         * lex.c (struct resword reswords): Add Objective-C++ support.
707         * parser.c (cp_lexer_get_preprocessor_token): Add Objective-C++.
708         (cp_parser_objc_message_receiver): Add.
709         (cp_parser_objc_message_args): Likewise.
710         (cp_parser_objc_message_expression): Likewise.
711         (cp_parser_objc_encode_expression): Likewise.
712         (cp_parser_objc_defs_expression): Likewise.
713         (cp_parser_objc_protocol_expression): Likewise.
714         (cp_parser_objc_selector_expression): Likewise.
715         (cp_parser_objc_expression): Likewise.
716         (cp_parser_objc_visibility_spec): Likewise.
717         (cp_parser_objc_method_type): Likewise.
718         (cp_parser_objc_protocol_qualifiers): Likewise.
719         (cp_parser_objc_typename): Likewise.
720         (cp_parser_objc_selector_p): Likewise.
721         (cp_parser_objc_selector): Likewise.
722         (cp_parser_objc_method_keyword_params): Likewise.
723         (cp_parser_objc_method_tail_params_opt): Likewise.
724         (cp_parser_objc_interstitial_code): Likewise.
725         (cp_parser_objc_method_signature): Likewise.
726         (cp_parser_objc_method_prototype_list): Likewise.
727         (cp_parser_objc_method_definition_list): Likewise.
728         (cp_parser_objc_class_ivars): Likewise.
729         (cp_parser_objc_identifier_list): Likewise.
730         (cp_parser_objc_alias_declaration): Likewise.
731         (cp_parser_objc_class_declaration): Likewise.
732         (cp_parser_objc_protocol_declaration): Likewise.
733         (cp_parser_objc_protocol_refs_opt): Likewise.
734         (cp_parser_objc_superclass_or_category): Likewise.
735         (cp_parser_objc_class_interface): Likewise.
736         (cp_parser_objc_class_implementation): Likewise.
737         (cp_parser_objc_end_implementation): Likewise.
738         (cp_parser_objc_declaration): Likewise.
739         (cp_parser_objc_try_catch_finally_statement): Likewise.
740         (cp_parser_objc_synchronized_statement): Likewise.
741         (cp_parser_objc_throw_statement): Likewise.
742         (cp_parser_objc_statement): Likewise.
743         (cp_parser_primary_expression): Add Objective-C++.
744         (cp_parser_statement): Likewise.
745         (cp_parser_declaration): Likewise.
746         (cp_parser_simple_type_specifier): Likewise.
747         (cp_parser_type_name): Likewise.
748         (cp_parser_parameter_declaration_list): Likewise.
749         (cp_parser_member_declaration) Likewise.
750         * tree.c: Include debug.h.
751         * typeck.c (composite_pointer_type): Add Objective-C++ support.
752         (finish_class_member_access_expr): Likewise.
753         (build_function_call): Allow objc to rewrite FUNCTION_DECLs.
754         (build_modify_expr): Allow objc to generate write barriers.
756         * Make-lang.in (cp/tree.o): Add debug.h.
757         * tree.c (lvalue_p_1, case CONST_DECL): Add.
759 2005-05-18  Jan Hubicka  <jh@suse.cz>
761         * method.c: Include tree-pass.h
762         (use_thunk): Lower body before expanding.
764 2005-05-17  Jakub Jelinek  <jakub@redhat.com>
766         PR c++/21454
767         * decl.c (maybe_deduce_size_from_array_init): Call
768         cp_apply_type_quals_to_decl after completing array type.
770 2005-05-16  Richard Henderson  <rth@redhat.com>
772         * decl.c (build_library_fn_1): Move setting TREE_NOTHROW ...
773         (build_library_fn): ... here.
775 2005-05-12  Ian Lance Taylor  <ian@airs.com>
777         * cp-tree.h (cp_stmt_codes): Don't define.
778         (statement_code_p): Declare.
779         (STATEMENT_CODE_P): Define.
780         * lex.c (statement_code_p): Define.
781         (cxx_init): Use actual codes in stmt_codes initializer, not
782         cp_stmt_codes macro.  Initialize statement_code_p directly, rather
783         than using INIT_STATEMENT_CODES.
785 2005-05-09  Mark Mitchell  <mark@codesourcery.com>
787         * typeck.c (build_unary_op): Do not resort to address arithmetic
788         when taking the address of a COMPONENT_REF.
790 2005-05-08  Kazu Hirata  <kazu@cs.umass.edu>
792         * class.c (vtbl_init_data_s): Change the type of fns to
793         VEC(tree,gc)*.
794         (build_vtbl_initializer, add_vcall_offset, add_vcall_offset):
795         Use VEC instead of VARRAY.
797 2005-05-07  Richard Sandiford  <rsandifo@redhat.com>
799         * mangle.c: Remove a reference to the MIPS -mint64 option.
801 2005-05-07  Kazu Hirata  <kazu@cs.umass.edu>
803         * decl.c (wrapup_globals_for_namespace): Use VEC instead of
804         VARRAY.
805         * name-lookup.c (add_decl_to_level, begin_scope): Likewise.
806         * name-lookup.h (cp_binding_level): Change the type of
807         static_decls to VEC(tree,gc)*.
809         * mangle.c (globals): Change the type of substitutions to
810         VEC(tree,gc)*.
811         (dump_substitution_candidates, add_substitution,
812         find_substitution, finish_mangling, init_mangle): Use VEC
813         instead of VARRAY.
815 2005-05-06  Kazu Hirata  <kazu@cs.umass.edu>
817         * decl2.c (spew_debug): Remove.
819         * decl2.c (ssdf_decls, start_static_storage_duration_function,
820         generate_ctor_or_dtor_function): Use VEC instead of VARRAY.
822         * decl2.c (pending_statics, note_vague_linkage_var,
823         cp_finish_file): Use VEC instead of VARRAY.
824         (pending_statics_used): Remove.
826 2005-05-05  Kazu Hirata  <kazu@cs.umass.edu>
828         * decl2.c (deferred_fns, note_vague_linkage_fn,
829         cp_finish_file): Use VEC instead of VARRAY.
831 2005-05-05  Mark Mitchell  <mark@codesourcery.com>
833         PR c++/21352
834         * pt.c (build_non_dependent_expr): Use is_overloaded_fn.
836 2005-05-05  Kazu Hirata  <kazu@cs.umass.edu>
838         * pt.c: Fix a comment typo.
840 2005-05-04  Kazu Hirata  <kazu@cs.umass.edu>
842         * cp-tree.h (language_function): Change the type of
843         x_local_names to VEC.
844         * decl.c (push_local_name): Adjust uses of local_names.
846 2005-05-03  Kazu Hirata  <kazu@cs.umass.edu>
848         * friend.c, lex.c, mangle.c, repo.c: Update copyright.
850 2005-05-02  Kazu Hirata  <kazu@cs.umass.edu>
852         * class.c (local_classes, init_class_processing): Use VEC
853         instead of VARRAY.
854         * cp-tree.h (local_classes): Likewise.
855         * mangle.c (discriminator_for_local_entity): Likewise.
856         * name-lookup.c (pushtag): Likewise.
858         * class.c (current_lang_depth, push_lang_context,
859         pop_lang_context): Use VEC instead of VARRAY.
860         * cp-tree.h (saved_scope): Use VEC for lang_base instead of
861         VARRAY.
862         * name-lookup.c (push_to_top_level): Use VEC instead of
863         VARRAY.
865 2005-05-02  Paolo Bonzini  <bonzini@gnu.org>
867         * semantics.c (finish_call_expr): Call resolve_overloaded_builtin
868         for BUILT_IN_MD built-ins.
870 2005-05-02  Michael Matz  <matz@suse.de>
872         PR c++/19542
873         * cp-tree.h (cp_tree_index): Remove CPTI_NULL, to be defined in C
874         common frontend.
875         (null_node): Remove.
876         * lex.c (cxx_init): Move null_node initialisation to C common frontend.
878 2005-04-25  Ian Lance Taylor  <ian@airs.com>
880         * cp-tree.def: Add EXPR_STMT.
881         * cp-tree.h (cp_stmt_codes): Add EXPR_STMT.
882         (EXPR_STMT_EXPR): Define.
883         * cp-gimplify.c: Include "flags.h".
884         (gimplify_expr_stmt): New static function.
885         (cp_gimplify_expr): Handle EXPR_STMT.
886         * cxx-pretty-print.c (pp_cxx_statement): Use pp_cxx_expression
887         rather than pp_expression.
888         (pp_cxx_statement): Handle EXPR_STMT.
889         * dump.c (cp_dump_tree): Handle EXPR_STMT.
890         * lex.c (cxx_init): Don't use c_common_stmt_codes in stmt_codes
891         initializer.
893 2005-04-25  Andrew Pinski  <pinskia@physics.uc.edu>
895         PR C++/21188
896         * rtti.c (ifnonnull): Cast the zero comparison operand
897         to the correct type.
899 2005-04-24  Jakub Jelinek  <jakub@redhat.com>
901         PR middle-end/20991
902         * class.c: Include cgraph.h.
903         (cp_fold_obj_type_ref): Set node->local.vtable_method.
904         * Make-lang.in (cgraph.o): Depend on $(CGRAPH_H).
906 2005-04-12  Markus F.X.J. Oberhumer  <markus@oberhumer.com>
908         * mangle.c (write_builtin_type): Handle integer types which are
909         not one of the shared integer type nodes and emit a "vendor
910         extended builtin type" with an encoding in the form of "u5int96".
912 2005-04-24  Ian Lance Taylor  <ian@airs.com>
914         * cp-tree.def (USING_STMT): Change class to tcc_statement.
915         (TRY_BLOCK, EH_SPEC_BLOCK, HANDLER, CLEANUP_STMT): Likewise.
916         (IF_STMT, FOR_STMT, WHILE_STMT, DO_STMT): Likewise.
917         (BREAK_STMT, CONTINUE_STMT, SWITCH_STMT): Likewise.
919 2005-04-23  DJ Delorie  <dj@redhat.com>
921         * call.c, class.c, cvt.c, decl.c, decl2.c, except.c, friend.c,
922         init.c, lex.c, mangle.c, method.c, name-lookup.c, parser.c,
923         repo.c, rtti.c, tree.c, typeck.c, typeck2.c: Adjust warning()
924         callers.
926 2005-04-22  Per Bothner  <per@bothner.com>
928         * decl.c (make_rtl_for_nonlocal_decl): Don't try get_fileinfo if
929         input_filename is NULL, as it is for (say) __PRETTY_FUNCTION__.
931 2005-04-22  Alexandre Oliva  <aoliva@redhat.com>
933         PR c++/21087
934         * name-lookup.c (push_overloaded_decl): Do not overload with
935         non-duplicate anticipated built-in.
937 2005-04-21  Kazu Hirata  <kazu@cs.umass.edu>
939         * cp-tree.h (THROW_NAME, AUTO_VTABLE_NAME, AUTO_TEMP_FORMAT,
940         VTABLE_BASE, VTABLE_NAME_PREFIX, STATIC_NAME_FORMAT): Remove.
942 2005-04-21  Nathan Sidwell  <nathan@codesourcery.com>
944         * cp-tree.h: Adjust for new VEC API.
945         Define VEC(tree_pair_s,gc).
946         (struct save_scope): Adjust.
947         (struct lang_type_class): Adjust.
948         (unemitted_tinfo_decls): Adjust.
949         * class.c (add_method, resort_type_method_vec,
950         finish_struct_methods, struct find_final_overrider_data,
951         dfs_find_final_overrider_pre, find_final_overrider,
952         get_vcall_index, warn_hidden, walk_subobject_offsets,
953         check_methods, fixup_inline_methods, end_of_class,
954         warn_about_ambiguous_bases, finish_struct, build_vtbl_initializer,
955         add_vcall_offset): Adjust.
956         * decl.c (xref_basetypes, finish_method): Adjust.
957         * decl2.c (check_classfn): Adjust.
958         * init.c (sort_mem_initializers, push_base_cleanups): Adjust.
959         * method.c (do_build_copy_constructor): Adjust.
960         * name-lookup.c (new_class_binding, store_binding,
961         store_bindings, store_class_bindings): Adjust.
962         * name-lookup.h: Define VEC(cxx_saved_binding,gc),
963         VEC(cp_class_binding,gc).
964         (struct cp_binding_level): Adjust.
965         * parser.c: Define VEC(cp_token_position,heap).
966         (struct cp_lexer): Adjust.
967         (cp_lexer_new_main, cp_lexer_new_from_tokens, cp_lexer_destroy,
968         cp_lexer_save_tokens): Adjust.
969         * pt.c (retrieve_specialization,
970         check_explicit_specialization): Adjust.
971         * rtti.c (unemitted_tinfo_decls): Adjust.
972         (init_rtti_processing, get_tinfo_decl, get_pseudo_ti_init,
973         get_pseudo_ti_desc): Adjust.
974         * search.c (dfs_access_in_type, lookup_conversion_operator,
975         lookup_fnfields_1, dfs_walk_once, dfs_walk_once_accessible,
976         dfs_get_pure_virtuals, lookup_conversions_r, binfo_for_vbase): Adjust.
977         * semantics.c: Define VEC(deferred_access,gc).
978         (push_deferring_access_checks): Adjust.
979         * typeck2.c (abstract_virtuals_error): Adjust.
981 2005-04-20  Ian Lance Taylor  <ian@airs.com>
983         * cp-tree.def: Add STMT_EXPR.
984         * cp-tree.h (STMT_EXPR_NO_SCOPE): Define.
985         (STMT_EXPR_STMT): Define.
986         * cxx-pretty-print.c (pp_cxx_primary_expression): Handle
987         STMT_EXPR.
988         (pp_cxx_expression): Likewise.
989         (pp_cxx_statement): Call pp_cxx_statement, not pp_statement.
990         * dump.c (cp_dump_tree): Handle STMT_EXPR.
992 2005-04-18  Kazu Hirata  <kazu@cs.umass.edu>
994         * decl.c (expand_static_init): Call build2 and build3 instead
995         of build.
997         * cp-tree.h (VPTR_NAME, VPTR_NAME_P): Remove.
999 2005-04-17  Ian Lance Taylor  <ian@airs.com>
1001         * cp-tree.def: Add SIZEOF_EXPR, ARROW_EXPR and ALIGNOF_EXPR.
1002         * cxx-pretty-print.c (pp_cxx_postfix_expression): Handle
1003         ARROW_EXPR.
1004         (pp_cxx_unary_expression): Handle SIZEOF_EXPR and ALIGNOF_EXPR.
1005         (pp_cxx_expression): Handle ARROW_EXPR, SIZEOF_EXPR, and
1006         ALIGNOF_EXPR.
1007         * typeck.c (cxx_sizeof_or_alignof_type): Update call to
1008         c_sizeof_or_alignof_type for change in parameter type.
1010 2005-04-16  Mark Mitchell  <mark@codesourcery.com>
1012         PR c++/21025
1013         * typeck.c (cxx_sizeof_or_alignof_type): Check whether the type to
1014         which sizeof/alignof is dependent, rather than just whether we are
1015         processing_template_decl.
1017 2005-04-17  Kazu Hirata  <kazu@cs.umass.edu>
1019         * cp-tree.h (LOOKUP_GLOBAL): Remove.
1020         (LOOKUP_ONLYCONVERTING, DIRECT_BIND, LOOKUP_NO_CONVERSION,
1021         LOOKUP_DESTRUCTOR, LOOKUP_NO_TEMP_BIND, LOOKUP_PREFER_TYPES,
1022         LOOKUP_PREFER_NAMESPACES, LOOKUP_CONSTRUCTOR_CALLABLE): Adjust
1023         their values.
1025 2005-04-15  Richard Henderson  <rth@redhat.com>
1027         PR middle-end/14311
1028         * semantics.c (finish_call_expr): Call resolve_overloaded_builtin.
1030 2005-04-15  Kazu Hirata  <kazu@cs.umass.edu>
1032         * cp-tree.h (lang_type_class): Remove redefined.  Move
1033         java_interface into where redefined was.  Increment the width
1034         of dummy.
1035         (TYPE_REDEFINED): Remove.
1037 2005-04-14  Kazu Hirata  <kazu@cs.umass.edu>
1039         * cp-tree.h (SET_TMPL_ARG, ENUM_TI_TEMPLATE, ENUM_TI_ARGS,
1040         CLASSTYPE_TEMPLATE_LEVEL): Remove.
1042 2005-04-11  Mark Mitchell  <mark@codesourcery.com>
1044         * decl2.c (determine_visibility): Don't use export_class_data.
1045         (import_export_decl): Honor TARGET_CXX_CLASS_DATA_ALWAYS_WEAK and
1046         TARGET_CXX_DETERMINE_CLASS_DATA_VISIBILITY.
1048 2005-04-09  Kazu Hirata  <kazu@cs.umass.edu>
1050         * cp-tree.h (cxx_alignof): Remove.
1052         * cp-tree.h (DECL_ARRAY_DELETE_OPERATOR_P): Remove.
1054         * cp-tree.h (EXCEPTION_CLEANUP_NAME, B_SET, B_CLR, B_TST,
1055         CONV_STATIC_CAST): Remove.
1057         * pt.c (UNIFY_ALLOW_MAX_CORRECTION): Remove.
1059         * cp-tree.h (VF_BINFO_VALUE, VF_BASETYPE_VALUE): Remove.
1061         * cp-tree.h (cp_deprecated): Remove.
1063 2005-04-08  Ian Lance Taylor  <ian@airs.com>
1065         * cp-tree.def: Define FOR_STMT, WHILE_STMT, DO_STMT, BREAK_STMT,
1066         CONTINUE_STMT, SWITCH_STMT.
1067         * cp-tree.h (cp_stmt_codes): Add FOR_STMT, WHILE_STMT, DO_STMT,
1068         BREAK_STMT, CONTINUE_STMT, SWITCH_STMT.
1069         (WHILE_COND, WHILE_BODY): Define.
1070         (DO_COND, DO_BODY): Define.
1071         (FOR_INIT_STMT, FOR_COND, FOR_EXPR, FOR_BODY): Define.
1072         (SWITCH_STMT_COND, SWITCH_STMT_BODY, SWITCH_STMT_TYPE): Define.
1073         * cp-gimplify.c (enum bc_t): Define.
1074         (struct cp_gimplify_ctx, ctxp): Define.
1075         (push_context, pop_context): New static functions.
1076         (begin_bc_block, finish_bc_block): New static functions.
1077         (build_bc_goto): New static function.
1078         (gimplify_cp_loop, gimplify_for_stmt): New static functions.
1079         (gimplify_while_stmt, gimplify_do_stmt): Likewise.
1080         (gimplify_switch_stmt): Likewise.
1081         (cp_gimplify_expr): Handle FOR_STMT, WHILE_STMT, DO_STMT,
1082         SWITCH_STMT, CONTINUE_STMT, BREAK_STMT.
1083         (cp_genericize): Call push_context and pop_context.
1084         * semantics.c (finish_break_stmt): Just call build_stmt
1085         (BREAK_STMT) rather than build_break_stmt.
1086         (finish_continue_stmt): Corresponding change.
1087         * decl.c (pop_switch): Update call to c_do_switch_warnings for new
1088         parameters.
1089         * cxx-pretty-print.c (pp_cxx_statement): Handle SWITCH_STMT,
1090         WHILE_STMT, DO_STMT, FOR_STMT, BREAK_STMT, CONTINUE_STMT.
1091         * dump.c (cp_dump_tree): Likewise.
1093 2005-04-08  Mark Mitchell  <mark@codesourcery.com>
1095         PR c++/20905
1096         * parser.c (cp_parser_type_specifier_seq): Add is_condition
1097         parameter.
1098         (cp_parser_new_type_id): Pass it.
1099         (cp_parser_condition): Likewise.
1100         (cp_parser_conversion_type_id): Likewise.
1101         (cp_parser_type_id): Likewise.
1102         (cp_parser_type_specifier_seq): In a condition, do not allow
1103         invalid type-specifier combinations.
1104         (cp_parser_exception_declaration): Adjust call to
1105         cp_parser_type_specifier_seq.
1107         * cp-tree.def (TINST_LEVEL): Document TINST_IN_SYSTEM_HEADER_P.
1108         * cp-tree.h (struct tinst_level): Add in_system_header_p.
1109         (TINST_IN_SYSTEM_HEADER_P): New macro.
1110         (make_tinst_level): Remove.
1111         * pt.c (lookup_template_class): Preserve DECL_IN_SYSTEM_HEADER on
1112         the instantiated class.
1113         (push_tinst_level): Do not use make_tinst_level.  Set
1114         TINST_IN_SYSTEM_HEADER_P.
1115         (pop_tinst_level): Likewise.
1116         (instantiate_class_template): Set in_system_header.
1117         (instantiate_pending_templates): Likewise.
1118         * tree.c (make_tinst_level): Remove.
1120 2005-04-06  Joseph S. Myers  <joseph@codesourcery.com>
1122         * decl.c (start_decl): Apply pending #pragma weak regardless of
1123         scope.
1125 2005-04-06  Mark Mitchell  <mark@codesourcery.com>
1127         PR c++/20212
1128         * pt.c (regenerate_decl_from_template): Copy attributes for
1129         parameters from the pattern to the instantiation.
1131 2005-04-05  Mark Mitchell  <mark@codesourcery.com>
1133         PR c++/20734
1134         * cp-tree.def (OFFSET_REF): Correct comments.
1135         * init.c (build_offset_ref): Remove misleading comment.
1136         * typeck.c (build_unary_op): Handle pointer-to-member creation
1137         here, rather than ...
1138         (unary_complex_lvalue): ... here.
1140 2005-04-06  Jason Merrill  <jason@redhat.com>
1142         PR c++/19312
1143         * tree.c (stabilize_init): Don't bother trying to stabilize
1144         something with no side-effects.
1146 2005-04-05  Mark Mitchell  <mark@codesourcery.com>
1148         PR c++/20763
1149         * decl.c (grokdeclarator): Correct attribute handling.
1151 2005-04-05  Mark Mitchell  <mark@codesourcery.com>
1153         PR c++/19159
1154         * decl2.c (import_export_decl): Use non-COMDAT external linkage
1155         for virtual tables, typeinfo, etc. that will be emitted in only
1156         one translation unit on systems without weak symbols.
1158 2005-04-04  Mark Mitchell  <mark@codesourcery.com>
1160         PR c++/20679
1161         * parser.c (cp_parser_template_name): Fix thinko.
1163 2005-04-04  Nathan Sidwell  <nathan@codesourcery.com>
1165         PR c++/20746
1166         * method.c (use_thunk): Protect covariant pointer return
1167         adjustments from NULL pointers.
1169 2005-04-04  Jan Hubicka  <jh@suse.cz>
1171         * decl2.c (finish_objects): Revert my previous patch.
1172         (cp_finish_file): Likewise.
1174 2005-04-03  Kazu Hirata  <kazu@cs.umass.edu>
1176         * pt.c: Fix comment typos.
1178 2005-04-03  Nathan Sidwell  <nathan@codesourcery.com>
1180         PR c++/20723
1181         * pt.c (more_specialized_fn): Member functions are unordered wrt
1182         non-members.  Conversion operators are unordered wrt other
1183         functions.
1185 2005-04-01  Nathan Sidwell  <nathan@codesourcery.com>
1187         * call.c (add_template_candidates_real): Remove length parameter
1188         from fn_type_unification call.
1189         * class.c (resolve_address_of_overloaded_function): Likewise
1190         * cp-tree.h (fn_type_unification): Remove length parameter.
1191         * pt.c (get_bindings_overload): Remove.
1192         (get_bindings_real): Rename to ...
1193         (get_bindings): ... here.  Remove length and strict
1194         parameters. Change return type flag to boolean.  Remove original
1195         forwarding function.
1196         (determine_specialization): Adjust get_bindings call.
1197         (fn_type_unification): Remove length parameter.  Adjust.
1198         (type_unification_real): Remove length parameter.  Adjust.
1199         (resolve_overloaded_unification): Adjust get_bindings call.
1200         (try_one_overload): Simplify confusing cascaded if control flow.
1201         (unify): Remove length paramter from type_unification_real call.
1202         (most_specialized_instantiation): Adjust get_bindings calls.
1203         (most_specialized): Likewise.
1205 2005-03-31  Nathan Sidwell  <nathan@codesourcery.com>
1207         PR c++/19203, implement DR 214
1208         * call.c (joust): Use more_specialized_fn.
1209         * cp-tree.h (DEDUCE_ORDER): Remove.
1210         (more_specialized): Replace with ...
1211         (more_specialized_fn): ... this.
1212         * pt.c (maybe_adjust_types_for_deduction): Remove DEDUCE_ORDER
1213         case.
1214         (type_unification_real): Remove DEDUCE_ORDER case.
1215         (more_specialized): Replace with ...
1216         (more_specialized_fn): ... this.  Implement DR 214.
1217         (most_specialized_instantiation): Use get_bindings_real directly.
1219 2005-03-31  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1221         PR c++/18644
1222         * call.c (build_new_op): Remove check for -Wsynth.
1224 2005-03-31  Jan Hubicka  <jh@suse.cz>
1226         * decl2.c (finish_objects): Mark ctor as needed.
1227         (cp_finish_file): Output variables only in nonunit-at-a-time.
1229 2005-03-29  Richard Henderson  <rth@redhat.com>
1231         PR c/20519
1232         * decl.c (cp_complete_array_type): Rename from complete_array_type.
1233         Use the new complete_array_type in c-common.c.  Update all callers.
1234         * cp-tree.h (cp_complete_array_type): Update to match.
1236 2005-03-24  Geoffrey Keating  <geoffk@apple.com>
1238         * typeck.c (build_static_cast_1): Allow scalar_cast between
1239         any integral, floating, or enumeration type.
1241 2005-03-24  Steven Bosscher  <stevenb@suse.de>
1243         * typeck.c (comptypes): First determine if the types are compatible
1244         from a target-independent point of view.  Check target attributes
1245         last.
1247         * class.c (build_base_path):
1248         (build_vbase_offset_vtbl_entries):
1249         (add_vcall_offset): Replace fold (buildN (...)) with fold_buildN.
1250         * error.c (dump_expr): Likewise.
1251         * init.c (build_zero_init, expand_cleanup_for_base,
1252         build_vec_delete_1): Likewise.
1253         * mangle.c (write_integer_cst): Likewise.
1254         * method.c (thunk_adjust): Likewise.
1255         * pt.c (convert_nontype_argument, tsubst, unify): Likewise.
1256         * tree.c (cxx_print_statistics, array_type_nelts_total): Likewise.
1257         * typeck.c (build_ptrmemfunc_access_expr,
1258         (get_member_function_from_ptrfunc): Likewise.
1260 2005-03-23  Joseph S. Myers  <joseph@codesourcery.com>
1262         * cp-objcp-common.h (LANG_HOOKS_TRUTHVALUE_CONVERSION): Remove.
1264 2005-03-23  Joseph S. Myers  <joseph@codesourcery.com>
1266         * cp-tree.h (perform_integral_promotions): Remove.
1267         (default_conversion): Add.
1269 2005-03-22  Mark Mitchell  <mark@codesourcery.com>
1271         * parser.c (cp_parser_warn_min_max): New function.
1272         (cp_parser_binary_expression): Use it.
1273         (cp_parser_assignment_operator_opt): Likewise.
1274         (cp_parser_operator): Likewise.
1276 2005-03-22  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1278         PR c++/19980
1279         * decl.c (start_preparsed_function): Robustify.
1281 2005-03-22  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1283         PR c++/20499
1284         * parser.c (cp_parser_class_head): Return NULL_TREE when
1285         encountering a redefinition.
1287 2005-03-22  Nathan Sidwell  <nathan@codesourcery.com>
1289         PR c++/20465
1290         PR c++/20381
1291         * typeck.c (build_ptrmemfunc): Allow OFFSET_REF when processing a
1292         template.
1294 2005-03-21  Paolo Carlini  <pcarlini@suse.de>
1296         PR c++/20461
1297         PR c++/20536
1298         * init.c (emit_mem_initializers): Don't crash on undefined
1299         types.
1301 2005-03-21  Paolo Carlini  <pcarlini@suse.de>
1303         PR c++/20147
1304         * semantics.c (finish_stmt_expr_expr): Return immediately
1305         if error_operand_p (expr).
1307 2005-03-21  Joseph S. Myers  <joseph@codesourcery.com>
1309         * cp-tree.h (lvalue_or_else, lvalue_p): New.
1310         * typeck.c (lvalue_or_else): New.  Call lvalue_error.
1312 2005-03-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1314         PR c++/20240
1315         * decl.c (decls_match): Compare context of VAR_DECL.
1317 2005-03-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1319         PR c++/20333
1320         * parser.c (cp_parser_postfix_expression) <case RID_TYPENAME>:
1321         Check the return value of cp_parser_nested_name_specifier.
1323 2005-03-18  Dale Johannesen <dalej@apple.com>
1325         * cp/tree.c (cp_tree_equal):  Handle SSA_NAME.
1327 2005-03-18  Paolo Carlini  <pcarlini@suse.de>
1329         PR c++/20463
1330         * parser.c (cp_parser_diagnose_invalid_type_name):
1331         Check TYPE_BINFO (current_class_type) before attempting
1332         to emit inform messages.
1334 2005-03-17  Paolo Carlini  <pcarlini@suse.de>
1336         PR c++/19966
1337         * cp-tree.h (grok_op_properties): Change return type to void.
1338         * decl.c (grok_op_properties): Return early - don't check the
1339         arity - in case of a static member or an operator that cannot
1340         be non-member; tidy a bit.
1342 2005-03-17  Nathan Sidwell  <nathan@codesourcery.com>
1344         PR c++/20186
1345         * pt.c (contains_dependent_cast_p): Remove.
1346         (fold_non_dependent_expr): Don't use it.
1347         (value_dependent_expression_p): Use a switch statement.
1348         reference_exprs can be dependent.
1350 2005-03-14  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1352         PR c++/4403
1353         PR c++/9783, DR433
1354         * name-lookup.c (pushtag): Skip template parameter scope when
1355         scope is ts_global.  Don't push tag into template parameter
1356         scope.
1357         * pt.c (instantiate_class_template): Reorder friend class
1358         template substitution to handle non-dependent friend class
1359         that hasn't been previously declared.
1361 2005-03-14  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1363         Friend class name lookup 5/n
1364         PR c++/1016
1365         * cp-tree.h (pushtag): Adjust declaration.
1366         * decl.c (lookup_and_check_tag): Call lookup_type_scope if
1367         lookup_name fails.
1368         (xref_tag): Adjust call to pushtag.  Make hidden class visible.
1369         (start_enum): Adjust call to pushtag.
1370         * name-lookup.c (ambiguous_decl): Ignore hidden names.
1371         (qualify_lookup): Change return type to bool.
1372         (hidden_name_p): New function.
1373         (lookup_namespace_name, unqualified_namespace_lookup,
1374         lookup_name_real): Use it.
1375         (lookup_type_scope): Update comments.
1376         (maybe_process_template_type_declaration): Change parameter name
1377         from globalize to is_friend.
1378         (pushtag): Change globalize parameter of type int to tag_scope.
1379         Hide name if introduced by friend declaration.
1380         * name-lookup.h (hidden_name_p): Add declaration.
1381         * parser.c (cp_parser_lookup_name): Don't deal with hidden name
1382         here.
1383         * pt.c (push_template_decl_real): Make hidden class template
1384         visible.
1385         (lookup_template_class, instantiate_class_template): Adjust call
1386         to pushtag.
1387         * semantics.c (begin_class_definition): Likewise.
1388         * rtti.c (init_rtti_processing, build_dynamic_cast_1,
1389         tinfo_base_init, emit_support_tinfos): Use ts_current instead of
1390         ts_global.
1392 2005-03-13  Mark Mitchell  <mark@codesourcery.com>
1394         PR c++/20157
1395         * pt.c (determine_specialization): Reject non-specializations.
1397 2005-03-11  Per Bothner  <per@bothner.com>
1399         * cp-tree.h (struct cp_declarator): New id_loc field.
1400         * cp/parser.c (cp_lexer_get_preprocessor_token): Set cp_token's
1401         location using c_lex_with_flags, instead of input_location.
1402         (cp_parser_direct_declarator): Set declarator's id_loc from
1403         cp_token's id_loc.
1405 2005-03-10  Jakub Jelinek  <jakub@redhat.com>
1407         PR c++/18384, c++/18327
1408         * decl.c (reshape_init_array): Use UHWI type for max_index_cst
1409         and index.  Convert max_index to size_type_node if it isn't
1410         host_integerp (, 1).
1412 2005-03-09  Mark Mitchell  <mark@codesourcery.com>
1414         PR c++/20208
1415         * pt.c (tsubst_decl): Apply array-to-pointer and
1416         function-to-pointer conversions to function arguments.
1417         (regenerate_decl_from_template): Likewise.
1419 2005-03-09  Paolo Carlini  <pcarlini@suse.de>
1421         PR c++/16859
1422         * decl.c (complete_array_type): In pedantic mode, return
1423         3 for an empty initializer list as the initializer for an
1424         array of unknown bound (8.5.1/4).
1425         (maybe_deduce_size_from_array_init): Fix final test to use
1426         the above.
1428 2005-03-08  Nathan Sidwell  <nathan@codesourcery.com>
1430         PR c++/20186
1431         * pt.c (contains_dependent_cast_p): New.
1432         (fold_non_dependent_expr): Call it.
1434 2005-03-08  Mark Mitchell  <mark@codesourcery.com>
1436         PR c++/20142
1437         * cp-tree.h (target_type): Remove.
1438         * decl.c (layout_var_decl): Remove #if 0'd code.
1439         (cp_finish_decl): Remove dead code.
1440         * init.c (build_vec_init): When determining whether or not the
1441         element type has an asignment operator, look through all array
1442         dimensions.
1443         * typeck.c (target_type): Remove.
1445 2005-03-07  Mark Mitchell  <mark@codesourcery.com>
1447         * class.c (finish_struct_1): Do not warn about non-virtual
1448         destructors in Java classes.
1450 2005-03-05  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1452         PR c++/19311
1453         * init.c (build_offset_ref): Don't build non-dependent SCOPE_REF.
1454         * pt.c (build_non_dependent_expr): Don't build NON_DEPENDENT_EXPR
1455         for OFFSET_TYPE.
1456         * typeck.c (build_x_unary_op): Don't build non-dependent SCOPE_REF.
1457         Also set PTRMEM_OK_P for NON_DEPENDENT_EXPR.
1458         (build_unary_op): Handle building ADDR_EXPR of OFFSET_REF inside
1459         template.
1461 2005-03-02  Alexandre Oliva  <aoliva@redhat.com>
1463         * name-lookup.c (push_overloaded_decl): Don't error if the new
1464         decl matches the old one.
1465         * decl.c (redeclaration_error_message): Likewise.
1467 2005-03-01  Per Bothner  <per@bothner.com>
1469         * decl.c (finish_function): Use SET_EXPR_LOCATION instead of
1470         unavailable annotate_with_file_line, if USE_MAPPED_LOCATION.
1472 2005-03-01  Nathan Sidwell  <nathan@codesourcery.com>
1474         PR c++/20232
1475         * class.c (update_vtable_entry_for_fn): Don't crash on invalid
1476         covariancy.
1478         * cp-tree.g (THUNK_TARGET): Expand comment.
1479         * method.c (use_thunk): Make sure we also use the target, if that
1480         is a thunk.
1482 2005-02-27  Jakub Jelinek  <jakub@redhat.com>
1484         PR c++/20206
1485         * decl.c (cxx_comdat_group): Put thunks for
1486         TARGET_USE_LOCAL_THUNK_ALIAS_P (function) functions into the same
1487         comdat group as the thunk target.
1489 2005-02-24  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1491         * call.c, class.c, cp-tree.h, decl2.c, error.c, init.c, mangle.c,
1492         parser.c: Fix comment typo(s).
1494 2005-02-24  Jakub Jelinek  <jakub@redhat.com>
1496         PR c++/20175
1497         * decl.c (reshape_init): Don't warn about missing braces if STRING_CST
1498         initializes a char/wchar_t array.
1500 2005-02-23  Mark Mitchell  <mark@codesourcery.com>
1502         PR c++/19878
1503         * decl.c (grokvardecl): Set DECL_INTERFACE_KNOWN for declarations
1504         with internal linkage.
1506 2005-02-23  Alexandre Oliva  <aoliva@redhat.com>
1508         * decl.c (grokvardecl): Don't exempt anonymous types from having
1509         linkage for variables that have linkage other than "C".
1511 2005-02-23  Kazu Hirata  <kazu@cs.umass.edu>
1513         * cp-objcp-common.h, error.c: Update copyright.
1515 2005-02-22  Mark Mitchell  <mark@codesourcery.com>
1517         PR c++/20073
1518         * decl.c (start_decl_1): Don't clear TREE_READONLY.
1519         (cp_finish_decl): Likewise.
1520         (complete_vars): Call cp_apply_type_quals_to_decl.
1521         * typeck.c (cp_apply_type_quals): Avoid setting TREE_READONLY in
1522         cases where that's not valid.
1524         PR c++/19991
1525         * init.c (integral_constant_value): Iterate if the value of a decl
1526         is itself a constant.
1528         PR c++/20152
1529         * parser.c (cp_parser_class_head): Check for redefintions here.
1530         * semantics.c (begin_class_definition): Not here.
1532         PR c++/20153
1533         * decl2.c (build_anon_union_vars): Add type parameter.
1534         (finish_anon_union): Pass it.
1536         PR c++/20148
1537         * error.c (dump_expr): Do not print the body of a BIND_EXPR.
1538         Handle STATEMENT_LIST.
1540         PR c++/19883
1541         * parser.c (cp_parser_direct_declarator): Always complain about
1542         non-constant array bounds when in a function scope.
1543         * semantics.c (finish_id_expression): Do not mark dependent names
1544         as non-constant.
1546 2005-02-21  Douglas Gregor  <dgregor@cs.indiana.edu>
1548         PR c++/19076
1549         PR c++/6628
1550         * cp-tree.h (cp_apply_type_quals_to_decl): Declared.
1551         * decl.c (grokdeclarator): Pedwarn about qualifying a function
1552         type.
1553         Add qualifiers when declaring a typedef of a function type.
1554         Member function pointers pick up the qualifiers of the typedef
1555         used to declare them.
1556         Don't complain about creating cv-qualified function types.
1557         Complain about qualified function typedefs that are used to
1558         declare non-static member functions or free functions.
1559         Use cp_apply_type_quals_to_decl.
1560         (start_preparsed_function): Use cp_apply_type_quals_to_decl.
1561         (grokclassfn): Use cp_apply_type_quals_to_decl.
1562         * error.c (dump_type_suffix): Print qualifiers for function
1563         types.
1564         * pt.c (tsubst_decl): Use cp_apply_type_quals_to_decl.
1565         (tsubst): When substituting a function type into a member
1566         pointer type, pass along the qualifiers.
1567         (unify): Unify member pointers to member function pointers.
1568         * tree.c (cp_build_qualified_type_real): Function types may be
1569         qualified. This includes restrict qualifiers.
1570         * typeck.c (cp_apply_type_quals_to_decl): New function to replace
1571         use of c_apply_type_quals_to_decl. Drops qualifiers that are being
1572         added to function types.
1574 2005-02-20  Zack Weinberg  <zack@codesourcery.com>
1576         PR 18785
1577         * cp-objcp-common.h (LANG_HOOKS_TO_TARGET_CHARSET): Set to
1578         c_common_to_target_charset.  Delete bogus comment.
1580 2005-02-18  Richard Henderson  <rth@redhat.com>
1582         PR libstdc++/10606
1583         * except.c (do_get_exception_ptr): New.
1584         (expand_start_catch_block): Use it.
1586 2005-02-19  Jakub Jelinek  <jakub@redhat.com>
1588         * decl.c (start_decl_1): Only check TYPE_NEEDS_CONSTRUCTING
1589         if type is not error_mark_node.
1591 2005-01-20  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
1593         PR c++/19508
1594         * decl2.c (grokfield): Do not apply attributes to template parameters
1595         as they are ignored by tsubst anyway.
1597 2005-02-18  Jakub Jelinek  <jakub@redhat.com>
1599         PR c++/19813
1600         * decl.c (start_decl_1): Clear TREE_READONLY flag if
1601         its type has TYPE_NEEDS_CONSTRUCTING.
1602         (complete_vars): Likewise.
1604 2005-02-17  Alexandre Oliva  <aoliva@redhat.com>
1606         PR c++/20028
1607         * class.c (finish_struct): Initialize TYPE_SIZE_UNIT of a
1608         template along with TYPE_SIZE.
1610         PR c++/20022
1611         * semantics.c (perform_deferred_access_checks): Use
1612         get_deferred_access_checks to get the top of the stack.
1614 2005-02-15  Alexandre Oliva  <aoliva@redhat.com>
1616         PR c++/17788
1617         * class.c (add_implicitly_declared_members, check_field_decl)
1618         (check_field_decls, check_bases): Remove arguments, tests and
1619         assignments of cant_have_default_ctor-related variables.
1621 2005-02-15  Alexandre Oliva  <aoliva@redhat.com>
1623         * decl2.c (mark_used): Set the source location of the used decl to
1624         the current input location here...
1625         * method.c (synthesize_method): ... not here.  Set input_location
1626         from the decl instead.
1628 2005-02-14  Nathan Sidwell  <nathan@codesourcery.com>
1630         PR c++/19608
1631         * parser.c (cp_parser_late_parsing_for_member): Use
1632         current_function_decl as scope to push to and from.
1634         PR c++/19884
1635         * pt.c (check_explicit_specialization): Make sure namespace
1636         binding lookup found an overloaded function.
1637         (lookup_template_function): Just assert FNS is an overloaded
1638         function.
1640         PR c++/19895
1641         * decl.c (grokdeclarator): Check for error mark node in ptrmem
1642         construction.
1644 2005-02-14  Alexandre Oliva  <aoliva@redhat.com>
1646         PR c++/17816
1647         * decl.c (redeclaration_error_message): Report redefinition of
1648         pure virtual function.
1650 2005-02-14  Nathan Sidwell  <nathan@codesourcery.com>
1652         PR c++/19891
1653         * class.c (build_simple_base_path): Build the component_ref
1654         directly.
1655         (update_vtable_entry_for_fn): Walk the covariant's binfo chain
1656         rather than using lookup_base.
1657         * search.c (dfs_walk_once): Add non-recursive assert check.
1658         * typeck.c (build_class_member_access_expr): It is possible for
1659         the member type to be both const and volatile.
1661 2005-02-12  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1663         PR c++/14479
1664         PR c++/19487
1665         * pt.c (maybe_check_template_type): Remove.
1666         * cp-tree.h (maybe_check_template_type): Remove prototype.
1667         * name-lookup.c (maybe_process_template_type_declaration): Don't
1668         use maybe_check_template_type.
1670 2005-02-11  Richard Henderson  <rth@redhat.com>
1672         PR c++/19632
1673         * pt.c (get_mostly_instantiated_function_type): Save and restore
1674         flag_access_control instead of push/pop_access_scope.
1676 2005-02-10  Mark Mitchell  <mark@codesourcery.com>
1678         PR c++/19755
1679         * decl.c (reshape_init): Issue warnings about missing braces.
1681 2005-02-11  Kazu Hirata  <kazu@cs.umass.edu>
1683         * cp-tree.def, except.c, ptree.c: Update copyright.
1685 2005-02-09  Mark Mitchell  <mark@codesourcery.com>
1687         PR c++/19811
1688         * call.c (build_op_delete_call): Check COMPLETE_TYPE_P before
1689         attempting name lookup.
1691         * parser.c (cp_parser_unqualified_id): Initialize type_decl.
1693         PR c++/19787
1694         * call.c (initialize_reference): Robustify.
1696         PR ++/19732
1697         * decl.c (grokdeclarator): Check for invalid use of destructor
1698         names.
1700         PR c++/19762
1701         * parser.c (cp_parser_unqualified_id): Avoid creating destructor
1702         names with invalid types.
1704         PR c++/19826
1705         * parser.c (cp_parser_direct_declarator): Allow type-dependent
1706         expressions as array bounds.
1708         PR c++/19739
1709         * parser.c (cp_parser_attributes_list): Allow empty lists.
1711 2005-02-08  Mark Mitchell  <mark@codesourcery.com>
1713         PR c++/19733
1714         * class.c (add_method): Don't set TYPE_HAS_DESTRUCTOR.
1715         (check_bases): Give warnings about a base class with a
1716         non-virtual destructor, even if it is implicit.
1717         (finish_struct_bits): Don't copy TYPE_HAS_DESTRUCTOR.
1718         (maybe_warn_about_overly_private_class): Don't use
1719         TYPE_HAS_DESTRUCTOR.
1720         (finish_struct_methods): Don't set TYPE_HAS_DESTRUCTOR.
1721         (check_for_override): Give it external linkage.
1722         (add_implicitly_declared_members): Generate destructors lazily.
1723         (check_field_decls): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR, not
1724         TYPE_HAS_DESTRUCTOR.
1725         (check_bases_and_members): Call check_methods before
1726         check_field_decls.
1727         (check_bases_and_members): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR, not
1728         TYPE_HAS_DESTRUCTOR.
1729         (finish_struct_1): Do not use TYPE_HAS_DESTRUCTOR.
1730         * cp-tree.def (PSEUDO_DTOR_EXPR): Document.
1731         * cp-tree.h (TYPE_HAS_DESTRUCTOR): Remove.
1732         (lang_type_class): Add lazy_destructor.
1733         (CLASSTYPE_LAZY_DESTRUCTOR): New macro.
1734         (CLASSTYPE_DESTRUCTORS): Robustify.
1735         (TYPE_HAS_DESTRUCTOR): Remove.
1736         (check_for_override): Declare.
1737         (build_vbase_delete): Remove.
1738         * cvt.c (convert_to_void): Issue errors about pseudo-destructor
1739         expressions.
1740         * decl.c (cxx_maybe_build_cleanup): Remove dead code.
1741         * except.c (dtor_nothrow): Lazily create destructors if necessary.
1742         (build_throw): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
1743         * init.c (build_delete): Lazily create destructors, if necessary.
1744         (build_vbase_delete): Remove.
1745         * method.c (locate_dtor): Simplify.
1746         (implicitly_declare_fn): Add support for destructors.
1747         * parser.c (cp_parser_lookup_name): Lazily create destructors, if
1748         necessary.
1749         * pt.c (check_explicit_specialization): Don't use
1750         TYPE_HAS_DESTRUCTOR.
1751         (instantiate_class_template): Likewise.
1752         * ptree.c (cxx_print_type): Don't print TYPE_HAS_DESTRUCTOR.
1753         * rtti.c (emit_support_tinfos): Robustify.
1754         * search.c (lookup_fnfields_1): Lazily create destructors.
1755         * typeck.c (build_class_member_access_expr): Remove
1756         PSEUDO_DTOR_EXPR handling.
1757         (lookup_destructor): Likewise.
1759 2005-02-08  Kazu Hirata  <kazu@cs.umass.edu>
1761         * cxx-pretty-print.c, cxx-pretty-print.h, decl.h: Update
1762         copyright.
1764 2005-02-07  Mark Mitchell  <mark@codesourcery.com>
1766         * parser.c (cp_lexer_start_debugging): Avoid arithmetic operations
1767         on boolean variables.
1768         (cp_lexer_stop_debugging): Likewise.
1770 2005-02-03  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
1772         PR c++/17401
1773         * parser.c (cp_parser_pure_specifier): Emit a specific error
1774         message with an invalid pure specifier.
1775         * decl2.c (grok_function_init): Remove.
1776         (grokfield): An initializer for a method is a always a pure
1777         specifier.
1779 2005-02-02  Matt Austern  <austern@apple.com>
1781         PR c++/19628
1782         * cp-tree.h (builtin_valid_in_constant_expr_p): Declare.
1783         * parser.c (cp_parser_postfix_expression): Accept function call in
1784         constant expression if builtin_valid_in_constant_expr_p is true
1785         for that function.
1786         * pt.c (value_dependent_expression_p): Handle CALL_EXPRs properly.
1787         * semantics.c (finish_id_expression): Accept function call in constant
1788         expression if builtin_valid_in_constant_expr_p is true for that
1789         function.
1790         * tree.c (builtin_valid_in_constant_expr_p): New.
1792 2005-02-02  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1794         PR c++/17413
1795         * pt.c (check_instantiated_args): Improve error message.
1796         Fix logic when to print its second part.
1798 2005-02-02  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1800         * cp-tree.h (complete_type_or_else): Remove macro.
1801         (complete_type_or_diagnostic): Rename to complete_type_or_else
1802         and remove last argument.
1803         * typeck.c (complete_type_or_diagnostic): Rename to
1804         complete_type_or_else and remove last argument.
1806 2005-02-02  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1808         * cp-tree.h (commonparms): Remove prototype.
1809         (convert_arguments): Likewise.
1810         (PFN_FROM_PTRMEMFUNC): Remove.
1811         * typeck.c (commonparms): Make static.
1812         (convert_arguments): Add prototype. Make static.
1813         (PFN_FROM_PTRMEMFUNC): Replace by pfn_from_ptrmemfunc.
1815 2005-01-31  Mark Mitchell  <mark@codesourcery.com>
1817         * parser.c (cp_parser_primary_expression): Don't complain about
1818         floating-point literals in integral constant expressions when
1819         !pedantic.
1821 2005-02-01  Alexandre Oliva  <aoliva@redhat.com>
1823         * parser.c (cp_parser_template_id): Revert comment patch too.
1825         PR c++/18757
1826         PR c++/19366
1827         PR c++/19499
1828         * parser.c (cp_parser_template_id): Revert 2004-12-09's patch.
1829         Issue an error when creating the template id.
1830         * pt.c (fn_type_unification): Return early if the explicit
1831         template arg list is an error_mark_node.
1833 2005-01-31  Mark Mitchell  <mark@codesourcery.com>
1835         * decl.c (build_enumerator): Do not issue duplicate error messages
1836         about invalid enumeration constants.
1837         * parser.c (cp_parser_non_integral_constant_expression): Always
1838         set parser->non_integral_constant_expression_p.
1839         (cp_parser_primary_expression): Add cast_p parameter.  Issue
1840         errors about invalid uses of floating-point literals in
1841         cast-expressions.
1842         (cp_parser_postfix_expression): Add cast_p parameter.
1843         (cp_parser_open_square_expression): Pass it.
1844         (cp_parser_parenthesized_expression_list): Add cast_p parameter.
1845         (cp_parser_unary_expression): Likewise.
1846         (cp_parser_new_placement): Pass it.
1847         (cp_parser_direct_new_declarator): Likewise.
1848         (cp_parser_new_initializer): Likewise.
1849         (cp_parser_cast_expression): Add cast_p parameter.
1850         (cp_parser_binary_expression): Likewise.
1851         (cp_parser_question_colon_clause): Likewise.
1852         (cp_parser_assignment_expression): Likewise.
1853         (cp_parser_expression): Likewise.
1854         (cp_parser_constant_expression): If an integral constant
1855         expression is invalid, return error_mark_node.
1856         (cp_parser_expression_statement): Pass cast_p.
1857         (cp_parser_condition): Likewise.
1858         (cp_parser_iteration_statement): Likewise.
1859         (cp_parser_jump_statement): Likewise.
1860         (cp_parser_mem_initializer): Likewise.
1861         (cp_parser_template_argument): Likewise.
1862         (cp_parser_parameter_declaration): Likewise.
1863         (cp_parser_initializer): Likewise.
1864         (cp_parser_throw_expression): Likewise.
1865         (cp_parser_attribute_list): Likewise.
1866         (cp_parser_simple_cast_expression): Likewise.
1867         (cp_parser_functional_cast): Likewise.
1868         (cp_parser_late_parsing_default_args): Likewise.
1869         (cp_parser_sizeof_operand): Save/restore
1870         non_integral_constant_expression_p.
1872 2005-01-31  Mike Stump  <mrs@apple.com>
1874         * parser.c (cp_lexer_new_main): Get the first token, first, before
1875         doing anything.
1877 2005-01-31  Mark Mitchell  <mark@codesourcery.com>
1879         * decl.c (start_decl): Add missing parentheses.
1881 2005-01-30  Mark Mitchell  <mark@codesourcery.com>
1883         PR c++/19555
1884         * cp-tree.h (DECL_USE_TEMPLATE): Expand documentation.
1885         * decl.c (duplicate_decls): Do not discard
1886         DECL_IMPLICIT_INSTANTIATION when merging declarations.
1887         (start_decl): Do not SET_DECL_TEMPLATE_SPECIALIZATION for
1888         variables that do not have DECL_USE_TEMPLATE.
1890         PR c++/19395
1891         * decl.c (grokdeclarator): Refactor code so that qualified names
1892         are never allowed as the declarator in a typedef.
1894         PR c++/19367
1895         * name-lookup.c (do_nonmember_using_decl): Avoid overloading
1896         builtin declarations.
1898         PR c++/19457
1899         * call.c (convert_like_real): Inline call to
1900         dubious_conversion_warnings here.
1901         * cp-tree.h (dubious_conversion_warnings): Remove.
1902         * semantics.c (finish_unary_op_expr): Copy INTEGER_CSTs before
1903         setting TREE_NEGATED_INT.
1904         * typeck.c (dubious_conversion_warnings): Remove.
1906         PR c++/19349
1907         * name-lookup.c (pushdecl_namespace_level): Avoid accessing free'd
1908         memory.
1910 2005-01-28  Mark Mitchell  <mark@codesourcery.com>
1912         PR c++/19253
1913         * parser.c (cp_parser_diagnose_invalid_type_name): Commit to
1914         tentative parses.
1916         PR c++/19667
1917         * pt.c (redeclare_class_template): Robustify.
1919 2005-01-27  Steven Bosscher  <stevenb@suse.de>
1921         * decl.c (finish_case_label): Use SWITCH_STMT accessor macros
1922         instead of SWITCH_EXPR ones.
1923         * pt.c (tsubst_expr): Likewise.
1924         * semantics.c (begin_switch_stmt, finish_switch_cond,
1925         finish_switch_stmt): Likewise.
1927 2005-01-26  J"orn Rennecke <joern.rennecke@st.com>
1929         PR c++/18370
1930         * parser.c (cp_parser_initializer_clause): Initialize *non_constant_p.
1932 2005-01-25  Andrew Pinski  <pinskia@physics.uc.edu>
1934         * class.c (abort_fndecl_addr): New variable.
1935         (build_vtbl_initializer): If we have a pure virtual function
1936         share the abort function's address.
1937         Include gt-cp-class.h at the end.
1938         * config-lang.in (gtfiles): Add cp/class.c.
1940 2005-01-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1942         * cxx-pretty-print.c (pp_cxx_statement): Add prototype. Make static.
1943         (pp_cxx_function_definition): Make static.
1944         * cxx-pretty-print.h (pp_cxx_statement): Remove prototype.
1945         (pp_cxx_function_definition): Likewise.
1947 2005-01-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1949         * name-lookup.c (print_binding_level): Make static.
1950         (constructor_name_full): Make static inline.
1951         (current_decl_namespace): Make static.
1952         * name-lookup.h (constructor_name_full): Remove prototype.
1953         (print_binding_level): Likewise.
1954         (current_decl_namespace): Likewise.
1956 2005-01-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1958         * decl.h (debug_bindings_indentation): Remove.
1960 2005-01-23  Kazu Hirata  <kazu@cs.umass.edu>
1962         * typeck.c: Fix a comment typo.
1964 2005-01-21  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
1966         PR c++/19208
1967         * pt.c (fold_decl_constant_value): Always call fold_non_dependent_expr
1968         at least once.
1969         (tsubst): Use fold_decl_constant_value in place of a bare call to
1970         integral_constant_value.
1972 2005-01-20  Kazu Hirata  <kazu@cs.umass.edu>
1974         * typeck.c (more_qualified_p): Remove.
1975         * cp-tree.h: Remove the corresponding prototype.
1977 2005-01-19  Matt Austern  <austern@apple.com>
1979         * typeck.c (comptypes): Handle return code from objc_comptypes
1980         correctly.
1982 2005-01-19  Kazu Hirata  <kazu@cs.umass.edu>
1984         * cp-tree.h, name-lookup.h: Remove unused prototypes.
1986 2005-01-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1988         PR c++/19375
1989         * semantics.c (finish_id_expression): Disable access checking for
1990         already lookuped FIELD_DECL.
1992 2005-01-18  Kazu Hirata  <kazu@cs.umass.edu>
1994         * decl.c (delete_block): Remove.
1995         * cp-tree.h: Remove the corresponding prototype.
1997         * decl.c (vtable_decl_p, vtype_decl_p, walk_globals_data,
1998         walk_vtables_r, walk_vtables, walk_globals_r, walk_globals):
1999         Remove.
2000         * cp-tree.h: Remove the corresponding prototypes.
2002         * tree.c (count_functions, bound_pmf_p, cp_is_overload_p,
2003         cp_update_decl_after_saving, name_p): Remove.
2004         * cp-tree.h: Remove the corresponding prototypes.
2006 2005-01-18  Andrew Pinski  <pinskia@physics.uc.edu>
2008         PR c/19472
2009         * semantics.c (finish_asm_stmt): Strip nops off
2010         input memory operands.
2012 2005-01-18  Kazu Hirata  <kazu@cs.umass.edu>
2014         * Make-lang.in, call.c, cvt.c, init.c, rtti.c, tree.c,
2015         typeck2.c: Update copyright.
2017 2005-01-16  Kazu Hirata  <kazu@cs.umass.edu>
2019         * class.c (get_enclosing_class): Remove.
2020         * cp-tree.h: Remove the corresponding prototypes.
2022         * cvt.c (convert_lvalue): Remove.
2023         * cp-tree.h: Remove the corresponding prototype.
2025         * pt.c (tinst_for_decl): Remove.
2026         * cp-tree.h: Remove the corresponding prototypes.
2028         * tree.c (hash_chainon): Remove.
2029         * cp-tree.h: Remove the corresponding prototypes.
2031 2005-01-15  Jakub Jelinek  <jakub@redhat.com>
2033         PR c++/19263
2034         * typeck2.c (split_nonconstant_init_1) <case VECTOR_TYPE>: Put a copy
2035         of CONSTRUCTOR's node into MODIFY_EXPR, as the original is modified.
2037 2005-01-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2039         * Make-lang.in (cp-warn): Don't append $(WERROR).
2041 2005-01-10  Kazu Hirata  <kazu@cs.umass.edu>
2043         * cp-tree.h: Fix a comment typo.
2045 2005-01-07  Nathan Sidwell  <nathan@codesourcery.com>
2047         PR c++/19298
2048         * pt.c (tsubst_qualified_id): Call convert_from_reference.
2050 2005-01-06  Mark Mitchell  <mark@codesourcery.com>
2052         PR c++/19244
2053         * class.c (add_implicitly_declared_members): Remove dead code.
2054         * decl.c (grokfndecl): Add sfk parameter.  Use it do set
2055         DECL_CONSTRUCTOR_P.
2056         (grokdeclarator): Adjust calls to grokfndecl.
2057         * method.c (implicitly_declare_fn): Improve documentation.
2058         * parser.c (cp_parser_direct_declarator): Do not consider a
2059         function to be a constructor if the containing class was
2060         originally anonymous.
2062 2005-01-06  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2064         PR c++/17154
2065         * search.c (lookup_field_1): Handle using declaration in
2066         class template partial specialization.
2068 2005-01-06  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2070         PR c++/19258
2071         * pt.c (push_access_scope): Handle friend defined in class.
2072         (pop_access_scope): Likewise.
2074 2005-01-06  Nathan Sidwell  <nathan@codesourcery.com>
2076         PR c++/19270
2077         * pt.c (tsubst_copy) <ARRAY_REF case>: Handle separately.
2078         (tsubst_copy_and_build) <ARRAY_REF case>: Remove obsolete
2079         array-new handling code.  Use build_x_binary_op.
2081 2005-01-05  Nathan Sidwell  <nathan@codesourcery.com>
2083         PR c++/19030
2084         * cp-tree.h (start_decl): Take pointer to pushed scope, not bool.
2085         * name-lookup.h (push_scope): Return pushed scope, not flag.
2086         * name-lookup.c (push_scope): Return scope that should be popped,
2087         not a flag.
2088         * decl.c (start_decl): Adjust.
2089         (grokfndecl): Adjust scope push and pop.
2090         * decl2.c (check_classfn): Likewise.
2091         * parser.c (cp_parser_condition, cp_parser_conversion_function_id,
2092         cp_parser_init_declarator, cp_parser_direct_declarator,
2093         cp_parser_class_specifier, cp_parser_class_head,
2094         cp_parser_lookup_name,
2095         cp_parser_constructor_declarator_p): Likewise.
2096         * pt.c (instantiate_class_template,
2097         resolve_typename_type): Likewise.
2099 2005-01-03  Volker Reichelt  <reichelt@igpm.rwth-aaachen.de>
2101         PR c++/14136
2102         * parser.c (cp_parser_unqualified_id): Do not issue error message
2103         for typedef-name as destructor declarator when performing an
2104         uncommitted tentative parse.
2106 2005-01-01  Steven Bosscher  <stevenb@suse.de>
2108         PR middle-end/17544
2109         * decl.c (finish_function): Fix comment.  Annotate the compiler
2110         generated return with the current file name and line 0.