OSDN Git Service

PR c++/26266
[pf3gnuchains/gcc-fork.git] / gcc / cp / ChangeLog
1 2006-02-18  Mark Mitchell  <mark@codesourcery.com>
2
3         PR c++/26266
4         * cp-tree.h (cp_finish_decl): Adjust declaration.
5         (grokbitfield): Likewise.
6         (finish_static_data_member_decl): Likewise.
7         * init.c (constant_value_1): Ensure processing_template_decl when
8         folding non-dependent initializers for static data members of
9         dependent types.  Return error_mark_node for erroneous
10         initailizers.
11         * class.c (get_vtable_decl): Use finish_decl, not cp_finish_decl.
12         * decl.c (cp_make_fname_decl): Adjust call to cp_finish_decl.
13         (cp_finish_decl): Add init_const_expr_p parameter.  Set
14         DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P here.
15         (finish_decl): Adjust call to cp_finish_decl.
16         (compute_array_index_type): Robustify.
17         (start_method): Use finish_decl, not cp_finish_decl.
18         * rtti.c (emit_tinfo_decl): Likewise.
19         * except.c (initialize_handler_parm): Adjust call to
20         cp_finish_decl.
21         (expand_start_catch_block): Likewise.
22         * cvt.c (build_up_reference): Adjust call to cp_finish_decl.
23         * pt.c (instantiate_class_template): Adjust call to
24         finish_static_data_member_decl.
25         (tsubst_expr): Use finish_decl, not cp_finish_decl.
26         (instantiate_decl): Adjust call to cp_finish_decl.
27         * name-lookup.c (pushdecl_top_level_1): Use finish_decl, not
28         cp_finish_decl.
29         * decl2.c (finish_static_data_member_decl): Add init_const_expr_p
30         parameter.
31         (grokfield): Likewise.
32         * parser.c (cp_parser_condition): Check for constant initializers.
33         (cp_parser_init_declarator): Adjust calls to grokfield and
34         cp_finish_decl.  Don't set
35         DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P here.
36         (cp_parser_member_declaration): Likewise.
37         (cp_parser_objc_class_ivars): Likewise.
38
39 2006-02-14  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
40
41         * call.c (standard_conversion): Return NULL instead of 0.
42         (build_user_type_conversion_1): Likewise.
43         (tourney): Likewise.
44         * decl.c (redeclaration_error_message): Likewise.
45         * error.c (language_to_string): Likewise.
46
47 2006-02-13  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
48
49         * cp-tree.h (warn_hidden): Remove prototype.
50         * class.c (warn_hidden): Make static.
51
52         * cp-tree.h (build_type_conversion): Remove prototype.
53         * cvt.c (build_type_conversion): Add prototype, make static.
54
55         * cp-tree.h (push_tinst_level): Remove prototype.
56         (pop_tinst_level): Likewise.
57         * pt.c (push_tinst_level): Add prototype, make static.
58         (pop_tinst_level): Likewise.
59
60 2006-02-13  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
61
62         * decl.c (grokdeclarator): Return NULL_TREE instead of 0.
63         * typeck.c (unary_complex_lvalue): Likewise.
64
65 2006-02-13  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
66
67         * lex.c (parse_strconst_pragma): Return error_mark_node instead of
68         "(tree)-1" to indicate failure.  Simplify.
69         (handle_pragma_interface): Test for error_mark_node instead of
70         "(tree)-1".
71         (handle_pragma_implementation): Likewise.
72
73 2006-02-13  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
74
75         PR c++/26151
76         * parser.c (cp_parser_decl_specifier_seq): Check for duplicate
77         decl-specifiers.  Remove extra check for duplicate 'friend'.
78         * decl.c (grokdeclarator): Remove check for duplicate
79         decl-specifiers.  Set longlong together with long_p.
80
81 2006-02-12  Jason Merrill  <jason@redhat.com>
82
83         PR c++/24996
84         * except.c (build_throw): Add a CLEANUP_POINT_EXPR inside the 
85         TRY_CATCH_EXPR or MUST_NOT_THROW_EXPR.
86
87 2006-02-10  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
88
89         * class.c (debug_class): Remove extern.
90         (debug_thunks): Likewise.
91
92 2006-02-09  Gabriel Dos Reis  <gdr@integrable-solutions.net>
93
94         * typeck.c (string_conv_p): Don't test for flag_const_strings.
95
96 2006-02-08  Jason Merrill  <jason@redhat.com>
97
98         PR c++/25979
99         * cp-gimplify.c (cp_gimplify_expr): Don't call
100         cp_gimplify_init_expr for MODIFY_EXPRs.
101         * typeck2.c (split_nonconstant_init_1): Use INIT_EXPR.
102
103 2006-02-08  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
104
105         PR c++/26071
106         * decl.c (grokdeclarator): Set dname also for destructor.
107
108         PR c++/26070
109         * decl.c (grokdeclarator): Clear storage_class together with staticp.
110
111 2006-02-07  Gabriel Dos Reis  <gdr@integrable-solutions.net>
112
113         * cp-tree.h (tf_warning_or_error): Renamed from tf_warn_or_error.
114         (cp_build_qualified_type): Propogate renaming.
115         * call.c (convert_like_real): Likewise.
116         * cvt.c (cp_convert_to_pointer, convert_to_reference): Likewise.
117         * decl.c (make_typename_type, grokdeclarator): Likewise.
118         * pt.c (tsubst_friend_function, instantiate_class_template,
119         tsubst_default_argument, instantiate_decl,
120         tsubst_initializer_list, tsubst_enum): Likewise.
121         * semantics.c (finish_template_type): Likewise.
122         * typeck.c (build_ptrmemfunc, convert_for_assignment): Likewise.
123
124 2006-02-07  Dirk Mueller  <dmueller@suse.com>
125
126         * typeck.c (build_binary_op): Annotate div-by-zero
127         warnings to make -Wno-div-by-zero have an effect.
128
129 2006-02-07  Mark Mitchell  <mark@codesourcery.com>
130
131         PR c++/9737
132         * pt.c (coerce_template_template_parms): Do not templates with
133         excess default arguments to match template template parameters
134         with fewer parameters.
135         (coerce_template_parms): Add use_default_args parameter; use
136         default arguments only when true.
137         (lookup_template_class): Adjust call to coerce_template_parms.
138         (fn_type_unification): Likewise.
139         (unify): Likewise.
140         (get_bindings): Likewise.
141         (dependent_type_p): Add assertions.
142
143 2006-02-06  Roger Sayle  <roger@eyesopen.com>
144
145         * decl.c (grokdeclarator): Don't bother checking for CHAR_TYPE.
146         * rtti.c (typeinfo_in_lib_p): Likewise.
147         * cp-tree.h (INTEGRAL_CODE_P, CP_INTEGRAL_TYPE_P): Likewise.
148         * name-lookup.c (arg_assoc_type): Likewise.
149
150 2006-02-04  Gabriel Dos Reis  <gdr@integrable-solutions.net>
151
152         * cp-tree.h (tf_warn_or_error): New substituion flag.
153         (cp_build_qualified_type): Use it.
154         * call.c (convert_like_real): Likewise.
155         * cvt.c (cp_convert_to_pointer): Likewise.
156         (convert_to_reference): Likewise.
157         * decl.c (make_typename_type): Likewise.
158         (grokdeclarator): Likewise.
159         * pt.c (tsubst_friend_function): Likewise.
160         (tsubst_friend_class): Likewise.
161         (instantiate_class_template): Likewise.
162         (tsubst_default_argument): Likewise.
163         (instantiate_decl): Likewise.
164         (tsubst_initializer_list): Likewise.
165         (tsubst_enum): Likewise.
166         * semantics.c (finish_template_type): Likewise.
167         * typeck.c (build_ptrmemfunc): Likewise.
168         (convert_for_assignment): Likewise.
169
170 2006-02-03  Lee Millward  <lee.millward@gmail.com>
171
172        * typeck.c (string_conv_p): Pass appropiate
173        OPT_Wxxxx values when calling warning().
174        (build_array_ref, cxx_mark_addressable): Likewise.
175        (check_return_expr): Likewise.
176
177        * init.c (perform_member_init): Likewise.
178        (sort_mem_initializers, emit_mem_initializers): Likewise.
179
180        * class.c (check_field_decls): Likewise.
181        (warn_about_ambiguous_bases): Likewise.
182
183        * decl.c (pop_label, poplevel): Likewise.
184        (duplicate_decls, grok_op_properties): Likewise.
185        (start_preparsed_function, finish_function): Likewise.
186
187        * name-lookup.c (pushdecl_maybe_friend): Likewise.
188        (pushdecl_maybe_friend): Likewise.
189
190        * parser.c (cp_parser_warn_min_max): Likewise.
191        (cp_parser_cast_expression): Likewise.
192
193        * method.c (lazily_declare_fn): Likewise.
194        * cvt.c (convert_to_void): Likewise.
195        * mangle.c (finish_mangling): Likewise.
196        * cp-gimplify.c (gimplify_expr_stmt): Likewise.
197
198 2006-02-03  Mark Mitchell  <mark@codesourcery.com>
199
200         * name-lookup.c (do_class_using_decl): Use IDENTIFIER_TYPENAME_P,
201         not IDENTIFIER_OPNAME_P.
202
203 2006-01-31  Mark Mitchell  <mark@codesourcery.com>
204
205         PR c++/25342
206         * cp-tree.h (DECL_TEMPLATE_SPECIALIZATIONS): Revise
207         documentation.
208         * pt.c (determine_specialization): Use INNERMOST_TEMPLATE_PARMS,
209         not TREE_VALUE.
210         (instantiate_class_template): Simplify.
211         (verify_class_unification): Remove.
212         (unify): Document parameters.  Use INNERMOST_TEMPLATE_ARGS to
213         permit multiple levels of template arguments.
214         (more_specialized_class): Simplify.
215         (get_class_bindings): Pass full arguments to unify.  Fold
216         verify_class_unification into this function.  Return full
217         arguments.
218         (most_specialized_class): Adjust for changes to
219         get_class_bindings.  Issue errors here for ambiguity.  Return the
220         fully deduced arguments for the most specialized class, in
221         addition to the partial specialization.
222
223 2006-01-31  Ben Elliston  <bje@au.ibm.com>
224
225         * mangle.c: Comment fix.
226
227 2006-01-29  Gabriel Dos Reis  <gdr@integrable-solutions.net>
228
229         * Make-lang.in (cp-warn): Include CXX_COMPAT_WARN.
230         * repo.c (extract_string, afgets): Use cast when converting from
231         void *. 
232
233 2006-01-29  Gabriel Dos Reis  <gdr@integrable-solutions.net>
234
235         * call.c (alloc_conversion): Use cast when converting from void *.
236         (alloc_conversions): Likewise.
237         (add_candidate): Likewise.
238         (print_z_candidates): Likewise.
239         (add_warning): Likewise.
240         * pt.c (retrieve_local_specialization): Likewise.
241         (process_partial_specialization): Likewise.
242         (mangle_class_name_for_template): Likewise.
243         (tsubst_template_args): Likewise.
244         * typeck2.c (pat_calc_hash): Likewise.
245         (pat_compare): Likewise.
246         (abstract_virtuals_error): Likewise.
247         * class.c (method_name_cmp): Likewise.
248         (resort_method_name_cmp): Likewise.
249         (get_vfield_name): Likewise.
250         * decl2.c (generate_ctor_and_dtor_functions_for_priority): Likewise.
251         * lex.c (init_reswords): Likewise.
252         * rtti.c (create_pseudo_type_info): Likewise.
253         * search.c (dfs_lookup_base): Likewise.
254         (dfs_dcast_hint_pre): Likewise.
255         (dfs_dcast_hint_post): Likewise.
256         * tree.c (hash_tree_cons): Likewise.
257         * repo.c (extract_string): Likewise.
258         (afgets): Likewise.
259         * cp-objcp-common.c (decl_shadowed_for_var_lookup): Likewise.
260         * g++spec.c (lang_specific_driver): Likewise.
261
262 2006-01-28  Gabriel Dos Reis  <gdr@integrable-solutions.net>
263
264         * call.c (joust): Pass option code to warning.  Use inform for
265         explanation. 
266         * class.c (check_bases): Likewise.
267         (maybe_warn_about_overly_private_class): Likewise.
268         (check_field_decls): Likewise.
269         (layout_empty_base): Likewise.
270         (layout_virtual_bases): Likewise.
271         (layout_class_type): Likewise.
272
273 2006-01-28  Mark Mitchell  <mark@codesourcery.com>
274
275         PR c++/25999
276         * decl.c (start_preparsed_function): Call maybe_apply_pragma_weak
277         here, not ...
278         (start_function): ... here.
279
280 2006-01-28  Mark Mitchell  <mark@codesourcery.com>
281
282         PR c++/25855
283         * class.c (resolve_address_of_overloaded_function): Adjust use of
284         return value from most_specialized_instantiation.
285         * pt.c (determine_specialization): Avoid multiple calls to
286         get_bindings.
287         (most_specialized_instantiation): When a tie occurs, set the
288         current presumed champion to the next template.  Return the
289         TREE_LIST node containing the template, rather than the template
290         itself.
291         (most_specialized): Remove.
292         * name-lookup.c (push_overloaded_decl): When duplicate_decls
293         indicates a failed redeclaration, report that to callers.
294
295 2006-01-26  Jason Merrill  <jason@redhat.com>
296
297         PR c++/16021
298         * name-lookup.c (parse_using_directive): Require strong using to
299         name a nested namespace.
300
301 2006-01-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
302
303         Revert:
304         * cp-tree.h (do_poplevel): Remove prototype.
305         * semantics.c (do_poplevel): Add prototype.  Make static.
306
307         Revert:
308         * cp-tree.h (default_conversion): Remove prototype.
309         * typeck.c (default_conversion): Make static.
310
311 2006-01-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
312
313         * cp-tree.h (get_primary_binfo): Remove prototype.
314         (push_using_decl): Likewise.
315         (current_template_args): Likewise.
316         (more_specialized_class): Likewise.
317         (mark_class_instantiated): Likewise.
318         (default_conversion): Likewise.
319         (pfn_from_ptrmemfunc): Likewise.
320         * class.c (get_primary_binfo): Add prototype, make static, simplify.
321         * name-lookup.c (push_using_decl): Make static.
322         * pt.c (current_template_args): Likewise.
323         (more_specialized_class): Likewise.
324         (mark_class_instantiated): Likewise.
325         * typeck.c (default_conversion): Make static.
326         (pfn_from_ptrmemfunc): Add prototype, make static.
327
328 2006-01-24  Dirk Mueller  <dmueller@suse.de>
329         
330         * typeck.c (build_binary_op): Use OPT_Wfloat_equal in warning().
331
332 2006-01-24  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
333
334         PR c++/25552
335         * parser.c (cp_parser_unqualified_id): Check that destructor name
336         and scope match.
337         * call.c (check_dtor_name): Do not expect a BIT_NOT_EXPR.
338         Adjust comment.  Return early if possible.
339         Use same_type_p to compare types.
340         * typeck.c (lookup_destructor): Adjust call to check_dtor_name.
341
342 2006-01-24  Mark Mitchell  <mark@codesourcery.com>
343
344         * semantics.c: Remove outdated comment.
345
346 2006-01-23  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
347
348         * cp-tree.h (do_poplevel): Remove prototype.
349         * semantics.c (do_poplevel): Add prototype.  Make static.
350
351         * cp-tree.h (original_type): Remove prototype.
352         * typeck.c (original_type): Make static.
353
354         * cp-tree.h (declare_global_var): Remove prototype.
355         * decl.c (declare_global_var): Make static.
356
357         * cp-tree.h (implicitly_declare_fn): Remove prototype.
358         * method.c (implicitly_declare_fn): Make static.
359
360         * cp-tree.h (fold_decl_constant_value): Remove prototype.
361         * pt.c (fold_decl_constant_value): Make static.
362
363         * cp-tree.h (build_x_delete): Remove prototype.
364         * init.c (build_vec_delete_1): Call build_op_delete_call directly
365         and not via build_x_delete.
366         (build_x_delete): Remove.
367
368         * cp-tree.h (get_vtt_name): Remove prototype.
369         * class.c (get_vtt_name): Remove.
370         (build_vtt): Call mangle_vtt_for_type instead of get_vtt_name.
371
372 2006-01-22  Gabriel Dos Reis  <gdr@integrable-solutions.net>
373
374         * rtti.c (build_dynamic_cast): Fix comment.
375
376 2006-01-22  Gabriel Dos Reis  <gdr@integrable-solutions.net>
377
378         PR c++/10891
379         * rtti.c (build_dynamic_cast): Reject dynamic_cast use if
380         -fno-rtti. 
381
382 2006-01-21  Mark Mitchell  <mark@codesourcery.com>
383
384         PR c++/25895
385         * class.c (build_base_path): Generate a NOP_EXPR instead of a
386         COMPONENT_REF if the base and derived classes are at the same
387         address.
388
389         PR c++/25856
390         * decl.c (begin_destructor_body): Robustify.
391
392         PR c++/25858 
393         * parser.c (cp_parser_direct_declarator): Robustify.
394         
395 2006-01-20  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
396
397         * parser.c (cp_lexer_next_token_is_keyword): Simplify.
398
399         * parser.c (clear_decl_specs): Remove prototype.
400
401         * parser.c (cp_parser_expression_fn): Remove.
402
403         * call.c (add_builtin_candidates): Remove superfluous return.
404         * name-lookup.c (do_toplevel_using_decl): Likewise.
405         * parser.c (cp_parser_type_specifier_seq): Likewise.
406         (cp_parser_save_default_args): Likewise.
407
408 2006-01-20  Dirk Mueller  <dmueller@suse.com>
409
410         PR c++/5520
411         * semantics.c (finish_if_stmt): Call empty_body_warning.
412         * parser.c (cp_parser_implicitly_scoped_statement):
413         Mark empty statement with an empty stmt.
414
415 2006-01-19  Mark Mitchell  <mark@codesourcery.com>
416
417         PR c++/22136
418         * name-lookup.c (do_class_using_decl): Don't try to look up base
419         classes in templates with dependent base types.
420
421 2006-01-19  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
422
423         PR c++/25854
424         * pt.c (maybe_process_partial_specialization): Return early on
425         error_mark_node.
426
427 2006-01-19  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
428
429         PR c++/16829
430         * decl.c (start_preparsed_function): Check default arguments
431         unconditionally.
432         * name-lookup.c (pushdecl_maybe_friend): Check default arguments
433         of all functions and function templates.
434         * parser.c (cp_parser_late_parsing_default_args): Check default
435         arguments.
436         * decl2.c (check_default_args): Set missing default arguments to
437         error_mark_node.
438
439 2006-01-18  Mark Mitchell  <mark@codesourcery.com>
440
441         PR c++/25836
442         * cp-tree.h (push_class_stack): New function.
443         (pop_class_stack): Likewise.
444         * class.c (class_stack_node): Add hidden field.
445         (pushclass): Clear it.
446         (push_class_stack): New function.
447         (pop_class_stack): Likewise.
448         (currently_open_class): Ignore hidden classes.
449         (currently_open_derived_class): Likewise.
450         * name-lookup.c (push_to_top_level): Call push_class_stack.
451         (pop_from_top_level): Call pop_class_stack.
452
453 2006-01-18  Kazu Hirata  <kazu@codesourcery.com>
454
455         * tree.c (find_tree_t, find_tree): Remove.
456         * cp-tree.h: Remove the prototype for find_tree.
457
458 2006-01-18  Jakub Jelinek  <jakub@redhat.com>
459
460         * search.c (lookup_conversions_r): Fix a pasto.
461
462 2006-01-17  Eric Christopher  <echristo@apple.com>
463
464         * call.c (convert_like_real): When issuing conversion
465         warnings, depend on OPT_Wconversion.
466         * cvt.c (build_expr_type_conversion): Ditto.
467
468 2006-01-17  Kazu Hirata  <kazu@codesourcery.com>
469
470         * name-lookup.c (lookup_namespace_name): Remove.
471         * name-lookup.h: Remove the prototype for
472         lookup_namespace_name.
473
474 2006-01-17  Jakub Jelinek  <jakub@redhat.com>
475
476         PR c/25682
477         * decl.c (compute_array_index_type): After issuing not an integral
478         constant-expression error, set size to 1 to avoid ICEs later on.
479
480 2006-01-16  Ian Lance Taylor  <ian@airs.com>
481
482         * parser.c: Include "cgraph.h".
483         (cp_parser_asm_definition): Call cgraph_add_asm_node rather than
484         assemble_asm.
485
486 2006-01-16  Rafael ï¿½ila de Esp�dola  <rafael.espindola@gmail.com>
487
488         * g++spec.c (lang_specific_spec_functions): Remove.
489
490 2006-01-15  Gabriel Dos Reis  <gdr@integrable-solutions.net>
491
492         * decl.c (check_initializer): Fix thinko.
493
494 2006-01-14  Mark Mitchell  <mark@codesourcery.com>
495
496         PR c++/25663
497         * parser.c (cp_parser_direct_declarator): Use cp_parser_error
498         instead of error.
499
500 2006-01-13  Jason Merrill  <jason@redhat.com>
501
502         * pt.c (check_explicit_specialization): Use CP_DECL_CONTEXT even more.
503
504         * name-lookup.c (set_decl_namespace): Use CP_DECL_CONTEXT.
505         * pt.c (check_explicit_specialization): Likewise.
506
507 2006-01-12  Jason Merrill  <jason@redhat.com>
508
509         PR libstdc++/24660
510         * pt.c (check_explicit_specialization): Handle namespace
511         association.
512         * name-lookup.c (set_decl_namespace): Likewise.
513
514 2006-01-12  Nathan Sidwell  <nathan@codesourcery.com>
515
516         PR c++/24824
517         * class.c (handle_using_decl): Pass correct scope to
518         cp_emit_debug_info_for_using.
519
520 2006-01-11  Nathan Sidwell  <nathan@codesourcery.com>
521
522         PR c++/25386
523         * tree.c (lvalue_p_1): Any part of a COMPONENT_REF affects
524         packedness.
525
526 2006-01-06  Gabriel Dos Reis  <gdr@integrablesolutions.net>
527
528         * parser.c (cp_parser_primary_expression): Document the grammar
529         for the built-in offsetof, a GNU extension.
530
531 2006-01-04  Zdenek Dvorak <dvorakz@suse.cz>
532
533         PR c++/25632
534         * init.c (constant_value_1): Unshare use of DECL_INITIAL.  Fix a typo
535         in condition.
536
537 2006-01-04  Chris Lattner  <sabre@gnu.org>
538
539         * typeck2.c: update copyright to 2006
540         (split_nonconstant_init_1):  Set TREE_CONSTANT to true.
541
542 2006-01-04  Mark Mitchell  <mark@codesourcery.com>
543
544         PR c++/24782
545         * parser.c (cp_parser_nested_name_specifier_opt): Preserve access
546         checks, even when parsing tentatively.
547
548 2006-01-04  Richard Henderson  <rth@redhat.com>
549
550         Merge from gomp branch.
551         * lex.c (handle_pragma_java_exceptions): Fix whitespace.
552         * parser.c (struct cp_token): Add pragma_kind.
553         (eof_token): Update to match.
554         (struct cp_lexer): Add in_pragma; rearrange next for better packing.
555         (cp_parser_initial_pragma): New.
556         (cp_lexer_new_main): Use it.  Don't bother clearing
557         c_lex_return_raw_strings.
558         (cp_lexer_get_preprocessor_token): Always initialize keyword
559         and pragma_kind fields.  Handle CPP_PRAGMA.
560         (cp_lexer_consume_token): Don't allow CPP_PRAGMA_EOL when
561         in_pragma is set.
562         (cp_lexer_handle_pragma): Remove.  Update callers to cp_parser_pragma.
563         (cp_lexer_print_token) <CPP_PRAGMA>: Don't print as a string.
564         (cp_parser_skip_to_pragma_eol): New.
565         (cp_parser_error): Use it.
566         (cp_parser_skip_to_closing_parenthesis): Stop at CPP_PRAGMA_EOL;
567         rearrange with switch statement.
568         (cp_parser_skip_to_end_of_statement): Likewise.
569         (cp_parser_skip_to_end_of_block_or_statement): Likewise.
570         (cp_parser_skip_to_closing_brace): Likewise.
571         (cp_parser_skip_until_found): Likewise.
572         (cp_parser_statement): Add in_compound argument; update callers.
573         Use it to decide how to handle pragma parsing.
574         (cp_parser_labeled_statement): Add in_compound argument; pass
575         it on to cp_parser_statement.
576         (cp_parser_statement_seq_opt): Stop at CPP_PRAGMA_EOL.
577         (cp_parser_declaration_seq_opt): Likewise.
578         (cp_parser_parameter_declaration): Likewise.
579         (cp_parser_member_specification_opt): Likewise.
580         (cp_parser_function_definition_after_decl): Likewise.
581         (cp_parser_cache_group): Handle CPP_PRAGMA/CPP_PRAGMA_EOL pairs.
582         (cp_parser_pragma): New.
583         (pragma_lex): New.
584
585 2006-01-04  Dirk Mueller <dmueller@suse.com>
586
587         * decl.c (finish_constructor_body): create simple
588         compound stmt instead of a if(1) { } construct.
589
590 2006-01-03  Mark Mitchell  <mark@codesourcery.com>
591
592         PR c++/25492
593         * name-lookup.c (push_class_level_binding): When a derived class
594         provides a type binding, eliminate any type binding from a base
595         class.
596
597         PR c++/25625
598         * repo.c (repo_emit_p): Always instantiate static data members
599         initialized by constant expressions, so that there values are
600         available.
601
602 2006-01-02  Mark Mitchell  <mark@codesourcery.com>
603
604         PR c++/25635
605         * class.c (add_method): Set TYPE_HAS_CONVERSION for classes with a
606         conversion operator.
607         * decl.c (grokdeclarator): Do not set TYPE_HAS_CONVERSION here.
608
609         PR c++/25638
610         * class.c (add_method): Never associate more than one destructor
611         with a single class.
612
613         PR c++/25637
614         * cp-tree.h (do_friend): Adjust prototype.
615         * decl.c (grokfndecl): Make funcdef_flag a bool, not an int.
616         (grokdeclarator): Likewise.  Refine check for invalid
617         declarations/definitions of member functions outside of their own
618         class.
619         * friend.c (do_friend): Make funcdef_flag a bool, not an int.
620
621         PR c++/25633
622         * parser.c (cp_parser_mem_initializer_list): Check result of
623         cp_parser_mem_initializer against error_mark_node, not NULL_TREE.
624         (cp_parser_mem_initializer): Return error_mark_node for failure.
625
626         PR c++/25634
627         * parser.c (cp_parser_template_parameter_list): Call
628         begin_template_parm_list and end_template_parm_list here.
629         (cp_parser_type_parameter): Not here.
630         (cp_parser_template_declaration_after_export): Or here.
631         (cp_parser_elaborated_type_specifier): Call
632         cp_parser_check_template_parameters.
633
634         * tree.c (build_target_expr_with_type): Use force_target_expr.
635
636         * decl2.c (mark_used): Fix typo in comment.
637
638 2006-01-02  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
639
640         * parser.c (cp_parser_using_declaration): Skip name-lookup on
641         invalid scope.
642
643 2005-12-30  Gabriel Dos Reis  <gdr@integrable-solutions.net>
644
645         * cxx-pretty-print.c (pp_cxx_constant): New.  Print
646         string-literal in parens if input program says so.
647         (pp_cxx_primary_expression): Hand off constant printing to
648         pp_cxx_constant.
649         (pp_cxx_pretty_printer_init): Set pp->c_base.constant.
650         (pp_cxx_expression): Use pp_cxx_constant for literals.
651         * error.c (dump_expr): Use pp_constant for literals.
652
653 2005-12-29  Nathan Sidwell  <nathan@codesourcery.com>
654
655         * method.c (make_thunk): Don't set comdat_linkage here.
656         (use_thunk): Make thunk one only here, if thunk target is
657         DECL_ONE_ONLY.
658
659 2005-12-26  Mark Mitchell  <mark@codesourcery.com>
660
661         PR c++/25439
662         * decl.c (grokdeclarator): Remove dead code.
663         * ptree.c (cxx_print_xnode): Handle BASELINK.
664         * parser.c (make_id_declarator): Add sfk parameter.
665         (cp_parser_direct_declarator): Do not pass TYPE_DECLs to
666         make_id_declarator.
667         (cp_parser_declarator_id): Simplify BASELINKs here.
668         (cp_parser_member_declaration): Adjust calls to
669         make_id_declarator.
670
671 2005-12-26  Mark Mitchell  <mark@codesourcery.com>
672
673         PR c++/23171, c++/23172, c++/25417.
674         * typeck.c (build_unary_op): Create temporary variables for
675         compound literals whose addresses are taken.
676         * init.c (expand_aggr_init_1): Use COMPOUND_LITERAL_P.
677         * decl.c (reshape_init_vector): Likewise.
678         (reshape_init): Give it external linkage.
679         (check_initializer): Use COMPOUND_LITERAL_P.
680         (initialize_artificial_var): Allow the initializer to be a
681         CONSTRUCTOR.
682         * call.c (make_temporary_var_for_ref_to_temp): Use
683         create_temporary_var.
684         * cp-tree.h (COMPOUND_LITERAL_P): New macro.
685         (rehape_init): Declare.
686         * typeck2.c (digest_init): Use COMPOUND_LITERAL_P.
687         * semantics.c (finish_compound_literal): Use reshape_init.
688
689 2005-12-23  Mark Mitchell  <mark@codesourcery.com>
690
691         PR c++/24671
692         * pt.c (instantiate_template): Handle SFINAE.
693
694 2005-12-23  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
695
696         * decl.c (grokdeclarator): Improve diagnostic for friend
697         declarations of class members.
698
699 2005-12-22  Mark Mitchell  <mark@codesourcery.com>
700
701         PR c++/25369
702         * tree.c (really_overloaded_fn): Tweak comment.
703         * pt.c (tsubst_call_declarator_parms): Remove.
704         (tsubst_copy): Call mark_used on the member referenced by an
705         OFFSET_REF.
706         * semantics.c (finish_qualified_id_expr): Simplify.
707         * decl2.c (mark_used): Accept BASELINKs.
708
709         PR c++/25364
710         * typeck.c (build_unary_op): Pass DECLs not names to
711         build_offset_refs.
712         * init.c (build_offset_ref): Do not do name lookup.  Do not call
713         mark_used.
714         * call.c (build_call): Simplify and tidy.
715         * semantics.c (finish_qualified_id_expr): Call mark_used.
716
717 2005-12-22  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
718
719         PR c++/23333
720         * parser.c (cp_parser_pure_specifier): Check for PURE_ZERO to
721         identify a single '0'.
722
723 2005-12-20  Mark Mitchell  <mark@codesourcery.com>
724
725         PR c++/21228
726         * decl.c (use_eh_spec_block): New function.
727         (store_parm_decls): Use it.
728         (finish_function): Likewise.
729
730 2005-12-19  Mark Mitchell  <mark@codesourcery.com>
731
732         PR c++/24278
733         * init.c (expand_member_init): Print messages about baseclasses
734         using %T rather than %D.
735
736         PR c++/24915
737         * class.c (add_method): Do not treat templates as identical unless
738         their return types are the same.
739
740 2005-12-12  Mark Mitchell  <mark@codesourcery.com>
741
742         PR c++/25300
743         * tree.c (build_qualified_name): Return error_mark_node for
744         erroneous input.
745
746 2005-12-10  Mark Mitchell  <mark@codesourcery.com>
747
748         PR c++/25337
749         * pt.c (tsubst_copy_and_build): Permit dependent types for the
750         object in a class member access expression.
751
752 2005-12-10  Terry Laurenzo  <tlaurenzo@gmail.com>
753
754         PR java/9861
755         * mangle.c (write_bare_function_type): Mangle return type for
756         methods of Java classes
757
758 2005-12-08  Th�dore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
759
760         * call.c (build_conditional_expr): Print types in error messages.
761
762 2005-12-07  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
763
764         * expr.c (cxx_expand_expr): Call gcc_unreachable instead of abort.
765
766 2005-12-07  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
767
768         * cp-gimplify.c (gimplify_cp_loop): Use fold_build3.
769
770 2005-12-07  Rafael ï¿½ila de Esp�dola  <rafael.espindola@gmail.com>
771
772         * Make-lang.in (c++.all.build, c++.install-normal): Remove.
773
774 2005-12-07  Rafael ï¿½ila de Esp�dola  <rafael.espindola@gmail.com>
775
776         * Make-lang.in: Remove all dependencies on s-gtype.
777
778 2005-12-06  Aldy Hernandez  <aldyh@redhat.com>
779
780        PR C++/24138
781         * decl.c (reshape_init_array_1): Handle max_index of -1.
782
783 2005-12-06  Roger Sayle  <roger@eyesopen.com>
784
785         * typeck.c (build_binary_op): Issue warning if either operand of a
786         comparison operator is a string literal, except for testing equality
787         or inequality against NULL.
788
789 2005-12-06  Roger Sayle  <roger@eyesopen.com>
790
791         PR c++/25263
792         * decl.c (compute_array_index_type): Check that itype is an
793         INTEGER_CST node before testing/clearing TREE_OVERFLOW.
794
795 2005-12-05  Daniel Berlin  <dberlin@dberlin.org>
796
797         * ptree.c (cxx_print_decl): Update to check for decl_common
798         structure.
799
800 2005-12-02  Mark Mitchell  <mark@codesourcery.com>
801
802         PR c++/24173
803         * decl.c (duplicate_decls): Don't rely on DECL_TEMPLATE_INFO after
804         clobbering newdecl.
805
806 2005-12-02  Richard Guenther  <rguenther@suse.de>
807
808         * semantics.c (simplify_aggr_init_expr): Use buildN instead
809         of build.
810
811 2005-12-02  Gabriel Dos Reis  <gdr@integrable-solutions.net>
812
813         * parser.c (cp_lexer_new_main): Usr GGC_RESIZEVEC instead of
814         ggc_realloc.
815         (cp_parser_template_argument_list): Use XRESIZEVEC instead of
816         xrealloc.
817         * class.c (pushclass): Likewise.
818
819 2005-12-02  Gabriel Dos Reis  <gdr@integrable-solutions.net>
820
821         * decl2.c (get_priority_info): Use XNEW, not xmalloc.
822         * decl.c (push_switch): Likewise.
823         * lex.c (handle_pragma_implementation): Likewise.
824         * cp-objcp-common.c (decl_shadowed_for_var_insert): Use GGC_NEW,
825         not ggc_alloc.
826         (cxx_initialize_diagnostics): Use XNEW, not xmalloc.
827         * class.c (init_class_processing): Use XNEWVEC, not xmalloc.
828         * g++spec.c (lang_specific_driver): Likewise.
829         * mangle.c (save_partially_mangled_name): Likewise.
830         * parser.c (cp_lexer_new_main): Use GGC_NEWVEC, not ggc_alloc.
831         (cp_parser_template_argument_list): Use XNEWVEC, nto xmalloc.
832         (cp_parser_sizeof_operand): Likewise.
833         * repo.c (open_repo_file, open_repo_file): Likewise.
834
835 2005-12-01  Gabriel Dos Reis  <gdr@integrable-solutions.net>
836
837         * parser.c (cp_parser_make_typename_type): Call make_typename_type
838         with tf_none instead of magic value 0.
839         (cp_parser_explicit_instantiation): Call do_type_instantiation
840         with tf_error instead of magic value 1.
841         (cp_parser_elaborated_type_specifier): Call make_typename_type
842         with tf_error instead of magic value 1.
843         (cp_parser_class_name): Likewise.
844         (cp_parser_lookup_name): Likewise.
845
846 2005-12-01  Gabriel Dos Reis  <gdr@integrable-solutions.net>
847
848         * parser.c (cp_parser_declaration): Set token2.type to CPP_EOF,
849         not RID_MAX.
850
851 2005-11-30  Jason Merrill  <jason@redhat.com>
852
853         PR c++/21123
854         * cp-gimplify.c (cp_genericize_r): Don't dereference invisible reference
855         parms in a thunk.
856
857 2005-11-30  Ben Elliston  <bje@au.ibm.com>
858
859         * typeck.c (build_x_unary_op): Correct spelling in error message.
860
861 2005-11-28  Nathan Sidwell  <nathan@codesourcery.com>
862
863         PR c++/21166
864         * class.c (check_field_decls): Only set DECL_PACKED on a field
865         when its natural alignment is > BITS_PER_UNIT.
866
867 2005-11-27  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
868
869         PR c++/24979
870         * cp-tree.h (DECL_MAIN_P): Remove duplicate definition.
871
872 2005-11-26  Richard Henderson  <rth@redhat.com>
873
874         * lex.c: Update for pragma_lex rename.
875         * parser.c: Likewise.
876
877 2005-11-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
878
879         PR c++/9278
880         * decl.c (grokparms): Do not allow typedef-names in a '(void)'
881         parmlist.
882
883 2005-11-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
884
885         * typeck2.c (process_init_constructor_union): Remove check for
886         unnamed union members.
887
888 2005-11-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
889
890         * name-lookup.c (lookup_name_real): Merge two if's.
891
892 2005-11-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
893
894         * pt.c (instantiate_class_template): Clean-up.
895
896 2005-11-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
897
898         * pt.c (template_class_depth_real): Remove. Move functionality to ...
899         (template_class_depth): ... here, replacing count_specializations
900         with 0.  Adjust comment.
901
902 2005-11-24  Richard Guenther  <rguenther@suse.de>
903         Dirk Mueller <dmueller@suse.de>
904
905         PR c++/14024
906         * typeck.c (build_reinterpret_cast_1): Use
907         strict_aliasing_warning.
908
909 2005-11-23  Gabriel Dos Reis  <gdr@integrable-solutions.net>
910
911         PR c++/24235
912         * pt.c (check_instantiated_args): Reword diagnostic message about
913         template argument involving local types.
914
915 2005-11-23  Gabriel Dos Reis  <gdr@integrable-solutions.net>
916
917         PR c++/21667
918         * typeck.c (build_array_ref): Avoid code duplicate.  Use common
919         C/C++ diagnostic function warn_array_subscript_with_type_char.
920
921 2005-11-21  Gabriel Dos Reis  <gdr@integrable-solutions.net>
922
923         PR c++/22238
924         * error.c (resolve_virtual_fun_from_obj_type_ref): New.
925         (dump_expr): Use it in <case CALL_EXPR>.
926
927 2005-11-21  Richard Henderson  <rth@redhat.com>
928
929         * cp-objcp-common.h, name-lookup.c, name-lookup.h: Revert 11-18 patch.
930
931         * name-lookup.c (lookup_name): Remove prefer_type argument.
932         (lookup_name_prefer_type): New.
933         * decl.c (lookup_and_check_tag): Use them.
934         * pt.c (tsubst_friend_class): Likewise.
935         (lookup_template_class): Likewise.
936         (tsubst_copy_and_build): Likewise.
937         * name-lookup.h (lookup_name_prefer_type): New.
938         (lookup_name): Remove declaration.
939
940 2005-11-18  Mark Mitchell  <mark@codesourcery.com>
941
942         PR c++/8355
943         * decl.c (grokfndecl): Set up DECL_TEMPLATE_INFO before calling
944         set_decl_namespace.
945         * name-lookup.c (set_decl_namespace):
946
947 2005-11-18  Mike Stump  <mrs@apple.com>
948
949         * cp-objcp-common.h (LANG_HOOKS_LOOKUP_NAME): Add.
950         * name-lookup.c (lookup_name_two): Remove.
951         (lookup_name_one): Add.
952         * name-lookup.h (lookup_name_two): Remove.
953         (lookup_name_one): Add.
954
955 2005-11-15  Jason Merrill  <jason@redhat.com>
956
957         PR c++/24580
958         * method.c (locate_copy): Also use skip_artificial_parms here.
959         (synthesize_exception_spec): Use CLASS_TYPE_P rather than checking
960         for RECORD_TYPE.
961         (locate_ctor): Abort if we fail to find a default constructor.
962
963 2005-11-15  Mike Stump  <mrs@apple.com>
964
965         * name-lookup.c (lookup_name_two): Add.
966         * name-lookup.h: Likewise.
967
968 2005-11-15  Mark Mitchell  <mark@codesourcery.com>
969
970         PR c++/24667
971         * typeck.c (check_for_casting_away_constness): Use the diag_fn.
972         (build_const_cast_1): Call it, for C-style casts.
973
974 2005-11-14  Mark Mitchell  <mark@codesourcery.com>
975
976         PR c++/24687
977         * pt.c (check_explicit_specialization): Don't check for C linkage.
978         (push_template_decl_real): Likewise.
979         * parser.c (cp_parser_explicit_specialization): Check here.
980         (cp_parser_template_declaration_after_export): And here.
981
982         * parser.c (cp_lexer_get_preprocessor_token): Initialize keyword
983         field.
984
985 2005-11-14  Jason Merrill  <jason@redhat.com>
986
987         PR c++/24580
988         * method.c (locate_ctor): Skip all artificial parms, not just
989         'this'.
990
991 2005-11-14  Mark Mitchell  <mark@codesourcery.com>
992
993         * parser.c (eof_token): Add initializer for ambiguous_p.
994
995 2005-11-13  Mark Mitchell  <mark@codesourcery.com>
996
997         PR c++/24817
998         * decl.c (check_redeclaration_exception_specification): New
999         function.
1000         (duplicate_decls): Use it.
1001         * error.c (fndecl_to_string): Print the template parameter list.
1002
1003         PR c++/20293
1004         * cxx-pretty-print.c (pp_cxx_statement): Print qualifying scopes
1005         for namespaces.
1006         (pp_cxx_original_namespace_definition): Likewise.
1007         * name-lookup.c (ambiguous_decl): Don't issue error messages;
1008         instead return lists of ambiguous candidates.
1009         (select_decl): Handle ambiguous namespace lookups.
1010         * parser.c (cp_token): Add ambiguous_p.
1011         (cp_lexer_get_preprocessor_token): Set it.
1012         (cp_parser_diagnose_invalid_type_name): Avoid duplicate messages
1013         when a qualified name uses an invalid scope.
1014         (cp_parser_primary_expression): Print ambiguous candidates.
1015         (cp_parser_type_parameter): Adjust comment to reflect new
1016         parameter name for cp_parser_lookup_name.
1017         (cp_parser_template_argument): Likewise.
1018         (cp_parser_elaborated_type_specifier): Likewise.
1019         (cp_parser_namespace_name): Likewise.
1020         (cp_parser_class_name): Print ambiguous candidates.
1021         (cp_parser_lookup_name): Rename ambiguous_p parameter to
1022         ambiguous_decls.  Use it to return a list of ambiguous candiates
1023         when a lookup is ambiguous.
1024         (cp_parser_lookup_name_simple): Adjust comment to reflect new
1025         parameter name for cp_parser_lookup_name.
1026
1027 2005-11-12  Jakub Jelinek  <jakub@redhat.com>
1028
1029         PR c++/24780
1030         * typeck.c (complete_type): Set TYPE_NEEDS_CONSTRUCTING
1031         and TYPE_HAS_NONTRIVIAL_DESTRUCTOR flags for all variants
1032         of array type.
1033
1034         PR c++/24761
1035         * pt.c (tsubst_copy_asm_operands): New function.
1036         (tsubst_expr) <case ASM_EXPR>: Use it.
1037
1038 2005-11-08  Jakub Jelinek  <jakub@redhat.com>
1039
1040         PR c++/19450
1041         * decl.c (redeclaration_error_message): Issue diagnostics about
1042         olddecl and newdecl disagreement on __thread property.
1043         (grokdeclarator): Set DECL_TLS_MODEL on class static variables.
1044
1045 2005-11-08  Jason Merrill  <jason@redhat.com>
1046
1047         PR c++/21123
1048         * method.c (use_thunk): Use build_cplus_new instead of
1049         force_target_expr.
1050
1051 2005-11-06  Jason Merrill  <jason@redhat.com>
1052             James A. Morrison <phython@gcc.gnu.org>
1053
1054         PR c++/17256
1055         * decl2.c (cp_finish_file): Fix conditions for undefined warning.
1056         Set TREE_NO_WARNING instead of TREE_PUBLIC.
1057         * pt.c (instantiate_pending_templates): Set DECL_INITIAL to avoid
1058         a warning on a function we didn't instantiate because of excessive
1059         recursion.
1060
1061 2005-11-06  Mark Mitchell  <mark@codesourcery.com>
1062
1063         * class.c (record_subobject_offsets): Don't record offsets past
1064         biggest empty class for non-empty base classes.
1065         (layout_class_type): Use TYPE_SIZE_UNIT, not TYPE_SIZE, when
1066         keeping track of the size of emptyclasses.
1067
1068         PR c++/21308
1069         * class.c (sizeof_biggest_empty_class): New variable.
1070         (record_subobject_offsets): Don't record offsets past biggest
1071         empty class for data members.  Replace vbases_p parameter with
1072         is_data_member parameter.
1073         (build_base_field): Adjust call.
1074         (layout_class_type): Likewise.  Maintain
1075         sizeof_biggest_empty_class.
1076
1077 2005-11-05  Kazu Hirata  <kazu@codesourcery.com>
1078
1079         * decl2.c, init.c, typeck.c: Fix comment typos.
1080
1081 2005-11-04  Richard Guenther  <rguenther@suse.de>
1082
1083         PR c++/22487
1084         * init.c (build_vec_init): Build comparison of matching
1085         types.
1086
1087 2005-11-03  Josh Conner  <jconner@apple.com>
1088
1089         PR c++/19989
1090         pt.c (tsubst): Accept zero-length array if tf_error is set
1091         in complain flags.  Change error message for negative-
1092         length array.
1093
1094 2005-11-04  Joseph S. Myers  <joseph@codesourcery.com>
1095
1096         * cp-tree.h (cp_cpp_error), error.c (cp_cpp_error): Take va_list*
1097         parameter.
1098
1099 2005-11-03  Joseph S. Myers  <joseph@codesourcery.com>
1100
1101         PR c++/17964
1102         * error.c (cp_cpp_error): New function.
1103         * cp-tree.h (cp_cpp_error): Declare.
1104         * parser.c (cp_lexer_new_main): Set CPP option client_diagnostic
1105         and error callback after lexing.
1106
1107 2005-11-03  Mark Mitchell  <mark@codesourcery.com>
1108
1109         PR c++/21627
1110         * pt.c (register_specialization): Update inline flags on clones.y
1111
1112 2005-11-03  Andrew Pinski  <pinskia@physics.uc.edu>
1113
1114         PR c++/24582
1115         * decl.c (declare_local_label): Return 0 for variables
1116         with error_mark_node as their types.
1117
1118 2005-11-02  Mark Mitchell  <mark@codesourcery.com>
1119
1120         PR c++/22434
1121         * call.c (build_conditional_expr): Do bad conversions, if there's
1122         no other choice.
1123
1124         PR c++/24560
1125         * parser.c (cp_parser_postfix_dot_deref_expression): Improve error
1126         message for use of overloaded functions on LHS of "." operator.
1127
1128         PR c++/19253
1129         * parser.c (cp_parser_postfix_expression): Use
1130         cp_parser_elaborated_type_specifier to handle typename-types in
1131         functional casts.
1132         (cp_parser_enclosed_argument_list): Skip ahead to the end of the
1133         template argument list if the closing ">" is not found.
1134
1135         PR c++/24569
1136         * pt.c (instantiate_decl): Use cp_finish_decl, not
1137         finish_static_data_member_decl.
1138
1139 2005-10-28  Andrew Pinski  <pinskia@physics.uc.edu>
1140
1141         * decl.c (grokfndecl): Remove the setting
1142         of the return type of the function type
1143         of main after erroring about must returning
1144         int.
1145
1146 2005-10-28  Andrew Pinski  <pinskia@physics.uc.edu>
1147
1148         PR C++/23229
1149         * decl.c (grokfndecl): Create a new function type
1150         after erroring out about main not returning int.
1151
1152 2005-10-28  Josh Conner  <jconner@apple.com>
1153
1154         PR c++/22153
1155         * parser.c (cp_parser_member_declaration): Detect and handle
1156         a template specialization.
1157
1158 2005-10-28  Andrew Pinski  <pinskia@physics.uc.edu>
1159
1160         PR C++/23426
1161         * decl.c (start_decl): Check that the decl is an
1162         error_mark_node before getting the type.
1163         Remove the check for the decl's type being an
1164         error_mark_node.
1165
1166 2005-10-21  Mark Mitchell  <mark@codesourcery.com>
1167
1168         PR c++/24260
1169         * parser.c (cp_parser_init_declarator): Pass attributes to
1170         grokfield.
1171
1172 2005-10-20  Mark Mitchell  <mark@codesourcery.com>
1173
1174         PR c++/22618
1175         * search.c (accessible_p): Check access in the outermost set of
1176         template parameters.
1177
1178 2005-10-20  Richard Guenther  <rguenther@suse.de>
1179
1180         * decl.c (grokdeclarator): Fix ambiguous pedwarn message.
1181
1182 2005-10-18  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1183
1184         PR c++/22293
1185         * decl.c (grokdeclarator): Reject unqualified destructors in
1186         friend declarations.
1187
1188 2005-10-18  Mark Mitchell  <mark@codesourcery.com>
1189
1190         PR c++/23293
1191         * pt.c (convert_template_argument): Use canonical type variants in
1192         template specializations.
1193
1194 2005-10-18  Nathan Sidwell  <nathan@codesourcery.com>
1195
1196         PR c++/21383
1197         * name-lookup.c (arg_assoc): Template args can be null in a
1198         template-id-expr.
1199
1200         PR c++/22604
1201         * class.c (update_vtable_entry_for_fn): Don't process invalid
1202         covariant overriders.
1203
1204         PR c++/23118
1205         * cp-tree.h (add_method): Add return value.
1206         * class.c (add_method): Return success indicator.
1207         * semantics.c (finish_member_declaration): Don't add an invalid
1208         method to the method list.
1209
1210 2005-10-17  Mark Mitchell  <mark@codesourcery.com>
1211
1212         PR c++/21908
1213         * call.c (build_new_method_call): Do not show VTT parameters to
1214         the user.
1215
1216 2005-10-17  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1217
1218         PR c++/23440
1219         * parser.c (cp_parser_statement): If the parser reached CPP_EOF,
1220         only complain about missing statement.
1221
1222 2005-10-17  Nathan Sidwell  <nathan@codesourcery.com>
1223
1224         PR c++/24386
1225         * cp-tree.h (BASELINK_QUALIFIED_P): New.
1226         * pt.c (tsubst_copy_and_build): <CALL_EXPR case>: Use it.
1227         * typeck.c (finish_class_member_access_expr): Set it.
1228
1229         PR c++/21353
1230         * decl.c (check_default_argument): Don't check
1231         processing_template_decl or uses_template_parms here.
1232         (grokparms): Only call check_default_argument when not processing
1233         a template decl.
1234         * parser.c (cp_parser_late_parsing_default_arg): Call
1235         check_default_argument when not processing a template decl.
1236
1237 2005-10-16  Mark Mitchell  <mark@codesourcery.com>
1238
1239         PR c++/24389
1240         * decl2.c (mark_used): Use uses_template_parms instead of
1241         dependent_type_p.
1242         * init.c (constant_value_1): Handle uninstantiated templates
1243         specially.
1244         * pt.c (instantiate_decl): Add sanity check.
1245
1246 2005-10-16  Mark Mitchell  <mark@codesourcery.com>
1247
1248         PR c++/22173
1249         * typeck.c (check_template_keyword): Fix thinko.
1250
1251 2005-10-16  Andrew Pinski  <pinskia@physics.uc.edu>
1252
1253         PR c++/23959
1254         * decl.c (pop_switch): Only call c_do_switch_warnings
1255         when not processing templates.
1256
1257 2005-10-16  Mark Mitchell  <mark@codesourcery.com>
1258
1259         PR c++/22173
1260         * cp-tree.h (QUALIFIED_NAME_IS_TEMPLATE): New macro.
1261         (check_template_keyword): New function.
1262         (finish_id_expression): Change prototoype.
1263         (finish_qualified_id_expr): Change prototype.
1264         (build_qualified_name): New function.
1265         (finish_class_member_access_expr): Change prototype.
1266         * init.c (build_offset_ref): Use build_qualified_name.
1267         * mangle.c (write_expression): Likewise.
1268         * parser.c (cp_parser_primary_expression): Remove qualifying_class
1269         parameter.  Add address_p and template_arg_p.  Use
1270         build_qualified_name.
1271         (cp_parser_id_expression): Default *template_p to
1272         template_keyword_p.  Check for invalid uses of the template
1273         keyword.
1274         (cp_parser_postfix_expression): Eliminate special handling for
1275         qualified names.  Adjust call to cp_parser_primary_expression.
1276         (cp_parser_postfix_dot_deref_expression): Adjust call to
1277         cp_parser_id_expression and finish_class_member_access_expr.
1278         (cp_parser_template_argument_list): Add comment.
1279         (cp_parser_template_argument): Adjust use of
1280         cp_parser_primary_expression.  Remove call to
1281         finish_qualified_id_expr.
1282         (cp_parser_lookup_name): Use build_qualified_name.
1283         * pt.c (tsubst): Use build_qualified_name.
1284         (tsubst_qualified_id): Likewise.  Adjust call to
1285         finish_qualified_id_expr.
1286         (tsubst_copy): Use build_qualified_name.
1287         (tsubst_copy_and_build): Adjusts call to finish_id_expression and
1288         finish_class_member_access_expr.
1289         * semantics.c (finish_non_static_data_member): Use
1290         build_qualified_name.
1291         (finish_qualified_id_expr): Add template_p and template_arg_p
1292         parameters.
1293         (finish_id_expression): Remove qualifiying_class parameter.  Add
1294         template_p, done, address_p, and template_arg_p.  Use
1295         build_qualified_name.  Adjust calls to
1296         finish_class_member_acess_expr.
1297         * tree.c (build_qualified_name): New function.
1298         * typeck.c (check_template_keyword): New function.
1299         (finish_class_member_access_expr): Add template_p argument.  Check
1300         for invalid uses of the template keyword.
1301
1302 2005-10-15  Mark Mitchell  <mark@codesourcery.com>
1303
1304         PR c++/21347
1305         * class.c (maybe_warn_about_overly_private_class): Lazy
1306         constructors are public.
1307
1308 2005-10-14  Mark Mitchell  <mark@codesourcery.com>
1309
1310         PR c++/19565
1311         * call.c (convert_like_real): Rely on convert_and_check to issue
1312         warnings about overflow and conversion to unsigned.
1313         * decl.c (finish_enum): Use the location of the enumerators, not
1314         the closing brace of the enumeration, when reporting warnings
1315         about conversions.
1316         (build_enumerator): Use error_mark_node for erroneous values.
1317         * typeck2.c (digest_init): Remove reference to "signature pointer"
1318         from comment.
1319
1320 2005-10-14  Nathan Sidwell  <nathan@codesourcery.com>
1321
1322         PR c++/17796
1323         * optimize.c (update_cloned_parm): Add FIRST parameter. Use it.
1324         (maybe_clone_body): Track the first clone.
1325
1326 2005-10-13  Nathan Sidwell  <nathan@codesourcery.com>
1327
1328         PR c++/23984
1329         * class.c (build_base_path): The vtable is always the first thing
1330         in the vtt.
1331
1332 2005-10-13  Mark Mitchell  <mark@codesourcery.com>
1333
1334         PR c++/20721
1335         * cp-tree.h (DECL_NONTRIVIALLY_INITIALIZED_P): New macro.
1336         * decl.c (duplicate_decls): Merge it into new declarations.
1337         (decl_jump_unsafe): Use it, rather than DECL_INITIAL.
1338         (cp_finish_decl): Set it, when appropriate.
1339
1340         PR c++/22180
1341         * call.c (build_new_method_call): Correct pretty-printing of
1342         destructor names.
1343         * pt.c (tsubst_qualified_id): Recognize invalid uses of "~T" as an
1344         identifier.
1345
1346         PR c++/23694
1347         * decl.c (start_method): Return error_mark_node for errors.
1348
1349         PR c++/23307
1350         * pt.c (push_template_decl_real): Complain about attempts to
1351         declare template variables.
1352
1353         PR c++/22352
1354         * pt.c (tsubst_template_parms): Set processing_template_decl while
1355         processing the parameters.
1356         (tsubst_decl): Set processing_template_decl when substituting into
1357         a TEMPLATE_DECL.
1358
1359         PR c++/22405
1360         * pt.c (most_specialized_instantiation): Robustify.
1361
1362         PR c++/22464
1363         * semantics.c (finish_id_expression): Issue errors about uses of
1364         local variables in containing functions even in templates.
1365
1366 2005-10-12  Danny Smith  <dannysmith@users.sourceforge.net>
1367
1368         PR target/21801
1369         PR target/23589
1370         * class.c (finish_struct_1): Call
1371         targetm.cxx.adjust_class_at_definition.
1372
1373
1374 2005-10-12  Nathan Sidwell  <nathan@codesourcery.com>
1375
1376         PR c++/21592
1377         * pt.c (build_non_dependent_expr): Don't wrap a COMPONENT_REF
1378         with already looked up member functions.  Assert we're not
1379         returning a NON_DEPENDENT_EXPR with unknown type.
1380         * typeck.c (finish_class_member_access_expr):  We can get
1381         non-template-id-expr baselinks.  If the lookup finds a baselink,
1382         remember it even inside templates.
1383
1384         PR c++/23797
1385         * parser.c (cp_parser_functional_cast): Cope when TYPE is not a
1386         TYPE_DECL.  Use dependent_type_p to check type.
1387         * pt.c (uses_template_parms_p): Use dependent_type_p for a
1388         TYPE_DECL.
1389         (type_dependent_expression_p): Assert we've not been given a
1390         TYPE_DECL.
1391
1392         PR c++/21117
1393         * decl.c (check_function_type): Correctly overwrite incomplete
1394         return type with void type.
1395         * typeck.c (check_return_expr): If the function's return type is
1396         void, don't try and convert a return expr.
1397
1398 2005-10-12  David Edelsohn  <edelsohn@gnu.org>
1399
1400         PR c++/23730
1401         * call.c (build_object_call): If BINFO is NULL, bypass
1402         lookup_fnfields and set fns to NULL_TREE.
1403
1404 2005-10-12  Paolo Bonzini  <bonzini@gnu.org>
1405
1406         PR c++/24052
1407         * error.c (dump_expr): Pass LABEL_DECL to dump_decl.  Print
1408         an ADDR_EXPR of a LABEL_DECL as &&.
1409
1410 2005-10-12  Nathan Sidwell  <nathan@codesourcery.com>
1411
1412         PR c++/19964
1413         * class.c (walk_subobject_offsets): Don't walk error_mark_node.
1414
1415 2005-10-11  Ian Lance Taylor  <ian@airs.com>
1416
1417         PR c++/8057
1418         * cvt.c (convert_to_void): Don't warn about unused values when
1419         processing a template declaration.
1420
1421 2005-10-11  Mark Mitchell  <mark@codesourcery.com>
1422
1423         PR c++/21089
1424         * call.c (convert_like_real): Use decl_constant_value, not
1425         integral_constant_value.
1426         * init.c (constant_value_1): New function.
1427         (integral_constant_value): Use it.
1428         (decl_constant_value): Likewise.
1429         * typeck.c (decay_conversion): Use decl_constant_value, not
1430         integral_constant_value.
1431
1432         PR c++/21369
1433         * parser.c (cp_parser_elaborated_type_specifier): Don't treat
1434         class types as templates if the type is not appearing as part of a
1435         type definition or declaration.
1436
1437 2005-10-10  Mark Mitchell  <mark@codesourcery.com>
1438
1439         PR c++/24277
1440         * pt.c (instantiate_decl): Call finish_static_data_member_decl for
1441         static data members.
1442
1443 2005-10-10  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
1444             Mark Mitchell  <mark@codesourcery.com>
1445
1446         PR c++/23437
1447         * parser.c (cp_parser_template_argument_list): Do not treat
1448         contents of argument list as part of a constant expression.
1449
1450 2005-10-10  Mark Mitchell  <mark@codesourcery.com>
1451
1452         PR c++/24139
1453         * decl.c (grokdeclarator): Do not require template parameter lists
1454         for explicitly specialized class.
1455         * error.c (dump_aggr_type): Do not dump template arguments for
1456         non-primary specializations.
1457         (dump_function_name): Likewise.
1458
1459         PR c++/24275
1460         * pt.c (instantiate_decl): Instantiate the initializer of
1461         a static data member in the namespace containing the class
1462         containing the static data member.
1463
1464 2005-10-08  James A. Morrison  <phython@gcc.gnu.org>
1465
1466         PR c++/22172
1467         * parser.c (cp_parser_postfix_expression) <RID_TYPENAME>: Treat nontype
1468         scopes as nondependent.
1469
1470 2005-10-06  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1471
1472         * call.c (resolve_args): Remove redundant test.
1473
1474 2005-10-05  Paolo Bonzini  <bonzini@gnu.org>
1475
1476         PR tree-optimization/21419
1477         PR tree-optimization/24146
1478         PR tree-optimization/24151
1479
1480         * semantics.c (finish_asm_stmt): Call readonly_error if outputs are
1481         read-only.  Set ASM_VOLATILE_P for asms without outputs.
1482
1483 2005-10-05  Nathan Sidwell  <nathan@codesourcery.com>
1484
1485         PR c++/23513
1486         * call.c (joust): Adjust length count to more_specialized_fn.
1487         * pt.c (more_specialized_fn): Cope with non-static member vs
1488         non-member.
1489
1490 2005-10-04  Andrew Pinski  <pinskia@physics.uc.edu>
1491
1492         PR middle-end/23125
1493         * decl.c (make_rtl_for_nonlocal_decl): Use set_user_assembler_name
1494         instead of change_decl_assembler_name.
1495
1496 2005-10-03  Alexandre Oliva  <aoliva@redhat.com>
1497
1498         * error.c (dump_type) <UNKNOWN_TYPE>: Print reworded message.
1499
1500 2005-10-03  Mark Mitchell  <mark@codesourcery.com>
1501
1502         PR c++/17775
1503         * repo.c: Include flags.h.
1504         (finish_repo): Add -frandom-seed to the arguments.
1505
1506 2005-10-02  Mark Mitchell  <mark@codesourcery.com>
1507
1508         PR c++/22621
1509         * parser.c (cp_parser_template_argument): Don't turn "T::f" into
1510         "(*this).T::f".
1511         * pt.c (convert_nontype_argument): Remove ??? comment.
1512
1513         PR c++/23840
1514         * tree.c (lvalue_p_1): A VA_ARG_EXPR with class type is an lvalue,
1515         when class rvalues are lvalues.
1516
1517 2005-09-28  Mark Mitchell  <mark@codesourcery.com>
1518
1519         PR c++/16782
1520         * decl.c (grokdeclarator): Always pedwarn about overqualified
1521         member names.
1522
1523 2005-09-27  Mark Mitchell  <mark@codesourcery.com>
1524
1525         PR c++/22147
1526         * name-lookup.c (maybe_process_template_type_declaration): Don't
1527         treat forward declarations of classes as templates just because
1528         we're processing_template_decl.
1529         * pt.c (tsubst_decl): Clear DECL_TEMPLATE_INFO for friend
1530         functions.
1531
1532 2005-09-26  Jason Merrill  <jason@redhat.com>
1533
1534         PR c++/13764
1535         * cp-tree.h (FUNCTION_NEEDS_BODY_BLOCK): New macro.
1536         * name-lookup.c (pushdecl_maybe_friend): Check it.
1537         * decl.c (begin_function_body): Do nothing if it's false.
1538         (finish_function_body): Ditto.
1539         (outer_curly_brace_block): New fn.
1540         (finish_function): Use it.
1541
1542 2005-09-26  Richard Guenther  <rguenther@suse.de>
1543
1544         PR middle-end/15855
1545         * decl2.c (do_static_destruction): Remove.
1546         (finish_static_initialization_or_destruction): Likewise.
1547         (DECL_EFFECTIVE_INIT_PRIORITY): New macro.
1548         (NEEDS_GUARD_P): Likewise.
1549         (do_static_initialization): Rename to
1550         do_static_initialization_or_destruction.  Process all
1551         initializers/destructors and handle common conditionalizing.
1552         (start_static_initialization_or_destruction): Rename to
1553         one_static_initialization_or_destruction.  Handle only
1554         decl-specific conditionalizing.
1555         (cp_finish_file): Call do_static_initialization_or_destruction.
1556
1557 2005-09-22  Jakub Jelinek  <jakub@redhat.com>
1558
1559         PR c++/21983
1560         * class.c (find_final_overrider): Move diagnostic about no unique final
1561         overrider to...
1562         (update_vtable_entry_for_fn): ... here.
1563
1564 2005-09-21  Mark Mitchell  <mark@codesourcery.com>
1565
1566         PR c++/23993
1567         * init.c (integral_constant_value): Use DECL_INTEGRAL_CONSTANT_VAR_P.
1568
1569 2005-09-21  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1570
1571         PR c++/23965
1572         * call.c (resolve_args): Return error_mark_node on arguments
1573         whose TREE_TYPE is error_mark_node.
1574
1575 2005-09-20  Jakub Jelinek  <jakub@redhat.com>
1576
1577         PR c++/23947
1578         * rtti.c (get_pseudo_ti_init): Recompute ti pointer after
1579         get_tinfo_ptr calls.
1580
1581 2005-09-16  Mark Mitchell  <mark@codesourcery.com>
1582
1583         PR c++/23914
1584         * parser.c (cp_parser_enclosed_template_argument_list): Make sure
1585         skip_evaluation is false when processing template arguments.
1586
1587         PR c++/21514
1588         * pt.c (check_instantiated_args): Treat uses of anonymous types as
1589         causing type-deduction failure.
1590
1591 2005-09-15  Jason Merrill  <jason@redhat.com>
1592
1593         PR c++/23357
1594         * cp-tree.def (SIZEOF_EXPR, ALIGNOF_EXPR): Change code class to
1595         tcc_expression.
1596
1597 2005-09-15  Mark Mitchell  <mark@codesourcery.com>
1598
1599         PR c++/23896
1600         * pt.c (tsubst_aggr_type): Make sure skip_evaluation is false when
1601         processing template arguments.
1602
1603         * pt.c (check_explicit_instantiation_namespace): Fix typo.
1604
1605         PR c++/13140
1606         * decl.c (check_class_member_definition_namespace): New function.
1607         (grokfndecl): Use it.
1608         (grokvardecl): Likewise.
1609         (grokdecl): Improve documentation.
1610         * pt.c (check_explicit_instantiation_namespace): New function.
1611         (register_specialization): Call check_specialization_namespace
1612         when replacing an implicitly instantiated function.
1613         (check_explicit_specialization): Ensure that DECL_CONTEXT is set
1614         correctly for namespace-scope specializations.
1615         (do_decl_instantiation): Use
1616         check_explicit_instantiation_namespace.
1617         (do_type_instantiation): Likewise.
1618
1619 2005-09-15  Nathan Sidwell  <nathan@codesourcery.com>
1620
1621         PR c++/23725
1622         * error.c (dump_decl): <USING_DECL case> Use USING_DECL_SCOPE.
1623
1624 2005-09-13  Bastian Blank <waldi@debian.org>
1625
1626         PR c++/16171
1627         * mangle.c (find_substitution): Do not use special substitutions
1628         for identifiers not in std::.
1629
1630 2005-09-13  Mark Mitchell  <mark@codesourcery.com>
1631
1632         PR c++/23839
1633         * typeck.c (cxx_mark_addressable): Only check DECL_HARD_REGISTER
1634         for VAR_DECLs.
1635
1636 2005-09-13  Mark Mitchell  <mark@codesourcery.com>
1637
1638         PR c++/23842
1639         * pt.c (tsubst_default_argument): Do treat default argument
1640         expressions as occurring in the context of the function called.
1641
1642 2005-09-12  Mark Mitchell  <mark@codesourcery.com>
1643
1644         PR c++/23841
1645         * parser.c (cp_parser_primary_expression): Recognize the closing
1646         ">" of a template-argument-list after a floating-point literal as
1647         the end of a cast expression.
1648
1649 2005-09-12  Mark Mitchell  <mark@codesourcery.com>
1650
1651         PR c++/23789
1652         * cvt.c (perform_qualification_conversions): Don't create
1653         unnecessary NOP_EXPRs.
1654         * pt.c (tsubst_template_arg): Use fold_non_dependent_expr.
1655
1656 2005-09-12  Ian Lance Taylor  <ian@airs.com>
1657
1658         PR g++/7874
1659         * cp-tree.h (struct lang_decl_flags): Add hidden_friend_p
1660         bitfield.  Make dummy bitfield one bit smaller.
1661         (DECL_HIDDEN_FRIEND_P): Define.
1662         (pushdecl_maybe_friend): Declare.
1663         (pushdecl_top_level_maybe_friend): Declare.
1664         * decl.c (duplicate_decls): Add newdecl_is_friend parameter.
1665         Change prototype and all callers.  Add assertion that a
1666         DECL_ARTIFICIAL FUNCTION_DECL is not DECL_HIDDEN_FRIEND_P.  Set
1667         DECL_ANTICIPATED and DECL_HIDDEN_FRIEND_P in duplicated decl if
1668         appropriate.
1669         * name-lookup.c (supplement_binding): Don't ignore a
1670         DECL_HIDDEN_FRIEND_P.
1671         (pushdecl_maybe_friend): Break out contents of pushdecl.  Add
1672         is_friend parameter.  Set DECL_ANTICIPATED and
1673         DECL_HIDDEN_FRIEND_P for a friend function.
1674         (pushdecl): Just call pushdecl_maybe_friend.
1675         (pushdecl_with_scope): Add is_friend parameter.  Change prototype
1676         and all callers.
1677         (pushdecl_namespace_level): Likewise.
1678         (push_overloaded_decl): Likewise.  Check DECL_HIDDEN_FRIEND_P as
1679         well as DECL_ANTICIPATED when checking for a builtin.
1680         (do_nonmember_using_decl): Check DECL_HIDDEN_FRIEND_P as well as
1681         DECL_ANTICIPATED when checking for a builtin.
1682         (do_nonmember_using_decl): Likewise.
1683         (pushdecl_top_level_1): Add is_friend parameter.  Change all
1684         callers.
1685         (pushdecl_top_level_maybe_friend): New function.
1686         (remove_hidden_names): New function.
1687         (struct arg_lookup): Add args field.
1688         (friend_of_associated_class_p): New static function.
1689         (arg_assoc_namespace): Ignore hidden functions which are not
1690         friends of an associated class of some argument.
1691         (lookup_arg_dependent): Remove hidden functions from list passed
1692         in.  Initialize k.args.
1693         * name-lookup.h (remove_hidden_names): Declare.
1694         * friend.c (do_friend): Call pushdecl_maybe_friend instead of
1695         pushdecl.
1696         * call.c (add_function_candidate): Change DECL_ANTICIPATED test to
1697         an assertion, with a check for DECL_HIDDEN_FRIEND_P.
1698         (build_new_function_call): Add koenig_p parameter.  Change
1699         prototype and callers.
1700         * pt.c (register_specialization): Add is_friend parameter.  Change
1701         all callers.
1702         (push_template_decl_real): Change is_friend parameter to bool.
1703         Change prototype and all callers.
1704         (tsubst_friend_class): Call pushdecl_top_level_maybe_friend
1705         instead of pushdecl_top_level.
1706
1707 2005-09-11  Richard Henderson  <rth@redhat.com>
1708
1709         * decl2.c (build_anon_union_vars): Copy attributes from the base addr.
1710         * pt.c (tsubst_decl): Substitute in DECL_VALUE_EXPR.
1711
1712 2005-09-09  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1713
1714         * parser.c (cp_parser_translation_unit): Simplify.  The while-block
1715         was actually executed at most once.
1716
1717 2005-09-09  Richard Henderson  <rth@redhat.com>
1718
1719         PR debug/20998
1720         * cp-tree.def (ALIAS_DECL): Remove.
1721         * cp-lang.c (cp_init_ts): Remove support for it.
1722         * error.c (dump_decl): Likewise.
1723         * name-lookup.c (pushdecl): Likewise.
1724         * semantics.c (finish_id_expression): Likewise.
1725         * decl2.c (build_anon_union_vars): Use a VAR_DECL with
1726         DECL_VALUE_EXPR instead.
1727
1728 2005-09-09  Mark Mitchell  <mark@codesourcery.com>
1729
1730         PR c++/22252
1731         * decl.c (start_preparsed_function): Do not pay attention to
1732         #pragma interface for implicitly-defined methods.
1733         * decl2.c (cp_finish_file): Do not complain about uses of inline
1734         functions that have bodies, even if we decided not to emit the
1735         body in this translation unit.
1736         * semantics.c (note_decl_for_pch): Do not mess with linkage.
1737         (expand_or_defer_fn): Make inline, non-template functions COMDAT
1738         at this point.
1739
1740 2005-09-08  Richard Henderson  <rth@redhat.com>
1741
1742         PR debug/23190
1743         * decl.c (wrapup_globals_for_namespace): Call
1744         emit_debug_global_declarations.
1745         * decl2.c (cp_finish_file): Likewise.
1746
1747 2005-09-08  Mark Mitchell  <mark@codesourcery.com>
1748
1749         PR c++/23691
1750         * decl2.c (mark_used): Instantiate static data members initialized
1751         by constants, even in a template.
1752
1753 2005-09-08  Andrew Pinski  <pinskia@physics.uc.edu>
1754
1755         PR obj-c++/16816
1756         * parser.c (cp_parser_objc_selector_expression): Treat CPP_SCOPE as
1757         two CPP_COLON.
1758
1759 2005-09-07  Richard Guenther  <rguenther@suse.de>
1760
1761         * cp-gimplify.c (cp_gimplify_expr): Create empty CONSTRUCTOR
1762         for EMPTY_CLASS_EXPR.
1763
1764 2005-09-06  Jakub Jelinek  <jakub@redhat.com>
1765
1766         PR c/23075
1767         * typeck.c (check_return_expr): Add no_warning argument.  Set
1768         *no_warning to true if "return-statement with no value, in function
1769         returning" warning has been issued.
1770         * cp-tree.h (check_return_expr): Adjust prototype.
1771         * semantics.c (finish_return_stmt): Set TREE_NO_WARNING if
1772         check_return_expr set *no_warning to true.
1773
1774 2005-09-06  Mark Mitchell  <mark@codesourcery.com>
1775
1776         * cp-tree.h (rvalue): New function.
1777         * call.c (build_conditional_expr): Use it.
1778         * init.c (build_new_1): Likewise.
1779         * rtti.c (build_dynamic_cast_1): Likewise.
1780         * tree.c (rvalue): New function.
1781         * typeck.c (build_unary_op): Use it.
1782         (build_static_cast_1): Likewise.
1783
1784         PR c++/9782
1785         * init.c (build_new_1): Make sure the entire array type is
1786         complete, not just its element types.
1787
1788 2005-09-06  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1789
1790         * decl.c (check_elaborated_type_specifier): Remove redundant check.
1791
1792 2005-09-06  Jakub Jelinek  <jakub@redhat.com>
1793
1794         PR c++/23056
1795         * typeck.c (ignore_overflows): New helper function.
1796         (build_static_cast_1): Use it.
1797
1798 2005-09-06  Kazu Hirata  <kazu@codesourcery.com>
1799
1800         * cp-tree.h, decl.c, decl2.c, semantics.c: Fix comment typos.
1801         Follow spelling conventions.
1802
1803 2005-09-05  Mark Mitchell  <mark@codesourcery.com>
1804
1805         PR c++/23667
1806         * pt.c (tsubst_decl): Clear DECL_TEMPLATE_INSTANTIATED when
1807         copying a VAR_DECL.
1808
1809 2005-09-05  Mark Mitchell  <mark@codesourcery.com>
1810
1811         PR c++/21440
1812         * semantics.c (finish_stmt_expr_expr): Add an explicit
1813         initialization to the last statement in the statement-expression.
1814         * (finish_stmt_expr): Adjust accordingly.
1815
1816 2005-09-03  Mark Mitchell  <mark@codesourcery.com>
1817
1818         PR c++/23699
1819         * decl2.c (mark_used): Always instantiate static data members
1820         initialized by constant expressions.
1821         * pt.c (instantiate_decl): Instantiate the initializers for static
1822         data members initialized by constant expressions.
1823
1824         PR c++/21687
1825         * semantics.c (expand_or_defer_fn): Do not call ggc_collect when
1826         finishing processing for a template function in a local class.
1827         Revert:
1828         2005-09-02  Mark Mitchell  <mark@codesourcery.com>
1829         * parser.c (cp_parser_class_specifier): Push/pop GC contexts
1830         around functions in local classes.
1831
1832 2005-09-02  Mark Mitchell  <mark@codesourcery.com>
1833
1834         PR c++/21687
1835         * parser.c (cp_parser_class_specifier): Push/pop GC contexts
1836         around functions in local classes.
1837
1838 2005-08-31  Andrew Pinski  <pinskia@physics.uc.edu>
1839
1840         PR obj-c++/23640
1841         * decl2.c (cp_finish_file): If this is obj-c++ and we need a static
1842         init, call generate_ctor_or_dtor_function.
1843
1844 2005-08-31  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1845
1846         PR c++/13377
1847         * parser.c (cp_parser_lookup_name): Pass LOOKUP_COMPLAIN to
1848         lookup_name_real on final parse.
1849
1850 2005-08-31  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1851
1852         PR c++/23639
1853         * semantics.c (qualified_name_lookup_error): Do not complain again
1854         on invalid scope.
1855
1856 2005-08-30  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1857
1858         PR c++/23586
1859         * parser.c (cp_parser_namespace_name): Move diagnostic for
1860         invalid namespace-name to here from ...
1861         * name-lookup.c (do_namespace_alias): ... here and ...
1862         (do_using_directive): ... here.  Remove dead code.
1863
1864 2005-08-28  Mark Mitchell  <mark@codesourcery.com>
1865
1866         PR c++/23099
1867         * cp-tree.h (saved_scope): Add skip_evaluation.
1868         * decl.c (start_decl): Use DECL_INITIALIZED_IN_CLASS_P, not
1869         DECL_INITIAL, to determine whether or not a static data member was
1870         initialized in the class-specifier.
1871         (cp_finish_decl): Add comment.
1872         * init.c (integral_constant_value): Subtitute into the
1873         initializers for static data members in templates.
1874         * name-lookup.c (push_to_top_level): Save skip_evaluation.
1875         (pop_from_top_level): Restore it.
1876         * pt.c (instantiate_class_template): Do not substitute into the
1877         intializers of static data members when instantiating a class.
1878         (regenerate_decl_from_template): Simplify.
1879         (instantiate_decl): Tidy.  Substitute into the initializer for a
1880         static data member even when the definition of the data member is
1881         not available.
1882
1883 2005-08-26  Mark Mitchell  <mark@codesourcery.com>
1884
1885         PR c++/19004
1886         * pt.c (uses_template_parms): Handle IDENTIFIER_NODE.
1887         (type_dependent_expression_p): Allow BASELINKs whose associated
1888         functions are simply a FUNCTION_DECL.
1889
1890         PR c++/23491
1891         * cp-tree.h (build_vec_init): Adjust prototype.
1892         * init.c (perform_member_init): Adjust call to build_vec_init.
1893         (build_aggr_init): Likewise.
1894         (build_new_1): Do not call build_default_init for array types.
1895         (build_vec_init): Add explicit_default_init_p parameter.  Perform
1896         default initialization of vector elements when set.
1897         * typeck.c (build_modify_expr): Adjust call to build_vec_init.
1898
1899 2005-08-25  Nathan Sidwell  <nathan@codesourcery.com>
1900
1901         PR c++/20817
1902         * typeck.c (build_x_unary_op): Make sure OFFSET_REF is not for a
1903         ->*.
1904
1905 2005-08-24  Nathan Sidwell  <nathan@codesourcery.com>
1906
1907         PR c++/22454
1908         * parser.c (cp_lexer_peek_nth_token): Relax assert.
1909
1910 2005-08-23  Nathan Sidwell  <nathan@codesourcery.com>
1911
1912         PR c++/23044
1913         * pt.c (tsubst_qualified_id): A SCOPE_REF can still remain.
1914
1915 2005-08-22  James E Wilson  <wilson@specifix.com>
1916
1917         PR tree-optimization/23426
1918         * decl.c (grokdeclarator): Use TYPE_SIZE_UNIT not TYPE_SIZE for
1919         array size check.
1920
1921 2005-08-22  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1922
1923         PR c++/22233
1924         * pt.c (push_template_decl_real): Return error_mark_node if the
1925         number of template parameters does not match previous definition.
1926
1927 2005-08-22  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1928
1929         PR c++/23089
1930         * decl.c (require_complete_types_for_parms): Mark incomplete types
1931         as invalid.
1932
1933 2005-08-19  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1934
1935         * parser.c (cp_parser_nth_token_starts_template_argument_list_p):
1936         Fix typo in leading comment.
1937
1938 2005-08-15  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1939
1940         * name-lookup.c, ptree.c: Delete HOST_PTR_PRINTF.
1941
1942 2005-08-15 Fariborz Jahanian <fjahanian@apple.com>
1943
1944         * cp-tree.h (can_convert_arg, fn_type_unification): New argument.
1945         * call.c (add_template_candidate_real): Pass down 'flags' to
1946         fn_type_unification.
1947         (can_convert_arg): New 'flags' argument. Pass it to call to
1948         implicit_conversion instead of LOOKUP_NORMAL.
1949         (can_convert): Add LOOKUP_NORMAL to call to can_convert_arg.
1950         * class.c (resolve_address_of_overloaded_function): Ditto.
1951         (resolve_address_of_overloaded_function): Ditto.
1952         * decl.c (reshape_init, check_default_argument): Ditto.
1953         * typeck.c (build_ptrmemfunc): Ditto.
1954         * pt.c (type_unification_real): Add 'flags' argument.
1955         (fn_type_unification): Pass 'flags' to type_unification_real.
1956         (type_unification_real): Pass new 'flags' argument to call to
1957         can_convert_arg.
1958
1959 2005-08-12  Giovanni Bajo  <giovannibajo@libero.it>
1960             Nathan Sidwell  <nathan@codesourcery.com>
1961
1962         PR c++/21799
1963         PR c++/8271
1964         * pt.c (unify) <METHOD_TYPE>: Check this-pointer cv-qualifiers
1965         explicitly.
1966
1967 2005-08-12  Nathan Sidwell  <nathan@codesourcery.com>
1968
1969         PR c++/21799
1970         Revert my 2005-07-08 patch
1971         * pt.c (type_unification_real): Remove is_method_argument and
1972         assoicated checks.
1973         (fn_type_unification, unify): Adjust type_unification_real calls.
1974
1975 2005-08-11  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1976
1977         PR c++/23266
1978         * decl2.c (grokfield): Check that method is not static before
1979         marking it as pure.
1980
1981 2005-08-11  Nathan Sidwell  <nathan@codesourcery.com>
1982
1983         PR c++/23219
1984         * name-lookup.c (pushtag): Process the template type before
1985         altering the identifier lookup fields.  Remove unreachable code
1986         creating an empty stub decl.
1987
1988 2005-08-10  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1989
1990         PR c++/20646
1991         * decl.c (grokdeclarator): Reset storage_class after error.
1992
1993 2005-08-08  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1994
1995         PR c++/22508
1996         * init.c (build_new_1): Check for empty candidate list.
1997
1998 2005-08-06  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1999
2000         PR c++/23191
2001         * pt.c (tsubst) <case METHOD_TYPE>: Check for error_mark_node
2002         before calling build_exception_variant.
2003
2004 2005-08-06  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
2005
2006         PR c++/19498
2007         * pt.c (tsubst_decl) <case TEMPLATE_DECL>: Return ERROR_MARK_NODE
2008         if substitution of template args did not succeed.
2009
2010 2005-08-06  Michael Matz  <matz@suse.de>
2011
2012         * method.c (use_thunk): Call init_insn_lengths.
2013
2014 2005-08-05  James A. Morrison  <phython@gcc.gnu.org>
2015
2016         PR c++/22514
2017         * name-lookup.c (cp_emit_debug_info_for_using): Do nothing if
2018         sorrycount or errorcount are nonzero.
2019
2020 2005-08-05  Mark Mitchell  <mark@codesourcery.com>
2021
2022         * name-lookup.c (pushtag): Remove accidental commit from:
2023         2004-12-21  Mark Mitchell  <mark@codesourcery.com>
2024         PR c++/19063
2025         * decl.c (grokdeclarator): Return error_mark_node, not
2026         void_type_node, to indicate errors.
2027         * parser.c (cp_parser_template_parameter_list): Robustify.
2028         (cp_parser_template_parameter): Likewise.
2029
2030 2005-08-01  Kazu Hirata  <kazu@codesourcery.com>
2031
2032         * class.c, decl.c, name-lookup.c, pt.c, typeck.c, typeck2.c:
2033         Fix comment typos.
2034
2035 2005-07-29  Kazu Hirata  <kazu@codesourcery.com>
2036
2037         * method.c: Fix a comment typo.
2038
2039 2005-07-28  Mark Mitchell  <mark@codesourcery.com>
2040
2041         PR c++/22545
2042         * call.c (add_builtin_candidate): Adjust for changes in
2043         representation of pointer-to-member types.
2044
2045 2005-07-28  Mike Stump  <mrs@apple.com>
2046
2047         * pt.c (check_explicit_specialization): Add visibility logic.
2048         (lookup_template_class): Likewise.
2049         (instantiate_class_template): Likewise.
2050
2051 2005-07-27  Devang Patel  <dpatel@apple.com>
2052
2053         * name-lookup.c (pushtag): Do no set DECL_IGNORED_P bit.
2054
2055 2005-07-25  Ian Lance Taylor  <ian@airs.com>
2056
2057         * ptree.c (cxx_print_identifier): Print a leading space if the
2058         indent level is 0.
2059
2060 2005-07-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2061
2062         * call.c (convert_for_arg_passing): Check function pointers when
2063         -Wmissing-format-attribute is activated.
2064         * typeck.c (convert_for_assignment): Likewise.
2065
2066 2005-07-22  Manfred Hollstein  <mh@suse.com>
2067
2068         * parser.c (cp_parser_declaration): Fix unitialised warnings.
2069
2070 2005-07-21  Andrew Pinski  <pinskia@physics.uc.edu>
2071
2072         * class.c (build_base_path): Fix typo.
2073
2074 2005-07-21  Andrew Pinski  <pinskia@physics.uc.edu>
2075
2076         PR C++/22358
2077         * class.c (build_base_path): Convert BINFO_OFFSET to the correct type.
2078
2079 2005-07-21  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
2080
2081         * call.c: Fix comment typo(s).
2082         * cxx-pretty-print.h: Likewise.
2083         * name-lookup.c: Likewise.
2084         * parser.c: Likewise.
2085
2086 2005-07-20  Douglas Gregor <doug.gregor@gmail.com>
2087
2088         PR c++/2922
2089         * semantics.c (perform_koenig_lookup): For dependent calls, just
2090         return the set of functions we've found so far. Later, it will be
2091         augmented by those found through argument-dependent lookup.
2092         * name-lookup.c (lookup_arg_dependent): Implement DR 164 by removing
2093         the optimization that skips namespaces where the functions were
2094         originally found.
2095
2096 2005-07-20  Giovanni Bajo  <giovannibajo@libero.it>
2097
2098         Make CONSTRUCTOR use VEC to store initializers.
2099         * call.c (convert_default_arg): Update call to digest_init.
2100         * class.c (dump_class_hierarchy, dump_array): Update to cope with
2101         VEC in CONSTRUCTOR_ELTS.
2102         * cp-tree.h (EMPTY_CONSTRUCTOR_P): Likewise.
2103         (finish_compound_literal, digest_init): Update declaration.
2104         * decl.c (struct reshape_iter): New data type.
2105         (reshape_init_array): Rename to...
2106         (reshape_init_array_1): Update to cope with VEC in CONSTRUCTOR_ELTS.
2107         (reshape_init): Rewrite from scratch. Split parts into...
2108         (reshape_init_array, reshape_init_vector, reshape_init_class,
2109         reshape_init_r): New functions.
2110         (check_initializer): Update call to reshape_init. Remove obsolete
2111         code.
2112         (initialize_artificial_var, cp_complete_array_type): Update to cope
2113         with VEC in CONSTRUCTOR_ELTS.
2114         * decl2.c (grokfield): Update calls to digest_init.
2115         (mark_vtable_entries): Update to cope with VEC in CONSTRUCTOR_ELTS.
2116         * error.c (dump_expr_init_vec): New function.
2117         (dump_expr): Use dump_expr_init_vec.
2118         * init.c (build_zero_init, build_vec_init): Update to cope with VEC
2119         in CONSTRUCTOR_ELTS.
2120         (expand_default_init): Update call to digest_init.
2121         * parser.c  (cp_parser_postfix_expression): Use a VEC for the
2122         initializers.
2123         (cp_parser_initializer_list): Build a VEC of initializers.
2124         * pt.c (tsubst_copy, tsubst_copy_and_build): Update to cope with VEC
2125         in CONSTRUCTOR_ELTS.
2126         * rtti.c (tinfo_base_init, generic_initializer, ptr_initializer,
2127         ptm_initializer, class_initializer, get_pseudo_ti_init): Use
2128         build_constructor_from_list instead of build_constructor.
2129         * semantics.c (finish_compound_literal): Update call to digest_init.
2130         * tree.c (stabilize_init): Update to cope with VEC in
2131         CONSTRUCTOR_ELTS.
2132         * typeck.c (build_ptrmemfunc1): Likewise.
2133         * typeck2.c: (cxx_incomplete_type_error, split_nonconstant_init_1):
2134         Likewise.
2135         (store_init_value): Use build_constructor_from_list and update call
2136         to digest_init.
2137         (digest_init): Rewrite.
2138         (process_init_constructor): Rewrite from scratch. Split into...
2139         (process_init_constructor_array, picflag_from_initializer,
2140         process_init_constructor_record, process_init_constructor_union):
2141         New functions.
2142         (PICFLAG_ERRONEOUS, PICFLAG_NOT_ALL_CONSTANT, PICFLAG_NOT_ALL_SIMPLE):
2143         New macros.
2144         (build_functional_cast): Use build_constructor_from_list instead of
2145         build_constructor.
2146
2147 2005-07-18  Mark Mitchell  <mark@codesourcery.com>
2148
2149         PR c++/22263
2150         * cp-tree.h (instantiate_decl): Change prototype.
2151         * decl2.c (mark_used): Adjust accordingly.
2152         * pt.c (do_decl_instantiation): Likewise.
2153         (instantiate_class_member): Likewise.
2154         (instantiate_decl): Rename undefined_ok as expl_inst_class_mem_p.
2155         Clear DECL_INTERFACE_KNOWN for an explicitly instantiated template
2156         that has no definition available.
2157         (instantiate_pending_templates): Adjust call to instantiate_decl.
2158
2159 2005-07-17  Mark Mitchell  <mark@codesourcery.com>
2160
2161         PR c++/22139
2162         * cp-tree.h (DECL_TEMPLATE_INFO): Improve documentation.
2163         * decl.c (duplicate_decls): Re-register template specializations
2164         for functions that have DECL_TEMLPLATE_INFO, even if they do not
2165         have DECL_TEMPLATE_INSTANTIATION set.
2166
2167 2005-07-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2168
2169         * call.c (diagnostic_fn_t): New.
2170         (build_temp, convert_like_real): Use diagnostic_fn_t.
2171
2172 2005-07-15  Mark Mitchell  <mark@codesourcery.com>
2173
2174         PR c++/22204
2175         * repo.c (repo_emit_p): Robustify.
2176
2177 2005-07-14  Daniel Berlin  <dberlin@dberlin.org>
2178
2179         Fix PR c++/22452
2180         * tree.c (decl_linkage): Don't check DECL_COMDAT on CONST_DECL.
2181
2182 2005-07-15  Mark Mitchell  <mark@codesourcery.com>
2183
2184         PR c++/22132
2185         * call.c (implicit_conversion): Add c_cast_p parameter.
2186         (standard_conversion): Likewise.  Allow conversions between
2187         differently-qualified pointer types when performing a C-style
2188         cast.
2189         (add_function_candidate): Adjust callee.
2190         (build_builtin_candidate): Likewise.
2191         (build_user_type_conversion_1): Likewise.
2192         (conditional_conversion): Likewise.
2193         (can_convert_arg): Likewise.
2194         (can_convert_arg_bad): Likewise.
2195         (perform_implicit_conversion): Likewise.
2196         * cp-tree.h (comp_ptr_ttypes_const): Declare.
2197         * typeck.c (comp_ptr_ttypes_const): Give it external linkage.
2198         Return bool.
2199
2200 2005-07-12  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
2201             Nathan Sidwell  <nathan@codesourcery.com>
2202
2203         PR c++/20172
2204         * pt.c (tsubst_template_parms): Check for invalid non-type
2205         parameters.
2206
2207 2005-07-09  Andrew Pinski  <pinskia@physics.uc.edu>
2208
2209         * cp-lang.c (shadowed_var_for_decl, decl_shadowed_for_var_lookup,
2210         decl_shadowed_for_var_insert): Move over to cp-objcp-common.c.
2211         (cp_init_ts): Call init_shadowed_var_for_decl.
2212         Remove include of gt-cp-cp-lang.h.
2213         * cp-objcp-common.c (shadowed_var_for_decl,
2214         decl_shadowed_for_var_lookup, decl_shadowed_for_var_insert): Moved from
2215         cp-lang.c.
2216         (init_shadowed_var_for_decl): New function to initialize
2217         shadowed_var_for_decl.
2218         Include gt-cp-cp-objcp-common.h.
2219         * Make-lang.in (gt-cp-lang.h): Remove.
2220         (gt-cp-cp-objcp-common.h): Add.
2221         (cp/cp-lang.o): Remove dependancy on gt-cp-lang.h.
2222         (cp/cp-objcp-common.o): Add dependancy on gt-cp-cp-objcp-common.h.
2223         * config-lang.in (gtfiles): Remove cp-lang.c and Add cp-objcp-common.c.
2224         * cp-tree (init_shadowed_var_for_decl): Add prototype.
2225
2226 2005-07-08  Daniel Berlin  <dberlin@dberlin.org>
2227
2228         * Make-lang.in: Add gt-cp-lang.h.
2229         (cp-lang.o): Ditto.
2230         * class.c (create_vtable_ptr): Stop setting DECL_ASSEMBLER_NAME on
2231         the field.
2232         * config-lang.in: Add cp-lang.c to gtfiles.
2233         * cp-lang.c: Include hashtab.h.
2234         (cp_init_ts): New function.
2235         (LANG_HOOK_INIT_TS): Use macro.
2236         (decl_shadowed_for_var_lookup): New function.
2237         (decl_shadowed_for_var_insert): Ditto.
2238         * cp-tree.h (THUNK_FUNCTION_CHECK): Use decl_common.
2239         (NON_THUNK_FUNCTION_CHECK): Ditto.
2240         (DECL_NAMESPACE_ASSOCIATIONS): Use decl_non_common.
2241         (DECL_INIT_PRIORITY): Ditto.
2242         (DECL_HAS_SHADOWED_FOR_VAR_P): Ditto.
2243         (DECL_SHADOWED_FOR_VAR): Use hashtable.
2244         (SET_DECL_SHADOWED_FOR_VAR): Ditto.
2245         * decl.c (duplicate_decls): Update for new/updated structures.
2246         (poplevel): Use SET_DECL_SHADOWED_FOR_VAR.
2247         * decl2.c (start_static_initialization_or_destruction): Deal with
2248         priority.
2249         * pt.c (tsubst_decl): Check TS_DECL_WRTL before doing
2250         SET_DECL_RTL.
2251         * tree.c (handle_init_priority_attribute): Handle priority.
2252
2253 2005-07-08  Nathan Sidwell  <nathan@codesourcery.com>
2254
2255         PR c++/21799
2256         * pt.c (type_unification_real): Add is_method argument.  Use it
2257         for this pointer unification.
2258         (fn_type_unification): Adjust type_unification_real call.
2259         (unify): Likewise.
2260
2261 2005-07-07  Nathan Sidwell  <nathan@codesourcery.com>
2262
2263         * pt.c (type_unification_real): Remove allow_incomplete argument.
2264         Remove unreachable code.
2265         (fn_type_unification): Adjust call to type_unification_real.
2266         (unify): Likewise.
2267
2268 2005-07-05  Paolo Bonzini  <bonzini@gnu.org>
2269
2270         * Makefile.in (class.o, decl2.o): Adjust dependencies.
2271         * class.c: Include tree-dump.h.
2272         * decl2.c: Include tree-dump.h.
2273
2274 2005-07-02  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2275
2276         * dump.c: Use dump_string_field.
2277
2278 2005-07-03  Joseph S. Myers  <joseph@codesourcery.com>
2279
2280         * cp-tree.h (GCC_DIAG_STYLE): #undef before defining.  Change
2281         minimum GCC version for format checking to 4.1.
2282
2283 2005-07-02  Kazu Hirata  <kazu@codesourcery.com>
2284
2285         * Make-lang.in (cc1plus-checksum.c): Use
2286         build/genchecksum$(build_exeext), not build/genchecksum$(exeext).
2287
2288 2005-07-02  Joseph S. Myers  <joseph@codesourcery.com>
2289
2290         * name-lookup.c, parser.c: Use %q, %< and %> to quote in
2291         diagnostics.
2292
2293 2005-07-02  Zack Weinberg  <zack@codesourcery.com>
2294             Joseph S. Myers  <joseph@codesourcery.com>
2295
2296         * error.c (location_of): Add comment.
2297         (locate_error, cp_error_at, cp_warning_at, cp_pedwarn_at): Remove.
2298         * cp-tree.h (cp_error_at, cp_warning_at, cp_pedwarn_at): Remove.
2299         * call.c, class.c, decl.c, decl2.c, friend.c, init.c,
2300         name-lookup.c, parser.c, pt.c, search.c, semantics.c, typeck.c,
2301         typeck2.c: Use '+' flag instead of %J, cp_error_at, cp_warning_at
2302         or cp_pedwarn_at.  Mark up some diagnostic strings with N_.
2303
2304 2005-06-30  Daniel Berlin  <dberlin@dberlin.org>
2305
2306         * decl.c (require_complete_types_for_parms): Call relayout_decl
2307         instead of layout_decl.
2308
2309 2005-06-30  Zack Weinberg  <zack@codesourcery.com>
2310             Jakub Jelinek  <jakub@redhat.com>
2311
2312         * cp-lang.c: No need to include cxx-pretty-print.h.
2313         * error.c (cp_printer): Update signature.  No need to process
2314         flags.
2315         (print_instantiation_partial_context): Output last newline
2316         with pp_base_newline.
2317         * Make-lang.in: Update dependencies.
2318
2319 2005-06-30  Steven Bosscher  <stevenb@suse.de>
2320
2321         * decl.c (start_decl): Replace DECL_THREAD_LOCAL with
2322         DECL_THREAD_LOCAL_P.
2323         (cp_finish_decl): Likewise.
2324         (grokvardecl): Set the default DECL_TLS_MODEL here.
2325
2326 2005-06-28  Joseph S. Myers  <joseph@codesourcery.com>
2327
2328         * cvt.c (ocp_convert): Use invalid_conversion hook.
2329         * typeck.c (build_binary_op): Use invalid_binary_op hook.
2330         (build_unary_op): Use invalid_unary_op hook.
2331
2332 2005-06-28  Paul Brook  <paul@codesourcery.com>
2333
2334         * Make-lang.in (cp/except.o): Depend on $(TARGET_H)
2335         * except.c: Include target.h.
2336         (init_exception_processing): Initialize unwind_resume_libfunc.
2337         * doc/tm.texi: Document TARGET_ASM_TTYPE
2338
2339 2005-06-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2340
2341         * call.c (build_over_call): Pass in named argument list to
2342         `check_function_arguments'.
2343         * typeck.c (build_function_call): Likewise.
2344
2345 2005-06-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2346
2347         * cp-tree.h (lang_check_failed): Add noreturn attribute.
2348
2349 2005-06-25  Kelley Cook  <kcook@gcc.gnu.org>
2350
2351         * all files: Update FSF address in copyright headers.
2352
2353 2005-06-23  Jason Merrill  <jason@redhat.com>
2354
2355         PR c++/19317
2356         * semantics.c (simplify_aggr_init_expr): Use
2357         CALL_EXPR_RETURN_SLOT_OPT, not CALL_EXPR_HAS_RETURN_SLOT_ADDR.
2358
2359 2005-06-23  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
2360
2361         * pt.c (register_specialization): Remove superfluous assertion.
2362
2363 2005-06-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2364
2365         * call.c (convert_like_real): Add format attribute.
2366         * typeck.c (check_for_casting_away_constness,
2367         build_static_cast_1): Likewise.
2368         * typeck2.c (readonly_error, cxx_incomplete_type_diagnostic):
2369         Likewise.
2370
2371 2005-06-17  Geoffrey Keating  <geoffk@apple.com>
2372
2373         PR c++/17413
2374         * pt.c (type_unification_real): Apply template type deduction even
2375         to procedure parameters that are not dependent on a template
2376         parameter.
2377
2378 2005-06-16  Nathan Sidwell  <nathan@codesourcery.com>
2379
2380         * rtti.c (get_tinfo_decl): Avoid caching tinfo_descs when it might
2381         change.
2382         (create_pseudo_type_info): First parameter is an int.
2383
2384 2005-06-15  Nathan Sidwell  <nathan@codesourcery.com>
2385
2386         PR c++/20678
2387         * error.c (dump_expr) <COMPONENT_REF case>: Check DECL_NAME is not
2388         null.
2389
2390         * Make-lang.in: Reformat some long lines.
2391         (gt-cp-rtti.h): New target.
2392         (cp/rtti.o): Add dependency.
2393         * config-lang.in (gtfiles): Add cp/rtti.c.
2394         * cp-tree.h (CPTI_TI_DESC_TYPE, CPTI_BLTN_DESC_TYPE,
2395         CPTI_PTR_DESC_TYPE, CPTI_ARY_DESC_TYPE, CPTI_FUNC_DESC_TYPE,
2396         CPTI_ENUM_DESC_TYPE, CPTI_CLASS_DESC_TYPE,
2397         CPTI_SI_CLASS_DESC_TYPE, CPTI_VMI_CLASS_DESC_TYPE,
2398         CPTI_PTM_DESC_TYPE, CPTI_BASE_DESC_TYPE): Remove.
2399         (ti_desc_type_node, bltn_desc_type_node, ptr_desc_type_node,
2400         ary_desc_type_node, func_desc_type_node, enum_desc_type_node,
2401         class_desc_type_node, si_class_desc_type_node,
2402         vmi_class_desc_type_node, ptm_desc_type_node,
2403         base_desc_type_node): Remove.
2404         * decl.c: Adjust documentation of global trees.
2405         * rtti.c (TINFO_PSEUDO_TYPE, TINFO_VTABLE_DECL,
2406         TINFO_REAL_NAME): Remove.
2407         (struct tinfo_s): New.
2408         (enum tinfo_kind): New.
2409         (tinfo_descs): New.
2410         (get_tinfo_decl): Adjust use of tinfo descriptor.
2411         (tinfo_base_init, generic_initializer, ptr_initializer,
2412         ptm_initializer, class_initializer): Likewise.
2413         (get_pseudo_ti_init): Take descriptor index. Adjust.
2414         (create_pseudo_type_info): Likewise.
2415         (get_pseudo_ti_desc): Return descriptor index. Adjust.
2416         (create_tinfo_types): Adjust use of create_pseudo_type_info.
2417         (emit_tinfo_decl): Adjust use of tinfo descriptor.
2418
2419 2005-06-14  Roger Sayle  <roger@eyesopen.com>
2420
2421         * decl.c (grokdeclarator): Only check TREE_OVERFLOW on INTEGER_CST.
2422
2423 2005-06-13  Geoffrey Keating  <geoffk@apple.com>
2424
2425         * Make-lang.in (c++.install-man): Doesn't really depend on installdirs.
2426         (rule for installing g++.1 manpage): Does depend on installdirs.
2427
2428 2005-06-13  Nathan Sidwell  <nathan@codesourcery.com>
2429
2430         PR c++/20789
2431         * decl.c (cp_finish_decl): Clear runtime runtime initialization if
2432         in-class decl's initializer is bad.
2433
2434         PR c++/21929
2435         * parser.c (struct cp_parser): Document that scope could be
2436         error_mark.
2437         (cp_parser_diagnose_invalid_type_name): Cope with error_mark for
2438         scope.
2439         (cp_parser_nested_name_specifier): Return NULL_TREE on error.
2440         (cp_parser_postfix_expression): Deal with null or error_mark
2441         scope.
2442         (cp_parser_elaborated_type_specifier): Adjust
2443         cp_parser_nested_name_specifier call.
2444
2445         * parser (cp_parser_skip_to_end_of_block_or_statement): Cleanup.
2446
2447 2005-06-12  Roger Sayle  <roger@eyesopen.com>
2448
2449         PR c++/21930
2450         * error.c (dump_expr): UNARY_PLUS_EXPR need not handle void types.
2451         Treat CONVERT_EXPR identically to NOP_EXPR.
2452
2453 2005-06-10  Aldy Hernandez  <aldyh@redhat.com>
2454
2455         PR c++/10611
2456         * cvt.c (build_expr_type_conversion): Same.
2457         * typeck.c (build_binary_op): Handle vectors.
2458         (common_type): Same.
2459         (type_after_usual_arithmetic_conversions): Same.
2460
2461 2005-06-08  Nathan Sidwell  <nathan@codesourcery.com>
2462
2463         PR c++/19497
2464         * cp-tree.def (USING_DECL): Update documentation.
2465         * cp-tree.h (DECL_DEPENDENT_P): New.
2466         (USING_DECL_DECLS, USING_DECL_SCOPE): New.
2467         * class.c (handle_using_decl): Move most of the processing to ...
2468         * name-lookup.c (do_class_using_decl): ... here.  Make stricter.
2469         (push_using_decl): Use USING_DECL_SCOPE.
2470         (cp_emit_debug_info_for_using): Make extern.
2471         * cxx-pretty-print.c (pp_cxx_statement) <USING_DECL case>: Adjust.
2472         * name-lookup.h (cp_emit_debug_info_for_using): Declare.
2473         * pt.c (tsubst_decl) <USING_DECL case>: Use do_class_using_decl
2474         when tsubsting.
2475         (tsubst_expr): Use USING_DECL_SCOPE.
2476         * search.c (lookup_field_1): Use DECL_DEPENDENT_P.
2477         * semantics.c (finish_member_declaration): Likewise.
2478
2479 2005-06-08  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
2480
2481         PR c++/19894
2482         * pt.c (tsubst): Reject pointer-to-member of type void.
2483
2484         PR c++/20563
2485         * parser.c (cp_parser_label_declaration): Deal with invalid/missing
2486         identifiers.
2487
2488 2005-06-07  Nathan Sidwell  <nathan@codesourcery.com>
2489
2490         * cp-tree.def (DEFAULT_ARG): Adjust documentation.
2491         * cp-tree.h (DEFARG_INSTANTIATIONS): New.
2492         (struct tree_default_arg): Add instantiations member.
2493         * parser.c (cp_parser_late_parsing_default_args): Adjust to use a
2494         VEC.
2495         * pt.c (tsubst_arg_types): Likewise.
2496
2497         * parser.c (cp_parser_late_parsing_default_args): Fix overeager
2498         assert in previous patch.
2499
2500 2005-06-06  Jakub Jelinek  <jakub@redhat.com>
2501
2502         * error.c (locate_error): Use gmsgid instead of msgid for argument
2503         name.
2504         (cp_error_at, cp_warning_at, cp_pedwarn_at): Likewise.
2505
2506 2005-06-06  Nathan Sidwell  <nathan@codesourcery.com>
2507
2508         PR 21903
2509         * cp-tree.def (DEFAULT_ARG): Document TREE_CHAIN use.
2510         * parser.c (cp_parser_late_parsing_default_args): Propagate parsed
2511         argument to any early instantiations.
2512         * pt.c (tsubst_arg_types): Chain early instantiation of default arg.
2513
2514         PR c++/20637
2515         * cp-tree.h (add_method): Add using_decl parameter.
2516         * class.c (add_method): Add using_decl parameter.  Adjust error
2517         messages.
2518         (handle_using_decl): Pass the using decl to add_method.
2519         (clone_function_decl): Adjust add_member calls.
2520         * decl2.c (check_classfn): Likewise.
2521         * method.c (lazily_declare_fn): Likewise.
2522         * semantics.c (finish_member_declaration): Likewise.
2523
2524         * method.c (synthesize_method): Use inform, not warning.
2525
2526 2005-06-06  Hans-Peter Nilsson  <hp@axis.se>
2527
2528         * config-lang.in (target_libs): Remove target-gperf.
2529
2530 2005-06-05  Mark Mitchell  <mark@codesourcery.com>
2531
2532         PR c++/21619
2533         * cp-tree.h (DECL_IS_BUILTIN_CONSTANT_P): New macro.
2534         * parser.c (cp_parser_postfix_expression): Allow non-constant
2535         expressions as arguments to __builtin_constant_p.
2536         * tree.c (builtin_valid_in_constant_expr_p): Use
2537         DECL_IS_BUILTIN_CONSTANT_P.
2538
2539 2005-06-03  Mark Mitchell  <mark@codesourcery.com>
2540
2541         PR c++/21853
2542         * typeck.c (casts_away_constness_r): Do not drop cv-qualifiers on
2543         the pointed-to type for a pointer-to-member.
2544
2545         PR c++/21336
2546         * cp-tree.h (grok_op_properties): Remove friendp parameter.
2547         * decl.c (grokfndecl): Adjust call.
2548         (grok_op_properties): Determine the class of which the function is
2549         a member by looking at its DECL_CONTEXT, not current_class_type.
2550         * pt.c (tsubst_decl): Adjust call to grok_op_properties.
2551
2552 2005-06-02  Nathan Sidwell  <nathan@codesourcery.com>
2553
2554         * method.c (synthesize_method): Add addtional arg to warning call.
2555
2556         PR c++/21280
2557         * Make-lang.in (method.o): Add diagnostic.h
2558         * decl.c (start_preparsed_function): Use decl's location for file
2559         info.
2560         * decl2.c (cp_finish_file): Set input_location before synthesizing
2561         a function.
2562         (mark_used): When deferring a synthesized function, save current
2563         location.  Do not set function's location when actually
2564         synthesizing it.
2565         * method.c: #include diagnostic.h.
2566         (synthesize_method): Set the functions source location.  Show
2567         needed location if errors are emitted.
2568
2569         * decl.c (start_decl): Simplify specialization handling. Remove
2570         unneeded CLASSTYPE_TEMPLATE_INSTANTIATION check.
2571         * mangle.c (discriminator_for_local_entity): Use VEC_index.
2572
2573         PR c++/20350
2574         * decl.c (duplicate_decls): Copy all of DECL_USE_TEMPLATE.
2575
2576         PR c++/21151
2577         * name-lookup.c (pushtag): Push local class even in a template.
2578
2579 2005-05-31  Nathan Sidwell  <nathan@codesourcery.com>
2580
2581         PR c++/21165
2582         * init.c (integral_constant_value): Check the type of the
2583         initializer, not the decl.
2584
2585 2005-05-30  Mark Mitchell  <mark@codesourcery.com>
2586
2587         PR c++/21784
2588         * name-lookup.c (do_nonmember_using_decl): Ignore builtin
2589         functions, even when the used name is not a function.
2590
2591 2005-05-30  Kazu Hirata  <kazu@cs.umass.edu>
2592
2593         * operators.def, optimize.c: Update copyright.
2594
2595 2005-05-28  Mark Mitchell  <mark@codesourcery.com>
2596
2597         PR c++/21210
2598         * call.c (standard_conversion): Permit conversions to complex
2599         types if conversion to the corresponding scalar type would be
2600         permitted.
2601
2602         PR c++/21340
2603         * method.c (implicitly_declare_fn): Clear processing_template_decl
2604         when generating implicit declaration.
2605
2606 2005-05-27  Mark Mitchell  <mark@codesourcery.com>
2607
2608         PR c++/21614
2609         * typeck.c (get_member_function_from_ptrfunc): Do not attempt
2610         conversions to base classes of incomplete types.
2611
2612 2005-05-27  Ian Lance Taylor  <ian@airs.com>
2613
2614         * semantics.c (add_stmt): Add C++ frontend specific version.
2615         * cp-tree.h (STMT_IS_FULL_EXPR_P): Define.
2616         (stmts_are_full_exprs_p): Declare.
2617
2618 2005-05-27  Roger Sayle  <roger@eyesopen.com>
2619             Giovanni Bajo  <giovannibajo@gcc.gnu.org>
2620
2621         * cp-tree.def (UNARY_PLUS_EXPR): New C++ unary tree code.
2622         * parser.c (cp_parser_unary_expression): Use UNARY_PLUS_EXPR instead
2623         of CONVERT_EXPR.
2624         (cp_parser_unary_expression): Likewise.
2625         * typeck.c (build_unary_op): Likewise.
2626         * call.c (add_builtin_candidate, build_new_op): Likewise.
2627         * error.c (dump_expr): Likewise.
2628         * pt.c (tsubst_copy, tsubst_copy_and_build): Likewise.
2629         * decl.c (ambi_op_p, grok_op_properties): Likewise.
2630         * dump.c (dump_op): Likewise.
2631         * lex.c (init_operators): Likewise.
2632         * operators.def ("+"): Likewise.
2633         * cp-gimplify.c (cp_gimplify_expr): Handle UNARY_PLUS_EXPR like a
2634         conversion, if the result and argument types differ.
2635         * tree.c (fold_if_not_in_template): Fold UNARY_PLUS_EXPR much
2636         like a NOP_EXPR when !processing_template_decl.
2637
2638         * cxx-pretty-print.c (pp_cxx_cast_expression): Prototype.
2639         (pp_cxx_unary_expression): Handle new UNARY_PLUS_EXPR tree code.
2640
2641 2005-05-27  Nathan Sidwell  <nathan@codesourcery.com>
2642
2643         PR c++/21455
2644         * typeck.c (get_delta_difference): Cope with incomplete but equal
2645         classes.  Reorder if.
2646
2647         PR c++/21681
2648         * parser.c (cp_parser_late_parsing_for_member): Disable access
2649         checking for template functions.
2650
2651 2005-05-26  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
2652
2653         PR c++/21768
2654         * pt.c (redeclare_class_template): Change error message according
2655         to coding conventions.
2656
2657 2005-05-26  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
2658
2659         * call.c (build_op_delete_call): Fix quoting in error message.
2660
2661 2005-05-25  Richard Henderson  <rth@redhat.com>
2662
2663         PR libgcj/21692
2664         * cp-tree.h (make_alias_for): Declare.
2665         * decl2.c (build_java_method_aliases): New.
2666         (cp_finish_file): Call it.
2667         * method.c (make_alias_for): Split out from ...
2668         (make_alias_for_thunk): ... here.
2669
2670 2005-05-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
2671
2672         PR c++/21686
2673         * semantics.c (finish_id_expression): Fix quoting in error message.
2674
2675 2005-05-25  DJ Delorie  <dj@redhat.com>
2676
2677         * decl.c (duplicate_decls): Move warning control from if() to
2678         warning(OPT_*).
2679         * name-lookup.c (parse_using_directive): Likewise.
2680         * parser.c (cp_parser_elaborated_type_specifier): Likewise.
2681         (cp_parser_init_declarator): Likewise.
2682         * tree.c (handle_com_interface_attribute): Likewise.
2683
2684 2005-05-24  Ziemowit Laski  <zlaski@apple.com>
2685
2686         * class.c (layout_class_type): Do not issue C++ ABI warnings
2687         for ObjC structs.
2688         * decl.c (objc_mark_locals_volatile): Streamline by calling
2689         objc_volatilize_decl().
2690         * parser.c (cp_parser_objc_message_expression): Allow simple
2691         type specifiers (instead of merely type names) as message
2692         receivers.
2693         * pt.c (template_args_equal): Do not call objc_comptypes().
2694         * typeck.c (composite_pointer_type): If both pointers are
2695         ObjC-esque, arbitrarily choose the first; do not call
2696         objc_comptypes().
2697         (comptypes): Do not call objc_comptypes().
2698         (convert_for_assignment): Call objc_compare_types().
2699         (comp_ptr_ttypes_real): Call objc_type_quals_match() before
2700         concluding that types do not match.
2701
2702 2005-05-24  Andrew Pinski  <pinskia@physics.uc.edu>
2703
2704         PR C++/21645
2705         * optimize.c (update_cloned_parm): Copy the TYPE also from the
2706         original one.
2707
2708 2005-05-19  Jakub Jelinek  <jakub@redhat.com>
2709
2710         PR c++/21495
2711         * decl.c (grokdeclarator): Fix "storage class specified for"
2712         error reporting.
2713
2714 2005-05-19  Kazu Hirata  <kazu@cs.umass.edu>
2715
2716         * parser.c: Fix comment typos.
2717
2718 2005-05-18  Geoffrey Keating  <geoffk@apple.com>
2719
2720         * Make-lang.in (cc1plus-dummy): New.
2721         (cc1plus-checksum.c): New.
2722         (cc1plus-checksum.o): New.
2723         (cc1plus): Add cc1plus-checksum.o.
2724
2725 2005-05-17  H.J. Lu  <hongjiu.lu@intel.com>
2726
2727         PR C++/19664
2728         * decl2.c (determine_visibility): Don't set visibility to
2729         hidden if it has been set explicitly by user.
2730
2731 2005-05-17  Ziemowit Laski  <zlaski@apple.com>
2732             Mike Stump  <mrs@apple.com>
2733
2734         Yet more Objective-C++...
2735
2736         * cp-objcp-common.h (cxx_get_alias_set): Move from
2737         here...
2738         (cxx_warn_unused_global_decl): Likewise.
2739         (cp_expr_size): Likewise.
2740         (cp_tree_size): Likewise.
2741         (cp_var_mod_type_p): Likewise.
2742         (cxx_initialize_diagnostics): Likewise.
2743         (cxx_types_compatible_p): Likewise.
2744         * cp-tree.h: to here.
2745         (do_poplevel): Add.
2746         * lex.c (D_OBJC): Add.
2747         (init_reswords): Add.
2748         * Make-lang.in (cp/pt.o): Add cp/cp-objcp-common.h.
2749         * parser.c: Add c-common.h include.
2750         * pt.c: Add c-common.h and cp-objcp-common.h includes.
2751         (template_args_equal): Use objc_comptypes as well.
2752         (tsubst_copy_and_build): Use objcp_tsubst_copy_and_build as well.
2753         * semantics.c (do_poplevel): Remove static.
2754
2755         * decl.c (objc_mark_locals_volatile): Don't change decls that are
2756         already ok.
2757         * decl2.c (generate_ctor_or_dtor_function): Add code to initialize
2758         Objective C++ early enough.
2759         * lex.c (struct resword reswords): Add Objective-C++ support.
2760         * parser.c (cp_lexer_get_preprocessor_token): Add Objective-C++.
2761         (cp_parser_objc_message_receiver): Add.
2762         (cp_parser_objc_message_args): Likewise.
2763         (cp_parser_objc_message_expression): Likewise.
2764         (cp_parser_objc_encode_expression): Likewise.
2765         (cp_parser_objc_defs_expression): Likewise.
2766         (cp_parser_objc_protocol_expression): Likewise.
2767         (cp_parser_objc_selector_expression): Likewise.
2768         (cp_parser_objc_expression): Likewise.
2769         (cp_parser_objc_visibility_spec): Likewise.
2770         (cp_parser_objc_method_type): Likewise.
2771         (cp_parser_objc_protocol_qualifiers): Likewise.
2772         (cp_parser_objc_typename): Likewise.
2773         (cp_parser_objc_selector_p): Likewise.
2774         (cp_parser_objc_selector): Likewise.
2775         (cp_parser_objc_method_keyword_params): Likewise.
2776         (cp_parser_objc_method_tail_params_opt): Likewise.
2777         (cp_parser_objc_interstitial_code): Likewise.
2778         (cp_parser_objc_method_signature): Likewise.
2779         (cp_parser_objc_method_prototype_list): Likewise.
2780         (cp_parser_objc_method_definition_list): Likewise.
2781         (cp_parser_objc_class_ivars): Likewise.
2782         (cp_parser_objc_identifier_list): Likewise.
2783         (cp_parser_objc_alias_declaration): Likewise.
2784         (cp_parser_objc_class_declaration): Likewise.
2785         (cp_parser_objc_protocol_declaration): Likewise.
2786         (cp_parser_objc_protocol_refs_opt): Likewise.
2787         (cp_parser_objc_superclass_or_category): Likewise.
2788         (cp_parser_objc_class_interface): Likewise.
2789         (cp_parser_objc_class_implementation): Likewise.
2790         (cp_parser_objc_end_implementation): Likewise.
2791         (cp_parser_objc_declaration): Likewise.
2792         (cp_parser_objc_try_catch_finally_statement): Likewise.
2793         (cp_parser_objc_synchronized_statement): Likewise.
2794         (cp_parser_objc_throw_statement): Likewise.
2795         (cp_parser_objc_statement): Likewise.
2796         (cp_parser_primary_expression): Add Objective-C++.
2797         (cp_parser_statement): Likewise.
2798         (cp_parser_declaration): Likewise.
2799         (cp_parser_simple_type_specifier): Likewise.
2800         (cp_parser_type_name): Likewise.
2801         (cp_parser_parameter_declaration_list): Likewise.
2802         (cp_parser_member_declaration) Likewise.
2803         * tree.c: Include debug.h.
2804         * typeck.c (composite_pointer_type): Add Objective-C++ support.
2805         (finish_class_member_access_expr): Likewise.
2806         (build_function_call): Allow objc to rewrite FUNCTION_DECLs.
2807         (build_modify_expr): Allow objc to generate write barriers.
2808
2809         * Make-lang.in (cp/tree.o): Add debug.h.
2810         * tree.c (lvalue_p_1, case CONST_DECL): Add.
2811
2812 2005-05-18  Jan Hubicka  <jh@suse.cz>
2813
2814         * method.c: Include tree-pass.h
2815         (use_thunk): Lower body before expanding.
2816
2817 2005-05-17  Jakub Jelinek  <jakub@redhat.com>
2818
2819         PR c++/21454
2820         * decl.c (maybe_deduce_size_from_array_init): Call
2821         cp_apply_type_quals_to_decl after completing array type.
2822
2823 2005-05-16  Richard Henderson  <rth@redhat.com>
2824
2825         * decl.c (build_library_fn_1): Move setting TREE_NOTHROW ...
2826         (build_library_fn): ... here.
2827
2828 2005-05-12  Ian Lance Taylor  <ian@airs.com>
2829
2830         * cp-tree.h (cp_stmt_codes): Don't define.
2831         (statement_code_p): Declare.
2832         (STATEMENT_CODE_P): Define.
2833         * lex.c (statement_code_p): Define.
2834         (cxx_init): Use actual codes in stmt_codes initializer, not
2835         cp_stmt_codes macro.  Initialize statement_code_p directly, rather
2836         than using INIT_STATEMENT_CODES.
2837
2838 2005-05-09  Mark Mitchell  <mark@codesourcery.com>
2839
2840         * typeck.c (build_unary_op): Do not resort to address arithmetic
2841         when taking the address of a COMPONENT_REF.
2842
2843 2005-05-08  Kazu Hirata  <kazu@cs.umass.edu>
2844
2845         * class.c (vtbl_init_data_s): Change the type of fns to
2846         VEC(tree,gc)*.
2847         (build_vtbl_initializer, add_vcall_offset, add_vcall_offset):
2848         Use VEC instead of VARRAY.
2849
2850 2005-05-07  Richard Sandiford  <rsandifo@redhat.com>
2851
2852         * mangle.c: Remove a reference to the MIPS -mint64 option.
2853
2854 2005-05-07  Kazu Hirata  <kazu@cs.umass.edu>
2855
2856         * decl.c (wrapup_globals_for_namespace): Use VEC instead of
2857         VARRAY.
2858         * name-lookup.c (add_decl_to_level, begin_scope): Likewise.
2859         * name-lookup.h (cp_binding_level): Change the type of
2860         static_decls to VEC(tree,gc)*.
2861
2862         * mangle.c (globals): Change the type of substitutions to
2863         VEC(tree,gc)*.
2864         (dump_substitution_candidates, add_substitution,
2865         find_substitution, finish_mangling, init_mangle): Use VEC
2866         instead of VARRAY.
2867
2868 2005-05-06  Kazu Hirata  <kazu@cs.umass.edu>
2869
2870         * decl2.c (spew_debug): Remove.
2871
2872         * decl2.c (ssdf_decls, start_static_storage_duration_function,
2873         generate_ctor_or_dtor_function): Use VEC instead of VARRAY.
2874
2875         * decl2.c (pending_statics, note_vague_linkage_var,
2876         cp_finish_file): Use VEC instead of VARRAY.
2877         (pending_statics_used): Remove.
2878
2879 2005-05-05  Kazu Hirata  <kazu@cs.umass.edu>
2880
2881         * decl2.c (deferred_fns, note_vague_linkage_fn,
2882         cp_finish_file): Use VEC instead of VARRAY.
2883
2884 2005-05-05  Mark Mitchell  <mark@codesourcery.com>
2885
2886         PR c++/21352
2887         * pt.c (build_non_dependent_expr): Use is_overloaded_fn.
2888
2889 2005-05-05  Kazu Hirata  <kazu@cs.umass.edu>
2890
2891         * pt.c: Fix a comment typo.
2892
2893 2005-05-04  Kazu Hirata  <kazu@cs.umass.edu>
2894
2895         * cp-tree.h (language_function): Change the type of
2896         x_local_names to VEC.
2897         * decl.c (push_local_name): Adjust uses of local_names.
2898
2899 2005-05-03  Kazu Hirata  <kazu@cs.umass.edu>
2900
2901         * friend.c, lex.c, mangle.c, repo.c: Update copyright.
2902
2903 2005-05-02  Kazu Hirata  <kazu@cs.umass.edu>
2904
2905         * class.c (local_classes, init_class_processing): Use VEC
2906         instead of VARRAY.
2907         * cp-tree.h (local_classes): Likewise.
2908         * mangle.c (discriminator_for_local_entity): Likewise.
2909         * name-lookup.c (pushtag): Likewise.
2910
2911         * class.c (current_lang_depth, push_lang_context,
2912         pop_lang_context): Use VEC instead of VARRAY.
2913         * cp-tree.h (saved_scope): Use VEC for lang_base instead of
2914         VARRAY.
2915         * name-lookup.c (push_to_top_level): Use VEC instead of
2916         VARRAY.
2917
2918 2005-05-02  Paolo Bonzini  <bonzini@gnu.org>
2919
2920         * semantics.c (finish_call_expr): Call resolve_overloaded_builtin
2921         for BUILT_IN_MD built-ins.
2922
2923 2005-05-02  Michael Matz  <matz@suse.de>
2924
2925         PR c++/19542
2926         * cp-tree.h (cp_tree_index): Remove CPTI_NULL, to be defined in C
2927         common frontend.
2928         (null_node): Remove.
2929         * lex.c (cxx_init): Move null_node initialisation to C common frontend.
2930
2931 2005-04-25  Ian Lance Taylor  <ian@airs.com>
2932
2933         * cp-tree.def: Add EXPR_STMT.
2934         * cp-tree.h (cp_stmt_codes): Add EXPR_STMT.
2935         (EXPR_STMT_EXPR): Define.
2936         * cp-gimplify.c: Include "flags.h".
2937         (gimplify_expr_stmt): New static function.
2938         (cp_gimplify_expr): Handle EXPR_STMT.
2939         * cxx-pretty-print.c (pp_cxx_statement): Use pp_cxx_expression
2940         rather than pp_expression.
2941         (pp_cxx_statement): Handle EXPR_STMT.
2942         * dump.c (cp_dump_tree): Handle EXPR_STMT.
2943         * lex.c (cxx_init): Don't use c_common_stmt_codes in stmt_codes
2944         initializer.
2945
2946 2005-04-25  Andrew Pinski  <pinskia@physics.uc.edu>
2947
2948         PR C++/21188
2949         * rtti.c (ifnonnull): Cast the zero comparison operand
2950         to the correct type.
2951
2952 2005-04-24  Jakub Jelinek  <jakub@redhat.com>
2953
2954         PR middle-end/20991
2955         * class.c: Include cgraph.h.
2956         (cp_fold_obj_type_ref): Set node->local.vtable_method.
2957         * Make-lang.in (cgraph.o): Depend on $(CGRAPH_H).
2958
2959 2005-04-12  Markus F.X.J. Oberhumer  <markus@oberhumer.com>
2960
2961         * mangle.c (write_builtin_type): Handle integer types which are
2962         not one of the shared integer type nodes and emit a "vendor
2963         extended builtin type" with an encoding in the form of "u5int96".
2964
2965 2005-04-24  Ian Lance Taylor  <ian@airs.com>
2966
2967         * cp-tree.def (USING_STMT): Change class to tcc_statement.
2968         (TRY_BLOCK, EH_SPEC_BLOCK, HANDLER, CLEANUP_STMT): Likewise.
2969         (IF_STMT, FOR_STMT, WHILE_STMT, DO_STMT): Likewise.
2970         (BREAK_STMT, CONTINUE_STMT, SWITCH_STMT): Likewise.
2971
2972 2005-04-23  DJ Delorie  <dj@redhat.com>
2973
2974         * call.c, class.c, cvt.c, decl.c, decl2.c, except.c, friend.c,
2975         init.c, lex.c, mangle.c, method.c, name-lookup.c, parser.c,
2976         repo.c, rtti.c, tree.c, typeck.c, typeck2.c: Adjust warning()
2977         callers.
2978
2979 2005-04-22  Per Bothner  <per@bothner.com>
2980
2981         * decl.c (make_rtl_for_nonlocal_decl): Don't try get_fileinfo if
2982         input_filename is NULL, as it is for (say) __PRETTY_FUNCTION__.
2983
2984 2005-04-22  Alexandre Oliva  <aoliva@redhat.com>
2985
2986         PR c++/21087
2987         * name-lookup.c (push_overloaded_decl): Do not overload with
2988         non-duplicate anticipated built-in.
2989
2990 2005-04-21  Kazu Hirata  <kazu@cs.umass.edu>
2991
2992         * cp-tree.h (THROW_NAME, AUTO_VTABLE_NAME, AUTO_TEMP_FORMAT,
2993         VTABLE_BASE, VTABLE_NAME_PREFIX, STATIC_NAME_FORMAT): Remove.
2994
2995 2005-04-21  Nathan Sidwell  <nathan@codesourcery.com>
2996
2997         * cp-tree.h: Adjust for new VEC API.
2998         Define VEC(tree_pair_s,gc).
2999         (struct save_scope): Adjust.
3000         (struct lang_type_class): Adjust.
3001         (unemitted_tinfo_decls): Adjust.
3002         * class.c (add_method, resort_type_method_vec,
3003         finish_struct_methods, struct find_final_overrider_data,
3004         dfs_find_final_overrider_pre, find_final_overrider,
3005         get_vcall_index, warn_hidden, walk_subobject_offsets,
3006         check_methods, fixup_inline_methods, end_of_class,
3007         warn_about_ambiguous_bases, finish_struct, build_vtbl_initializer,
3008         add_vcall_offset): Adjust.
3009         * decl.c (xref_basetypes, finish_method): Adjust.
3010         * decl2.c (check_classfn): Adjust.
3011         * init.c (sort_mem_initializers, push_base_cleanups): Adjust.
3012         * method.c (do_build_copy_constructor): Adjust.
3013         * name-lookup.c (new_class_binding, store_binding,
3014         store_bindings, store_class_bindings): Adjust.
3015         * name-lookup.h: Define VEC(cxx_saved_binding,gc),
3016         VEC(cp_class_binding,gc).
3017         (struct cp_binding_level): Adjust.
3018         * parser.c: Define VEC(cp_token_position,heap).
3019         (struct cp_lexer): Adjust.
3020         (cp_lexer_new_main, cp_lexer_new_from_tokens, cp_lexer_destroy,
3021         cp_lexer_save_tokens): Adjust.
3022         * pt.c (retrieve_specialization,
3023         check_explicit_specialization): Adjust.
3024         * rtti.c (unemitted_tinfo_decls): Adjust.
3025         (init_rtti_processing, get_tinfo_decl, get_pseudo_ti_init,
3026         get_pseudo_ti_desc): Adjust.
3027         * search.c (dfs_access_in_type, lookup_conversion_operator,
3028         lookup_fnfields_1, dfs_walk_once, dfs_walk_once_accessible,
3029         dfs_get_pure_virtuals, lookup_conversions_r, binfo_for_vbase): Adjust.
3030         * semantics.c: Define VEC(deferred_access,gc).
3031         (push_deferring_access_checks): Adjust.
3032         * typeck2.c (abstract_virtuals_error): Adjust.
3033
3034 2005-04-20  Ian Lance Taylor  <ian@airs.com>
3035
3036         * cp-tree.def: Add STMT_EXPR.
3037         * cp-tree.h (STMT_EXPR_NO_SCOPE): Define.
3038         (STMT_EXPR_STMT): Define.
3039         * cxx-pretty-print.c (pp_cxx_primary_expression): Handle
3040         STMT_EXPR.
3041         (pp_cxx_expression): Likewise.
3042         (pp_cxx_statement): Call pp_cxx_statement, not pp_statement.
3043         * dump.c (cp_dump_tree): Handle STMT_EXPR.
3044
3045 2005-04-18  Kazu Hirata  <kazu@cs.umass.edu>
3046
3047         * decl.c (expand_static_init): Call build2 and build3 instead
3048         of build.
3049
3050         * cp-tree.h (VPTR_NAME, VPTR_NAME_P): Remove.
3051
3052 2005-04-17  Ian Lance Taylor  <ian@airs.com>
3053
3054         * cp-tree.def: Add SIZEOF_EXPR, ARROW_EXPR and ALIGNOF_EXPR.
3055         * cxx-pretty-print.c (pp_cxx_postfix_expression): Handle
3056         ARROW_EXPR.
3057         (pp_cxx_unary_expression): Handle SIZEOF_EXPR and ALIGNOF_EXPR.
3058         (pp_cxx_expression): Handle ARROW_EXPR, SIZEOF_EXPR, and
3059         ALIGNOF_EXPR.
3060         * typeck.c (cxx_sizeof_or_alignof_type): Update call to
3061         c_sizeof_or_alignof_type for change in parameter type.
3062
3063 2005-04-16  Mark Mitchell  <mark@codesourcery.com>
3064
3065         PR c++/21025
3066         * typeck.c (cxx_sizeof_or_alignof_type): Check whether the type to
3067         which sizeof/alignof is dependent, rather than just whether we are
3068         processing_template_decl.
3069
3070 2005-04-17  Kazu Hirata  <kazu@cs.umass.edu>
3071
3072         * cp-tree.h (LOOKUP_GLOBAL): Remove.
3073         (LOOKUP_ONLYCONVERTING, DIRECT_BIND, LOOKUP_NO_CONVERSION,
3074         LOOKUP_DESTRUCTOR, LOOKUP_NO_TEMP_BIND, LOOKUP_PREFER_TYPES,
3075         LOOKUP_PREFER_NAMESPACES, LOOKUP_CONSTRUCTOR_CALLABLE): Adjust
3076         their values.
3077
3078 2005-04-15  Richard Henderson  <rth@redhat.com>
3079
3080         PR middle-end/14311
3081         * semantics.c (finish_call_expr): Call resolve_overloaded_builtin.
3082
3083 2005-04-15  Kazu Hirata  <kazu@cs.umass.edu>
3084
3085         * cp-tree.h (lang_type_class): Remove redefined.  Move
3086         java_interface into where redefined was.  Increment the width
3087         of dummy.
3088         (TYPE_REDEFINED): Remove.
3089
3090 2005-04-14  Kazu Hirata  <kazu@cs.umass.edu>
3091
3092         * cp-tree.h (SET_TMPL_ARG, ENUM_TI_TEMPLATE, ENUM_TI_ARGS,
3093         CLASSTYPE_TEMPLATE_LEVEL): Remove.
3094
3095 2005-04-11  Mark Mitchell  <mark@codesourcery.com>
3096
3097         * decl2.c (determine_visibility): Don't use export_class_data.
3098         (import_export_decl): Honor TARGET_CXX_CLASS_DATA_ALWAYS_WEAK and
3099         TARGET_CXX_DETERMINE_CLASS_DATA_VISIBILITY.
3100
3101 2005-04-09  Kazu Hirata  <kazu@cs.umass.edu>
3102
3103         * cp-tree.h (cxx_alignof): Remove.
3104
3105         * cp-tree.h (DECL_ARRAY_DELETE_OPERATOR_P): Remove.
3106
3107         * cp-tree.h (EXCEPTION_CLEANUP_NAME, B_SET, B_CLR, B_TST,
3108         CONV_STATIC_CAST): Remove.
3109
3110         * pt.c (UNIFY_ALLOW_MAX_CORRECTION): Remove.
3111
3112         * cp-tree.h (VF_BINFO_VALUE, VF_BASETYPE_VALUE): Remove.
3113
3114         * cp-tree.h (cp_deprecated): Remove.
3115
3116 2005-04-08  Ian Lance Taylor  <ian@airs.com>
3117
3118         * cp-tree.def: Define FOR_STMT, WHILE_STMT, DO_STMT, BREAK_STMT,
3119         CONTINUE_STMT, SWITCH_STMT.
3120         * cp-tree.h (cp_stmt_codes): Add FOR_STMT, WHILE_STMT, DO_STMT,
3121         BREAK_STMT, CONTINUE_STMT, SWITCH_STMT.
3122         (WHILE_COND, WHILE_BODY): Define.
3123         (DO_COND, DO_BODY): Define.
3124         (FOR_INIT_STMT, FOR_COND, FOR_EXPR, FOR_BODY): Define.
3125         (SWITCH_STMT_COND, SWITCH_STMT_BODY, SWITCH_STMT_TYPE): Define.
3126         * cp-gimplify.c (enum bc_t): Define.
3127         (struct cp_gimplify_ctx, ctxp): Define.
3128         (push_context, pop_context): New static functions.
3129         (begin_bc_block, finish_bc_block): New static functions.
3130         (build_bc_goto): New static function.
3131         (gimplify_cp_loop, gimplify_for_stmt): New static functions.
3132         (gimplify_while_stmt, gimplify_do_stmt): Likewise.
3133         (gimplify_switch_stmt): Likewise.
3134         (cp_gimplify_expr): Handle FOR_STMT, WHILE_STMT, DO_STMT,
3135         SWITCH_STMT, CONTINUE_STMT, BREAK_STMT.
3136         (cp_genericize): Call push_context and pop_context.
3137         * semantics.c (finish_break_stmt): Just call build_stmt
3138         (BREAK_STMT) rather than build_break_stmt.
3139         (finish_continue_stmt): Corresponding change.
3140         * decl.c (pop_switch): Update call to c_do_switch_warnings for new
3141         parameters.
3142         * cxx-pretty-print.c (pp_cxx_statement): Handle SWITCH_STMT,
3143         WHILE_STMT, DO_STMT, FOR_STMT, BREAK_STMT, CONTINUE_STMT.
3144         * dump.c (cp_dump_tree): Likewise.
3145
3146 2005-04-08  Mark Mitchell  <mark@codesourcery.com>
3147
3148         PR c++/20905
3149         * parser.c (cp_parser_type_specifier_seq): Add is_condition
3150         parameter.
3151         (cp_parser_new_type_id): Pass it.
3152         (cp_parser_condition): Likewise.
3153         (cp_parser_conversion_type_id): Likewise.
3154         (cp_parser_type_id): Likewise.
3155         (cp_parser_type_specifier_seq): In a condition, do not allow
3156         invalid type-specifier combinations.
3157         (cp_parser_exception_declaration): Adjust call to
3158         cp_parser_type_specifier_seq.
3159
3160         * cp-tree.def (TINST_LEVEL): Document TINST_IN_SYSTEM_HEADER_P.
3161         * cp-tree.h (struct tinst_level): Add in_system_header_p.
3162         (TINST_IN_SYSTEM_HEADER_P): New macro.
3163         (make_tinst_level): Remove.
3164         * pt.c (lookup_template_class): Preserve DECL_IN_SYSTEM_HEADER on
3165         the instantiated class.
3166         (push_tinst_level): Do not use make_tinst_level.  Set
3167         TINST_IN_SYSTEM_HEADER_P.
3168         (pop_tinst_level): Likewise.
3169         (instantiate_class_template): Set in_system_header.
3170         (instantiate_pending_templates): Likewise.
3171         * tree.c (make_tinst_level): Remove.
3172
3173 2005-04-06  Joseph S. Myers  <joseph@codesourcery.com>
3174
3175         * decl.c (start_decl): Apply pending #pragma weak regardless of
3176         scope.
3177
3178 2005-04-06  Mark Mitchell  <mark@codesourcery.com>
3179
3180         PR c++/20212
3181         * pt.c (regenerate_decl_from_template): Copy attributes for
3182         parameters from the pattern to the instantiation.
3183
3184 2005-04-05  Mark Mitchell  <mark@codesourcery.com>
3185
3186         PR c++/20734
3187         * cp-tree.def (OFFSET_REF): Correct comments.
3188         * init.c (build_offset_ref): Remove misleading comment.
3189         * typeck.c (build_unary_op): Handle pointer-to-member creation
3190         here, rather than ...
3191         (unary_complex_lvalue): ... here.
3192
3193 2005-04-06  Jason Merrill  <jason@redhat.com>
3194
3195         PR c++/19312
3196         * tree.c (stabilize_init): Don't bother trying to stabilize
3197         something with no side-effects.
3198
3199 2005-04-05  Mark Mitchell  <mark@codesourcery.com>
3200
3201         PR c++/20763
3202         * decl.c (grokdeclarator): Correct attribute handling.
3203
3204 2005-04-05  Mark Mitchell  <mark@codesourcery.com>
3205
3206         PR c++/19159
3207         * decl2.c (import_export_decl): Use non-COMDAT external linkage
3208         for virtual tables, typeinfo, etc. that will be emitted in only
3209         one translation unit on systems without weak symbols.
3210
3211 2005-04-04  Mark Mitchell  <mark@codesourcery.com>
3212
3213         PR c++/20679
3214         * parser.c (cp_parser_template_name): Fix thinko.
3215
3216 2005-04-04  Nathan Sidwell  <nathan@codesourcery.com>
3217
3218         PR c++/20746
3219         * method.c (use_thunk): Protect covariant pointer return
3220         adjustments from NULL pointers.
3221
3222 2005-04-04  Jan Hubicka  <jh@suse.cz>
3223
3224         * decl2.c (finish_objects): Revert my previous patch.
3225         (cp_finish_file): Likewise.
3226
3227 2005-04-03  Kazu Hirata  <kazu@cs.umass.edu>
3228
3229         * pt.c: Fix comment typos.
3230
3231 2005-04-03  Nathan Sidwell  <nathan@codesourcery.com>
3232
3233         PR c++/20723
3234         * pt.c (more_specialized_fn): Member functions are unordered wrt
3235         non-members.  Conversion operators are unordered wrt other
3236         functions.
3237
3238 2005-04-01  Nathan Sidwell  <nathan@codesourcery.com>
3239
3240         * call.c (add_template_candidates_real): Remove length parameter
3241         from fn_type_unification call.
3242         * class.c (resolve_address_of_overloaded_function): Likewise
3243         * cp-tree.h (fn_type_unification): Remove length parameter.
3244         * pt.c (get_bindings_overload): Remove.
3245         (get_bindings_real): Rename to ...
3246         (get_bindings): ... here.  Remove length and strict
3247         parameters. Change return type flag to boolean.  Remove original
3248         forwarding function.
3249         (determine_specialization): Adjust get_bindings call.
3250         (fn_type_unification): Remove length parameter.  Adjust.
3251         (type_unification_real): Remove length parameter.  Adjust.
3252         (resolve_overloaded_unification): Adjust get_bindings call.
3253         (try_one_overload): Simplify confusing cascaded if control flow.
3254         (unify): Remove length paramter from type_unification_real call.
3255         (most_specialized_instantiation): Adjust get_bindings calls.
3256         (most_specialized): Likewise.
3257
3258 2005-03-31  Nathan Sidwell  <nathan@codesourcery.com>
3259
3260         PR c++/19203, implement DR 214
3261         * call.c (joust): Use more_specialized_fn.
3262         * cp-tree.h (DEDUCE_ORDER): Remove.
3263         (more_specialized): Replace with ...
3264         (more_specialized_fn): ... this.
3265         * pt.c (maybe_adjust_types_for_deduction): Remove DEDUCE_ORDER
3266         case.
3267         (type_unification_real): Remove DEDUCE_ORDER case.
3268         (more_specialized): Replace with ...
3269         (more_specialized_fn): ... this.  Implement DR 214.
3270         (most_specialized_instantiation): Use get_bindings_real directly.
3271
3272 2005-03-31  Gabriel Dos Reis  <gdr@integrable-solutions.net>
3273
3274         PR c++/18644
3275         * call.c (build_new_op): Remove check for -Wsynth.
3276
3277 2005-03-31  Jan Hubicka  <jh@suse.cz>
3278
3279         * decl2.c (finish_objects): Mark ctor as needed.
3280         (cp_finish_file): Output variables only in nonunit-at-a-time.
3281
3282 2005-03-29  Richard Henderson  <rth@redhat.com>
3283
3284         PR c/20519
3285         * decl.c (cp_complete_array_type): Rename from complete_array_type.
3286         Use the new complete_array_type in c-common.c.  Update all callers.
3287         * cp-tree.h (cp_complete_array_type): Update to match.
3288
3289 2005-03-24  Geoffrey Keating  <geoffk@apple.com>
3290
3291         * typeck.c (build_static_cast_1): Allow scalar_cast between
3292         any integral, floating, or enumeration type.
3293
3294 2005-03-24  Steven Bosscher  <stevenb@suse.de>
3295
3296         * typeck.c (comptypes): First determine if the types are compatible
3297         from a target-independent point of view.  Check target attributes
3298         last.
3299
3300         * class.c (build_base_path):
3301         (build_vbase_offset_vtbl_entries):
3302         (add_vcall_offset): Replace fold (buildN (...)) with fold_buildN.
3303         * error.c (dump_expr): Likewise.
3304         * init.c (build_zero_init, expand_cleanup_for_base,
3305         build_vec_delete_1): Likewise.
3306         * mangle.c (write_integer_cst): Likewise.
3307         * method.c (thunk_adjust): Likewise.
3308         * pt.c (convert_nontype_argument, tsubst, unify): Likewise.
3309         * tree.c (cxx_print_statistics, array_type_nelts_total): Likewise.
3310         * typeck.c (build_ptrmemfunc_access_expr,
3311         (get_member_function_from_ptrfunc): Likewise.
3312
3313 2005-03-23  Joseph S. Myers  <joseph@codesourcery.com>
3314
3315         * cp-objcp-common.h (LANG_HOOKS_TRUTHVALUE_CONVERSION): Remove.
3316
3317 2005-03-23  Joseph S. Myers  <joseph@codesourcery.com>
3318
3319         * cp-tree.h (perform_integral_promotions): Remove.
3320         (default_conversion): Add.
3321
3322 2005-03-22  Mark Mitchell  <mark@codesourcery.com>
3323
3324         * parser.c (cp_parser_warn_min_max): New function.
3325         (cp_parser_binary_expression): Use it.
3326         (cp_parser_assignment_operator_opt): Likewise.
3327         (cp_parser_operator): Likewise.
3328
3329 2005-03-22  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
3330
3331         PR c++/19980
3332         * decl.c (start_preparsed_function): Robustify.
3333
3334 2005-03-22  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
3335
3336         PR c++/20499
3337         * parser.c (cp_parser_class_head): Return NULL_TREE when
3338         encountering a redefinition.
3339
3340 2005-03-22  Nathan Sidwell  <nathan@codesourcery.com>
3341
3342         PR c++/20465
3343         PR c++/20381
3344         * typeck.c (build_ptrmemfunc): Allow OFFSET_REF when processing a
3345         template.
3346
3347 2005-03-21  Paolo Carlini  <pcarlini@suse.de>
3348
3349         PR c++/20461
3350         PR c++/20536
3351         * init.c (emit_mem_initializers): Don't crash on undefined
3352         types.
3353
3354 2005-03-21  Paolo Carlini  <pcarlini@suse.de>
3355
3356         PR c++/20147
3357         * semantics.c (finish_stmt_expr_expr): Return immediately
3358         if error_operand_p (expr).
3359
3360 2005-03-21  Joseph S. Myers  <joseph@codesourcery.com>
3361
3362         * cp-tree.h (lvalue_or_else, lvalue_p): New.
3363         * typeck.c (lvalue_or_else): New.  Call lvalue_error.
3364
3365 2005-03-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3366
3367         PR c++/20240
3368         * decl.c (decls_match): Compare context of VAR_DECL.
3369
3370 2005-03-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3371
3372         PR c++/20333
3373         * parser.c (cp_parser_postfix_expression) <case RID_TYPENAME>:
3374         Check the return value of cp_parser_nested_name_specifier.
3375
3376 2005-03-18  Dale Johannesen <dalej@apple.com>
3377
3378         * cp/tree.c (cp_tree_equal):  Handle SSA_NAME.
3379
3380 2005-03-18  Paolo Carlini  <pcarlini@suse.de>
3381
3382         PR c++/20463
3383         * parser.c (cp_parser_diagnose_invalid_type_name):
3384         Check TYPE_BINFO (current_class_type) before attempting
3385         to emit inform messages.
3386
3387 2005-03-17  Paolo Carlini  <pcarlini@suse.de>
3388
3389         PR c++/19966
3390         * cp-tree.h (grok_op_properties): Change return type to void.
3391         * decl.c (grok_op_properties): Return early - don't check the
3392         arity - in case of a static member or an operator that cannot
3393         be non-member; tidy a bit.
3394
3395 2005-03-17  Nathan Sidwell  <nathan@codesourcery.com>
3396
3397         PR c++/20186
3398         * pt.c (contains_dependent_cast_p): Remove.
3399         (fold_non_dependent_expr): Don't use it.
3400         (value_dependent_expression_p): Use a switch statement.
3401         reference_exprs can be dependent.
3402
3403 2005-03-14  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3404
3405         PR c++/4403
3406         PR c++/9783, DR433
3407         * name-lookup.c (pushtag): Skip template parameter scope when
3408         scope is ts_global.  Don't push tag into template parameter
3409         scope.
3410         * pt.c (instantiate_class_template): Reorder friend class
3411         template substitution to handle non-dependent friend class
3412         that hasn't been previously declared.
3413
3414 2005-03-14  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3415
3416         Friend class name lookup 5/n
3417         PR c++/1016
3418         * cp-tree.h (pushtag): Adjust declaration.
3419         * decl.c (lookup_and_check_tag): Call lookup_type_scope if
3420         lookup_name fails.
3421         (xref_tag): Adjust call to pushtag.  Make hidden class visible.
3422         (start_enum): Adjust call to pushtag.
3423         * name-lookup.c (ambiguous_decl): Ignore hidden names.
3424         (qualify_lookup): Change return type to bool.
3425         (hidden_name_p): New function.
3426         (lookup_namespace_name, unqualified_namespace_lookup,
3427         lookup_name_real): Use it.
3428         (lookup_type_scope): Update comments.
3429         (maybe_process_template_type_declaration): Change parameter name
3430         from globalize to is_friend.
3431         (pushtag): Change globalize parameter of type int to tag_scope.
3432         Hide name if introduced by friend declaration.
3433         * name-lookup.h (hidden_name_p): Add declaration.
3434         * parser.c (cp_parser_lookup_name): Don't deal with hidden name
3435         here.
3436         * pt.c (push_template_decl_real): Make hidden class template
3437         visible.
3438         (lookup_template_class, instantiate_class_template): Adjust call
3439         to pushtag.
3440         * semantics.c (begin_class_definition): Likewise.
3441         * rtti.c (init_rtti_processing, build_dynamic_cast_1,
3442         tinfo_base_init, emit_support_tinfos): Use ts_current instead of
3443         ts_global.
3444
3445 2005-03-13  Mark Mitchell  <mark@codesourcery.com>
3446
3447         PR c++/20157
3448         * pt.c (determine_specialization): Reject non-specializations.
3449
3450 2005-03-11  Per Bothner  <per@bothner.com>
3451
3452         * cp-tree.h (struct cp_declarator): New id_loc field.
3453         * cp/parser.c (cp_lexer_get_preprocessor_token): Set cp_token's
3454         location using c_lex_with_flags, instead of input_location.
3455         (cp_parser_direct_declarator): Set declarator's id_loc from
3456         cp_token's id_loc.
3457
3458 2005-03-10  Jakub Jelinek  <jakub@redhat.com>
3459
3460         PR c++/18384, c++/18327
3461         * decl.c (reshape_init_array): Use UHWI type for max_index_cst
3462         and index.  Convert max_index to size_type_node if it isn't
3463         host_integerp (, 1).
3464
3465 2005-03-09  Mark Mitchell  <mark@codesourcery.com>
3466
3467         PR c++/20208
3468         * pt.c (tsubst_decl): Apply array-to-pointer and
3469         function-to-pointer conversions to function arguments.
3470         (regenerate_decl_from_template): Likewise.
3471
3472 2005-03-09  Paolo Carlini  <pcarlini@suse.de>
3473
3474         PR c++/16859
3475         * decl.c (complete_array_type): In pedantic mode, return
3476         3 for an empty initializer list as the initializer for an
3477         array of unknown bound (8.5.1/4).
3478         (maybe_deduce_size_from_array_init): Fix final test to use
3479         the above.
3480
3481 2005-03-08  Nathan Sidwell  <nathan@codesourcery.com>
3482
3483         PR c++/20186
3484         * pt.c (contains_dependent_cast_p): New.
3485         (fold_non_dependent_expr): Call it.
3486
3487 2005-03-08  Mark Mitchell  <mark@codesourcery.com>
3488
3489         PR c++/20142
3490         * cp-tree.h (target_type): Remove.
3491         * decl.c (layout_var_decl): Remove #if 0'd code.
3492         (cp_finish_decl): Remove dead code.
3493         * init.c (build_vec_init): When determining whether or not the
3494         element type has an asignment operator, look through all array
3495         dimensions.
3496         * typeck.c (target_type): Remove.
3497
3498 2005-03-07  Mark Mitchell  <mark@codesourcery.com>
3499
3500         * class.c (finish_struct_1): Do not warn about non-virtual
3501         destructors in Java classes.
3502
3503 2005-03-05  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3504
3505         PR c++/19311
3506         * init.c (build_offset_ref): Don't build non-dependent SCOPE_REF.
3507         * pt.c (build_non_dependent_expr): Don't build NON_DEPENDENT_EXPR
3508         for OFFSET_TYPE.
3509         * typeck.c (build_x_unary_op): Don't build non-dependent SCOPE_REF.
3510         Also set PTRMEM_OK_P for NON_DEPENDENT_EXPR.
3511         (build_unary_op): Handle building ADDR_EXPR of OFFSET_REF inside
3512         template.
3513
3514 2005-03-02  Alexandre Oliva  <aoliva@redhat.com>
3515
3516         * name-lookup.c (push_overloaded_decl): Don't error if the new
3517         decl matches the old one.
3518         * decl.c (redeclaration_error_message): Likewise.
3519
3520 2005-03-01  Per Bothner  <per@bothner.com>
3521
3522         * decl.c (finish_function): Use SET_EXPR_LOCATION instead of
3523         unavailable annotate_with_file_line, if USE_MAPPED_LOCATION.
3524
3525 2005-03-01  Nathan Sidwell  <nathan@codesourcery.com>
3526
3527         PR c++/20232
3528         * class.c (update_vtable_entry_for_fn): Don't crash on invalid
3529         covariancy.
3530
3531         * cp-tree.g (THUNK_TARGET): Expand comment.
3532         * method.c (use_thunk): Make sure we also use the target, if that
3533         is a thunk.
3534
3535 2005-02-27  Jakub Jelinek  <jakub@redhat.com>
3536
3537         PR c++/20206
3538         * decl.c (cxx_comdat_group): Put thunks for
3539         TARGET_USE_LOCAL_THUNK_ALIAS_P (function) functions into the same
3540         comdat group as the thunk target.
3541
3542 2005-02-24  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
3543
3544         * call.c, class.c, cp-tree.h, decl2.c, error.c, init.c, mangle.c,
3545         parser.c: Fix comment typo(s).
3546
3547 2005-02-24  Jakub Jelinek  <jakub@redhat.com>
3548
3549         PR c++/20175
3550         * decl.c (reshape_init): Don't warn about missing braces if STRING_CST
3551         initializes a char/wchar_t array.
3552
3553 2005-02-23  Mark Mitchell  <mark@codesourcery.com>
3554
3555         PR c++/19878
3556         * decl.c (grokvardecl): Set DECL_INTERFACE_KNOWN for declarations
3557         with internal linkage.
3558
3559 2005-02-23  Alexandre Oliva  <aoliva@redhat.com>
3560
3561         * decl.c (grokvardecl): Don't exempt anonymous types from having
3562         linkage for variables that have linkage other than "C".
3563
3564 2005-02-23  Kazu Hirata  <kazu@cs.umass.edu>
3565
3566         * cp-objcp-common.h, error.c: Update copyright.
3567
3568 2005-02-22  Mark Mitchell  <mark@codesourcery.com>
3569
3570         PR c++/20073
3571         * decl.c (start_decl_1): Don't clear TREE_READONLY.
3572         (cp_finish_decl): Likewise.
3573         (complete_vars): Call cp_apply_type_quals_to_decl.
3574         * typeck.c (cp_apply_type_quals): Avoid setting TREE_READONLY in
3575         cases where that's not valid.
3576
3577         PR c++/19991
3578         * init.c (integral_constant_value): Iterate if the value of a decl
3579         is itself a constant.
3580
3581         PR c++/20152
3582         * parser.c (cp_parser_class_head): Check for redefintions here.
3583         * semantics.c (begin_class_definition): Not here.
3584
3585         PR c++/20153
3586         * decl2.c (build_anon_union_vars): Add type parameter.
3587         (finish_anon_union): Pass it.
3588
3589         PR c++/20148
3590         * error.c (dump_expr): Do not print the body of a BIND_EXPR.
3591         Handle STATEMENT_LIST.
3592
3593         PR c++/19883
3594         * parser.c (cp_parser_direct_declarator): Always complain about
3595         non-constant array bounds when in a function scope.
3596         * semantics.c (finish_id_expression): Do not mark dependent names
3597         as non-constant.
3598
3599 2005-02-21  Douglas Gregor  <dgregor@cs.indiana.edu>
3600
3601         PR c++/19076
3602         PR c++/6628
3603         * cp-tree.h (cp_apply_type_quals_to_decl): Declared.
3604         * decl.c (grokdeclarator): Pedwarn about qualifying a function
3605         type.
3606         Add qualifiers when declaring a typedef of a function type.
3607         Member function pointers pick up the qualifiers of the typedef
3608         used to declare them.
3609         Don't complain about creating cv-qualified function types.
3610         Complain about qualified function typedefs that are used to
3611         declare non-static member functions or free functions.
3612         Use cp_apply_type_quals_to_decl.
3613         (start_preparsed_function): Use cp_apply_type_quals_to_decl.
3614         (grokclassfn): Use cp_apply_type_quals_to_decl.
3615         * error.c (dump_type_suffix): Print qualifiers for function
3616         types.
3617         * pt.c (tsubst_decl): Use cp_apply_type_quals_to_decl.
3618         (tsubst): When substituting a function type into a member
3619         pointer type, pass along the qualifiers.
3620         (unify): Unify member pointers to member function pointers.
3621         * tree.c (cp_build_qualified_type_real): Function types may be
3622         qualified. This includes restrict qualifiers.
3623         * typeck.c (cp_apply_type_quals_to_decl): New function to replace
3624         use of c_apply_type_quals_to_decl. Drops qualifiers that are being
3625         added to function types.
3626
3627 2005-02-20  Zack Weinberg  <zack@codesourcery.com>
3628
3629         PR 18785
3630         * cp-objcp-common.h (LANG_HOOKS_TO_TARGET_CHARSET): Set to
3631         c_common_to_target_charset.  Delete bogus comment.
3632
3633 2005-02-18  Richard Henderson  <rth@redhat.com>
3634
3635         PR libstdc++/10606
3636         * except.c (do_get_exception_ptr): New.
3637         (expand_start_catch_block): Use it.
3638
3639 2005-02-19  Jakub Jelinek  <jakub@redhat.com>
3640
3641         * decl.c (start_decl_1): Only check TYPE_NEEDS_CONSTRUCTING
3642         if type is not error_mark_node.
3643
3644 2005-01-20  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
3645
3646         PR c++/19508
3647         * decl2.c (grokfield): Do not apply attributes to template parameters
3648         as they are ignored by tsubst anyway.
3649
3650 2005-02-18  Jakub Jelinek  <jakub@redhat.com>
3651
3652         PR c++/19813
3653         * decl.c (start_decl_1): Clear TREE_READONLY flag if
3654         its type has TYPE_NEEDS_CONSTRUCTING.
3655         (complete_vars): Likewise.
3656
3657 2005-02-17  Alexandre Oliva  <aoliva@redhat.com>
3658
3659         PR c++/20028
3660         * class.c (finish_struct): Initialize TYPE_SIZE_UNIT of a
3661         template along with TYPE_SIZE.
3662
3663         PR c++/20022
3664         * semantics.c (perform_deferred_access_checks): Use
3665         get_deferred_access_checks to get the top of the stack.
3666
3667 2005-02-15  Alexandre Oliva  <aoliva@redhat.com>
3668
3669         PR c++/17788
3670         * class.c (add_implicitly_declared_members, check_field_decl)
3671         (check_field_decls, check_bases): Remove arguments, tests and
3672         assignments of cant_have_default_ctor-related variables.
3673
3674 2005-02-15  Alexandre Oliva  <aoliva@redhat.com>
3675
3676         * decl2.c (mark_used): Set the source location of the used decl to
3677         the current input location here...
3678         * method.c (synthesize_method): ... not here.  Set input_location
3679         from the decl instead.
3680
3681 2005-02-14  Nathan Sidwell  <nathan@codesourcery.com>
3682
3683         PR c++/19608
3684         * parser.c (cp_parser_late_parsing_for_member): Use
3685         current_function_decl as scope to push to and from.
3686
3687         PR c++/19884
3688         * pt.c (check_explicit_specialization): Make sure namespace
3689         binding lookup found an overloaded function.
3690         (lookup_template_function): Just assert FNS is an overloaded
3691         function.
3692
3693         PR c++/19895
3694         * decl.c (grokdeclarator): Check for error mark node in ptrmem
3695         construction.
3696
3697 2005-02-14  Alexandre Oliva  <aoliva@redhat.com>
3698
3699         PR c++/17816
3700         * decl.c (redeclaration_error_message): Report redefinition of
3701         pure virtual function.
3702
3703 2005-02-14  Nathan Sidwell  <nathan@codesourcery.com>
3704
3705         PR c++/19891
3706         * class.c (build_simple_base_path): Build the component_ref
3707         directly.
3708         (update_vtable_entry_for_fn): Walk the covariant's binfo chain
3709         rather than using lookup_base.
3710         * search.c (dfs_walk_once): Add non-recursive assert check.
3711         * typeck.c (build_class_member_access_expr): It is possible for
3712         the member type to be both const and volatile.
3713
3714 2005-02-12  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3715
3716         PR c++/14479
3717         PR c++/19487
3718         * pt.c (maybe_check_template_type): Remove.
3719         * cp-tree.h (maybe_check_template_type): Remove prototype.
3720         * name-lookup.c (maybe_process_template_type_declaration): Don't
3721         use maybe_check_template_type.
3722
3723 2005-02-11  Richard Henderson  <rth@redhat.com>
3724
3725         PR c++/19632
3726         * pt.c (get_mostly_instantiated_function_type): Save and restore
3727         flag_access_control instead of push/pop_access_scope.
3728
3729 2005-02-10  Mark Mitchell  <mark@codesourcery.com>
3730
3731         PR c++/19755
3732         * decl.c (reshape_init): Issue warnings about missing braces.
3733
3734 2005-02-11  Kazu Hirata  <kazu@cs.umass.edu>
3735
3736         * cp-tree.def, except.c, ptree.c: Update copyright.
3737
3738 2005-02-09  Mark Mitchell  <mark@codesourcery.com>
3739
3740         PR c++/19811
3741         * call.c (build_op_delete_call): Check COMPLETE_TYPE_P before
3742         attempting name lookup.
3743
3744         * parser.c (cp_parser_unqualified_id): Initialize type_decl.
3745
3746         PR c++/19787
3747         * call.c (initialize_reference): Robustify.
3748
3749         PR ++/19732
3750         * decl.c (grokdeclarator): Check for invalid use of destructor
3751         names.
3752
3753         PR c++/19762
3754         * parser.c (cp_parser_unqualified_id): Avoid creating destructor
3755         names with invalid types.
3756
3757         PR c++/19826
3758         * parser.c (cp_parser_direct_declarator): Allow type-dependent
3759         expressions as array bounds.
3760
3761         PR c++/19739
3762         * parser.c (cp_parser_attributes_list): Allow empty lists.
3763
3764 2005-02-08  Mark Mitchell  <mark@codesourcery.com>
3765
3766         PR c++/19733
3767         * class.c (add_method): Don't set TYPE_HAS_DESTRUCTOR.
3768         (check_bases): Give warnings about a base class with a
3769         non-virtual destructor, even if it is implicit.
3770         (finish_struct_bits): Don't copy TYPE_HAS_DESTRUCTOR.
3771         (maybe_warn_about_overly_private_class): Don't use
3772         TYPE_HAS_DESTRUCTOR.
3773         (finish_struct_methods): Don't set TYPE_HAS_DESTRUCTOR.
3774         (check_for_override): Give it external linkage.
3775         (add_implicitly_declared_members): Generate destructors lazily.
3776         (check_field_decls): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR, not
3777         TYPE_HAS_DESTRUCTOR.
3778         (check_bases_and_members): Call check_methods before
3779         check_field_decls.
3780         (check_bases_and_members): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR, not
3781         TYPE_HAS_DESTRUCTOR.
3782         (finish_struct_1): Do not use TYPE_HAS_DESTRUCTOR.
3783         * cp-tree.def (PSEUDO_DTOR_EXPR): Document.
3784         * cp-tree.h (TYPE_HAS_DESTRUCTOR): Remove.
3785         (lang_type_class): Add lazy_destructor.
3786         (CLASSTYPE_LAZY_DESTRUCTOR): New macro.
3787         (CLASSTYPE_DESTRUCTORS): Robustify.
3788         (TYPE_HAS_DESTRUCTOR): Remove.
3789         (check_for_override): Declare.
3790         (build_vbase_delete): Remove.
3791         * cvt.c (convert_to_void): Issue errors about pseudo-destructor
3792         expressions.
3793         * decl.c (cxx_maybe_build_cleanup): Remove dead code.
3794         * except.c (dtor_nothrow): Lazily create destructors if necessary.
3795         (build_throw): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
3796         * init.c (build_delete): Lazily create destructors, if necessary.
3797         (build_vbase_delete): Remove.
3798         * method.c (locate_dtor): Simplify.
3799         (implicitly_declare_fn): Add support for destructors.
3800         * parser.c (cp_parser_lookup_name): Lazily create destructors, if
3801         necessary.
3802         * pt.c (check_explicit_specialization): Don't use
3803         TYPE_HAS_DESTRUCTOR.
3804         (instantiate_class_template): Likewise.
3805         * ptree.c (cxx_print_type): Don't print TYPE_HAS_DESTRUCTOR.
3806         * rtti.c (emit_support_tinfos): Robustify.
3807         * search.c (lookup_fnfields_1): Lazily create destructors.
3808         * typeck.c (build_class_member_access_expr): Remove
3809         PSEUDO_DTOR_EXPR handling.
3810         (lookup_destructor): Likewise.
3811
3812 2005-02-08  Kazu Hirata  <kazu@cs.umass.edu>
3813
3814         * cxx-pretty-print.c, cxx-pretty-print.h, decl.h: Update
3815         copyright.
3816
3817 2005-02-07  Mark Mitchell  <mark@codesourcery.com>
3818
3819         * parser.c (cp_lexer_start_debugging): Avoid arithmetic operations
3820         on boolean variables.
3821         (cp_lexer_stop_debugging): Likewise.
3822
3823 2005-02-03  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
3824
3825         PR c++/17401
3826         * parser.c (cp_parser_pure_specifier): Emit a specific error
3827         message with an invalid pure specifier.
3828         * decl2.c (grok_function_init): Remove.
3829         (grokfield): An initializer for a method is a always a pure
3830         specifier.
3831
3832 2005-02-02  Matt Austern  <austern@apple.com>
3833
3834         PR c++/19628
3835         * cp-tree.h (builtin_valid_in_constant_expr_p): Declare.
3836         * parser.c (cp_parser_postfix_expression): Accept function call in
3837         constant expression if builtin_valid_in_constant_expr_p is true
3838         for that function.
3839         * pt.c (value_dependent_expression_p): Handle CALL_EXPRs properly.
3840         * semantics.c (finish_id_expression): Accept function call in constant
3841         expression if builtin_valid_in_constant_expr_p is true for that
3842         function.
3843         * tree.c (builtin_valid_in_constant_expr_p): New.
3844
3845 2005-02-02  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
3846
3847         PR c++/17413
3848         * pt.c (check_instantiated_args): Improve error message.
3849         Fix logic when to print its second part.
3850
3851 2005-02-02  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
3852
3853         * cp-tree.h (complete_type_or_else): Remove macro.
3854         (complete_type_or_diagnostic): Rename to complete_type_or_else
3855         and remove last argument.
3856         * typeck.c (complete_type_or_diagnostic): Rename to
3857         complete_type_or_else and remove last argument.
3858
3859 2005-02-02  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
3860
3861         * cp-tree.h (commonparms): Remove prototype.
3862         (convert_arguments): Likewise.
3863         (PFN_FROM_PTRMEMFUNC): Remove.
3864         * typeck.c (commonparms): Make static.
3865         (convert_arguments): Add prototype. Make static.
3866         (PFN_FROM_PTRMEMFUNC): Replace by pfn_from_ptrmemfunc.
3867
3868 2005-01-31  Mark Mitchell  <mark@codesourcery.com>
3869
3870         * parser.c (cp_parser_primary_expression): Don't complain about
3871         floating-point literals in integral constant expressions when
3872         !pedantic.
3873
3874 2005-02-01  Alexandre Oliva  <aoliva@redhat.com>
3875
3876         * parser.c (cp_parser_template_id): Revert comment patch too.
3877
3878         PR c++/18757
3879         PR c++/19366
3880         PR c++/19499
3881         * parser.c (cp_parser_template_id): Revert 2004-12-09's patch.
3882         Issue an error when creating the template id.
3883         * pt.c (fn_type_unification): Return early if the explicit
3884         template arg list is an error_mark_node.
3885
3886 2005-01-31  Mark Mitchell  <mark@codesourcery.com>
3887
3888         * decl.c (build_enumerator): Do not issue duplicate error messages
3889         about invalid enumeration constants.
3890         * parser.c (cp_parser_non_integral_constant_expression): Always
3891         set parser->non_integral_constant_expression_p.
3892         (cp_parser_primary_expression): Add cast_p parameter.  Issue
3893         errors about invalid uses of floating-point literals in
3894         cast-expressions.
3895         (cp_parser_postfix_expression): Add cast_p parameter.
3896         (cp_parser_open_square_expression): Pass it.
3897         (cp_parser_parenthesized_expression_list): Add cast_p parameter.
3898         (cp_parser_unary_expression): Likewise.
3899         (cp_parser_new_placement): Pass it.
3900         (cp_parser_direct_new_declarator): Likewise.
3901         (cp_parser_new_initializer): Likewise.
3902         (cp_parser_cast_expression): Add cast_p parameter.
3903         (cp_parser_binary_expression): Likewise.
3904         (cp_parser_question_colon_clause): Likewise.
3905         (cp_parser_assignment_expression): Likewise.
3906         (cp_parser_expression): Likewise.
3907         (cp_parser_constant_expression): If an integral constant
3908         expression is invalid, return error_mark_node.
3909         (cp_parser_expression_statement): Pass cast_p.
3910         (cp_parser_condition): Likewise.
3911         (cp_parser_iteration_statement): Likewise.
3912         (cp_parser_jump_statement): Likewise.
3913         (cp_parser_mem_initializer): Likewise.
3914         (cp_parser_template_argument): Likewise.
3915         (cp_parser_parameter_declaration): Likewise.
3916         (cp_parser_initializer): Likewise.
3917         (cp_parser_throw_expression): Likewise.
3918         (cp_parser_attribute_list): Likewise.
3919         (cp_parser_simple_cast_expression): Likewise.
3920         (cp_parser_functional_cast): Likewise.
3921         (cp_parser_late_parsing_default_args): Likewise.
3922         (cp_parser_sizeof_operand): Save/restore
3923         non_integral_constant_expression_p.
3924
3925 2005-01-31  Mike Stump  <mrs@apple.com>
3926
3927         * parser.c (cp_lexer_new_main): Get the first token, first, before
3928         doing anything.
3929
3930 2005-01-31  Mark Mitchell  <mark@codesourcery.com>
3931
3932         * decl.c (start_decl): Add missing parentheses.
3933
3934 2005-01-30  Mark Mitchell  <mark@codesourcery.com>
3935
3936         PR c++/19555
3937         * cp-tree.h (DECL_USE_TEMPLATE): Expand documentation.
3938         * decl.c (duplicate_decls): Do not discard
3939         DECL_IMPLICIT_INSTANTIATION when merging declarations.
3940         (start_decl): Do not SET_DECL_TEMPLATE_SPECIALIZATION for
3941         variables that do not have DECL_USE_TEMPLATE.
3942
3943         PR c++/19395
3944         * decl.c (grokdeclarator): Refactor code so that qualified names
3945         are never allowed as the declarator in a typedef.
3946
3947         PR c++/19367
3948         * name-lookup.c (do_nonmember_using_decl): Avoid overloading
3949         builtin declarations.
3950
3951         PR c++/19457
3952         * call.c (convert_like_real): Inline call to
3953         dubious_conversion_warnings here.
3954         * cp-tree.h (dubious_conversion_warnings): Remove.
3955         * semantics.c (finish_unary_op_expr): Copy INTEGER_CSTs before
3956         setting TREE_NEGATED_INT.
3957         * typeck.c (dubious_conversion_warnings): Remove.
3958
3959         PR c++/19349
3960         * name-lookup.c (pushdecl_namespace_level): Avoid accessing free'd
3961         memory.
3962
3963 2005-01-28  Mark Mitchell  <mark@codesourcery.com>
3964
3965         PR c++/19253
3966         * parser.c (cp_parser_diagnose_invalid_type_name): Commit to
3967         tentative parses.
3968
3969         PR c++/19667
3970         * pt.c (redeclare_class_template): Robustify.
3971
3972 2005-01-27  Steven Bosscher  <stevenb@suse.de>
3973
3974         * decl.c (finish_case_label): Use SWITCH_STMT accessor macros
3975         instead of SWITCH_EXPR ones.
3976         * pt.c (tsubst_expr): Likewise.
3977         * semantics.c (begin_switch_stmt, finish_switch_cond,
3978         finish_switch_stmt): Likewise.
3979
3980 2005-01-26  J"orn Rennecke <joern.rennecke@st.com>
3981
3982         PR c++/18370
3983         * parser.c (cp_parser_initializer_clause): Initialize *non_constant_p.
3984
3985 2005-01-25  Andrew Pinski  <pinskia@physics.uc.edu>
3986
3987         * class.c (abort_fndecl_addr): New variable.
3988         (build_vtbl_initializer): If we have a pure virtual function
3989         share the abort function's address.
3990         Include gt-cp-class.h at the end.
3991         * config-lang.in (gtfiles): Add cp/class.c.
3992
3993 2005-01-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
3994
3995         * cxx-pretty-print.c (pp_cxx_statement): Add prototype. Make static.
3996         (pp_cxx_function_definition): Make static.
3997         * cxx-pretty-print.h (pp_cxx_statement): Remove prototype.
3998         (pp_cxx_function_definition): Likewise.
3999
4000 2005-01-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
4001
4002         * name-lookup.c (print_binding_level): Make static.
4003         (constructor_name_full): Make static inline.
4004         (current_decl_namespace): Make static.
4005         * name-lookup.h (constructor_name_full): Remove prototype.
4006         (print_binding_level): Likewise.
4007         (current_decl_namespace): Likewise.
4008
4009 2005-01-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
4010
4011         * decl.h (debug_bindings_indentation): Remove.
4012
4013 2005-01-23  Kazu Hirata  <kazu@cs.umass.edu>
4014
4015         * typeck.c: Fix a comment typo.
4016
4017 2005-01-21  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
4018
4019         PR c++/19208
4020         * pt.c (fold_decl_constant_value): Always call fold_non_dependent_expr
4021         at least once.
4022         (tsubst): Use fold_decl_constant_value in place of a bare call to
4023         integral_constant_value.
4024
4025 2005-01-20  Kazu Hirata  <kazu@cs.umass.edu>
4026
4027         * typeck.c (more_qualified_p): Remove.
4028         * cp-tree.h: Remove the corresponding prototype.
4029
4030 2005-01-19  Matt Austern  <austern@apple.com>
4031
4032         * typeck.c (comptypes): Handle return code from objc_comptypes
4033         correctly.
4034
4035 2005-01-19  Kazu Hirata  <kazu@cs.umass.edu>
4036
4037         * cp-tree.h, name-lookup.h: Remove unused prototypes.
4038
4039 2005-01-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4040
4041         PR c++/19375
4042         * semantics.c (finish_id_expression): Disable access checking for
4043         already lookuped FIELD_DECL.
4044
4045 2005-01-18  Kazu Hirata  <kazu@cs.umass.edu>
4046
4047         * decl.c (delete_block): Remove.
4048         * cp-tree.h: Remove the corresponding prototype.
4049
4050         * decl.c (vtable_decl_p, vtype_decl_p, walk_globals_data,
4051         walk_vtables_r, walk_vtables, walk_globals_r, walk_globals):
4052         Remove.
4053         * cp-tree.h: Remove the corresponding prototypes.
4054
4055         * tree.c (count_functions, bound_pmf_p, cp_is_overload_p,
4056         cp_update_decl_after_saving, name_p): Remove.
4057         * cp-tree.h: Remove the corresponding prototypes.
4058
4059 2005-01-18  Andrew Pinski  <pinskia@physics.uc.edu>
4060
4061         PR c/19472
4062         * semantics.c (finish_asm_stmt): Strip nops off
4063         input memory operands.
4064
4065 2005-01-18  Kazu Hirata  <kazu@cs.umass.edu>
4066
4067         * Make-lang.in, call.c, cvt.c, init.c, rtti.c, tree.c,
4068         typeck2.c: Update copyright.
4069
4070 2005-01-16  Kazu Hirata  <kazu@cs.umass.edu>
4071
4072         * class.c (get_enclosing_class): Remove.
4073         * cp-tree.h: Remove the corresponding prototypes.
4074
4075         * cvt.c (convert_lvalue): Remove.
4076         * cp-tree.h: Remove the corresponding prototype.
4077
4078         * pt.c (tinst_for_decl): Remove.
4079         * cp-tree.h: Remove the corresponding prototypes.
4080
4081         * tree.c (hash_chainon): Remove.
4082         * cp-tree.h: Remove the corresponding prototypes.
4083
4084 2005-01-15  Jakub Jelinek  <jakub@redhat.com>
4085
4086         PR c++/19263
4087         * typeck2.c (split_nonconstant_init_1) <case VECTOR_TYPE>: Put a copy
4088         of CONSTRUCTOR's node into MODIFY_EXPR, as the original is modified.
4089
4090 2005-01-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4091
4092         * Make-lang.in (cp-warn): Don't append $(WERROR).
4093
4094 2005-01-10  Kazu Hirata  <kazu@cs.umass.edu>
4095
4096         * cp-tree.h: Fix a comment typo.
4097
4098 2005-01-07  Nathan Sidwell  <nathan@codesourcery.com>
4099
4100         PR c++/19298
4101         * pt.c (tsubst_qualified_id): Call convert_from_reference.
4102
4103 2005-01-06  Mark Mitchell  <mark@codesourcery.com>
4104
4105         PR c++/19244
4106         * class.c (add_implicitly_declared_members): Remove dead code.
4107         * decl.c (grokfndecl): Add sfk parameter.  Use it do set
4108         DECL_CONSTRUCTOR_P.
4109         (grokdeclarator): Adjust calls to grokfndecl.
4110         * method.c (implicitly_declare_fn): Improve documentation.
4111         * parser.c (cp_parser_direct_declarator): Do not consider a
4112         function to be a constructor if the containing class was
4113         originally anonymous.
4114
4115 2005-01-06  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4116
4117         PR c++/17154
4118         * search.c (lookup_field_1): Handle using declaration in
4119         class template partial specialization.
4120
4121 2005-01-06  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4122
4123         PR c++/19258
4124         * pt.c (push_access_scope): Handle friend defined in class.
4125         (pop_access_scope): Likewise.
4126
4127 2005-01-06  Nathan Sidwell  <nathan@codesourcery.com>
4128
4129         PR c++/19270
4130         * pt.c (tsubst_copy) <ARRAY_REF case>: Handle separately.
4131         (tsubst_copy_and_build) <ARRAY_REF case>: Remove obsolete
4132         array-new handling code.  Use build_x_binary_op.
4133
4134 2005-01-05  Nathan Sidwell  <nathan@codesourcery.com>
4135
4136         PR c++/19030
4137         * cp-tree.h (start_decl): Take pointer to pushed scope, not bool.
4138         * name-lookup.h (push_scope): Return pushed scope, not flag.
4139         * name-lookup.c (push_scope): Return scope that should be popped,
4140         not a flag.
4141         * decl.c (start_decl): Adjust.
4142         (grokfndecl): Adjust scope push and pop.
4143         * decl2.c (check_classfn): Likewise.
4144         * parser.c (cp_parser_condition, cp_parser_conversion_function_id,
4145         cp_parser_init_declarator, cp_parser_direct_declarator,
4146         cp_parser_class_specifier, cp_parser_class_head,
4147         cp_parser_lookup_name,
4148         cp_parser_constructor_declarator_p): Likewise.
4149         * pt.c (instantiate_class_template,
4150         resolve_typename_type): Likewise.
4151
4152 2005-01-03  Volker Reichelt  <reichelt@igpm.rwth-aaachen.de>
4153
4154         PR c++/14136
4155         * parser.c (cp_parser_unqualified_id): Do not issue error message
4156         for typedef-name as destructor declarator when performing an
4157         uncommitted tentative parse.
4158
4159 2005-01-01  Steven Bosscher  <stevenb@suse.de>
4160
4161         PR middle-end/17544
4162         * decl.c (finish_function): Fix comment.  Annotate the compiler
4163         generated return with the current file name and line 0.