2005-09-07 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / cp / ChangeLog
blob453140d2929cf6a4fb02c094c3b9d0ce69e9c88a
1 2005-09-07  Richard Guenther  <rguenther@suse.de>
3         * cp-gimplify.c (cp_gimplify_expr): Create empty CONSTRUCTOR
4         for EMPTY_CLASS_EXPR.
6 2005-09-06  Jakub Jelinek  <jakub@redhat.com>
8         PR c/23075
9         * typeck.c (check_return_expr): Add no_warning argument.  Set
10         *no_warning to true if "return-statement with no value, in function
11         returning" warning has been issued.
12         * cp-tree.h (check_return_expr): Adjust prototype.
13         * semantics.c (finish_return_stmt): Set TREE_NO_WARNING if
14         check_return_expr set *no_warning to true.
16 2005-09-06  Mark Mitchell  <mark@codesourcery.com>
18         * cp-tree.h (rvalue): New function.
19         * call.c (build_conditional_expr): Use it.
20         * init.c (build_new_1): Likewise.
21         * rtti.c (build_dynamic_cast_1): Likewise.
22         * tree.c (rvalue): New function.
23         * typeck.c (build_unary_op): Use it.
24         (build_static_cast_1): Likewise.
26         PR c++/9782
27         * init.c (build_new_1): Make sure the entire array type is
28         complete, not just its element types.
30 2005-09-06  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
32         * decl.c (check_elaborated_type_specifier): Remove redundant check.
34 2005-09-06  Jakub Jelinek  <jakub@redhat.com>
36         PR c++/23056
37         * typeck.c (ignore_overflows): New helper function.
38         (build_static_cast_1): Use it.
40 2005-09-06  Kazu Hirata  <kazu@codesourcery.com>
42         * cp-tree.h, decl.c, decl2.c, semantics.c: Fix comment typos.
43         Follow spelling conventions.
45 2005-09-05  Mark Mitchell  <mark@codesourcery.com>
47         PR c++/23667
48         * pt.c (tsubst_decl): Clear DECL_TEMPLATE_INSTANTIATED when
49         copying a VAR_DECL.
51 2005-09-05  Mark Mitchell  <mark@codesourcery.com>
53         PR c++/21440
54         * semantics.c (finish_stmt_expr_expr): Add an explicit
55         initialization to the last statement in the statement-expression.
56         * (finish_stmt_expr): Adjust accordingly.
58 2005-09-03  Mark Mitchell  <mark@codesourcery.com>
60         PR c++/23699
61         * decl2.c (mark_used): Always instantiate static data members
62         initialized by constant expressions.
63         * pt.c (instantiate_decl): Instantiate the initializers for static
64         data members initialized by constant expressions.
66         PR c++/21687
67         * semantics.c (expand_or_defer_fn): Do not call ggc_collect when
68         finishing processing for a template function in a local class.
69         Revert:
70         2005-09-02  Mark Mitchell  <mark@codesourcery.com>
71         * parser.c (cp_parser_class_specifier): Push/pop GC contexts
72         around functions in local classes.
74 2005-09-02  Mark Mitchell  <mark@codesourcery.com>
76         PR c++/21687
77         * parser.c (cp_parser_class_specifier): Push/pop GC contexts
78         around functions in local classes.
80 2005-08-31  Andrew Pinski  <pinskia@physics.uc.edu>
82         PR obj-c++/23640
83         * decl2.c (cp_finish_file): If this is obj-c++ and we need a static
84         init, call generate_ctor_or_dtor_function.
86 2005-08-31  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
88         PR c++/13377
89         * parser.c (cp_parser_lookup_name): Pass LOOKUP_COMPLAIN to
90         lookup_name_real on final parse.
92 2005-08-31  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
94         PR c++/23639
95         * semantics.c (qualified_name_lookup_error): Do not complain again
96         on invalid scope.
98 2005-08-30  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
100         PR c++/23586
101         * parser.c (cp_parser_namespace_name): Move diagnostic for
102         invalid namespace-name to here from ...
103         * name-lookup.c (do_namespace_alias): ... here and ...
104         (do_using_directive): ... here.  Remove dead code.
106 2005-08-28  Mark Mitchell  <mark@codesourcery.com>
108         PR c++/23099
109         * cp-tree.h (saved_scope): Add skip_evaluation.
110         * decl.c (start_decl): Use DECL_INITIALIZED_IN_CLASS_P, not
111         DECL_INITIAL, to determine whether or not a static data member was
112         initialized in the class-specifier.
113         (cp_finish_decl): Add comment.
114         * init.c (integral_constant_value): Subtitute into the
115         initializers for static data members in templates.
116         * name-lookup.c (push_to_top_level): Save skip_evaluation.
117         (pop_from_top_level): Restore it.
118         * pt.c (instantiate_class_template): Do not substitute into the
119         intializers of static data members when instantiating a class.
120         (regenerate_decl_from_template): Simplify.
121         (instantiate_decl): Tidy.  Substitute into the initializer for a
122         static data member even when the definition of the data member is
123         not available.
125 2005-08-26  Mark Mitchell  <mark@codesourcery.com>
127         PR c++/19004
128         * pt.c (uses_template_parms): Handle IDENTIFIER_NODE.
129         (type_dependent_expression_p): Allow BASELINKs whose associated
130         functions are simply a FUNCTION_DECL.
132         PR c++/23491
133         * cp-tree.h (build_vec_init): Adjust prototype.
134         * init.c (perform_member_init): Adjust call to build_vec_init.
135         (build_aggr_init): Likewise.
136         (build_new_1): Do not call build_default_init for array types.
137         (build_vec_init): Add explicit_default_init_p parameter.  Perform
138         default initialization of vector elements when set.
139         * typeck.c (build_modify_expr): Adjust call to build_vec_init.
141 2005-08-25  Nathan Sidwell  <nathan@codesourcery.com>
143         PR c++/20817
144         * typeck.c (build_x_unary_op): Make sure OFFSET_REF is not for a
145         ->*.
147 2005-08-24  Nathan Sidwell  <nathan@codesourcery.com>
149         PR c++/22454
150         * parser.c (cp_lexer_peek_nth_token): Relax assert.
152 2005-08-23  Nathan Sidwell  <nathan@codesourcery.com>
154         PR c++/23044
155         * pt.c (tsubst_qualified_id): A SCOPE_REF can still remain.
157 2005-08-22  James E Wilson  <wilson@specifix.com>
159         PR tree-optimization/23426
160         * decl.c (grokdeclarator): Use TYPE_SIZE_UNIT not TYPE_SIZE for
161         array size check.
163 2005-08-22  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
165         PR c++/22233
166         * pt.c (push_template_decl_real): Return error_mark_node if the
167         number of template parameters does not match previous definition.
169 2005-08-22  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
171         PR c++/23089
172         * decl.c (require_complete_types_for_parms): Mark incomplete types
173         as invalid.
175 2005-08-19  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
177         * parser.c (cp_parser_nth_token_starts_template_argument_list_p):
178         Fix typo in leading comment.
180 2005-08-15  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
182         * name-lookup.c, ptree.c: Delete HOST_PTR_PRINTF.
184 2005-08-15 Fariborz Jahanian <fjahanian@apple.com>
186         * cp-tree.h (can_convert_arg, fn_type_unification): New argument.
187         * call.c (add_template_candidate_real): Pass down 'flags' to
188         fn_type_unification.
189         (can_convert_arg): New 'flags' argument. Pass it to call to
190         implicit_conversion instead of LOOKUP_NORMAL.
191         (can_convert): Add LOOKUP_NORMAL to call to can_convert_arg.
192         * class.c (resolve_address_of_overloaded_function): Ditto.
193         (resolve_address_of_overloaded_function): Ditto.
194         * decl.c (reshape_init, check_default_argument): Ditto.
195         * typeck.c (build_ptrmemfunc): Ditto.
196         * pt.c (type_unification_real): Add 'flags' argument.
197         (fn_type_unification): Pass 'flags' to type_unification_real.
198         (type_unification_real): Pass new 'flags' argument to call to
199         can_convert_arg.
201 2005-08-12  Giovanni Bajo  <giovannibajo@libero.it>
202             Nathan Sidwell  <nathan@codesourcery.com>
204         PR c++/21799
205         PR c++/8271
206         * pt.c (unify) <METHOD_TYPE>: Check this-pointer cv-qualifiers
207         explicitly.
208         
209 2005-08-12  Nathan Sidwell  <nathan@codesourcery.com>
211         PR c++/21799
212         Revert my 2005-07-08 patch
213         * pt.c (type_unification_real): Remove is_method_argument and
214         assoicated checks.
215         (fn_type_unification, unify): Adjust type_unification_real calls.
217 2005-08-11  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
219         PR c++/23266
220         * decl2.c (grokfield): Check that method is not static before
221         marking it as pure.
223 2005-08-11  Nathan Sidwell  <nathan@codesourcery.com>
225         PR c++/23219
226         * name-lookup.c (pushtag): Process the template type before
227         altering the identifier lookup fields.  Remove unreachable code
228         creating an empty stub decl.
230 2005-08-10  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
232         PR c++/20646
233         * decl.c (grokdeclarator): Reset storage_class after error.
235 2005-08-08  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
237         PR c++/22508
238         * init.c (build_new_1): Check for empty candidate list.
240 2005-08-06  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
242         PR c++/23191
243         * pt.c (tsubst) <case METHOD_TYPE>: Check for error_mark_node
244         before calling build_exception_variant.
246 2005-08-06  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
248         PR c++/19498
249         * pt.c (tsubst_decl) <case TEMPLATE_DECL>: Return ERROR_MARK_NODE
250         if substitution of template args did not succeed.
252 2005-08-06  Michael Matz  <matz@suse.de>
254         * method.c (use_thunk): Call init_insn_lengths.
256 2005-08-05  James A. Morrison  <phython@gcc.gnu.org>
258         PR c++/22514
259         * name-lookup.c (cp_emit_debug_info_for_using): Do nothing if
260         sorrycount or errorcount are nonzero.
262 2005-08-05  Mark Mitchell  <mark@codesourcery.com>
264         * name-lookup.c (pushtag): Remove accidental commit from:
265         2004-12-21  Mark Mitchell  <mark@codesourcery.com>
266         PR c++/19063
267         * decl.c (grokdeclarator): Return error_mark_node, not
268         void_type_node, to indicate errors.
269         * parser.c (cp_parser_template_parameter_list): Robustify.
270         (cp_parser_template_parameter): Likewise.
272 2005-08-01  Kazu Hirata  <kazu@codesourcery.com>
274         * class.c, decl.c, name-lookup.c, pt.c, typeck.c, typeck2.c:
275         Fix comment typos.
277 2005-07-29  Kazu Hirata  <kazu@codesourcery.com>
279         * method.c: Fix a comment typo.
281 2005-07-28  Mark Mitchell  <mark@codesourcery.com>
283         PR c++/22545
284         * call.c (add_builtin_candidate): Adjust for changes in
285         representation of pointer-to-member types.
287 2005-07-28  Mike Stump  <mrs@apple.com>
289         * pt.c (check_explicit_specialization): Add visibility logic.
290         (lookup_template_class): Likewise.
291         (instantiate_class_template): Likewise.
293 2005-07-27  Devang Patel  <dpatel@apple.com>
295         * name-lookup.c (pushtag): Do no set DECL_IGNORED_P bit.
296         
297 2005-07-25  Ian Lance Taylor  <ian@airs.com>
299         * ptree.c (cxx_print_identifier): Print a leading space if the
300         indent level is 0.
302 2005-07-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
304         * call.c (convert_for_arg_passing): Check function pointers when
305         -Wmissing-format-attribute is activated.
306         * typeck.c (convert_for_assignment): Likewise.
308 2005-07-22  Manfred Hollstein  <mh@suse.com>
310         * parser.c (cp_parser_declaration): Fix unitialised warnings.
312 2005-07-21  Andrew Pinski  <pinskia@physics.uc.edu>
314         * class.c (build_base_path): Fix typo.
316 2005-07-21  Andrew Pinski  <pinskia@physics.uc.edu>
318         PR C++/22358
319         * class.c (build_base_path): Convert BINFO_OFFSET to the correct type.
321 2005-07-21  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
323         * call.c: Fix comment typo(s).
324         * cxx-pretty-print.h: Likewise.
325         * name-lookup.c: Likewise.
326         * parser.c: Likewise.
328 2005-07-20  Douglas Gregor <doug.gregor@gmail.com>
330         PR c++/2922
331         * semantics.c (perform_koenig_lookup): For dependent calls, just
332         return the set of functions we've found so far. Later, it will be
333         augmented by those found through argument-dependent lookup.
334         * name-lookup.c (lookup_arg_dependent): Implement DR 164 by removing 
335         the optimization that skips namespaces where the functions were
336         originally found.
338 2005-07-20  Giovanni Bajo  <giovannibajo@libero.it>
340         Make CONSTRUCTOR use VEC to store initializers.
341         * call.c (convert_default_arg): Update call to digest_init.
342         * class.c (dump_class_hierarchy, dump_array): Update to cope with
343         VEC in CONSTRUCTOR_ELTS.
344         * cp-tree.h (EMPTY_CONSTRUCTOR_P): Likewise.
345         (finish_compound_literal, digest_init): Update declaration.
346         * decl.c (struct reshape_iter): New data type.
347         (reshape_init_array): Rename to...
348         (reshape_init_array_1): Update to cope with VEC in CONSTRUCTOR_ELTS.
349         (reshape_init): Rewrite from scratch. Split parts into...
350         (reshape_init_array, reshape_init_vector, reshape_init_class,
351         reshape_init_r): New functions.
352         (check_initializer): Update call to reshape_init. Remove obsolete
353         code.
354         (initialize_artificial_var, cp_complete_array_type): Update to cope
355         with VEC in CONSTRUCTOR_ELTS.
356         * decl2.c (grokfield): Update calls to digest_init.
357         (mark_vtable_entries): Update to cope with VEC in CONSTRUCTOR_ELTS.
358         * error.c (dump_expr_init_vec): New function.
359         (dump_expr): Use dump_expr_init_vec.
360         * init.c (build_zero_init, build_vec_init): Update to cope with VEC
361         in CONSTRUCTOR_ELTS.
362         (expand_default_init): Update call to digest_init.
363         * parser.c  (cp_parser_postfix_expression): Use a VEC for the
364         initializers.
365         (cp_parser_initializer_list): Build a VEC of initializers.
366         * pt.c (tsubst_copy, tsubst_copy_and_build): Update to cope with VEC
367         in CONSTRUCTOR_ELTS.
368         * rtti.c (tinfo_base_init, generic_initializer, ptr_initializer,
369         ptm_initializer, class_initializer, get_pseudo_ti_init): Use
370         build_constructor_from_list instead of build_constructor.
371         * semantics.c (finish_compound_literal): Update call to digest_init.
372         * tree.c (stabilize_init): Update to cope with VEC in
373         CONSTRUCTOR_ELTS.
374         * typeck.c (build_ptrmemfunc1): Likewise.
375         * typeck2.c: (cxx_incomplete_type_error, split_nonconstant_init_1):
376         Likewise.
377         (store_init_value): Use build_constructor_from_list and update call
378         to digest_init.
379         (digest_init): Rewrite.
380         (process_init_constructor): Rewrite from scratch. Split into...
381         (process_init_constructor_array, picflag_from_initializer,
382         process_init_constructor_record, process_init_constructor_union):
383         New functions.
384         (PICFLAG_ERRONEOUS, PICFLAG_NOT_ALL_CONSTANT, PICFLAG_NOT_ALL_SIMPLE):
385         New macros.
386         (build_functional_cast): Use build_constructor_from_list instead of
387         build_constructor.
389 2005-07-18  Mark Mitchell  <mark@codesourcery.com>
391         PR c++/22263
392         * cp-tree.h (instantiate_decl): Change prototype.
393         * decl2.c (mark_used): Adjust accordingly.
394         * pt.c (do_decl_instantiation): Likewise.
395         (instantiate_class_member): Likewise.
396         (instantiate_decl): Rename undefined_ok as expl_inst_class_mem_p.
397         Clear DECL_INTERFACE_KNOWN for an explicitly instantiated template
398         that has no definition available.
399         (instantiate_pending_templates): Adjust call to instantiate_decl.
401 2005-07-17  Mark Mitchell  <mark@codesourcery.com>
403         PR c++/22139
404         * cp-tree.h (DECL_TEMPLATE_INFO): Improve documentation.
405         * decl.c (duplicate_decls): Re-register template specializations
406         for functions that have DECL_TEMLPLATE_INFO, even if they do not
407         have DECL_TEMPLATE_INSTANTIATION set.
409 2005-07-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
411         * call.c (diagnostic_fn_t): New.
412         (build_temp, convert_like_real): Use diagnostic_fn_t.
414 2005-07-15  Mark Mitchell  <mark@codesourcery.com>
416         PR c++/22204
417         * repo.c (repo_emit_p): Robustify.
419 2005-07-14  Daniel Berlin  <dberlin@dberlin.org>
421         Fix PR c++/22452
422         * tree.c (decl_linkage): Don't check DECL_COMDAT on CONST_DECL.
424 2005-07-15  Mark Mitchell  <mark@codesourcery.com>
426         PR c++/22132
427         * call.c (implicit_conversion): Add c_cast_p parameter.
428         (standard_conversion): Likewise.  Allow conversions between
429         differently-qualified pointer types when performing a C-style
430         cast.
431         (add_function_candidate): Adjust callee.
432         (build_builtin_candidate): Likewise.
433         (build_user_type_conversion_1): Likewise.
434         (conditional_conversion): Likewise.
435         (can_convert_arg): Likewise.
436         (can_convert_arg_bad): Likewise.
437         (perform_implicit_conversion): Likewise.
438         * cp-tree.h (comp_ptr_ttypes_const): Declare.
439         * typeck.c (comp_ptr_ttypes_const): Give it external linkage.
440         Return bool.
441         
442 2005-07-12  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
443             Nathan Sidwell  <nathan@codesourcery.com>
445         PR c++/20172
446         * pt.c (tsubst_template_parms): Check for invalid non-type
447         parameters.
449 2005-07-09  Andrew Pinski  <pinskia@physics.uc.edu>
451         * cp-lang.c (shadowed_var_for_decl, decl_shadowed_for_var_lookup,
452         decl_shadowed_for_var_insert): Move over to cp-objcp-common.c.
453         (cp_init_ts): Call init_shadowed_var_for_decl.
454         Remove include of gt-cp-cp-lang.h.
455         * cp-objcp-common.c (shadowed_var_for_decl,
456         decl_shadowed_for_var_lookup, decl_shadowed_for_var_insert): Moved from
457         cp-lang.c.
458         (init_shadowed_var_for_decl): New function to initialize
459         shadowed_var_for_decl.
460         Include gt-cp-cp-objcp-common.h.
461         * Make-lang.in (gt-cp-lang.h): Remove.
462         (gt-cp-cp-objcp-common.h): Add.
463         (cp/cp-lang.o): Remove dependancy on gt-cp-lang.h.
464         (cp/cp-objcp-common.o): Add dependancy on gt-cp-cp-objcp-common.h.
465         * config-lang.in (gtfiles): Remove cp-lang.c and Add cp-objcp-common.c.
466         * cp-tree (init_shadowed_var_for_decl): Add prototype.
468 2005-07-08  Daniel Berlin  <dberlin@dberlin.org>
469         
470         * Make-lang.in: Add gt-cp-lang.h.
471         (cp-lang.o): Ditto.     
472         * class.c (create_vtable_ptr): Stop setting DECL_ASSEMBLER_NAME on
473         the field.
474         * config-lang.in: Add cp-lang.c to gtfiles.
475         * cp-lang.c: Include hashtab.h.
476         (cp_init_ts): New function.
477         (LANG_HOOK_INIT_TS): Use macro.
478         (decl_shadowed_for_var_lookup): New function.
479         (decl_shadowed_for_var_insert): Ditto.
480         * cp-tree.h (THUNK_FUNCTION_CHECK): Use decl_common.
481         (NON_THUNK_FUNCTION_CHECK): Ditto.
482         (DECL_NAMESPACE_ASSOCIATIONS): Use decl_non_common.
483         (DECL_INIT_PRIORITY): Ditto.
484         (DECL_HAS_SHADOWED_FOR_VAR_P): Ditto.
485         (DECL_SHADOWED_FOR_VAR): Use hashtable.
486         (SET_DECL_SHADOWED_FOR_VAR): Ditto.
487         * decl.c (duplicate_decls): Update for new/updated structures.
488         (poplevel): Use SET_DECL_SHADOWED_FOR_VAR.
489         * decl2.c (start_static_initialization_or_destruction): Deal with
490         priority. 
491         * pt.c (tsubst_decl): Check TS_DECL_WRTL before doing
492         SET_DECL_RTL.
493         * tree.c (handle_init_priority_attribute): Handle priority.
495 2005-07-08  Nathan Sidwell  <nathan@codesourcery.com>
497         PR c++/21799
498         * pt.c (type_unification_real): Add is_method argument.  Use it
499         for this pointer unification.
500         (fn_type_unification): Adjust type_unification_real call.
501         (unify): Likewise.
503 2005-07-07  Nathan Sidwell  <nathan@codesourcery.com>
505         * pt.c (type_unification_real): Remove allow_incomplete argument.
506         Remove unreachable code.
507         (fn_type_unification): Adjust call to type_unification_real.
508         (unify): Likewise.
510 2005-07-05  Paolo Bonzini  <bonzini@gnu.org>
512         * Makefile.in (class.o, decl2.o): Adjust dependencies.
513         * class.c: Include tree-dump.h.
514         * decl2.c: Include tree-dump.h.
515         
516 2005-07-02  Gabriel Dos Reis  <gdr@integrable-solutions.net>
518         * dump.c: Use dump_string_field.
520 2005-07-03  Joseph S. Myers  <joseph@codesourcery.com>
522         * cp-tree.h (GCC_DIAG_STYLE): #undef before defining.  Change
523         minimum GCC version for format checking to 4.1.
525 2005-07-02  Kazu Hirata  <kazu@codesourcery.com>
527         * Make-lang.in (cc1plus-checksum.c): Use
528         build/genchecksum$(build_exeext), not build/genchecksum$(exeext).
530 2005-07-02  Joseph S. Myers  <joseph@codesourcery.com>
532         * name-lookup.c, parser.c: Use %q, %< and %> to quote in
533         diagnostics.
535 2005-07-02  Zack Weinberg  <zack@codesourcery.com>
536             Joseph S. Myers  <joseph@codesourcery.com>
538         * error.c (location_of): Add comment.
539         (locate_error, cp_error_at, cp_warning_at, cp_pedwarn_at): Remove.
540         * cp-tree.h (cp_error_at, cp_warning_at, cp_pedwarn_at): Remove.
541         * call.c, class.c, decl.c, decl2.c, friend.c, init.c,
542         name-lookup.c, parser.c, pt.c, search.c, semantics.c, typeck.c,
543         typeck2.c: Use '+' flag instead of %J, cp_error_at, cp_warning_at
544         or cp_pedwarn_at.  Mark up some diagnostic strings with N_.
546 2005-06-30  Daniel Berlin  <dberlin@dberlin.org> 
547         
548         * decl.c (require_complete_types_for_parms): Call relayout_decl
549         instead of layout_decl.
551 2005-06-30  Zack Weinberg  <zack@codesourcery.com>
552             Jakub Jelinek  <jakub@redhat.com>
554         * cp-lang.c: No need to include cxx-pretty-print.h.
555         * error.c (cp_printer): Update signature.  No need to process
556         flags.
557         (print_instantiation_partial_context): Output last newline
558         with pp_base_newline.
559         * Make-lang.in: Update dependencies.
561 2005-06-30  Steven Bosscher  <stevenb@suse.de>
563         * decl.c (start_decl): Replace DECL_THREAD_LOCAL with
564         DECL_THREAD_LOCAL_P.
565         (cp_finish_decl): Likewise.
566         (grokvardecl): Set the default DECL_TLS_MODEL here.
568 2005-06-28  Joseph S. Myers  <joseph@codesourcery.com>
570         * cvt.c (ocp_convert): Use invalid_conversion hook.
571         * typeck.c (build_binary_op): Use invalid_binary_op hook.
572         (build_unary_op): Use invalid_unary_op hook.
574 2005-06-28  Paul Brook  <paul@codesourcery.com>
576         * Make-lang.in (cp/except.o): Depend on $(TARGET_H)
577         * except.c: Include target.h.
578         (init_exception_processing): Initialize unwind_resume_libfunc.
579         * doc/tm.texi: Document TARGET_ASM_TTYPE
581 2005-06-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
583         * call.c (build_over_call): Pass in named argument list to
584         `check_function_arguments'.
585         * typeck.c (build_function_call): Likewise.
587 2005-06-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
589         * cp-tree.h (lang_check_failed): Add noreturn attribute.
591 2005-06-25  Kelley Cook  <kcook@gcc.gnu.org>
593         * all files: Update FSF address in copyright headers.
595 2005-06-23  Jason Merrill  <jason@redhat.com>
597         PR c++/19317
598         * semantics.c (simplify_aggr_init_expr): Use
599         CALL_EXPR_RETURN_SLOT_OPT, not CALL_EXPR_HAS_RETURN_SLOT_ADDR.
601 2005-06-23  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
603         * pt.c (register_specialization): Remove superfluous assertion.
605 2005-06-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
607         * call.c (convert_like_real): Add format attribute.
608         * typeck.c (check_for_casting_away_constness,
609         build_static_cast_1): Likewise.
610         * typeck2.c (readonly_error, cxx_incomplete_type_diagnostic):
611         Likewise.
613 2005-06-17  Geoffrey Keating  <geoffk@apple.com>
615         PR c++/17413
616         * pt.c (type_unification_real): Apply template type deduction even
617         to procedure parameters that are not dependent on a template
618         parameter.
620 2005-06-16  Nathan Sidwell  <nathan@codesourcery.com>
622         * rtti.c (get_tinfo_decl): Avoid caching tinfo_descs when it might
623         change.
624         (create_pseudo_type_info): First parameter is an int.
626 2005-06-15  Nathan Sidwell  <nathan@codesourcery.com>
628         PR c++/20678
629         * error.c (dump_expr) <COMPONENT_REF case>: Check DECL_NAME is not
630         null.
632         * Make-lang.in: Reformat some long lines.
633         (gt-cp-rtti.h): New target.
634         (cp/rtti.o): Add dependency.
635         * config-lang.in (gtfiles): Add cp/rtti.c.
636         * cp-tree.h (CPTI_TI_DESC_TYPE, CPTI_BLTN_DESC_TYPE,
637         CPTI_PTR_DESC_TYPE, CPTI_ARY_DESC_TYPE, CPTI_FUNC_DESC_TYPE,
638         CPTI_ENUM_DESC_TYPE, CPTI_CLASS_DESC_TYPE,
639         CPTI_SI_CLASS_DESC_TYPE, CPTI_VMI_CLASS_DESC_TYPE,
640         CPTI_PTM_DESC_TYPE, CPTI_BASE_DESC_TYPE): Remove.
641         (ti_desc_type_node, bltn_desc_type_node, ptr_desc_type_node,
642         ary_desc_type_node, func_desc_type_node, enum_desc_type_node,
643         class_desc_type_node, si_class_desc_type_node,
644         vmi_class_desc_type_node, ptm_desc_type_node,
645         base_desc_type_node): Remove.
646         * decl.c: Adjust documentation of global trees.
647         * rtti.c (TINFO_PSEUDO_TYPE, TINFO_VTABLE_DECL,
648         TINFO_REAL_NAME): Remove.
649         (struct tinfo_s): New.
650         (enum tinfo_kind): New.
651         (tinfo_descs): New.
652         (get_tinfo_decl): Adjust use of tinfo descriptor.
653         (tinfo_base_init, generic_initializer, ptr_initializer,
654         ptm_initializer, class_initializer): Likewise.
655         (get_pseudo_ti_init): Take descriptor index. Adjust.
656         (create_pseudo_type_info): Likewise.
657         (get_pseudo_ti_desc): Return descriptor index. Adjust.
658         (create_tinfo_types): Adjust use of create_pseudo_type_info.
659         (emit_tinfo_decl): Adjust use of tinfo descriptor.
661 2005-06-14  Roger Sayle  <roger@eyesopen.com>
663         * decl.c (grokdeclarator): Only check TREE_OVERFLOW on INTEGER_CST.
665 2005-06-13  Geoffrey Keating  <geoffk@apple.com>
667         * Make-lang.in (c++.install-man): Doesn't really depend on installdirs.
668         (rule for installing g++.1 manpage): Does depend on installdirs.
670 2005-06-13  Nathan Sidwell  <nathan@codesourcery.com>
672         PR c++/20789
673         * decl.c (cp_finish_decl): Clear runtime runtime initialization if
674         in-class decl's initializer is bad.
676         PR c++/21929
677         * parser.c (struct cp_parser): Document that scope could be
678         error_mark.
679         (cp_parser_diagnose_invalid_type_name): Cope with error_mark for
680         scope.
681         (cp_parser_nested_name_specifier): Return NULL_TREE on error.
682         (cp_parser_postfix_expression): Deal with null or error_mark
683         scope.
684         (cp_parser_elaborated_type_specifier): Adjust
685         cp_parser_nested_name_specifier call.
687         * parser (cp_parser_skip_to_end_of_block_or_statement): Cleanup.
689 2005-06-12  Roger Sayle  <roger@eyesopen.com>
691         PR c++/21930
692         * error.c (dump_expr): UNARY_PLUS_EXPR need not handle void types.
693         Treat CONVERT_EXPR identically to NOP_EXPR.
695 2005-06-10  Aldy Hernandez  <aldyh@redhat.com>
697         PR c++/10611
698         * cvt.c (build_expr_type_conversion): Same.
699         * typeck.c (build_binary_op): Handle vectors.
700         (common_type): Same.
701         (type_after_usual_arithmetic_conversions): Same.
703 2005-06-08  Nathan Sidwell  <nathan@codesourcery.com>
705         PR c++/19497
706         * cp-tree.def (USING_DECL): Update documentation.
707         * cp-tree.h (DECL_DEPENDENT_P): New.
708         (USING_DECL_DECLS, USING_DECL_SCOPE): New.
709         * class.c (handle_using_decl): Move most of the processing to ...
710         * name-lookup.c (do_class_using_decl): ... here.  Make stricter.
711         (push_using_decl): Use USING_DECL_SCOPE.
712         (cp_emit_debug_info_for_using): Make extern.
713         * cxx-pretty-print.c (pp_cxx_statement) <USING_DECL case>: Adjust.
714         * name-lookup.h (cp_emit_debug_info_for_using): Declare.
715         * pt.c (tsubst_decl) <USING_DECL case>: Use do_class_using_decl
716         when tsubsting.
717         (tsubst_expr): Use USING_DECL_SCOPE.
718         * search.c (lookup_field_1): Use DECL_DEPENDENT_P.
719         * semantics.c (finish_member_declaration): Likewise.
721 2005-06-08  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
723         PR c++/19894
724         * pt.c (tsubst): Reject pointer-to-member of type void.
726         PR c++/20563
727         * parser.c (cp_parser_label_declaration): Deal with invalid/missing
728         identifiers.
730 2005-06-07  Nathan Sidwell  <nathan@codesourcery.com>
732         * cp-tree.def (DEFAULT_ARG): Adjust documentation.
733         * cp-tree.h (DEFARG_INSTANTIATIONS): New.
734         (struct tree_default_arg): Add instantiations member.
735         * parser.c (cp_parser_late_parsing_default_args): Adjust to use a
736         VEC.
737         * pt.c (tsubst_arg_types): Likewise.
739         * parser.c (cp_parser_late_parsing_default_args): Fix overeager
740         assert in previous patch.
742 2005-06-06  Jakub Jelinek  <jakub@redhat.com>
744         * error.c (locate_error): Use gmsgid instead of msgid for argument
745         name.
746         (cp_error_at, cp_warning_at, cp_pedwarn_at): Likewise.
748 2005-06-06  Nathan Sidwell  <nathan@codesourcery.com>
750         PR 21903
751         * cp-tree.def (DEFAULT_ARG): Document TREE_CHAIN use.
752         * parser.c (cp_parser_late_parsing_default_args): Propagate parsed
753         argument to any early instantiations.
754         * pt.c (tsubst_arg_types): Chain early instantiation of default arg.
756         PR c++/20637
757         * cp-tree.h (add_method): Add using_decl parameter.
758         * class.c (add_method): Add using_decl parameter.  Adjust error
759         messages.
760         (handle_using_decl): Pass the using decl to add_method.
761         (clone_function_decl): Adjust add_member calls.
762         * decl2.c (check_classfn): Likewise.
763         * method.c (lazily_declare_fn): Likewise.
764         * semantics.c (finish_member_declaration): Likewise.
766         * method.c (synthesize_method): Use inform, not warning.
768 2005-06-06  Hans-Peter Nilsson  <hp@axis.se>
770         * config-lang.in (target_libs): Remove target-gperf.
772 2005-06-05  Mark Mitchell  <mark@codesourcery.com>
774         PR c++/21619
775         * cp-tree.h (DECL_IS_BUILTIN_CONSTANT_P): New macro.
776         * parser.c (cp_parser_postfix_expression): Allow non-constant
777         expressions as arguments to __builtin_constant_p.
778         * tree.c (builtin_valid_in_constant_expr_p): Use
779         DECL_IS_BUILTIN_CONSTANT_P.
781 2005-06-03  Mark Mitchell  <mark@codesourcery.com>
783         PR c++/21853
784         * typeck.c (casts_away_constness_r): Do not drop cv-qualifiers on
785         the pointed-to type for a pointer-to-member.
787         PR c++/21336
788         * cp-tree.h (grok_op_properties): Remove friendp parameter.
789         * decl.c (grokfndecl): Adjust call.
790         (grok_op_properties): Determine the class of which the function is
791         a member by looking at its DECL_CONTEXT, not current_class_type.
792         * pt.c (tsubst_decl): Adjust call to grok_op_properties.
794 2005-06-02  Nathan Sidwell  <nathan@codesourcery.com>
796         * method.c (synthesize_method): Add addtional arg to warning call.
798         PR c++/21280
799         * Make-lang.in (method.o): Add diagnostic.h
800         * decl.c (start_preparsed_function): Use decl's location for file
801         info.
802         * decl2.c (cp_finish_file): Set input_location before synthesizing
803         a function.
804         (mark_used): When deferring a synthesized function, save current
805         location.  Do not set function's location when actually
806         synthesizing it.
807         * method.c: #include diagnostic.h.
808         (synthesize_method): Set the functions source location.  Show
809         needed location if errors are emitted.
811         * decl.c (start_decl): Simplify specialization handling. Remove
812         unneeded CLASSTYPE_TEMPLATE_INSTANTIATION check.
813         * mangle.c (discriminator_for_local_entity): Use VEC_index.
815         PR c++/20350
816         * decl.c (duplicate_decls): Copy all of DECL_USE_TEMPLATE.
818         PR c++/21151
819         * name-lookup.c (pushtag): Push local class even in a template.
821 2005-05-31  Nathan Sidwell  <nathan@codesourcery.com>
823         PR c++/21165
824         * init.c (integral_constant_value): Check the type of the
825         initializer, not the decl.
827 2005-05-30  Mark Mitchell  <mark@codesourcery.com>
829         PR c++/21784
830         * name-lookup.c (do_nonmember_using_decl): Ignore builtin
831         functions, even when the used name is not a function.
833 2005-05-30  Kazu Hirata  <kazu@cs.umass.edu>
835         * operators.def, optimize.c: Update copyright.
837 2005-05-28  Mark Mitchell  <mark@codesourcery.com>
839         PR c++/21210
840         * call.c (standard_conversion): Permit conversions to complex
841         types if conversion to the corresponding scalar type would be
842         permitted.
844         PR c++/21340
845         * method.c (implicitly_declare_fn): Clear processing_template_decl
846         when generating implicit declaration.
848 2005-05-27  Mark Mitchell  <mark@codesourcery.com>
850         PR c++/21614
851         * typeck.c (get_member_function_from_ptrfunc): Do not attempt
852         conversions to base classes of incomplete types.
854 2005-05-27  Ian Lance Taylor  <ian@airs.com>
856         * semantics.c (add_stmt): Add C++ frontend specific version.
857         * cp-tree.h (STMT_IS_FULL_EXPR_P): Define.
858         (stmts_are_full_exprs_p): Declare.
860 2005-05-27  Roger Sayle  <roger@eyesopen.com>
861             Giovanni Bajo  <giovannibajo@gcc.gnu.org>
863         * cp-tree.def (UNARY_PLUS_EXPR): New C++ unary tree code.
864         * parser.c (cp_parser_unary_expression): Use UNARY_PLUS_EXPR instead
865         of CONVERT_EXPR.
866         (cp_parser_unary_expression): Likewise.
867         * typeck.c (build_unary_op): Likewise.
868         * call.c (add_builtin_candidate, build_new_op): Likewise.
869         * error.c (dump_expr): Likewise.
870         * pt.c (tsubst_copy, tsubst_copy_and_build): Likewise.
871         * decl.c (ambi_op_p, grok_op_properties): Likewise.
872         * dump.c (dump_op): Likewise.
873         * lex.c (init_operators): Likewise.
874         * operators.def ("+"): Likewise.
875         * cp-gimplify.c (cp_gimplify_expr): Handle UNARY_PLUS_EXPR like a
876         conversion, if the result and argument types differ.
877         * tree.c (fold_if_not_in_template): Fold UNARY_PLUS_EXPR much
878         like a NOP_EXPR when !processing_template_decl.
880         * cxx-pretty-print.c (pp_cxx_cast_expression): Prototype.
881         (pp_cxx_unary_expression): Handle new UNARY_PLUS_EXPR tree code.
883 2005-05-27  Nathan Sidwell  <nathan@codesourcery.com>
885         PR c++/21455
886         * typeck.c (get_delta_difference): Cope with incomplete but equal
887         classes.  Reorder if.
889         PR c++/21681
890         * parser.c (cp_parser_late_parsing_for_member): Disable access
891         checking for template functions.
893 2005-05-26  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
895         PR c++/21768
896         * pt.c (redeclare_class_template): Change error message according
897         to coding conventions.
899 2005-05-26  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
901         * call.c (build_op_delete_call): Fix quoting in error message.
903 2005-05-25  Richard Henderson  <rth@redhat.com>
905         PR libgcj/21692
906         * cp-tree.h (make_alias_for): Declare.
907         * decl2.c (build_java_method_aliases): New.
908         (cp_finish_file): Call it.
909         * method.c (make_alias_for): Split out from ...
910         (make_alias_for_thunk): ... here.
912 2005-05-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
914         PR c++/21686
915         * semantics.c (finish_id_expression): Fix quoting in error message.
917 2005-05-25  DJ Delorie  <dj@redhat.com>
919         * decl.c (duplicate_decls): Move warning control from if() to
920         warning(OPT_*).
921         * name-lookup.c (parse_using_directive): Likewise.
922         * parser.c (cp_parser_elaborated_type_specifier): Likewise.
923         (cp_parser_init_declarator): Likewise.
924         * tree.c (handle_com_interface_attribute): Likewise.
926 2005-05-24  Ziemowit Laski  <zlaski@apple.com>
928         * class.c (layout_class_type): Do not issue C++ ABI warnings
929         for ObjC structs.
930         * decl.c (objc_mark_locals_volatile): Streamline by calling
931         objc_volatilize_decl().
932         * parser.c (cp_parser_objc_message_expression): Allow simple
933         type specifiers (instead of merely type names) as message
934         receivers.
935         * pt.c (template_args_equal): Do not call objc_comptypes().
936         * typeck.c (composite_pointer_type): If both pointers are
937         ObjC-esque, arbitrarily choose the first; do not call
938         objc_comptypes().
939         (comptypes): Do not call objc_comptypes().
940         (convert_for_assignment): Call objc_compare_types().
941         (comp_ptr_ttypes_real): Call objc_type_quals_match() before
942         concluding that types do not match.
944 2005-05-24  Andrew Pinski  <pinskia@physics.uc.edu>
946         PR C++/21645
947         * optimize.c (update_cloned_parm): Copy the TYPE also from the
948         original one.
950 2005-05-19  Jakub Jelinek  <jakub@redhat.com>
952         PR c++/21495
953         * decl.c (grokdeclarator): Fix "storage class specified for"
954         error reporting.
956 2005-05-19  Kazu Hirata  <kazu@cs.umass.edu>
958         * parser.c: Fix comment typos.
960 2005-05-18  Geoffrey Keating  <geoffk@apple.com>
962         * Make-lang.in (cc1plus-dummy): New.
963         (cc1plus-checksum.c): New.
964         (cc1plus-checksum.o): New.
965         (cc1plus): Add cc1plus-checksum.o.
967 2005-05-17  H.J. Lu  <hongjiu.lu@intel.com>
969         PR C++/19664
970         * decl2.c (determine_visibility): Don't set visibility to
971         hidden if it has been set explicitly by user.
973 2005-05-17  Ziemowit Laski  <zlaski@apple.com>
974             Mike Stump  <mrs@apple.com>
976         Yet more Objective-C++...
978         * cp-objcp-common.h (cxx_get_alias_set): Move from
979         here...
980         (cxx_warn_unused_global_decl): Likewise.
981         (cp_expr_size): Likewise.
982         (cp_tree_size): Likewise.
983         (cp_var_mod_type_p): Likewise.
984         (cxx_initialize_diagnostics): Likewise.
985         (cxx_types_compatible_p): Likewise.
986         * cp-tree.h: to here.
987         (do_poplevel): Add.
988         * lex.c (D_OBJC): Add.
989         (init_reswords): Add.
990         * Make-lang.in (cp/pt.o): Add cp/cp-objcp-common.h.
991         * parser.c: Add c-common.h include.
992         * pt.c: Add c-common.h and cp-objcp-common.h includes.
993         (template_args_equal): Use objc_comptypes as well.
994         (tsubst_copy_and_build): Use objcp_tsubst_copy_and_build as well.
995         * semantics.c (do_poplevel): Remove static.
997         * decl.c (objc_mark_locals_volatile): Don't change decls that are
998         already ok.
999         * decl2.c (generate_ctor_or_dtor_function): Add code to initialize
1000         Objective C++ early enough.
1001         * lex.c (struct resword reswords): Add Objective-C++ support.
1002         * parser.c (cp_lexer_get_preprocessor_token): Add Objective-C++.
1003         (cp_parser_objc_message_receiver): Add.
1004         (cp_parser_objc_message_args): Likewise.
1005         (cp_parser_objc_message_expression): Likewise.
1006         (cp_parser_objc_encode_expression): Likewise.
1007         (cp_parser_objc_defs_expression): Likewise.
1008         (cp_parser_objc_protocol_expression): Likewise.
1009         (cp_parser_objc_selector_expression): Likewise.
1010         (cp_parser_objc_expression): Likewise.
1011         (cp_parser_objc_visibility_spec): Likewise.
1012         (cp_parser_objc_method_type): Likewise.
1013         (cp_parser_objc_protocol_qualifiers): Likewise.
1014         (cp_parser_objc_typename): Likewise.
1015         (cp_parser_objc_selector_p): Likewise.
1016         (cp_parser_objc_selector): Likewise.
1017         (cp_parser_objc_method_keyword_params): Likewise.
1018         (cp_parser_objc_method_tail_params_opt): Likewise.
1019         (cp_parser_objc_interstitial_code): Likewise.
1020         (cp_parser_objc_method_signature): Likewise.
1021         (cp_parser_objc_method_prototype_list): Likewise.
1022         (cp_parser_objc_method_definition_list): Likewise.
1023         (cp_parser_objc_class_ivars): Likewise.
1024         (cp_parser_objc_identifier_list): Likewise.
1025         (cp_parser_objc_alias_declaration): Likewise.
1026         (cp_parser_objc_class_declaration): Likewise.
1027         (cp_parser_objc_protocol_declaration): Likewise.
1028         (cp_parser_objc_protocol_refs_opt): Likewise.
1029         (cp_parser_objc_superclass_or_category): Likewise.
1030         (cp_parser_objc_class_interface): Likewise.
1031         (cp_parser_objc_class_implementation): Likewise.
1032         (cp_parser_objc_end_implementation): Likewise.
1033         (cp_parser_objc_declaration): Likewise.
1034         (cp_parser_objc_try_catch_finally_statement): Likewise.
1035         (cp_parser_objc_synchronized_statement): Likewise.
1036         (cp_parser_objc_throw_statement): Likewise.
1037         (cp_parser_objc_statement): Likewise.
1038         (cp_parser_primary_expression): Add Objective-C++.
1039         (cp_parser_statement): Likewise.
1040         (cp_parser_declaration): Likewise.
1041         (cp_parser_simple_type_specifier): Likewise.
1042         (cp_parser_type_name): Likewise.
1043         (cp_parser_parameter_declaration_list): Likewise.
1044         (cp_parser_member_declaration) Likewise.
1045         * tree.c: Include debug.h.
1046         * typeck.c (composite_pointer_type): Add Objective-C++ support.
1047         (finish_class_member_access_expr): Likewise.
1048         (build_function_call): Allow objc to rewrite FUNCTION_DECLs.
1049         (build_modify_expr): Allow objc to generate write barriers.
1051         * Make-lang.in (cp/tree.o): Add debug.h.
1052         * tree.c (lvalue_p_1, case CONST_DECL): Add.
1054 2005-05-18  Jan Hubicka  <jh@suse.cz>
1056         * method.c: Include tree-pass.h
1057         (use_thunk): Lower body before expanding.
1059 2005-05-17  Jakub Jelinek  <jakub@redhat.com>
1061         PR c++/21454
1062         * decl.c (maybe_deduce_size_from_array_init): Call
1063         cp_apply_type_quals_to_decl after completing array type.
1065 2005-05-16  Richard Henderson  <rth@redhat.com>
1067         * decl.c (build_library_fn_1): Move setting TREE_NOTHROW ...
1068         (build_library_fn): ... here.
1070 2005-05-12  Ian Lance Taylor  <ian@airs.com>
1072         * cp-tree.h (cp_stmt_codes): Don't define.
1073         (statement_code_p): Declare.
1074         (STATEMENT_CODE_P): Define.
1075         * lex.c (statement_code_p): Define.
1076         (cxx_init): Use actual codes in stmt_codes initializer, not
1077         cp_stmt_codes macro.  Initialize statement_code_p directly, rather
1078         than using INIT_STATEMENT_CODES.
1080 2005-05-09  Mark Mitchell  <mark@codesourcery.com>
1082         * typeck.c (build_unary_op): Do not resort to address arithmetic
1083         when taking the address of a COMPONENT_REF.
1085 2005-05-08  Kazu Hirata  <kazu@cs.umass.edu>
1087         * class.c (vtbl_init_data_s): Change the type of fns to
1088         VEC(tree,gc)*.
1089         (build_vtbl_initializer, add_vcall_offset, add_vcall_offset):
1090         Use VEC instead of VARRAY.
1092 2005-05-07  Richard Sandiford  <rsandifo@redhat.com>
1094         * mangle.c: Remove a reference to the MIPS -mint64 option.
1096 2005-05-07  Kazu Hirata  <kazu@cs.umass.edu>
1098         * decl.c (wrapup_globals_for_namespace): Use VEC instead of
1099         VARRAY.
1100         * name-lookup.c (add_decl_to_level, begin_scope): Likewise.
1101         * name-lookup.h (cp_binding_level): Change the type of
1102         static_decls to VEC(tree,gc)*.
1104         * mangle.c (globals): Change the type of substitutions to
1105         VEC(tree,gc)*.
1106         (dump_substitution_candidates, add_substitution,
1107         find_substitution, finish_mangling, init_mangle): Use VEC
1108         instead of VARRAY.
1110 2005-05-06  Kazu Hirata  <kazu@cs.umass.edu>
1112         * decl2.c (spew_debug): Remove.
1114         * decl2.c (ssdf_decls, start_static_storage_duration_function,
1115         generate_ctor_or_dtor_function): Use VEC instead of VARRAY.
1117         * decl2.c (pending_statics, note_vague_linkage_var,
1118         cp_finish_file): Use VEC instead of VARRAY.
1119         (pending_statics_used): Remove.
1121 2005-05-05  Kazu Hirata  <kazu@cs.umass.edu>
1123         * decl2.c (deferred_fns, note_vague_linkage_fn,
1124         cp_finish_file): Use VEC instead of VARRAY.
1126 2005-05-05  Mark Mitchell  <mark@codesourcery.com>
1128         PR c++/21352
1129         * pt.c (build_non_dependent_expr): Use is_overloaded_fn.
1131 2005-05-05  Kazu Hirata  <kazu@cs.umass.edu>
1133         * pt.c: Fix a comment typo.
1135 2005-05-04  Kazu Hirata  <kazu@cs.umass.edu>
1137         * cp-tree.h (language_function): Change the type of
1138         x_local_names to VEC.
1139         * decl.c (push_local_name): Adjust uses of local_names.
1141 2005-05-03  Kazu Hirata  <kazu@cs.umass.edu>
1143         * friend.c, lex.c, mangle.c, repo.c: Update copyright.
1145 2005-05-02  Kazu Hirata  <kazu@cs.umass.edu>
1147         * class.c (local_classes, init_class_processing): Use VEC
1148         instead of VARRAY.
1149         * cp-tree.h (local_classes): Likewise.
1150         * mangle.c (discriminator_for_local_entity): Likewise.
1151         * name-lookup.c (pushtag): Likewise.
1153         * class.c (current_lang_depth, push_lang_context,
1154         pop_lang_context): Use VEC instead of VARRAY.
1155         * cp-tree.h (saved_scope): Use VEC for lang_base instead of
1156         VARRAY.
1157         * name-lookup.c (push_to_top_level): Use VEC instead of
1158         VARRAY.
1160 2005-05-02  Paolo Bonzini  <bonzini@gnu.org>
1162         * semantics.c (finish_call_expr): Call resolve_overloaded_builtin
1163         for BUILT_IN_MD built-ins.
1165 2005-05-02  Michael Matz  <matz@suse.de>
1167         PR c++/19542
1168         * cp-tree.h (cp_tree_index): Remove CPTI_NULL, to be defined in C
1169         common frontend.
1170         (null_node): Remove.
1171         * lex.c (cxx_init): Move null_node initialisation to C common frontend.
1173 2005-04-25  Ian Lance Taylor  <ian@airs.com>
1175         * cp-tree.def: Add EXPR_STMT.
1176         * cp-tree.h (cp_stmt_codes): Add EXPR_STMT.
1177         (EXPR_STMT_EXPR): Define.
1178         * cp-gimplify.c: Include "flags.h".
1179         (gimplify_expr_stmt): New static function.
1180         (cp_gimplify_expr): Handle EXPR_STMT.
1181         * cxx-pretty-print.c (pp_cxx_statement): Use pp_cxx_expression
1182         rather than pp_expression.
1183         (pp_cxx_statement): Handle EXPR_STMT.
1184         * dump.c (cp_dump_tree): Handle EXPR_STMT.
1185         * lex.c (cxx_init): Don't use c_common_stmt_codes in stmt_codes
1186         initializer.
1188 2005-04-25  Andrew Pinski  <pinskia@physics.uc.edu>
1190         PR C++/21188
1191         * rtti.c (ifnonnull): Cast the zero comparison operand
1192         to the correct type.
1194 2005-04-24  Jakub Jelinek  <jakub@redhat.com>
1196         PR middle-end/20991
1197         * class.c: Include cgraph.h.
1198         (cp_fold_obj_type_ref): Set node->local.vtable_method.
1199         * Make-lang.in (cgraph.o): Depend on $(CGRAPH_H).
1201 2005-04-12  Markus F.X.J. Oberhumer  <markus@oberhumer.com>
1203         * mangle.c (write_builtin_type): Handle integer types which are
1204         not one of the shared integer type nodes and emit a "vendor
1205         extended builtin type" with an encoding in the form of "u5int96".
1207 2005-04-24  Ian Lance Taylor  <ian@airs.com>
1209         * cp-tree.def (USING_STMT): Change class to tcc_statement.
1210         (TRY_BLOCK, EH_SPEC_BLOCK, HANDLER, CLEANUP_STMT): Likewise.
1211         (IF_STMT, FOR_STMT, WHILE_STMT, DO_STMT): Likewise.
1212         (BREAK_STMT, CONTINUE_STMT, SWITCH_STMT): Likewise.
1214 2005-04-23  DJ Delorie  <dj@redhat.com>
1216         * call.c, class.c, cvt.c, decl.c, decl2.c, except.c, friend.c,
1217         init.c, lex.c, mangle.c, method.c, name-lookup.c, parser.c,
1218         repo.c, rtti.c, tree.c, typeck.c, typeck2.c: Adjust warning()
1219         callers.
1221 2005-04-22  Per Bothner  <per@bothner.com>
1223         * decl.c (make_rtl_for_nonlocal_decl): Don't try get_fileinfo if
1224         input_filename is NULL, as it is for (say) __PRETTY_FUNCTION__.
1226 2005-04-22  Alexandre Oliva  <aoliva@redhat.com>
1228         PR c++/21087
1229         * name-lookup.c (push_overloaded_decl): Do not overload with
1230         non-duplicate anticipated built-in.
1232 2005-04-21  Kazu Hirata  <kazu@cs.umass.edu>
1234         * cp-tree.h (THROW_NAME, AUTO_VTABLE_NAME, AUTO_TEMP_FORMAT,
1235         VTABLE_BASE, VTABLE_NAME_PREFIX, STATIC_NAME_FORMAT): Remove.
1237 2005-04-21  Nathan Sidwell  <nathan@codesourcery.com>
1239         * cp-tree.h: Adjust for new VEC API.
1240         Define VEC(tree_pair_s,gc).
1241         (struct save_scope): Adjust.
1242         (struct lang_type_class): Adjust.
1243         (unemitted_tinfo_decls): Adjust.
1244         * class.c (add_method, resort_type_method_vec,
1245         finish_struct_methods, struct find_final_overrider_data,
1246         dfs_find_final_overrider_pre, find_final_overrider,
1247         get_vcall_index, warn_hidden, walk_subobject_offsets,
1248         check_methods, fixup_inline_methods, end_of_class,
1249         warn_about_ambiguous_bases, finish_struct, build_vtbl_initializer,
1250         add_vcall_offset): Adjust.
1251         * decl.c (xref_basetypes, finish_method): Adjust.
1252         * decl2.c (check_classfn): Adjust.
1253         * init.c (sort_mem_initializers, push_base_cleanups): Adjust.
1254         * method.c (do_build_copy_constructor): Adjust.
1255         * name-lookup.c (new_class_binding, store_binding,
1256         store_bindings, store_class_bindings): Adjust.
1257         * name-lookup.h: Define VEC(cxx_saved_binding,gc),
1258         VEC(cp_class_binding,gc).
1259         (struct cp_binding_level): Adjust.
1260         * parser.c: Define VEC(cp_token_position,heap).
1261         (struct cp_lexer): Adjust.
1262         (cp_lexer_new_main, cp_lexer_new_from_tokens, cp_lexer_destroy,
1263         cp_lexer_save_tokens): Adjust.
1264         * pt.c (retrieve_specialization,
1265         check_explicit_specialization): Adjust.
1266         * rtti.c (unemitted_tinfo_decls): Adjust.
1267         (init_rtti_processing, get_tinfo_decl, get_pseudo_ti_init,
1268         get_pseudo_ti_desc): Adjust.
1269         * search.c (dfs_access_in_type, lookup_conversion_operator,
1270         lookup_fnfields_1, dfs_walk_once, dfs_walk_once_accessible,
1271         dfs_get_pure_virtuals, lookup_conversions_r, binfo_for_vbase): Adjust.
1272         * semantics.c: Define VEC(deferred_access,gc).
1273         (push_deferring_access_checks): Adjust.
1274         * typeck2.c (abstract_virtuals_error): Adjust.
1276 2005-04-20  Ian Lance Taylor  <ian@airs.com>
1278         * cp-tree.def: Add STMT_EXPR.
1279         * cp-tree.h (STMT_EXPR_NO_SCOPE): Define.
1280         (STMT_EXPR_STMT): Define.
1281         * cxx-pretty-print.c (pp_cxx_primary_expression): Handle
1282         STMT_EXPR.
1283         (pp_cxx_expression): Likewise.
1284         (pp_cxx_statement): Call pp_cxx_statement, not pp_statement.
1285         * dump.c (cp_dump_tree): Handle STMT_EXPR.
1287 2005-04-18  Kazu Hirata  <kazu@cs.umass.edu>
1289         * decl.c (expand_static_init): Call build2 and build3 instead
1290         of build.
1292         * cp-tree.h (VPTR_NAME, VPTR_NAME_P): Remove.
1294 2005-04-17  Ian Lance Taylor  <ian@airs.com>
1296         * cp-tree.def: Add SIZEOF_EXPR, ARROW_EXPR and ALIGNOF_EXPR.
1297         * cxx-pretty-print.c (pp_cxx_postfix_expression): Handle
1298         ARROW_EXPR.
1299         (pp_cxx_unary_expression): Handle SIZEOF_EXPR and ALIGNOF_EXPR.
1300         (pp_cxx_expression): Handle ARROW_EXPR, SIZEOF_EXPR, and
1301         ALIGNOF_EXPR.
1302         * typeck.c (cxx_sizeof_or_alignof_type): Update call to
1303         c_sizeof_or_alignof_type for change in parameter type.
1305 2005-04-16  Mark Mitchell  <mark@codesourcery.com>
1307         PR c++/21025
1308         * typeck.c (cxx_sizeof_or_alignof_type): Check whether the type to
1309         which sizeof/alignof is dependent, rather than just whether we are
1310         processing_template_decl.
1312 2005-04-17  Kazu Hirata  <kazu@cs.umass.edu>
1314         * cp-tree.h (LOOKUP_GLOBAL): Remove.
1315         (LOOKUP_ONLYCONVERTING, DIRECT_BIND, LOOKUP_NO_CONVERSION,
1316         LOOKUP_DESTRUCTOR, LOOKUP_NO_TEMP_BIND, LOOKUP_PREFER_TYPES,
1317         LOOKUP_PREFER_NAMESPACES, LOOKUP_CONSTRUCTOR_CALLABLE): Adjust
1318         their values.
1320 2005-04-15  Richard Henderson  <rth@redhat.com>
1322         PR middle-end/14311
1323         * semantics.c (finish_call_expr): Call resolve_overloaded_builtin.
1325 2005-04-15  Kazu Hirata  <kazu@cs.umass.edu>
1327         * cp-tree.h (lang_type_class): Remove redefined.  Move
1328         java_interface into where redefined was.  Increment the width
1329         of dummy.
1330         (TYPE_REDEFINED): Remove.
1332 2005-04-14  Kazu Hirata  <kazu@cs.umass.edu>
1334         * cp-tree.h (SET_TMPL_ARG, ENUM_TI_TEMPLATE, ENUM_TI_ARGS,
1335         CLASSTYPE_TEMPLATE_LEVEL): Remove.
1337 2005-04-11  Mark Mitchell  <mark@codesourcery.com>
1339         * decl2.c (determine_visibility): Don't use export_class_data.
1340         (import_export_decl): Honor TARGET_CXX_CLASS_DATA_ALWAYS_WEAK and
1341         TARGET_CXX_DETERMINE_CLASS_DATA_VISIBILITY.
1343 2005-04-09  Kazu Hirata  <kazu@cs.umass.edu>
1345         * cp-tree.h (cxx_alignof): Remove.
1347         * cp-tree.h (DECL_ARRAY_DELETE_OPERATOR_P): Remove.
1349         * cp-tree.h (EXCEPTION_CLEANUP_NAME, B_SET, B_CLR, B_TST,
1350         CONV_STATIC_CAST): Remove.
1352         * pt.c (UNIFY_ALLOW_MAX_CORRECTION): Remove.
1354         * cp-tree.h (VF_BINFO_VALUE, VF_BASETYPE_VALUE): Remove.
1356         * cp-tree.h (cp_deprecated): Remove.
1358 2005-04-08  Ian Lance Taylor  <ian@airs.com>
1360         * cp-tree.def: Define FOR_STMT, WHILE_STMT, DO_STMT, BREAK_STMT,
1361         CONTINUE_STMT, SWITCH_STMT.
1362         * cp-tree.h (cp_stmt_codes): Add FOR_STMT, WHILE_STMT, DO_STMT,
1363         BREAK_STMT, CONTINUE_STMT, SWITCH_STMT.
1364         (WHILE_COND, WHILE_BODY): Define.
1365         (DO_COND, DO_BODY): Define.
1366         (FOR_INIT_STMT, FOR_COND, FOR_EXPR, FOR_BODY): Define.
1367         (SWITCH_STMT_COND, SWITCH_STMT_BODY, SWITCH_STMT_TYPE): Define.
1368         * cp-gimplify.c (enum bc_t): Define.
1369         (struct cp_gimplify_ctx, ctxp): Define.
1370         (push_context, pop_context): New static functions.
1371         (begin_bc_block, finish_bc_block): New static functions.
1372         (build_bc_goto): New static function.
1373         (gimplify_cp_loop, gimplify_for_stmt): New static functions.
1374         (gimplify_while_stmt, gimplify_do_stmt): Likewise.
1375         (gimplify_switch_stmt): Likewise.
1376         (cp_gimplify_expr): Handle FOR_STMT, WHILE_STMT, DO_STMT,
1377         SWITCH_STMT, CONTINUE_STMT, BREAK_STMT.
1378         (cp_genericize): Call push_context and pop_context.
1379         * semantics.c (finish_break_stmt): Just call build_stmt
1380         (BREAK_STMT) rather than build_break_stmt.
1381         (finish_continue_stmt): Corresponding change.
1382         * decl.c (pop_switch): Update call to c_do_switch_warnings for new
1383         parameters.
1384         * cxx-pretty-print.c (pp_cxx_statement): Handle SWITCH_STMT,
1385         WHILE_STMT, DO_STMT, FOR_STMT, BREAK_STMT, CONTINUE_STMT.
1386         * dump.c (cp_dump_tree): Likewise.
1388 2005-04-08  Mark Mitchell  <mark@codesourcery.com>
1390         PR c++/20905
1391         * parser.c (cp_parser_type_specifier_seq): Add is_condition
1392         parameter.
1393         (cp_parser_new_type_id): Pass it.
1394         (cp_parser_condition): Likewise.
1395         (cp_parser_conversion_type_id): Likewise.
1396         (cp_parser_type_id): Likewise.
1397         (cp_parser_type_specifier_seq): In a condition, do not allow
1398         invalid type-specifier combinations.
1399         (cp_parser_exception_declaration): Adjust call to
1400         cp_parser_type_specifier_seq.
1402         * cp-tree.def (TINST_LEVEL): Document TINST_IN_SYSTEM_HEADER_P.
1403         * cp-tree.h (struct tinst_level): Add in_system_header_p.
1404         (TINST_IN_SYSTEM_HEADER_P): New macro.
1405         (make_tinst_level): Remove.
1406         * pt.c (lookup_template_class): Preserve DECL_IN_SYSTEM_HEADER on
1407         the instantiated class.
1408         (push_tinst_level): Do not use make_tinst_level.  Set
1409         TINST_IN_SYSTEM_HEADER_P.
1410         (pop_tinst_level): Likewise.
1411         (instantiate_class_template): Set in_system_header.
1412         (instantiate_pending_templates): Likewise.
1413         * tree.c (make_tinst_level): Remove.
1415 2005-04-06  Joseph S. Myers  <joseph@codesourcery.com>
1417         * decl.c (start_decl): Apply pending #pragma weak regardless of
1418         scope.
1420 2005-04-06  Mark Mitchell  <mark@codesourcery.com>
1422         PR c++/20212
1423         * pt.c (regenerate_decl_from_template): Copy attributes for
1424         parameters from the pattern to the instantiation.
1426 2005-04-05  Mark Mitchell  <mark@codesourcery.com>
1428         PR c++/20734
1429         * cp-tree.def (OFFSET_REF): Correct comments.
1430         * init.c (build_offset_ref): Remove misleading comment.
1431         * typeck.c (build_unary_op): Handle pointer-to-member creation
1432         here, rather than ...
1433         (unary_complex_lvalue): ... here.
1435 2005-04-06  Jason Merrill  <jason@redhat.com>
1437         PR c++/19312
1438         * tree.c (stabilize_init): Don't bother trying to stabilize
1439         something with no side-effects.
1441 2005-04-05  Mark Mitchell  <mark@codesourcery.com>
1443         PR c++/20763
1444         * decl.c (grokdeclarator): Correct attribute handling.
1446 2005-04-05  Mark Mitchell  <mark@codesourcery.com>
1448         PR c++/19159
1449         * decl2.c (import_export_decl): Use non-COMDAT external linkage
1450         for virtual tables, typeinfo, etc. that will be emitted in only
1451         one translation unit on systems without weak symbols.
1453 2005-04-04  Mark Mitchell  <mark@codesourcery.com>
1455         PR c++/20679
1456         * parser.c (cp_parser_template_name): Fix thinko.
1458 2005-04-04  Nathan Sidwell  <nathan@codesourcery.com>
1460         PR c++/20746
1461         * method.c (use_thunk): Protect covariant pointer return
1462         adjustments from NULL pointers.
1464 2005-04-04  Jan Hubicka  <jh@suse.cz>
1466         * decl2.c (finish_objects): Revert my previous patch.
1467         (cp_finish_file): Likewise.
1469 2005-04-03  Kazu Hirata  <kazu@cs.umass.edu>
1471         * pt.c: Fix comment typos.
1473 2005-04-03  Nathan Sidwell  <nathan@codesourcery.com>
1475         PR c++/20723
1476         * pt.c (more_specialized_fn): Member functions are unordered wrt
1477         non-members.  Conversion operators are unordered wrt other
1478         functions.
1480 2005-04-01  Nathan Sidwell  <nathan@codesourcery.com>
1482         * call.c (add_template_candidates_real): Remove length parameter
1483         from fn_type_unification call.
1484         * class.c (resolve_address_of_overloaded_function): Likewise
1485         * cp-tree.h (fn_type_unification): Remove length parameter.
1486         * pt.c (get_bindings_overload): Remove.
1487         (get_bindings_real): Rename to ...
1488         (get_bindings): ... here.  Remove length and strict
1489         parameters. Change return type flag to boolean.  Remove original
1490         forwarding function.
1491         (determine_specialization): Adjust get_bindings call.
1492         (fn_type_unification): Remove length parameter.  Adjust.
1493         (type_unification_real): Remove length parameter.  Adjust.
1494         (resolve_overloaded_unification): Adjust get_bindings call.
1495         (try_one_overload): Simplify confusing cascaded if control flow.
1496         (unify): Remove length paramter from type_unification_real call.
1497         (most_specialized_instantiation): Adjust get_bindings calls.
1498         (most_specialized): Likewise.
1500 2005-03-31  Nathan Sidwell  <nathan@codesourcery.com>
1502         PR c++/19203, implement DR 214
1503         * call.c (joust): Use more_specialized_fn.
1504         * cp-tree.h (DEDUCE_ORDER): Remove.
1505         (more_specialized): Replace with ...
1506         (more_specialized_fn): ... this.
1507         * pt.c (maybe_adjust_types_for_deduction): Remove DEDUCE_ORDER
1508         case.
1509         (type_unification_real): Remove DEDUCE_ORDER case.
1510         (more_specialized): Replace with ...
1511         (more_specialized_fn): ... this.  Implement DR 214.
1512         (most_specialized_instantiation): Use get_bindings_real directly.
1514 2005-03-31  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1516         PR c++/18644
1517         * call.c (build_new_op): Remove check for -Wsynth.
1519 2005-03-31  Jan Hubicka  <jh@suse.cz>
1521         * decl2.c (finish_objects): Mark ctor as needed.
1522         (cp_finish_file): Output variables only in nonunit-at-a-time.
1524 2005-03-29  Richard Henderson  <rth@redhat.com>
1526         PR c/20519
1527         * decl.c (cp_complete_array_type): Rename from complete_array_type.
1528         Use the new complete_array_type in c-common.c.  Update all callers.
1529         * cp-tree.h (cp_complete_array_type): Update to match.
1531 2005-03-24  Geoffrey Keating  <geoffk@apple.com>
1533         * typeck.c (build_static_cast_1): Allow scalar_cast between
1534         any integral, floating, or enumeration type.
1536 2005-03-24  Steven Bosscher  <stevenb@suse.de>
1538         * typeck.c (comptypes): First determine if the types are compatible
1539         from a target-independent point of view.  Check target attributes
1540         last.
1542         * class.c (build_base_path):
1543         (build_vbase_offset_vtbl_entries):
1544         (add_vcall_offset): Replace fold (buildN (...)) with fold_buildN.
1545         * error.c (dump_expr): Likewise.
1546         * init.c (build_zero_init, expand_cleanup_for_base,
1547         build_vec_delete_1): Likewise.
1548         * mangle.c (write_integer_cst): Likewise.
1549         * method.c (thunk_adjust): Likewise.
1550         * pt.c (convert_nontype_argument, tsubst, unify): Likewise.
1551         * tree.c (cxx_print_statistics, array_type_nelts_total): Likewise.
1552         * typeck.c (build_ptrmemfunc_access_expr,
1553         (get_member_function_from_ptrfunc): Likewise.
1555 2005-03-23  Joseph S. Myers  <joseph@codesourcery.com>
1557         * cp-objcp-common.h (LANG_HOOKS_TRUTHVALUE_CONVERSION): Remove.
1559 2005-03-23  Joseph S. Myers  <joseph@codesourcery.com>
1561         * cp-tree.h (perform_integral_promotions): Remove.
1562         (default_conversion): Add.
1564 2005-03-22  Mark Mitchell  <mark@codesourcery.com>
1566         * parser.c (cp_parser_warn_min_max): New function.
1567         (cp_parser_binary_expression): Use it.
1568         (cp_parser_assignment_operator_opt): Likewise.
1569         (cp_parser_operator): Likewise.
1571 2005-03-22  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1573         PR c++/19980
1574         * decl.c (start_preparsed_function): Robustify.
1576 2005-03-22  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1578         PR c++/20499
1579         * parser.c (cp_parser_class_head): Return NULL_TREE when
1580         encountering a redefinition.
1582 2005-03-22  Nathan Sidwell  <nathan@codesourcery.com>
1584         PR c++/20465
1585         PR c++/20381
1586         * typeck.c (build_ptrmemfunc): Allow OFFSET_REF when processing a
1587         template.
1589 2005-03-21  Paolo Carlini  <pcarlini@suse.de>
1591         PR c++/20461
1592         PR c++/20536
1593         * init.c (emit_mem_initializers): Don't crash on undefined
1594         types.
1596 2005-03-21  Paolo Carlini  <pcarlini@suse.de>
1598         PR c++/20147
1599         * semantics.c (finish_stmt_expr_expr): Return immediately
1600         if error_operand_p (expr).
1602 2005-03-21  Joseph S. Myers  <joseph@codesourcery.com>
1604         * cp-tree.h (lvalue_or_else, lvalue_p): New.
1605         * typeck.c (lvalue_or_else): New.  Call lvalue_error.
1607 2005-03-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1609         PR c++/20240
1610         * decl.c (decls_match): Compare context of VAR_DECL.
1612 2005-03-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1614         PR c++/20333
1615         * parser.c (cp_parser_postfix_expression) <case RID_TYPENAME>:
1616         Check the return value of cp_parser_nested_name_specifier.
1618 2005-03-18  Dale Johannesen <dalej@apple.com>
1620         * cp/tree.c (cp_tree_equal):  Handle SSA_NAME.
1622 2005-03-18  Paolo Carlini  <pcarlini@suse.de>
1624         PR c++/20463
1625         * parser.c (cp_parser_diagnose_invalid_type_name):
1626         Check TYPE_BINFO (current_class_type) before attempting
1627         to emit inform messages.
1629 2005-03-17  Paolo Carlini  <pcarlini@suse.de>
1631         PR c++/19966
1632         * cp-tree.h (grok_op_properties): Change return type to void.
1633         * decl.c (grok_op_properties): Return early - don't check the
1634         arity - in case of a static member or an operator that cannot
1635         be non-member; tidy a bit.
1637 2005-03-17  Nathan Sidwell  <nathan@codesourcery.com>
1639         PR c++/20186
1640         * pt.c (contains_dependent_cast_p): Remove.
1641         (fold_non_dependent_expr): Don't use it.
1642         (value_dependent_expression_p): Use a switch statement.
1643         reference_exprs can be dependent.
1645 2005-03-14  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1647         PR c++/4403
1648         PR c++/9783, DR433
1649         * name-lookup.c (pushtag): Skip template parameter scope when
1650         scope is ts_global.  Don't push tag into template parameter
1651         scope.
1652         * pt.c (instantiate_class_template): Reorder friend class
1653         template substitution to handle non-dependent friend class
1654         that hasn't been previously declared.
1656 2005-03-14  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1658         Friend class name lookup 5/n
1659         PR c++/1016
1660         * cp-tree.h (pushtag): Adjust declaration.
1661         * decl.c (lookup_and_check_tag): Call lookup_type_scope if
1662         lookup_name fails.
1663         (xref_tag): Adjust call to pushtag.  Make hidden class visible.
1664         (start_enum): Adjust call to pushtag.
1665         * name-lookup.c (ambiguous_decl): Ignore hidden names.
1666         (qualify_lookup): Change return type to bool.
1667         (hidden_name_p): New function.
1668         (lookup_namespace_name, unqualified_namespace_lookup,
1669         lookup_name_real): Use it.
1670         (lookup_type_scope): Update comments.
1671         (maybe_process_template_type_declaration): Change parameter name
1672         from globalize to is_friend.
1673         (pushtag): Change globalize parameter of type int to tag_scope.
1674         Hide name if introduced by friend declaration.
1675         * name-lookup.h (hidden_name_p): Add declaration.
1676         * parser.c (cp_parser_lookup_name): Don't deal with hidden name
1677         here.
1678         * pt.c (push_template_decl_real): Make hidden class template
1679         visible.
1680         (lookup_template_class, instantiate_class_template): Adjust call
1681         to pushtag.
1682         * semantics.c (begin_class_definition): Likewise.
1683         * rtti.c (init_rtti_processing, build_dynamic_cast_1,
1684         tinfo_base_init, emit_support_tinfos): Use ts_current instead of
1685         ts_global.
1687 2005-03-13  Mark Mitchell  <mark@codesourcery.com>
1689         PR c++/20157
1690         * pt.c (determine_specialization): Reject non-specializations.
1692 2005-03-11  Per Bothner  <per@bothner.com>
1694         * cp-tree.h (struct cp_declarator): New id_loc field.
1695         * cp/parser.c (cp_lexer_get_preprocessor_token): Set cp_token's
1696         location using c_lex_with_flags, instead of input_location.
1697         (cp_parser_direct_declarator): Set declarator's id_loc from
1698         cp_token's id_loc.
1700 2005-03-10  Jakub Jelinek  <jakub@redhat.com>
1702         PR c++/18384, c++/18327
1703         * decl.c (reshape_init_array): Use UHWI type for max_index_cst
1704         and index.  Convert max_index to size_type_node if it isn't
1705         host_integerp (, 1).
1707 2005-03-09  Mark Mitchell  <mark@codesourcery.com>
1709         PR c++/20208
1710         * pt.c (tsubst_decl): Apply array-to-pointer and
1711         function-to-pointer conversions to function arguments.
1712         (regenerate_decl_from_template): Likewise.
1714 2005-03-09  Paolo Carlini  <pcarlini@suse.de>
1716         PR c++/16859
1717         * decl.c (complete_array_type): In pedantic mode, return
1718         3 for an empty initializer list as the initializer for an
1719         array of unknown bound (8.5.1/4).
1720         (maybe_deduce_size_from_array_init): Fix final test to use
1721         the above.
1723 2005-03-08  Nathan Sidwell  <nathan@codesourcery.com>
1725         PR c++/20186
1726         * pt.c (contains_dependent_cast_p): New.
1727         (fold_non_dependent_expr): Call it.
1729 2005-03-08  Mark Mitchell  <mark@codesourcery.com>
1731         PR c++/20142
1732         * cp-tree.h (target_type): Remove.
1733         * decl.c (layout_var_decl): Remove #if 0'd code.
1734         (cp_finish_decl): Remove dead code.
1735         * init.c (build_vec_init): When determining whether or not the
1736         element type has an asignment operator, look through all array
1737         dimensions.
1738         * typeck.c (target_type): Remove.
1740 2005-03-07  Mark Mitchell  <mark@codesourcery.com>
1742         * class.c (finish_struct_1): Do not warn about non-virtual
1743         destructors in Java classes.
1745 2005-03-05  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1747         PR c++/19311
1748         * init.c (build_offset_ref): Don't build non-dependent SCOPE_REF.
1749         * pt.c (build_non_dependent_expr): Don't build NON_DEPENDENT_EXPR
1750         for OFFSET_TYPE.
1751         * typeck.c (build_x_unary_op): Don't build non-dependent SCOPE_REF.
1752         Also set PTRMEM_OK_P for NON_DEPENDENT_EXPR.
1753         (build_unary_op): Handle building ADDR_EXPR of OFFSET_REF inside
1754         template.
1756 2005-03-02  Alexandre Oliva  <aoliva@redhat.com>
1758         * name-lookup.c (push_overloaded_decl): Don't error if the new
1759         decl matches the old one.
1760         * decl.c (redeclaration_error_message): Likewise.
1762 2005-03-01  Per Bothner  <per@bothner.com>
1764         * decl.c (finish_function): Use SET_EXPR_LOCATION instead of
1765         unavailable annotate_with_file_line, if USE_MAPPED_LOCATION.
1767 2005-03-01  Nathan Sidwell  <nathan@codesourcery.com>
1769         PR c++/20232
1770         * class.c (update_vtable_entry_for_fn): Don't crash on invalid
1771         covariancy.
1773         * cp-tree.g (THUNK_TARGET): Expand comment.
1774         * method.c (use_thunk): Make sure we also use the target, if that
1775         is a thunk.
1777 2005-02-27  Jakub Jelinek  <jakub@redhat.com>
1779         PR c++/20206
1780         * decl.c (cxx_comdat_group): Put thunks for
1781         TARGET_USE_LOCAL_THUNK_ALIAS_P (function) functions into the same
1782         comdat group as the thunk target.
1784 2005-02-24  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1786         * call.c, class.c, cp-tree.h, decl2.c, error.c, init.c, mangle.c,
1787         parser.c: Fix comment typo(s).
1789 2005-02-24  Jakub Jelinek  <jakub@redhat.com>
1791         PR c++/20175
1792         * decl.c (reshape_init): Don't warn about missing braces if STRING_CST
1793         initializes a char/wchar_t array.
1795 2005-02-23  Mark Mitchell  <mark@codesourcery.com>
1797         PR c++/19878
1798         * decl.c (grokvardecl): Set DECL_INTERFACE_KNOWN for declarations
1799         with internal linkage.
1801 2005-02-23  Alexandre Oliva  <aoliva@redhat.com>
1803         * decl.c (grokvardecl): Don't exempt anonymous types from having
1804         linkage for variables that have linkage other than "C".
1806 2005-02-23  Kazu Hirata  <kazu@cs.umass.edu>
1808         * cp-objcp-common.h, error.c: Update copyright.
1810 2005-02-22  Mark Mitchell  <mark@codesourcery.com>
1812         PR c++/20073
1813         * decl.c (start_decl_1): Don't clear TREE_READONLY.
1814         (cp_finish_decl): Likewise.
1815         (complete_vars): Call cp_apply_type_quals_to_decl.
1816         * typeck.c (cp_apply_type_quals): Avoid setting TREE_READONLY in
1817         cases where that's not valid.
1819         PR c++/19991
1820         * init.c (integral_constant_value): Iterate if the value of a decl
1821         is itself a constant.
1823         PR c++/20152
1824         * parser.c (cp_parser_class_head): Check for redefintions here.
1825         * semantics.c (begin_class_definition): Not here.
1827         PR c++/20153
1828         * decl2.c (build_anon_union_vars): Add type parameter.
1829         (finish_anon_union): Pass it.
1831         PR c++/20148
1832         * error.c (dump_expr): Do not print the body of a BIND_EXPR.
1833         Handle STATEMENT_LIST.
1835         PR c++/19883
1836         * parser.c (cp_parser_direct_declarator): Always complain about
1837         non-constant array bounds when in a function scope.
1838         * semantics.c (finish_id_expression): Do not mark dependent names
1839         as non-constant.
1841 2005-02-21  Douglas Gregor  <dgregor@cs.indiana.edu>
1843         PR c++/19076
1844         PR c++/6628
1845         * cp-tree.h (cp_apply_type_quals_to_decl): Declared.
1846         * decl.c (grokdeclarator): Pedwarn about qualifying a function
1847         type.
1848         Add qualifiers when declaring a typedef of a function type.
1849         Member function pointers pick up the qualifiers of the typedef
1850         used to declare them.
1851         Don't complain about creating cv-qualified function types.
1852         Complain about qualified function typedefs that are used to
1853         declare non-static member functions or free functions.
1854         Use cp_apply_type_quals_to_decl.
1855         (start_preparsed_function): Use cp_apply_type_quals_to_decl.
1856         (grokclassfn): Use cp_apply_type_quals_to_decl.
1857         * error.c (dump_type_suffix): Print qualifiers for function
1858         types.
1859         * pt.c (tsubst_decl): Use cp_apply_type_quals_to_decl.
1860         (tsubst): When substituting a function type into a member
1861         pointer type, pass along the qualifiers.
1862         (unify): Unify member pointers to member function pointers.
1863         * tree.c (cp_build_qualified_type_real): Function types may be
1864         qualified. This includes restrict qualifiers.
1865         * typeck.c (cp_apply_type_quals_to_decl): New function to replace
1866         use of c_apply_type_quals_to_decl. Drops qualifiers that are being
1867         added to function types.
1869 2005-02-20  Zack Weinberg  <zack@codesourcery.com>
1871         PR 18785
1872         * cp-objcp-common.h (LANG_HOOKS_TO_TARGET_CHARSET): Set to
1873         c_common_to_target_charset.  Delete bogus comment.
1875 2005-02-18  Richard Henderson  <rth@redhat.com>
1877         PR libstdc++/10606
1878         * except.c (do_get_exception_ptr): New.
1879         (expand_start_catch_block): Use it.
1881 2005-02-19  Jakub Jelinek  <jakub@redhat.com>
1883         * decl.c (start_decl_1): Only check TYPE_NEEDS_CONSTRUCTING
1884         if type is not error_mark_node.
1886 2005-01-20  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
1888         PR c++/19508
1889         * decl2.c (grokfield): Do not apply attributes to template parameters
1890         as they are ignored by tsubst anyway.
1892 2005-02-18  Jakub Jelinek  <jakub@redhat.com>
1894         PR c++/19813
1895         * decl.c (start_decl_1): Clear TREE_READONLY flag if
1896         its type has TYPE_NEEDS_CONSTRUCTING.
1897         (complete_vars): Likewise.
1899 2005-02-17  Alexandre Oliva  <aoliva@redhat.com>
1901         PR c++/20028
1902         * class.c (finish_struct): Initialize TYPE_SIZE_UNIT of a
1903         template along with TYPE_SIZE.
1905         PR c++/20022
1906         * semantics.c (perform_deferred_access_checks): Use
1907         get_deferred_access_checks to get the top of the stack.
1909 2005-02-15  Alexandre Oliva  <aoliva@redhat.com>
1911         PR c++/17788
1912         * class.c (add_implicitly_declared_members, check_field_decl)
1913         (check_field_decls, check_bases): Remove arguments, tests and
1914         assignments of cant_have_default_ctor-related variables.
1916 2005-02-15  Alexandre Oliva  <aoliva@redhat.com>
1918         * decl2.c (mark_used): Set the source location of the used decl to
1919         the current input location here...
1920         * method.c (synthesize_method): ... not here.  Set input_location
1921         from the decl instead.
1923 2005-02-14  Nathan Sidwell  <nathan@codesourcery.com>
1925         PR c++/19608
1926         * parser.c (cp_parser_late_parsing_for_member): Use
1927         current_function_decl as scope to push to and from.
1929         PR c++/19884
1930         * pt.c (check_explicit_specialization): Make sure namespace
1931         binding lookup found an overloaded function.
1932         (lookup_template_function): Just assert FNS is an overloaded
1933         function.
1935         PR c++/19895
1936         * decl.c (grokdeclarator): Check for error mark node in ptrmem
1937         construction.
1939 2005-02-14  Alexandre Oliva  <aoliva@redhat.com>
1941         PR c++/17816
1942         * decl.c (redeclaration_error_message): Report redefinition of
1943         pure virtual function.
1945 2005-02-14  Nathan Sidwell  <nathan@codesourcery.com>
1947         PR c++/19891
1948         * class.c (build_simple_base_path): Build the component_ref
1949         directly.
1950         (update_vtable_entry_for_fn): Walk the covariant's binfo chain
1951         rather than using lookup_base.
1952         * search.c (dfs_walk_once): Add non-recursive assert check.
1953         * typeck.c (build_class_member_access_expr): It is possible for
1954         the member type to be both const and volatile.
1956 2005-02-12  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1958         PR c++/14479
1959         PR c++/19487
1960         * pt.c (maybe_check_template_type): Remove.
1961         * cp-tree.h (maybe_check_template_type): Remove prototype.
1962         * name-lookup.c (maybe_process_template_type_declaration): Don't
1963         use maybe_check_template_type.
1965 2005-02-11  Richard Henderson  <rth@redhat.com>
1967         PR c++/19632
1968         * pt.c (get_mostly_instantiated_function_type): Save and restore
1969         flag_access_control instead of push/pop_access_scope.
1971 2005-02-10  Mark Mitchell  <mark@codesourcery.com>
1973         PR c++/19755
1974         * decl.c (reshape_init): Issue warnings about missing braces.
1976 2005-02-11  Kazu Hirata  <kazu@cs.umass.edu>
1978         * cp-tree.def, except.c, ptree.c: Update copyright.
1980 2005-02-09  Mark Mitchell  <mark@codesourcery.com>
1982         PR c++/19811
1983         * call.c (build_op_delete_call): Check COMPLETE_TYPE_P before
1984         attempting name lookup.
1986         * parser.c (cp_parser_unqualified_id): Initialize type_decl.
1988         PR c++/19787
1989         * call.c (initialize_reference): Robustify.
1991         PR ++/19732
1992         * decl.c (grokdeclarator): Check for invalid use of destructor
1993         names.
1995         PR c++/19762
1996         * parser.c (cp_parser_unqualified_id): Avoid creating destructor
1997         names with invalid types.
1999         PR c++/19826
2000         * parser.c (cp_parser_direct_declarator): Allow type-dependent
2001         expressions as array bounds.
2003         PR c++/19739
2004         * parser.c (cp_parser_attributes_list): Allow empty lists.
2006 2005-02-08  Mark Mitchell  <mark@codesourcery.com>
2008         PR c++/19733
2009         * class.c (add_method): Don't set TYPE_HAS_DESTRUCTOR.
2010         (check_bases): Give warnings about a base class with a
2011         non-virtual destructor, even if it is implicit.
2012         (finish_struct_bits): Don't copy TYPE_HAS_DESTRUCTOR.
2013         (maybe_warn_about_overly_private_class): Don't use
2014         TYPE_HAS_DESTRUCTOR.
2015         (finish_struct_methods): Don't set TYPE_HAS_DESTRUCTOR.
2016         (check_for_override): Give it external linkage.
2017         (add_implicitly_declared_members): Generate destructors lazily.
2018         (check_field_decls): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR, not
2019         TYPE_HAS_DESTRUCTOR.
2020         (check_bases_and_members): Call check_methods before
2021         check_field_decls.
2022         (check_bases_and_members): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR, not
2023         TYPE_HAS_DESTRUCTOR.
2024         (finish_struct_1): Do not use TYPE_HAS_DESTRUCTOR.
2025         * cp-tree.def (PSEUDO_DTOR_EXPR): Document.
2026         * cp-tree.h (TYPE_HAS_DESTRUCTOR): Remove.
2027         (lang_type_class): Add lazy_destructor.
2028         (CLASSTYPE_LAZY_DESTRUCTOR): New macro.
2029         (CLASSTYPE_DESTRUCTORS): Robustify.
2030         (TYPE_HAS_DESTRUCTOR): Remove.
2031         (check_for_override): Declare.
2032         (build_vbase_delete): Remove.
2033         * cvt.c (convert_to_void): Issue errors about pseudo-destructor
2034         expressions.
2035         * decl.c (cxx_maybe_build_cleanup): Remove dead code.
2036         * except.c (dtor_nothrow): Lazily create destructors if necessary.
2037         (build_throw): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
2038         * init.c (build_delete): Lazily create destructors, if necessary.
2039         (build_vbase_delete): Remove.
2040         * method.c (locate_dtor): Simplify.
2041         (implicitly_declare_fn): Add support for destructors.
2042         * parser.c (cp_parser_lookup_name): Lazily create destructors, if
2043         necessary.
2044         * pt.c (check_explicit_specialization): Don't use
2045         TYPE_HAS_DESTRUCTOR.
2046         (instantiate_class_template): Likewise.
2047         * ptree.c (cxx_print_type): Don't print TYPE_HAS_DESTRUCTOR.
2048         * rtti.c (emit_support_tinfos): Robustify.
2049         * search.c (lookup_fnfields_1): Lazily create destructors.
2050         * typeck.c (build_class_member_access_expr): Remove
2051         PSEUDO_DTOR_EXPR handling.
2052         (lookup_destructor): Likewise.
2054 2005-02-08  Kazu Hirata  <kazu@cs.umass.edu>
2056         * cxx-pretty-print.c, cxx-pretty-print.h, decl.h: Update
2057         copyright.
2059 2005-02-07  Mark Mitchell  <mark@codesourcery.com>
2061         * parser.c (cp_lexer_start_debugging): Avoid arithmetic operations
2062         on boolean variables.
2063         (cp_lexer_stop_debugging): Likewise.
2065 2005-02-03  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
2067         PR c++/17401
2068         * parser.c (cp_parser_pure_specifier): Emit a specific error
2069         message with an invalid pure specifier.
2070         * decl2.c (grok_function_init): Remove.
2071         (grokfield): An initializer for a method is a always a pure
2072         specifier.
2074 2005-02-02  Matt Austern  <austern@apple.com>
2076         PR c++/19628
2077         * cp-tree.h (builtin_valid_in_constant_expr_p): Declare.
2078         * parser.c (cp_parser_postfix_expression): Accept function call in
2079         constant expression if builtin_valid_in_constant_expr_p is true
2080         for that function.
2081         * pt.c (value_dependent_expression_p): Handle CALL_EXPRs properly.
2082         * semantics.c (finish_id_expression): Accept function call in constant
2083         expression if builtin_valid_in_constant_expr_p is true for that
2084         function.
2085         * tree.c (builtin_valid_in_constant_expr_p): New.
2087 2005-02-02  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
2089         PR c++/17413
2090         * pt.c (check_instantiated_args): Improve error message.
2091         Fix logic when to print its second part.
2093 2005-02-02  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
2095         * cp-tree.h (complete_type_or_else): Remove macro.
2096         (complete_type_or_diagnostic): Rename to complete_type_or_else
2097         and remove last argument.
2098         * typeck.c (complete_type_or_diagnostic): Rename to
2099         complete_type_or_else and remove last argument.
2101 2005-02-02  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
2103         * cp-tree.h (commonparms): Remove prototype.
2104         (convert_arguments): Likewise.
2105         (PFN_FROM_PTRMEMFUNC): Remove.
2106         * typeck.c (commonparms): Make static.
2107         (convert_arguments): Add prototype. Make static.
2108         (PFN_FROM_PTRMEMFUNC): Replace by pfn_from_ptrmemfunc.
2110 2005-01-31  Mark Mitchell  <mark@codesourcery.com>
2112         * parser.c (cp_parser_primary_expression): Don't complain about
2113         floating-point literals in integral constant expressions when
2114         !pedantic.
2116 2005-02-01  Alexandre Oliva  <aoliva@redhat.com>
2118         * parser.c (cp_parser_template_id): Revert comment patch too.
2120         PR c++/18757
2121         PR c++/19366
2122         PR c++/19499
2123         * parser.c (cp_parser_template_id): Revert 2004-12-09's patch.
2124         Issue an error when creating the template id.
2125         * pt.c (fn_type_unification): Return early if the explicit
2126         template arg list is an error_mark_node.
2128 2005-01-31  Mark Mitchell  <mark@codesourcery.com>
2130         * decl.c (build_enumerator): Do not issue duplicate error messages
2131         about invalid enumeration constants.
2132         * parser.c (cp_parser_non_integral_constant_expression): Always
2133         set parser->non_integral_constant_expression_p.
2134         (cp_parser_primary_expression): Add cast_p parameter.  Issue
2135         errors about invalid uses of floating-point literals in
2136         cast-expressions.
2137         (cp_parser_postfix_expression): Add cast_p parameter.
2138         (cp_parser_open_square_expression): Pass it.
2139         (cp_parser_parenthesized_expression_list): Add cast_p parameter.
2140         (cp_parser_unary_expression): Likewise.
2141         (cp_parser_new_placement): Pass it.
2142         (cp_parser_direct_new_declarator): Likewise.
2143         (cp_parser_new_initializer): Likewise.
2144         (cp_parser_cast_expression): Add cast_p parameter.
2145         (cp_parser_binary_expression): Likewise.
2146         (cp_parser_question_colon_clause): Likewise.
2147         (cp_parser_assignment_expression): Likewise.
2148         (cp_parser_expression): Likewise.
2149         (cp_parser_constant_expression): If an integral constant
2150         expression is invalid, return error_mark_node.
2151         (cp_parser_expression_statement): Pass cast_p.
2152         (cp_parser_condition): Likewise.
2153         (cp_parser_iteration_statement): Likewise.
2154         (cp_parser_jump_statement): Likewise.
2155         (cp_parser_mem_initializer): Likewise.
2156         (cp_parser_template_argument): Likewise.
2157         (cp_parser_parameter_declaration): Likewise.
2158         (cp_parser_initializer): Likewise.
2159         (cp_parser_throw_expression): Likewise.
2160         (cp_parser_attribute_list): Likewise.
2161         (cp_parser_simple_cast_expression): Likewise.
2162         (cp_parser_functional_cast): Likewise.
2163         (cp_parser_late_parsing_default_args): Likewise.
2164         (cp_parser_sizeof_operand): Save/restore
2165         non_integral_constant_expression_p.
2167 2005-01-31  Mike Stump  <mrs@apple.com>
2169         * parser.c (cp_lexer_new_main): Get the first token, first, before
2170         doing anything.
2172 2005-01-31  Mark Mitchell  <mark@codesourcery.com>
2174         * decl.c (start_decl): Add missing parentheses.
2176 2005-01-30  Mark Mitchell  <mark@codesourcery.com>
2178         PR c++/19555
2179         * cp-tree.h (DECL_USE_TEMPLATE): Expand documentation.
2180         * decl.c (duplicate_decls): Do not discard
2181         DECL_IMPLICIT_INSTANTIATION when merging declarations.
2182         (start_decl): Do not SET_DECL_TEMPLATE_SPECIALIZATION for
2183         variables that do not have DECL_USE_TEMPLATE.
2185         PR c++/19395
2186         * decl.c (grokdeclarator): Refactor code so that qualified names
2187         are never allowed as the declarator in a typedef.
2189         PR c++/19367
2190         * name-lookup.c (do_nonmember_using_decl): Avoid overloading
2191         builtin declarations.
2193         PR c++/19457
2194         * call.c (convert_like_real): Inline call to
2195         dubious_conversion_warnings here.
2196         * cp-tree.h (dubious_conversion_warnings): Remove.
2197         * semantics.c (finish_unary_op_expr): Copy INTEGER_CSTs before
2198         setting TREE_NEGATED_INT.
2199         * typeck.c (dubious_conversion_warnings): Remove.
2201         PR c++/19349
2202         * name-lookup.c (pushdecl_namespace_level): Avoid accessing free'd
2203         memory.
2205 2005-01-28  Mark Mitchell  <mark@codesourcery.com>
2207         PR c++/19253
2208         * parser.c (cp_parser_diagnose_invalid_type_name): Commit to
2209         tentative parses.
2211         PR c++/19667
2212         * pt.c (redeclare_class_template): Robustify.
2214 2005-01-27  Steven Bosscher  <stevenb@suse.de>
2216         * decl.c (finish_case_label): Use SWITCH_STMT accessor macros
2217         instead of SWITCH_EXPR ones.
2218         * pt.c (tsubst_expr): Likewise.
2219         * semantics.c (begin_switch_stmt, finish_switch_cond,
2220         finish_switch_stmt): Likewise.
2222 2005-01-26  J"orn Rennecke <joern.rennecke@st.com>
2224         PR c++/18370
2225         * parser.c (cp_parser_initializer_clause): Initialize *non_constant_p.
2227 2005-01-25  Andrew Pinski  <pinskia@physics.uc.edu>
2229         * class.c (abort_fndecl_addr): New variable.
2230         (build_vtbl_initializer): If we have a pure virtual function
2231         share the abort function's address.
2232         Include gt-cp-class.h at the end.
2233         * config-lang.in (gtfiles): Add cp/class.c.
2235 2005-01-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
2237         * cxx-pretty-print.c (pp_cxx_statement): Add prototype. Make static.
2238         (pp_cxx_function_definition): Make static.
2239         * cxx-pretty-print.h (pp_cxx_statement): Remove prototype.
2240         (pp_cxx_function_definition): Likewise.
2242 2005-01-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
2244         * name-lookup.c (print_binding_level): Make static.
2245         (constructor_name_full): Make static inline.
2246         (current_decl_namespace): Make static.
2247         * name-lookup.h (constructor_name_full): Remove prototype.
2248         (print_binding_level): Likewise.
2249         (current_decl_namespace): Likewise.
2251 2005-01-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
2253         * decl.h (debug_bindings_indentation): Remove.
2255 2005-01-23  Kazu Hirata  <kazu@cs.umass.edu>
2257         * typeck.c: Fix a comment typo.
2259 2005-01-21  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
2261         PR c++/19208
2262         * pt.c (fold_decl_constant_value): Always call fold_non_dependent_expr
2263         at least once.
2264         (tsubst): Use fold_decl_constant_value in place of a bare call to
2265         integral_constant_value.
2267 2005-01-20  Kazu Hirata  <kazu@cs.umass.edu>
2269         * typeck.c (more_qualified_p): Remove.
2270         * cp-tree.h: Remove the corresponding prototype.
2272 2005-01-19  Matt Austern  <austern@apple.com>
2274         * typeck.c (comptypes): Handle return code from objc_comptypes
2275         correctly.
2277 2005-01-19  Kazu Hirata  <kazu@cs.umass.edu>
2279         * cp-tree.h, name-lookup.h: Remove unused prototypes.
2281 2005-01-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2283         PR c++/19375
2284         * semantics.c (finish_id_expression): Disable access checking for
2285         already lookuped FIELD_DECL.
2287 2005-01-18  Kazu Hirata  <kazu@cs.umass.edu>
2289         * decl.c (delete_block): Remove.
2290         * cp-tree.h: Remove the corresponding prototype.
2292         * decl.c (vtable_decl_p, vtype_decl_p, walk_globals_data,
2293         walk_vtables_r, walk_vtables, walk_globals_r, walk_globals):
2294         Remove.
2295         * cp-tree.h: Remove the corresponding prototypes.
2297         * tree.c (count_functions, bound_pmf_p, cp_is_overload_p,
2298         cp_update_decl_after_saving, name_p): Remove.
2299         * cp-tree.h: Remove the corresponding prototypes.
2301 2005-01-18  Andrew Pinski  <pinskia@physics.uc.edu>
2303         PR c/19472
2304         * semantics.c (finish_asm_stmt): Strip nops off
2305         input memory operands.
2307 2005-01-18  Kazu Hirata  <kazu@cs.umass.edu>
2309         * Make-lang.in, call.c, cvt.c, init.c, rtti.c, tree.c,
2310         typeck2.c: Update copyright.
2312 2005-01-16  Kazu Hirata  <kazu@cs.umass.edu>
2314         * class.c (get_enclosing_class): Remove.
2315         * cp-tree.h: Remove the corresponding prototypes.
2317         * cvt.c (convert_lvalue): Remove.
2318         * cp-tree.h: Remove the corresponding prototype.
2320         * pt.c (tinst_for_decl): Remove.
2321         * cp-tree.h: Remove the corresponding prototypes.
2323         * tree.c (hash_chainon): Remove.
2324         * cp-tree.h: Remove the corresponding prototypes.
2326 2005-01-15  Jakub Jelinek  <jakub@redhat.com>
2328         PR c++/19263
2329         * typeck2.c (split_nonconstant_init_1) <case VECTOR_TYPE>: Put a copy
2330         of CONSTRUCTOR's node into MODIFY_EXPR, as the original is modified.
2332 2005-01-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2334         * Make-lang.in (cp-warn): Don't append $(WERROR).
2336 2005-01-10  Kazu Hirata  <kazu@cs.umass.edu>
2338         * cp-tree.h: Fix a comment typo.
2340 2005-01-07  Nathan Sidwell  <nathan@codesourcery.com>
2342         PR c++/19298
2343         * pt.c (tsubst_qualified_id): Call convert_from_reference.
2345 2005-01-06  Mark Mitchell  <mark@codesourcery.com>
2347         PR c++/19244
2348         * class.c (add_implicitly_declared_members): Remove dead code.
2349         * decl.c (grokfndecl): Add sfk parameter.  Use it do set
2350         DECL_CONSTRUCTOR_P.
2351         (grokdeclarator): Adjust calls to grokfndecl.
2352         * method.c (implicitly_declare_fn): Improve documentation.
2353         * parser.c (cp_parser_direct_declarator): Do not consider a
2354         function to be a constructor if the containing class was
2355         originally anonymous.
2357 2005-01-06  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2359         PR c++/17154
2360         * search.c (lookup_field_1): Handle using declaration in
2361         class template partial specialization.
2363 2005-01-06  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2365         PR c++/19258
2366         * pt.c (push_access_scope): Handle friend defined in class.
2367         (pop_access_scope): Likewise.
2369 2005-01-06  Nathan Sidwell  <nathan@codesourcery.com>
2371         PR c++/19270
2372         * pt.c (tsubst_copy) <ARRAY_REF case>: Handle separately.
2373         (tsubst_copy_and_build) <ARRAY_REF case>: Remove obsolete
2374         array-new handling code.  Use build_x_binary_op.
2376 2005-01-05  Nathan Sidwell  <nathan@codesourcery.com>
2378         PR c++/19030
2379         * cp-tree.h (start_decl): Take pointer to pushed scope, not bool.
2380         * name-lookup.h (push_scope): Return pushed scope, not flag.
2381         * name-lookup.c (push_scope): Return scope that should be popped,
2382         not a flag.
2383         * decl.c (start_decl): Adjust.
2384         (grokfndecl): Adjust scope push and pop.
2385         * decl2.c (check_classfn): Likewise.
2386         * parser.c (cp_parser_condition, cp_parser_conversion_function_id,
2387         cp_parser_init_declarator, cp_parser_direct_declarator,
2388         cp_parser_class_specifier, cp_parser_class_head,
2389         cp_parser_lookup_name,
2390         cp_parser_constructor_declarator_p): Likewise.
2391         * pt.c (instantiate_class_template,
2392         resolve_typename_type): Likewise.
2394 2005-01-03  Volker Reichelt  <reichelt@igpm.rwth-aaachen.de>
2396         PR c++/14136
2397         * parser.c (cp_parser_unqualified_id): Do not issue error message
2398         for typedef-name as destructor declarator when performing an
2399         uncommitted tentative parse.
2401 2005-01-01  Steven Bosscher  <stevenb@suse.de>
2403         PR middle-end/17544
2404         * decl.c (finish_function): Fix comment.  Annotate the compiler
2405         generated return with the current file name and line 0.