OSDN Git Service

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