OSDN Git Service

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