OSDN Git Service

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