OSDN Git Service

91cbb9039dd87fa65c670ed46f0773303a647d84
[pf3gnuchains/gcc-fork.git] / gcc / cp / ChangeLog
1 2005-02-15  Alexandre Oliva  <aoliva@redhat.com>
2
3         PR c++/17788
4         * class.c (add_implicitly_declared_members, check_field_decl)
5         (check_field_decls, check_bases): Remove arguments, tests and
6         assignments of cant_have_default_ctor-related variables.
7
8 2005-02-15  Alexandre Oliva  <aoliva@redhat.com>
9
10         * decl2.c (mark_used): Set the source location of the used decl to
11         the current input location here...
12         * method.c (synthesize_method): ... not here.  Set input_location
13         from the decl instead.
14
15 2005-02-14  Nathan Sidwell  <nathan@codesourcery.com>
16
17         PR c++/19608
18         * parser.c (cp_parser_late_parsing_for_member): Use
19         current_function_decl as scope to push to and from.
20
21         PR c++/19884
22         * pt.c (check_explicit_specialization): Make sure namespace
23         binding lookup found an overloaded function.
24         (lookup_template_function): Just assert FNS is an overloaded
25         function.
26
27         PR c++/19895
28         * decl.c (grokdeclarator): Check for error mark node in ptrmem
29         construction.
30
31 2005-02-14  Alexandre Oliva  <aoliva@redhat.com>
32
33         PR c++/17816
34         * decl.c (redeclaration_error_message): Report redefinition of
35         pure virtual function.
36
37 2005-02-14  Nathan Sidwell  <nathan@codesourcery.com>
38
39         PR c++/19891
40         * class.c (build_simple_base_path): Build the component_ref
41         directly.
42         (update_vtable_entry_for_fn): Walk the covariant's binfo chain
43         rather than using lookup_base.
44         * search.c (dfs_walk_once): Add non-recursive assert check.
45         * typeck.c (build_class_member_access_expr): It is possible for
46         the member type to be both const and volatile.
47
48 2005-02-12  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
49
50         PR c++/14479
51         PR c++/19487
52         * pt.c (maybe_check_template_type): Remove.
53         * cp-tree.h (maybe_check_template_type): Remove prototype.
54         * name-lookup.c (maybe_process_template_type_declaration): Don't
55         use maybe_check_template_type.
56
57 2005-02-11  Richard Henderson  <rth@redhat.com>
58
59         PR c++/19632
60         * pt.c (get_mostly_instantiated_function_type): Save and restore
61         flag_access_control instead of push/pop_access_scope.
62
63 2005-02-10  Mark Mitchell  <mark@codesourcery.com>
64
65         PR c++/19755
66         * decl.c (reshape_init): Issue warnings about missing braces.
67
68 2005-02-11  Kazu Hirata  <kazu@cs.umass.edu>
69
70         * cp-tree.def, except.c, ptree.c: Update copyright.
71
72 2005-02-09  Mark Mitchell  <mark@codesourcery.com>
73
74         PR c++/19811
75         * call.c (build_op_delete_call): Check COMPLETE_TYPE_P before
76         attempting name lookup.
77
78         * parser.c (cp_parser_unqualified_id): Initialize type_decl.
79
80         PR c++/19787
81         * call.c (initialize_reference): Robustify.
82
83         PR ++/19732
84         * decl.c (grokdeclarator): Check for invalid use of destructor
85         names.
86
87         PR c++/19762
88         * parser.c (cp_parser_unqualified_id): Avoid creating destructor
89         names with invalid types.
90
91         PR c++/19826
92         * parser.c (cp_parser_direct_declarator): Allow type-dependent
93         expressions as array bounds.
94
95         PR c++/19739
96         * parser.c (cp_parser_attributes_list): Allow empty lists.
97
98 2005-02-08  Mark Mitchell  <mark@codesourcery.com>
99
100         PR c++/19733
101         * class.c (add_method): Don't set TYPE_HAS_DESTRUCTOR.
102         (check_bases): Give warnings about a base class with a
103         non-virtual destructor, even if it is implicit.
104         (finish_struct_bits): Don't copy TYPE_HAS_DESTRUCTOR.
105         (maybe_warn_about_overly_private_class): Don't use
106         TYPE_HAS_DESTRUCTOR.
107         (finish_struct_methods): Don't set TYPE_HAS_DESTRUCTOR.
108         (check_for_override): Give it external linkage.
109         (add_implicitly_declared_members): Generate destructors lazily.
110         (check_field_decls): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR, not
111         TYPE_HAS_DESTRUCTOR.
112         (check_bases_and_members): Call check_methods before
113         check_field_decls.
114         (check_bases_and_members): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR, not
115         TYPE_HAS_DESTRUCTOR.
116         (finish_struct_1): Do not use TYPE_HAS_DESTRUCTOR.
117         * cp-tree.def (PSEUDO_DTOR_EXPR): Document.
118         * cp-tree.h (TYPE_HAS_DESTRUCTOR): Remove.
119         (lang_type_class): Add lazy_destructor.
120         (CLASSTYPE_LAZY_DESTRUCTOR): New macro.
121         (CLASSTYPE_DESTRUCTORS): Robustify.
122         (TYPE_HAS_DESTRUCTOR): Remove.
123         (check_for_override): Declare.
124         (build_vbase_delete): Remove.
125         * cvt.c (convert_to_void): Issue errors about pseudo-destructor
126         expressions.
127         * decl.c (cxx_maybe_build_cleanup): Remove dead code.
128         * except.c (dtor_nothrow): Lazily create destructors if necessary.
129         (build_throw): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
130         * init.c (build_delete): Lazily create destructors, if necessary.
131         (build_vbase_delete): Remove.
132         * method.c (locate_dtor): Simplify.
133         (implicitly_declare_fn): Add support for destructors.
134         * parser.c (cp_parser_lookup_name): Lazily create destructors, if
135         necessary.
136         * pt.c (check_explicit_specialization): Don't use
137         TYPE_HAS_DESTRUCTOR.
138         (instantiate_class_template): Likewise.
139         * ptree.c (cxx_print_type): Don't print TYPE_HAS_DESTRUCTOR.
140         * rtti.c (emit_support_tinfos): Robustify.
141         * search.c (lookup_fnfields_1): Lazily create destructors.
142         * typeck.c (build_class_member_access_expr): Remove
143         PSEUDO_DTOR_EXPR handling.
144         (lookup_destructor): Likewise.
145
146 2005-02-08  Kazu Hirata  <kazu@cs.umass.edu>
147
148         * cxx-pretty-print.c, cxx-pretty-print.h, decl.h: Update
149         copyright.
150
151 2005-02-07  Mark Mitchell  <mark@codesourcery.com>
152
153         * parser.c (cp_lexer_start_debugging): Avoid arithmetic operations
154         on boolean variables.
155         (cp_lexer_stop_debugging): Likewise.
156
157 2005-02-03  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
158
159         PR c++/17401
160         * parser.c (cp_parser_pure_specifier): Emit a specific error
161         message with an invalid pure specifier.
162         * decl2.c (grok_function_init): Remove.
163         (grokfield): An initializer for a method is a always a pure
164         specifier.
165
166 2005-02-02  Matt Austern  <austern@apple.com>
167
168         PR c++/19628
169         * cp-tree.h (builtin_valid_in_constant_expr_p): Declare.
170         * parser.c (cp_parser_postfix_expression): Accept function call in
171         constant expression if builtin_valid_in_constant_expr_p is true
172         for that function. 
173         * pt.c (value_dependent_expression_p): Handle CALL_EXPRs properly.
174         * semantics.c (finish_id_expression): Accept function call in constant
175         expression if builtin_valid_in_constant_expr_p is true for that
176         function. 
177         * tree.c (builtin_valid_in_constant_expr_p): New.
178         
179 2005-02-02  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
180
181         PR c++/17413
182         * pt.c (check_instantiated_args): Improve error message.
183         Fix logic when to print its second part.
184
185 2005-02-02  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
186
187         * cp-tree.h (complete_type_or_else): Remove macro.
188         (complete_type_or_diagnostic): Rename to complete_type_or_else
189         and remove last argument.
190         * typeck.c (complete_type_or_diagnostic): Rename to
191         complete_type_or_else and remove last argument.
192
193 2005-02-02  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
194
195         * cp-tree.h (commonparms): Remove prototype.
196         (convert_arguments): Likewise.
197         (PFN_FROM_PTRMEMFUNC): Remove.
198         * typeck.c (commonparms): Make static.
199         (convert_arguments): Add prototype. Make static.
200         (PFN_FROM_PTRMEMFUNC): Replace by pfn_from_ptrmemfunc.
201
202 2005-01-31  Mark Mitchell  <mark@codesourcery.com>
203
204         * parser.c (cp_parser_primary_expression): Don't complain about
205         floating-point literals in integral constant expressions when
206         !pedantic.
207
208 2005-02-01  Alexandre Oliva  <aoliva@redhat.com>
209
210         * parser.c (cp_parser_template_id): Revert comment patch too.
211         
212         PR c++/18757
213         PR c++/19366
214         PR c++/19499
215         * parser.c (cp_parser_template_id): Revert 2004-12-09's patch.
216         Issue an error when creating the template id.
217         * pt.c (fn_type_unification): Return early if the explicit
218         template arg list is an error_mark_node.
219
220 2005-01-31  Mark Mitchell  <mark@codesourcery.com>
221
222         * decl.c (build_enumerator): Do not issue duplicate error messages
223         about invalid enumeration constants.
224         * parser.c (cp_parser_non_integral_constant_expression): Always
225         set parser->non_integral_constant_expression_p.
226         (cp_parser_primary_expression): Add cast_p parameter.  Issue
227         errors about invalid uses of floating-point literals in
228         cast-expressions.
229         (cp_parser_postfix_expression): Add cast_p parameter.
230         (cp_parser_open_square_expression): Pass it.
231         (cp_parser_parenthesized_expression_list): Add cast_p parameter.
232         (cp_parser_unary_expression): Likewise.
233         (cp_parser_new_placement): Pass it.
234         (cp_parser_direct_new_declarator): Likewise.
235         (cp_parser_new_initializer): Likewise.
236         (cp_parser_cast_expression): Add cast_p parameter.
237         (cp_parser_binary_expression): Likewise.
238         (cp_parser_question_colon_clause): Likewise.
239         (cp_parser_assignment_expression): Likewise.
240         (cp_parser_expression): Likewise.
241         (cp_parser_constant_expression): If an integral constant
242         expression is invalid, return error_mark_node.
243         (cp_parser_expression_statement): Pass cast_p.
244         (cp_parser_condition): Likewise.
245         (cp_parser_iteration_statement): Likewise.
246         (cp_parser_jump_statement): Likewise.
247         (cp_parser_mem_initializer): Likewise.
248         (cp_parser_template_argument): Likewise.
249         (cp_parser_parameter_declaration): Likewise.
250         (cp_parser_initializer): Likewise.
251         (cp_parser_throw_expression): Likewise.
252         (cp_parser_attribute_list): Likewise.
253         (cp_parser_simple_cast_expression): Likewise.
254         (cp_parser_functional_cast): Likewise.
255         (cp_parser_late_parsing_default_args): Likewise.
256         (cp_parser_sizeof_operand): Save/restore
257         non_integral_constant_expression_p.
258
259 2005-01-31  Mike Stump  <mrs@apple.com>
260
261         * parser.c (cp_lexer_new_main): Get the first token, first, before
262         doing anything.
263
264 2005-01-31  Mark Mitchell  <mark@codesourcery.com>
265
266         * decl.c (start_decl): Add missing parentheses.
267
268 2005-01-30  Mark Mitchell  <mark@codesourcery.com>
269
270         PR c++/19555
271         * cp-tree.h (DECL_USE_TEMPLATE): Expand documentation.
272         * decl.c (duplicate_decls): Do not discard
273         DECL_IMPLICIT_INSTANTIATION when merging declarations.
274         (start_decl): Do not SET_DECL_TEMPLATE_SPECIALIZATION for
275         variables that do not have DECL_USE_TEMPLATE.
276
277         PR c++/19395
278         * decl.c (grokdeclarator): Refactor code so that qualified names
279         are never allowed as the declarator in a typedef.
280
281         PR c++/19367
282         * name-lookup.c (do_nonmember_using_decl): Avoid overloading
283         builtin declarations.
284
285         PR c++/19457
286         * call.c (convert_like_real): Inline call to
287         dubious_conversion_warnings here.
288         * cp-tree.h (dubious_conversion_warnings): Remove.
289         * semantics.c (finish_unary_op_expr): Copy INTEGER_CSTs before
290         setting TREE_NEGATED_INT.
291         * typeck.c (dubious_conversion_warnings): Remove.
292
293         PR c++/19349
294         * name-lookup.c (pushdecl_namespace_level): Avoid accessing free'd
295         memory. 
296
297 2005-01-28  Mark Mitchell  <mark@codesourcery.com>
298
299         PR c++/19253
300         * parser.c (cp_parser_diagnose_invalid_type_name): Commit to
301         tentative parses.
302
303         PR c++/19667
304         * pt.c (redeclare_class_template): Robustify.
305
306 2005-01-27  Steven Bosscher  <stevenb@suse.de>
307
308         * decl.c (finish_case_label): Use SWITCH_STMT accessor macros
309         instead of SWITCH_EXPR ones.
310         * pt.c (tsubst_expr): Likewise.
311         * semantics.c (begin_switch_stmt, finish_switch_cond,
312         finish_switch_stmt): Likewise.
313
314 2005-01-26  J"orn Rennecke <joern.rennecke@st.com>
315
316         PR c++/18370
317         * parser.c (cp_parser_initializer_clause): Initialize *non_constant_p.
318
319 2005-01-25  Andrew Pinski  <pinskia@physics.uc.edu>
320
321         * class.c (abort_fndecl_addr): New variable.
322         (build_vtbl_initializer): If we have a pure virtual function
323         share the abort function's address.
324         Include gt-cp-class.h at the end.
325         * config-lang.in (gtfiles): Add cp/class.c.
326
327 2005-01-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
328
329         * cxx-pretty-print.c (pp_cxx_statement): Add prototype. Make static.
330         (pp_cxx_function_definition): Make static.
331         * cxx-pretty-print.h (pp_cxx_statement): Remove prototype.
332         (pp_cxx_function_definition): Likewise.
333
334 2005-01-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
335
336         * name-lookup.c (print_binding_level): Make static.
337         (constructor_name_full): Make static inline.
338         (current_decl_namespace): Make static.
339         * name-lookup.h (constructor_name_full): Remove prototype.
340         (print_binding_level): Likewise.
341         (current_decl_namespace): Likewise.
342
343 2005-01-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
344
345         * decl.h (debug_bindings_indentation): Remove.
346
347 2005-01-23  Kazu Hirata  <kazu@cs.umass.edu>
348
349         * typeck.c: Fix a comment typo.
350
351 2005-01-21  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
352
353         PR c++/19208
354         * pt.c (fold_decl_constant_value): Always call fold_non_dependent_expr
355         at least once.
356         (tsubst): Use fold_decl_constant_value in place of a bare call to
357         integral_constant_value.
358
359 2005-01-20  Kazu Hirata  <kazu@cs.umass.edu>
360
361         * typeck.c (more_qualified_p): Remove.
362         * cp-tree.h: Remove the corresponding prototype.
363
364 2005-01-19  Matt Austern  <austern@apple.com>
365
366         * typeck.c (comptypes): Handle return code from objc_comptypes
367         correctly.
368         
369 2005-01-19  Kazu Hirata  <kazu@cs.umass.edu>
370
371         * cp-tree.h, name-lookup.h: Remove unused prototypes.
372
373 2005-01-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
374
375         PR c++/19375
376         * semantics.c (finish_id_expression): Disable access checking for
377         already lookuped FIELD_DECL.
378
379 2005-01-18  Kazu Hirata  <kazu@cs.umass.edu>
380
381         * decl.c (delete_block): Remove.
382         * cp-tree.h: Remove the corresponding prototype.
383
384         * decl.c (vtable_decl_p, vtype_decl_p, walk_globals_data,
385         walk_vtables_r, walk_vtables, walk_globals_r, walk_globals):
386         Remove.
387         * cp-tree.h: Remove the corresponding prototypes.
388
389         * tree.c (count_functions, bound_pmf_p, cp_is_overload_p,
390         cp_update_decl_after_saving, name_p): Remove.
391         * cp-tree.h: Remove the corresponding prototypes.
392
393 2005-01-18  Andrew Pinski  <pinskia@physics.uc.edu>
394
395         PR c/19472
396         * semantics.c (finish_asm_stmt): Strip nops off
397         input memory operands.
398
399 2005-01-18  Kazu Hirata  <kazu@cs.umass.edu>
400
401         * Make-lang.in, call.c, cvt.c, init.c, rtti.c, tree.c,
402         typeck2.c: Update copyright.
403
404 2005-01-16  Kazu Hirata  <kazu@cs.umass.edu>
405
406         * class.c (get_enclosing_class): Remove.
407         * cp-tree.h: Remove the corresponding prototypes.
408
409         * cvt.c (convert_lvalue): Remove.
410         * cp-tree.h: Remove the corresponding prototype.
411
412         * pt.c (tinst_for_decl): Remove.
413         * cp-tree.h: Remove the corresponding prototypes.
414
415         * tree.c (hash_chainon): Remove.
416         * cp-tree.h: Remove the corresponding prototypes.
417
418 2005-01-15  Jakub Jelinek  <jakub@redhat.com>
419
420         PR c++/19263
421         * typeck2.c (split_nonconstant_init_1) <case VECTOR_TYPE>: Put a copy
422         of CONSTRUCTOR's node into MODIFY_EXPR, as the original is modified.
423
424 2005-01-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
425
426         * Make-lang.in (cp-warn): Don't append $(WERROR).
427
428 2005-01-10  Kazu Hirata  <kazu@cs.umass.edu>
429
430         * cp-tree.h: Fix a comment typo.
431
432 2005-01-07  Nathan Sidwell  <nathan@codesourcery.com>
433
434         PR c++/19298
435         * pt.c (tsubst_qualified_id): Call convert_from_reference.
436
437 2005-01-06  Mark Mitchell  <mark@codesourcery.com>
438
439         PR c++/19244
440         * class.c (add_implicitly_declared_members): Remove dead code.
441         * decl.c (grokfndecl): Add sfk parameter.  Use it do set
442         DECL_CONSTRUCTOR_P.
443         (grokdeclarator): Adjust calls to grokfndecl.
444         * method.c (implicitly_declare_fn): Improve documentation.
445         * parser.c (cp_parser_direct_declarator): Do not consider a
446         function to be a constructor if the containing class was
447         originally anonymous.
448
449 2005-01-06  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
450
451         PR c++/17154
452         * search.c (lookup_field_1): Handle using declaration in
453         class template partial specialization.
454
455 2005-01-06  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
456
457         PR c++/19258
458         * pt.c (push_access_scope): Handle friend defined in class.
459         (pop_access_scope): Likewise.
460
461 2005-01-06  Nathan Sidwell  <nathan@codesourcery.com>
462
463         PR c++/19270
464         * pt.c (tsubst_copy) <ARRAY_REF case>: Handle separately.
465         (tsubst_copy_and_build) <ARRAY_REF case>: Remove obsolete
466         array-new handling code.  Use build_x_binary_op.
467
468 2005-01-05  Nathan Sidwell  <nathan@codesourcery.com>
469
470         PR c++/19030
471         * cp-tree.h (start_decl): Take pointer to pushed scope, not bool.
472         * name-lookup.h (push_scope): Return pushed scope, not flag.
473         * name-lookup.c (push_scope): Return scope that should be popped,
474         not a flag.
475         * decl.c (start_decl): Adjust.
476         (grokfndecl): Adjust scope push and pop.
477         * decl2.c (check_classfn): Likewise.
478         * parser.c (cp_parser_condition, cp_parser_conversion_function_id,
479         cp_parser_init_declarator, cp_parser_direct_declarator,
480         cp_parser_class_specifier, cp_parser_class_head,
481         cp_parser_lookup_name,
482         cp_parser_constructor_declarator_p): Likewise.
483         * pt.c (instantiate_class_template,
484         resolve_typename_type): Likewise.
485
486 2005-01-03  Volker Reichelt  <reichelt@igpm.rwth-aaachen.de>
487
488         PR c++/14136
489         * parser.c (cp_parser_unqualified_id): Do not issue error message
490         for typedef-name as destructor declarator when performing an
491         uncommitted tentative parse.
492
493 2005-01-01  Steven Bosscher  <stevenb@suse.de>
494
495         PR middle-end/17544
496         * decl.c (finish_function): Fix comment.  Annotate the compiler
497         generated return with the current file name and line 0.
498
499 2004-12-31  Richard Henderson  <rth@redhat.com>
500
501         PR middle-end/17799
502         * call.c (make_temporary_var_for_ref_to_temp): Set DECL_IGNORED_P.
503         * class.c (build_vtable): Don't conditionallize setting it
504         based on DWARF2_DEBUG.
505         (layout_class_type): Set DECL_IGNORED_P.
506         * decl2.c (get_guard): Likewise.
507         * rtti.c (get_tinfo_decl, build_lang_decl): Likewise.
508         * tree.c (build_local_temp): Likewise.
509
510 2004-12-30  Mark Mitchell  <mark@codesourcery.com>
511
512         * cp-tree.h (cp_declarator): Split "name" field into
513         qualifying_scope and unqualified_name.
514         * decl.c (get_scope_of_declarator): Adjust accordingly.
515         (grokdeclarator): Likewise.
516         * decl2.c (grokfield): Likewise, and adjust call to
517         do_class_using_decl.
518         * name-lookup.c (do_class_using_decl): Split "decl" into
519         "scope" and "name".  Remove unnecessary code.
520         * name-lookup.h (do_class_using_decl): Adjust declaration.
521         * parser.c (make_id_declarator): Split "id" into qualifying_scope
522         and unqualified_name.
523         (cp_parser_using_declaration): Adjust call to do_class_using_decl.
524         (cp_parser_direct_declarator): Adjust to handle the fact that
525         cp_parser_declarator_id no longer returns a SCOPE_REF.
526         (cp_parser_direct_declarator): Likewise.
527         (cp_parser_declarator_id): Do not create a SCOPE_REF for qualified
528         names.
529         (cp_parser_member_declaration): Adjust call to make_id_declarator.
530         (cp_parser_check_declarator_template_parameters): Do not expect a
531         SCOPE_REF. 
532         
533         * decl.c (duplicate_decls): Call ggc_free on declarations we will
534         not be needing any longer.
535
536         PR c++/19190
537         * cvt.c (convert_to_void): Do not use STRIP_NOPs.
538
539 2004-12-28  Richard Henderson  <rth@redhat.com>
540
541         PR inline-asm/15740
542         * semantics.c (finish_asm_stmt): Resolve asm names.  Validate input
543         constraints.  Mark memory inputs addressable.
544
545 2004-12-27  Jason Merrill  <jason@redhat.com>
546
547         * decl.c (expand_static_init): Don't use shortcut if
548         targetm.relaxed_ordering.
549
550 2004-12-27  Mark Mitchell  <mark@codesourcery.com>
551
552         PR c++/19149
553         * decl.c (check_tag_decl): Robustify.
554
555 2004-12-23  Mark Mitchell  <mark@codesourcery.com>
556
557         PR c++/17595
558         * parser.c (cp_parser_error): Issue better messages about
559         #pragma in locations where it is not permitted.
560
561         PR c++/17413
562         * pt.c (check_instantiated_args): Remove bogus SFINAE code.
563
564         * cvt.c (convert_to_void): Fix typo in comment.
565
566 2004-12-23  Alexandre Oliva  <aoliva@redhat.com>
567
568         PR c++/18962
569         * pt.c (check_explicit_specialization): Use the argument list from
570         the definition in a template function specialization definition.
571
572 2004-12-23  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
573
574         PR c++/18733
575         * pt.c (check_explicit_specialization): Use special logic to validate
576         befriended specializations.
577
578 2004-12-22  Mark Mitchell  <mark@codesourcery.com>
579
580         * rtti.c (emit_support_tinfos): Avoid using C99 semantics.
581
582         PR c++/18464
583         * call.c (build_this): In templates, do not bother with
584         build_unary_op.
585         * typeck.c (unary_complex_lvalue): In a template, always refuse
586         simplifications. 
587
588         PR c++/18492
589         * cp-gimplify.c (cp_genericize): Relax assertion.
590
591         PR c++/11224
592         * cvt.c (convert_to_void): Warn about unused values.
593
594         PR c++/18257
595         * rtti.c (emit_support_tinfos): On systems without weak symbols,
596         emit the runtime library type-info objects as non-COMDAT. 
597
598 2004-12-21  Mark Mitchell  <mark@codesourcery.com>
599
600         PR c++/18378
601         * call.c (convert_like_real): Do not permit the use of a copy
602         constructor to copy a packed field.
603
604         PR c++/19063
605         * decl.c (grokdeclarator): Return error_mark_node, not
606         void_type_node, to indicate errors.
607         * parser.c (cp_parser_template_parameter_list): Robustify.
608         (cp_parser_template_parameter): Likewise.
609
610         PR c++/19034
611         * tree.c (cp_tree_equal): Handle OVERLOAD.
612
613 2004-12-22  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
614
615         * decl.c (define_label): Use POP_TIMEVAR_AND_RETURN.
616         * name-lookup.c (pushdecl_class_level): Likewise.
617
618 2004-12-21  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
619
620         * name-lookup.c (pushtag): Add missing POP_TIMEVAR_AND_RETURN.
621
622 2004-12-21  Andrew Pinski  <pinskia@physics.uc.edu>
623
624         PR c++/18984
625         * cp-gimplify.c (cp_genericize_r): Don't insert first but instead
626         check to see if contains the pointer.  Insert the statement before
627         returning.
628
629 2004-12-21  Nathan Sidwell  <nathan@codesourcery.com>
630
631         PR c++/14075
632         * decl.c (check_initializer): Check string initializer of array is
633         not parenthesized.
634         * cp-tree.h (PAREN_STRING_LITERAL_P): New.
635         * semantics.c (finish_parenthesized_expr): Mark a STRING_CST.
636         * error.c (dump_expr): <STRING_CST case> Add parens, if needed.
637
638         * cp-tree.def (TEMPLATE_TYPE_PARM,
639         BOUND_TEMPLATE_TEMPLATE_PARM, TYPE_OF_TYPE, TYPENAME_TYPE): Reorder 
640         for better code efficiency.
641         * cp-tree.h (CLASS_TYPE_P): Short circuit IS_AGGR_TYPE check.
642         (CAN_HAVE_FULL_LANG_DECL_P): Reorder for better optimization.
643         (INTEGRAL_CODE_P, CP_INTEGRAL_TYPE_P,
644         INTEGRAL_OR_ENUMERATION_TYPE_P, SCALAR_TYPE_P,
645         CP_AGGREGATE_TYPE_P, TYPE_PTROB_P, TYPE_REF_OBJ_P,
646         TYPE_PTROBV_P): Likewise. 
647
648         PR c++/18975
649         * method.c (do_build_copy_constructor): Refactor. Don't const
650         qualify a mutable field.
651         (do_build_assign_ref): Likewise.
652
653 2004-12-20  Matt Austern <austern@apple.com>
654
655         PR c++/19044
656         * decl.c (make_rtl_for_nonlocal_decl): Use
657         set_builtin_user_assembler_name.
658         
659 2004-12-19  Mark Mitchell  <mark@codesourcery.com>
660
661         * cp-tree.h (note_decl_for_pch): New function.
662         * class.c (build_clone): Call note_decl_for_pch.
663         * semantics.c (finish_member_declaration): Likewise.
664         (note_decl_for_pch): New function.
665
666 2004-12-17  Steven Bosscher  <stevenb@suse.de>
667
668         * init.c (build_zero_init): max_index is the number of
669         elements, minus 1.
670
671 2004-12-17  Nathan Sidwell  <nathan@codesourcery.com>
672
673         PR c++/18721
674         * class.c (add_method): Do not push conversion operators into a
675         binding level.
676
677         * cp-tree.h (CLASSTYPE_PRIMARY_TEMPLATE_TYPE): Reformat.
678         * error.c (dump_decl): <TYPE_DECL case> Remove extraneous braces.
679
680 2004-12-16  Nathan Sidwell  <nathan@codesourcery.com>
681
682         PR c++/18905
683         * cp-tree.h (integral_constant_value): Declare.
684         * call.c (null_ptr_cst_p): Use integral_constant_value, not
685         decl_constant_value.
686         (convert_like_real): Likewise.
687         * class.c (check_bitfield_decl): Likewise.
688         * cvt.c (ocp_convert): Likewise.
689         (convert): Remove unnecessary decl_constant_value call.
690         * decl.c (compute_array_index_type): Use integral_constant_value,
691         not decl_constant_value.
692         (build_enumerator): Likewise.
693         * decl2.c (grokfield): Likewise.
694         * init.c (decl_constant_value): Simplify.
695         (integral_constant_value): New.
696         * pt.c (fold_decl_constant_value): Use integral_constant_value,
697         remove subsequent check.
698         (tsubst): Use integral_constant_value, not decl_constant_value.
699         (tsubst_copy, unify): Likewise.
700         * typeck.c (decay_conversion): Likewise.
701         (build_compound_expr): Remove unnecessary decl_constant_value
702         calls.
703         (build_static_cast_1, build_reinterpret_cast_1):
704         (convert_for_assignment): Remove comment about not calling
705         decl_constant_value.
706
707 2004-12-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
708
709         PR c++/18825
710         * pt.c (instantiate_class_template): Set input_location for
711         friend function.
712         (tsubst_friend_function): Don't set input_location here.
713         Make sure the context is complete if necessary.
714
715 2004-12-15  Nathan Sidwell  <nathan@codesourcery.com>
716
717         PR c++/18981
718         * parser.c (cp_parser_lookup_name): Remove unneeded TYPENAME_TYPE
719         flag setting.
720
721 2004-12-14  Mark Mitchell  <mark@codesourcery.com>
722
723         PR c++/18738
724         * decl.c (make_typename_type): Do not handle namespace-scoped
725         names here.
726         (tag_name): Handle typename_type.
727         (check_elaborated_type_specifier): Handle typenames.
728         * parser.c (cp_parser_diagnose_invalid_type_name): Improve
729         comment.
730         (cp_parser_elaborated_type_specifier): Use
731         cp_parser_diagnose_invalid_type_name.
732
733 2004-12-14  Andrew Pinski  <pinskia@physics.uc.edu>
734
735         PR c++/18965
736         * init.c (build_zero_init): If the max_index is 0, there is no
737         need to create a RANGE_EXPR.
738
739 2004-12-14  Mark Mitchell  <mark@codesourcery.com>
740
741         PR c++/18793
742         * cp-objcp-common.c (cp_expr_size): Loosen assertion.
743
744 2004-12-14  Nathan Sidwell  <nathan@codesourcery.com>
745
746         PR c++/18949
747         * pt.c (tsubst_copy_and_build): <INDIRECT_REF case> Check that a
748         REFERENCE_REF_P is dereferencing a reference type.
749         * typeck.c (build_static_cast): Convert from reference even in a
750         template.
751         (build_reinterpret_cast, build_const_cast, build_c_cast): Likewise.
752
753 2004-12-14  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
754
755         * parser.c (cp_parser_uncommitted_to_tentative_parse_p): New function.
756         (cp_parser_name_lookup_error): Use it.
757         (cp_parser_check_for_invalid_template_id): Likewise.
758         (cp_parser_skip_to_closing_parenthesis): Likewise.
759         (cp_parser_nested_name_specifier_opt): Likewise.
760         (cp_parser_simple_declaration, cp_parser_template_id): Likewise.
761         (cp_parser_parameter_declaration_list): Likewise.
762         (cp_parser_parameter_declaration): Likewise.
763         (cp_parser_template_name): Let cp_parser_simulate_error perform
764         the checking.
765         (cp_parser_committed_to_tentative_parse): Remove.
766
767 2004-12-13  Andrew Pinski  <pinskia@physics.uc.edu>
768
769         PR c++/18968
770         * class.c (build_base_path): Convert the zero constant to the correct
771         type when comparing.
772
773 2004-12-13  Mark Mitchell  <mark@codesourcery.com>
774
775         PR c++/18925
776         * class.c (layout_class_type): Determine the visibility of static
777         data members.
778
779 2004-12-12  Roger Sayle  <roger@eyesopen.com>
780
781         PR middle-end/12454
782         * cp-gimplify.c (gimplify_if_stmt): Optimize the case where the
783         condition is a constant and the unexecuted clause is empty.
784
785 2004-12-10  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
786
787         PR c++/18731
788         * parser.c (cp_parser_class_head): Reject typedef-name in class head.
789
790 2004-12-09  Matt Austern  <austern@apple.com>
791
792         PR c++/18514
793         * name-lookup.c (do_nonmember_using_decl): A real function
794         declaration takes precedence over an anticipated declaration.
795         
796 2004-12-09  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
797
798         * parser.c (cp_parser_member_declaration): Fix comment typo.
799
800 2004-12-09  Alexandre Oliva  <aoliva@redhat.com>
801
802         PR c++/18757
803         * parser.c (cp_parser_template_id): Don't create a CPP_TEMPLATE_ID
804         if parsing failed.
805
806 2004-12-09  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
807
808         PR c++/18073
809         * typeck.c (build_reinterpret_cast_1): Allow cast from vector type.
810
811 2004-12-09  Nathan Sidwell  <nathan@codesourcery.com>
812
813         PR c++/16681
814         * init.c (build_zero_init): Build a RANGE_EXPR for an array
815         initializer.
816
817 2004-12-08  Kelley Cook  <kcook@gcc.gnu.org>
818
819         * typeck.c: Remove DOS line endings.
820
821 2004-12-08  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
822
823         PR c++/18100
824         * decl.c (lookup_and_check_tag): Diagnose nested class with 
825         the same name as enclosing class.
826
827 2004-12-08  Nathan Sidwell  <nathan@codesourcery.com>
828
829         PR c++/18803
830         * cp-tree.h (REFERENCE_REF_P): New.
831         (CPTI_TYPE_INFO_TYPE): Rename to ...
832         (CPTI_CONST_TYPE_INFO_TYPE): ... here.
833         (CPTI_TYPE_INFO_REF_TYPE): Remove.
834         (type_info_type_node): Rename to ...
835         (const_type_info_type_node): ... here.
836         (type_info_ref_type): Remove.
837         * call.c (build_user_type_conversion): Reformat.
838         (resolve_args): Do not convert_from_reference.
839         (build_object_call): Call convert_from_reference.
840         (prep_operand): Do not convert_from_reference.
841         (build_new_method_call): Likewise.
842         * class.c (build_vfield_ref): Likewise.
843         * cvt.c (convert_to_reference): Likewise.
844         (convert_from_reference): Build INDIRECT_REF here, not with
845         build_indirect_ref.
846         (convert_force): Do not convert_from_reference.
847         (build_expr_type_conversion): Likewise.
848         * decl.c (grok_reference_init): Likewise.
849         * decl2.c (delete_sanity): Likewise.
850         * except.c (initialize_handler_parm): Use POINTER_TYPE_P.
851         * init.c (build_dtor_call): Do not convert_from_reference.
852         * parser.c (cp_parser_template_argument): Unwrap indirected
853         reference. Allow TEMPLATE_PARM_INDEX as an object parm.
854         * pt.c (tsubst_copy_and_build) <case INDIRECT_REF>: Use
855         convert_from_reference, if indicated.
856         <case CALL_EXPR>: Do not convert_from_reference.
857         <case PARM_DECL, VAR_DECL>: Convert_from_reference if needed.
858         (tsubst_initializer_list): Do not convert_from_reference.
859         * rtti.c (init_rtti_processing): Adjust node creation.
860         (throw_bad_typeid): Use const_type_info_type_node.
861         Do not convert_from_reference.
862         (typeid_ok_p): Use const_type_info_type_node.
863         (build_typeid, get_typeid): Always return type_info typed node.
864         (build_dynamic_cast_1): Dont convert_from_reference. Refactor.
865         * semantics.c (finish_stmt_expr_expr): Do not
866         convert_from_reference.
867         (finish_id_expression): Convert_from_reference as appropriate.
868         * typeck.c (decay_conversion): Do not convert_from_reference.
869         (finish_class_member_access_expr): Likewise.
870         (build_indirect_ref): Use POINTER_TYPE_P.
871         (convert_arguments): Do not convert_from_reference.
872         (build_modify_expr): Likewise.
873         (convert_for_initialization): Likewise.
874         * typeck2.c (build_x_arrow): Likewise.
875
876 2004-12-07  Ziemowit Laski  <zlaski@apple.com>
877
878         * cp-tree.h (struct lang_type_class): Rename 'objc_protocols'
879         field to 'objc_info'.
880
881 2004-12-07  Kazu Hirata  <kazu@cs.umass.edu>
882
883         * pt.c: Replace a use of first_rtl_op with TREE_CODE_LENGTH.
884
885 2004-12-07  Roger Sayle  <roger@eyesopen.com>
886
887         * name-lookup.c (leave_scope): We only need to update
888         class_binding_level when leaving a class scope.
889
890 2004-12-06  Ziemowit Laski  <zlaski@apple.com>
891
892         * cp-tree.h (struct lang_type_class): Add 'objc_protocols' field.
893
894 2004-12-04  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
895
896         PR c++/17011, c++/17971
897         * pt.c (tsubst_copy) <FIELD_DECL case>: Check and diagnose
898         invalid field.
899         (tsubst_copy_and_build) <COMPONENT_REF case>: Check
900         error_mark_node after member substitution.
901         * semantics.c (finish_id_expression): Call
902         finish_non_static_data_member for non-dependent FIELD_DECL.
903
904 2004-12-03  Nathan Sidwell  <nathan@codesourcery.com>
905
906         PR c++/18782
907         * decl.c (grokdeclarator): Make sure class in pointer to member is
908         not a namespace.
909
910 2004-12-02  Nathan Sidwell  <nathan@codesourcery.com>
911
912         PR c++/18318
913         * parser.c (cp_parser_new_type_id): Move array size expression
914         checks from here ...
915         * init.c (build_new): ... to here.
916
917 2004-12-02  Nathan Sidwell  <nathan@codesourcery.com>
918
919         PR c++/18758
920         * parser.c (cp_parser_class_head): Return NULL_TREE when
921         push_template_decl fails.  Update comment.
922
923 2004-12-02  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
924
925         PR c++/15664, c++/18276
926         * pt.c (tsubst_decl) <TEMPLATE_DECL case>: Reorganize.  Correctly
927         tsubst TEMPLATE_DECL that is a TEMPLATE_TEMPLATE_PARM.
928
929 2004-12-02  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
930
931         PR c++/18123
932         * parser.c (cp_parser_type_specifier): Catch template declaration
933         of enum.
934
935 2004-12-01  Matt Austern  <austern@apple.com>
936
937         * name-lookup.c (namespace_binding): Omit alias check for global
938         namespace.
939
940 2004-12-01  Nathan Sidwell  <nathan@codesourcery.com>
941
942         PR c++/18729
943         * parser.c (cp_parser_class_name): Check decl's type is not
944         error_mark_node.
945
946         PR c++/17431
947         * call.c (standard_conversion): Add FLAGS parameter. Do not allow
948         derived to base conversion when checking constructor
949         accessibility.
950         (implicit_conversion): Pass FLAGS to standard_conversion.
951         (check_constructir_callable): Disallow conversion functions.
952
953 2004-11-30  Kazu Hirata  <kazu@cs.umass.edu>
954
955         * parser.c: Fix comment typos.
956
957 2004-11-27  Mark Mitchell  <mark@codesourcery.com>
958
959         PR c++/18368
960         * parser.c (cp_parser_check_for_definition_in_return_type): Take
961         the defined type as a parameter, and inform the user about the
962         possibility of a missing semicolon.
963         (cp_parser_explicit_instantiation): Adjust call to
964         cp_parser_check_for_definition_in_return_type.
965         (cp_parser_init_declarator): Likewise.
966         (cp_parser_member_declaration): Likewise.
967
968         PR c++/18674
969         * cp-tree.def (TYPENAME_TYPE): Remove discussion of implicit
970         typename from comments.
971         * cp-tree.h (TYPENAME_IS_ENUM_P): New macro.
972         (TYPENAME_IS_CLASS_P): Likewise.
973         (make_typename_type): Change prototype.
974         * decl.c (struct_typename_info): New type.
975         (typename_compare): Expect the second argument to be a
976         typename_info, not a tree.
977         (build_typename_type): Add tag_type parameter.  Do not create a
978         new type until necessary.
979         (make_typename_type): Add tag_type parameter.
980         * error.c (TYPENAME_TYPE): Print tags other than "typename" if
981         appropriate.
982         * friend.c (make_friend_class): Adjust call to make_typename_type.
983         * parser.c (cp_parser_make_typename_type): Likewise.
984         (cp_parser_primary_expression): Adjust call to
985         cp_parser_lookup_name.
986         (cp_parser_unqualified_id): Adjust calls to cp_parser_class_name.
987         (cp_parser_class_or_namespace_name): Likewise.
988         (cp_parser_postfix_expression): Adjust calls to
989         make_typename_type.
990         (cp_parser_mem_initializer_id): Adjust calls to
991         cp_parser_class_name.
992         (cp_parser_type_parameter): Adjust calls to cp_parser_lookup_name.
993         (cp_parser_template_name): Likewise.
994         (cp_parser_template_argument): Likewise.
995         (cp_parser_type_name): Adjust call to cp_parser_class_name.
996         (cp_parser_elaborated_type_specifier): Adjust calls to
997         make_typename_type and cp_parser_lookup_name.
998         (cp_parser_namespace_name): Likewise.
999         (cp_parser_class_name): Replace type_p parameter with tag_type.
1000         Adjust calls to make_typename_type and cp_parser_lookup_name.
1001         (cp_parser_class_head): Adjust calls to cp_parser_class_name.
1002         (cp_parser_base_specifier): Likewise.
1003         (cp_parser_lookup_name): Replace is_type parameter with tag_type.
1004         Adjust calls to make_typename_type and lookup_qualified_name.
1005         (cp_parser_lookup_name_simple): Adjust call to
1006         cp_parser_lookup_name.
1007         (cp_parser_constructor_declarator_p): Adjust call to
1008         cp_parser_class_name.
1009         * pt.c (convert_template_argument): Adjust all to
1010         make_typename_type.
1011         (tsubst_decl): Do not pre-substitute the type of the declaration.
1012         (tsubst): Hand off declarations more quickly.  Adjust call to
1013         make_typename_type. 
1014
1015         PR c++/18512
1016         * parser.c (cp_parser_postfix_dot_deref_expression): Robustify.
1017
1018 2004-11-29  Daniel Jacobowitz  <dan@codesourcery.com>
1019
1020         PR c/7544
1021         * Make-lang.in (cp/decl2.o): Update dependencies.
1022         * decl2.c (finish_file): Call maybe_apply_pending_pragma_weaks.
1023
1024 2004-11-29  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1025
1026         PR c++/18652
1027         * name-lookup.c (pushtag): Change return type to tree.
1028         * cp-tree.h (pushtag): Adjust declaration.
1029         * decl.c (xref_tag, start_enum): Use return value of pushtag.
1030         * pt.c (push_template_decl_real): Return immediately if
1031         pushdecl_namespace_level returns error_mark_node.
1032
1033 2004-11-27  Kazu Hirata  <kazu@cs.umass.edu>
1034
1035         * pt.c: Fix a comment typo.
1036
1037 2004-11-27  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1038
1039         Friend class name lookup 4/n
1040         * class.c (pushclass): Don't call cxx_remember_type_decls.
1041         * cp-tree.h (clear_anon_tags): Remove declaration.
1042         * decl.c (grokdeclarator): Don't call lookup_tag_reverse.
1043         * name-lookup.c (binding_entry_free, binding_table_free): Comment
1044         out functions.
1045         (binding_table_find_anon_type, binding_table_reverse_maybe_remap,
1046         binding_table_remove_anonymous_types, cxx_remember_type_decls,
1047         bt_print_entry, clear_anon_tags, follow_tag_typedef, lookup_tag,
1048         lookup_tag_reverse): Remove
1049         (begin_scope, leave_scope, kept_level_p, print_binding_level):
1050         Don't use type_decls field in cp_binding_level.
1051         (maybe_process_template_type_declaration, pushtag): Set
1052         CLASSTYPE_NESTED_UTDS directly.
1053         * name-lookup.h (binding_table_remove_anonymous_types,
1054         cxx_remember_type_decls, lookup_tag, lookup_tag_reverse): Remove
1055         declaration.
1056         (cp_binding_level): Remove type_decls field.
1057
1058 2004-11-26  Kazu Hirata  <kazu@cs.umass.edu>
1059
1060         * typeck.c: Fix a comment typo.
1061
1062 2004-11-25  Mark Mitchell  <mark@codesourcery.com>
1063
1064         PR c++/18445
1065         * class.c (instantiate_type): Treat NON_DEPENDENT_EXPRs with
1066         unknown_type as non matching.  Tidy up.
1067         * pt.c (build_non_dependent_expr): Do not build a
1068         NON_DEPENDENT_EXPR for a VAR_DECL.
1069
1070         PR c++/18001
1071         * cp-tree.h (lvalue_or_else): Remove declaration.
1072         * tree.c (lvalue_or_else): Remove.
1073         * typeck.c (build_unary_op): Adjust call to lvalue_or_else.
1074         (build_modify_expr): Likewise.
1075
1076         PR c++/18625
1077         * decl.c (duplicate_decls): Return error_mark_node on error, as
1078         specified.
1079
1080         PR c++/18466
1081         * decl.c (grokvardecl): Keep track of whether or not a there was
1082         explicit qualification.
1083         * name-lookup.c (set_decl_namespace): Complain about explicit
1084         qualification of a name within its own namespace.
1085
1086         PR c++/18545
1087         * typeck.c (check_return_expr): Robustify.
1088
1089 2004-11-25  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1090
1091         Friend class name lookup 3/n, PR c++/3332
1092         * name-lookup.c (push_inner_scope, pop_inner_scope): New functions.
1093         (lookup_type_scope): Don't deal with name from user declaration
1094         specially.
1095         * name-lookup.h (push_inner_scope, pop_inner_scope): Add declarations.
1096         * parser.c (cp_parser_class_specifier): Use push_inner_scope and
1097         pop_inner_scope.
1098
1099 2004-11-25  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1100
1101         Friend class name lookup 2/n, PR c++/14513, c++/15410
1102         * name-lookup.c (lookup_name_real): Simplify.
1103         (lookup_type_scope): Add SCOPE parameter.  Handle friend class
1104         lookup.
1105         * name-lookup.h (tag_scope): New enum type.
1106         (lookup_type_scope): Adjust declaration.
1107         * decl.c (lookup_and_check_tag, xref_tag, xref_tag_from_type):
1108         Change bool parameter GLOBALIZED to TAG_SCOPE parameter SCOPE.
1109         (start_enum): Likewise.  Add assertion test that NAME is 
1110         IDENTIFIER_NODE.  Use anonymous name for dummy ENUMERAL_TYPE in
1111         case of error.
1112         * cp-tree.h (xref_tag, xref_tag_from_type): Adjust declarations.
1113         * parser.c (cp_parser_elaborated_type_specifier,
1114         cp_parser_class_head): Adjust call to xref_tag.
1115         * pt.c (lookup_template_class, instantiate_class_template):
1116         Likewise.
1117         * rtti.c (init_rtti_processing, build_dynamic_cast_1,
1118         tinfo_base_init, emit_support_tinfos): Likewise.
1119
1120 2004-11-25  Joseph S. Myers  <joseph@codesourcery.com>
1121
1122         * g++spec.c, lex.c: Avoid ` as left quote in diagnostics.
1123
1124 2004-11-24  Mark Mitchell  <mark@codesourcery.com>
1125
1126         PR c++/17473
1127         * name-lookup.c (supplement_binding): Do not allow typedefs to be
1128         redefined in class scope.
1129
1130         PR c++/18285
1131         * parser.c (cp_parser_set_decl_type_spec): Do not try to allow
1132         redefinitions of builtin types other that "bool" or "wchar_t".
1133
1134 2004-11-24  Steven Bosscher  <stevenb@suse.de>
1135
1136         * decl.c (cxx_init_decl_processing): Don't clear
1137         flag_inline_functions.
1138
1139 2004-11-24  Mark Mitchell  <mark@codesourcery.com>
1140
1141         * pt.c (tsubst_function_type): Do not permit function types which
1142         return arrays or functions.
1143
1144         PR c++/18586
1145         * parser.c (cp_parser_init_declarator): Do not pop scope twice.
1146
1147         PR c++/18530
1148         * cp-tree.h (CTOR_NAME): Remove.
1149         (DTOR_NAME): Remove.
1150         * decl.c (initialize_predefined_identifiers): Add spaces to the
1151         end of constructor and destructor names.
1152
1153 2004-11-24  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
1154
1155         PR c++/8929
1156         * decl.c (start_decl): Check for invalid specialization headers.
1157
1158 2004-11-24  Paolo Bonzini  <bonzini@gnu.org>
1159
1160         PR c++/16882
1161
1162         * call.c (standard_conversion): Move check for conversions between
1163         vector pointers...
1164         * typeck.c (ptr_reasonably_similar): ... here.
1165
1166 2004-11-23  Ben Elliston  <bje@au.ibm.com>
1167
1168         * cp-tree.h (context_as_string): Remove extern.
1169         * error.c (context_as_string): Remove.
1170
1171         * cp-tree.h (cp_type_qual_from_rid): Remove extern.
1172         * lex.c (cp_type_qual_from_rid): Remove.
1173
1174         * cp-tree.h (do_poplevel): Remove extern.
1175         (check_multiple_declarators): Likewise.
1176         * semantics.c (do_poplevel): Make static.
1177         (check_multiple_declarators): Remove.
1178
1179         * cp-tree.h (check_final_overrider): Remove extern.
1180         * search.c (check_final_overrider): Make static.
1181
1182         * cp-tree.h (build_artificial_parm): Remove extern.
1183         * decl2.c (build_artificial_parm): Make static.
1184
1185 2004-11-22  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
1186
1187         PR c++/18354
1188         * typeck.c (build_unary_op) <CONVERT_EXPR, NEGATE_EXPR>: Unify code.
1189         Make sure the result is always a rvalue.
1190
1191 2004-11-16  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
1192
1193         * decl.c (start_preparsed_function): Call check_function_type even
1194         in templates.
1195         (require_complete_types_for_parms): Skip dependent types.
1196         (check_function_type): Likewise.
1197
1198 2004-11-16  Steven Bosscher  <stevenb@suse.de>
1199
1200         * Make-lang.in (cp/decl.o, cp/search.o): Don't depend on stack.h.
1201         * search.c: Don't include it.
1202
1203 2004-11-15  Andrew Pinski  <pinskia@physics.uc.edu>
1204
1205         * cp-gimplify.c: Include pointer-set.h
1206         (cp_genericize_r): Use pointer_sets instead of a hashtable.
1207         Also instert the new statement for CLEANUP_STMT.
1208         (cp_genericize): Use pointer_sets instead of a hashtable.
1209         * Make-lang.in (cp-gimplify.o): Depend on pointer-set.h.
1210
1211 2004-11-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1212
1213         Friend class name lookup 1/n, PR c++/18471
1214         * decl.c (lookup_and_check_tag): New function.
1215         (xref_tag, start_enum): Use it.
1216         (check_elaborated_type_specifier): Move TEMPLATE_TYPE_PARM check
1217         before !DECL_IMPLICIT_TYPEDEF_P.  Also display previously declared
1218         location.
1219         * name-lookup.c (lookup_name_current_level): Rename to ...
1220         (lookup_name_innermost_nonclass_level): ... this.
1221         (lookup_type_scope): New function.
1222         * name-lookup.h (lookup_name_current_level): Rename to ...
1223         (lookup_name_innermost_nonclass_level): ... this.
1224         (lookup_type_scope): Add declaration.
1225
1226 2004-11-14  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1227
1228         PR c++/17344
1229         * pt.c (coerce_template_parms): Only emit error message about
1230         invalid template argument when TF_ERROR.
1231
1232 2004-11-12  Mark Mitchell  <mark@codesourcery.com>
1233
1234         PR c++/18389
1235         * decl.c (start_decl): Make sure to set *pop_scope_p.  Return
1236         error_mark_node to indicate errors.
1237
1238         PR c++/18429
1239         * parser.c (cp_parser_direct_declarator): Disallow non-constant
1240         array bounds when not inside a function.
1241
1242         PR c++/18436
1243         * pt.c (tsubst_copy_and_build): Do not do Koenig lookup when an
1244         unqualified name resolves to a member function.
1245
1246         PR c++/18407
1247         * pt.c (tsubst_copy_and_build): Handle qualified names used from a
1248         derived class correctly.
1249         
1250         * decl2.c (import_export_decl): Fix typo in comment.
1251         * tree.c (pod_type_p): Likewise.
1252
1253 2004-11-10  Andrew Pinski  <pinskia@physics.uc.edu>
1254
1255         * typeck.c (cxx_mark_addressable): Add braces around the first if.
1256
1257 2004-11-10  Adam Nemet  <anemet@lnxw.com>
1258
1259         PR middle-end/18160  
1260         * typeck.c (cxx_mark_addressable): Issue an error if address of an
1261         explicit register variable is requested.
1262
1263 2004-11-10  Nathan Sidwell  <nathan@codesourcery.com>
1264
1265         PR c++/18143
1266         * cp-tree.h (NON_THUNK_FUNCTION_CHECK, THUNK_FUNCTION_CHECK): New.
1267         (struct lang_decl_flags): Add thunk_p flag.
1268         (struct lang_decl): Remove separate fixed_offset. Place
1269         cloned_function and fixed_offset into union.
1270         (DECL_CLONED_FUNCTION_P, DECL_CLONED_FUNCTION): Adjust.
1271         (DECL_THUNK_P, SET_DECL_THUNK_P): Adjust.
1272         (THUNK_FIXED_OFFSET): Adjust.
1273         * method.c (make_thunk): Adjust.
1274
1275 2004-11-09  Mark Mitchell  <mark@codesourcery.com>
1276
1277         PR c++/18369
1278         * init.c (build_new_1): Handle parenthesized type-ids that name an
1279         array type.  Tidy.
1280
1281 2004-11-09  Joseph S. Myers  <joseph@codesourcery.com>
1282
1283         * call.c, class.c, decl.c, decl2.c, error.c, mangle.c, parser.c,
1284         pt.c, search.c, semantics.c, typeck.c: Use %q, %< and %> for
1285         quoting in diagnostics.
1286         * parser.c (cp_parser_sizeof_operand): Use '' instead of `' for
1287         quoting in printf format.
1288         * decl.c (duplicate_decls, start_decl): Use %qD instead of
1289         unquoted %D.
1290
1291 2004-11-08  Kazu Hirata  <kazu@cs.umass.edu>
1292
1293         * class.c, decl.c, lex.c, name-lookup.c, parser.c, pt.c,
1294         search.c, typeck2.c: Fix comment formatting.
1295
1296 2004-11-04  Ulrich Weigand  <uweigand@de.ibm.com>
1297         
1298         PR tree-optimization/18184
1299         * cp-objcp-common.c (cxx_types_compatible_p): Do not treat pointers
1300         of different modes or alias-all flags as equivalent.
1301         * typeck.c (comptypes): Likewise.
1302
1303 2004-11-04  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
1304
1305         DR 49, 100
1306         * cp-tree.h (TYPE_REF_OBJ_P): New macro.
1307         (TYPE_PTR_P, TYPE_PTROB_P, TYPE_PTROBV_P, TYPE_PTRFN_P,
1308         TYPE_REFFN_P): Document.
1309         (fold_decl_constant_value): New prototype.
1310         * pt.c (convert_nontype_argument_function): Rewrite and extract
1311         parts into...
1312         (fold_decl_constant_value, convert_nontype_argument_function): New.
1313         (lookup_template_class): Add comment about useless double call.
1314         * mangle.c (write_expression): Strip conversions before lowering
1315         pointer to members.
1316         * cvt.c (ocp_convert): Check LOOKUP_COMPLAIN for a pedwarn. Disallow
1317         enum to enum conversion.
1318
1319 2004-11-02  Mark Mitchell  <mark@codesourcery.com>
1320
1321         PR c++/18124
1322         * parser.c (cp_parser_type_parameter): Robustify.
1323
1324         PR c++/18155
1325         * parser.c (cp_parser_single_declaration): Disallow template
1326         typedefs.
1327
1328         PR c++/18177
1329         * typeck.c (build_const_cast): Use error_operand_p.
1330
1331 2004-11-02  Ziemowit Laski  <zlaski@apple.com>
1332
1333         * cp-lang.c (cxx_types_compatible_p): Remove prototype and definition.
1334         (LANG_HOOKS_TYPES_COMPATIBLE_P): Move to cp-objcp-common.h.
1335         * cp-objcp-common.c (cxx_types_compatible_p): Moved definition here
1336         from cp-lang.c.
1337         * cp-objcp-common.h (cxx_types_compatible_p): Moved prototype here
1338         from cp-lang.c.
1339         (LANG_HOOKS_TYPES_COMPATIBLE_P): Moved here from cp-lang.c.
1340
1341 2004-11-01  Nathan Sidwell  <nathan@codesourcery.com>
1342
1343         PR c++/18064
1344         * search.c (check_final_overrider): Deprecate gnu covariant extension.
1345
1346 2004-10-31  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1347
1348         Convert diagnostics to use quoting flag q 9/n
1349         * typeck.c (build_x_unary_op, convert_member_func_to_ptr, 
1350         get_delta_difference):  Use new quotation style.
1351         * repo.c (reopen_repo_file_for_write): Likewise.
1352         * pt.c (do_type_instantiation): Likewise.
1353         * parser.c (cp_parser_diagnose_invalid_type_name): 
1354         * name-lookup.c (push_overloaded_decl, set_decl_namespace): 
1355         * error.c (cp_print_error_function,
1356         print_instantiation_full_context): Likewise.
1357         * decl.c (define_label, grok_reference_init, 
1358         maybe_deduce_size_from_array_init, revert_static_member_fn): 
1359         * decl2.c (check_classfn): Likewise.
1360         * class.c (add_method, check_field_decls, layout_class_type, 
1361         resolve_address_of_overloaded_function): Likewise.
1362         * call.c (build_x_va_arg, build_over_call): Likewise.
1363
1364 2004-10-31  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1365
1366         Convert diagnostics to use quoting flag q 8/n
1367         * cvt.c (cp_convert_to_pointer, warn_ref_binding, 
1368         convert_to_reference, ocp_convert, convert_to_void 
1369         cp_convert_to_pointer): Use new quotation style.
1370
1371 2004-10-31  Mark Mitchell  <mark@codesourcery.com>
1372
1373         PR c++/15172
1374         * typeck2.c (store_init_value): Use split_nonconstant_init even
1375         for types that require construction.
1376         
1377 1004-10-28  Matt Austern  <austern@apple.com>
1378
1379         PR c++/17542
1380         * cp-tree.h (class_key_or_enum_as_string): Declare.
1381         * error.c (class_key_or_enum): Rename to class_key_or_enum_as_string
1382         and remove static qualifier.
1383         * decl.c (shadow_tag): Warn about ignored attributes in class/struct/
1384         union/enum declaration.
1385         
1386 2004-10-29  Kazu Hirata  <kazu@cs.umass.edu>
1387
1388         * pt.c: Fix a comment typo.
1389
1390 2004-10-28  Nathan Sidwell  <nathan@codesourcery.com>
1391
1392         * typeck.c (composite_pointer_type): Remove comment about DR 195.
1393         (build_reinterpret_cast_1): Revert DR195 patch. Only emit a
1394         warning when being pedantic.
1395         (build_reinterpet_cast, build_c_cast): Adjust.
1396
1397 2004-10-29  Mark Mitchell  <mark@codesourcery.com>
1398
1399         PR c++/17695
1400         * decl.c (grokdeclarator): Mark TYPE_DECLs as abstract when they
1401         appear in a constructor/destructor that will be cloned.
1402
1403 1004-10-28  Matt Austern  <austern@apple.com>
1404
1405         PR c++/14124
1406         * decl.c (finish_enum): Handle packed attribute.
1407         * parser.c (cp_parser_enum_specifier): Process trailing attributes.
1408         
1409 2004-10-28  Mark Mitchell  <mark@codesourcery.com>
1410
1411         PR c++/17132
1412         * pt.c (instantiate_class_template): Increment
1413         processing_template_decl when substituting into a member class
1414         template.
1415
1416 2004-10-27  Mark Mitchell  <mark@codesourcery.com>
1417
1418         PR c++/17435
1419         * call.c (convert_like_real): Fix formatting.
1420         (initialize_reference): When binding a temporary to a base class,
1421         ensure that the nominal copy made is to the derived class, not the
1422         base class.
1423
1424         PR c++/18140
1425         * parser.c (cp_parser_next_token_ends_template_argument_p): Do not
1426         include ">>".
1427
1428 2004-10-27  Andrew Pinski  <pinskia@physics.uc.edu>
1429
1430         * decl.c (bad_specifiers): Move the q after the %.
1431
1432 2004-10-27  Andrew Pinski  <pinskia@physics.uc.edu>
1433
1434         * parser.c (cp_parser_diagnose_invalid_type_name): Move the q after
1435         the %.
1436
1437 2004-10-26  Mark Mitchell  <mark@codesourcery.com>
1438
1439         * name-lookup.c (do_namespace_alias): Use FROB_CONTEXT.
1440         * search.c (current_scope): Fix prototype.
1441
1442         PR c++/18093
1443         * search.c (current_scope): Return the innermost non-block scope,
1444         not the innermost non-block, non-namespace scope.
1445         (at_namespace_scope_p): Adjust accordingly.
1446         (dfs_accessible_post): Do not pass namespaces to is_friend.
1447         (dfs_walk_once_accessible_r): Likewise.
1448         * decl.c (grokvardecl): Adjust call to current_scope.
1449         (build_enumerator): Likewise.
1450         * parser.c (cp_parser_using_declaration): Likewise.
1451         (cp_parser_direct_declarator): Use at_namespace_scope_p instead of
1452         current_scope.
1453         (cp_parser_class_head): Adjust call to current_scope.
1454         * name-lookup.c (do_namespace_alias): Set the DECL_CONTEXT for the
1455         alias.
1456
1457         PR c++/18020
1458         * pt.c (tusbst_copy_and_build): Resolve enumeration constants to
1459         their underlying values.
1460
1461         PR c++/18161
1462         * typeck.c (build_binary_op): Honor build_type, even when in a
1463         template.
1464
1465 2004-10-26  Nathan Sidwell  <nathan@codesourcery.com>
1466
1467         * parser.c (cp_lexer_get_preprocessor_token): Remove unneeded
1468         padding token checking.
1469
1470 2004-10-25  Andrew Pinski  <pinskia@physics.uc.edu>
1471
1472         PR c++/18121
1473         * decl.c (grokdeclarator) <case cdk_array>: Remove the call
1474         layout_type as it is already done by create_array_type_for_decl.
1475
1476 2004-10-22  Nathan Sidwell  <nathan@codesourcery.com>
1477
1478         PR c++/18095
1479         * parser.c (eof_token): Make const, correctly initialize rid and
1480         location fields.
1481         (struct cp_lexer): Replace buffer_end pointer with buffer_length
1482         count. Adjust.
1483         (cp_lexer_new_main): Directly grow lexer's buffer here.  Don't
1484         zero it out.
1485         (cp_lexer_new_from_tokens): Adjust.
1486         (cp_lexer_grow_buffer): Remove.
1487         (cp_lexer_peek_nth_token, cp_lexer_consume_token,
1488         cp_lexer_purge_token): Add const casts.
1489
1490 2004-10-21  Mark Mitchell  <mark@codesourcery.com>
1491
1492         PR c++/18073
1493         PR c++/10841
1494         * cp-tree.h (convert_to_base): Change prototype.
1495         (build_ptrmemfunc): Likewise.
1496         (convert_ptrmem): New function.
1497         * call.c (struct conversion): Adjust documentation for base_p.
1498         (standard_conversion): Set base_p for ck_pmem conversions as
1499         appropriate.
1500         (convert_like_real): Use convert_to_base for ck_pmem and ck_ptr
1501         conversions.
1502         * class.c (convert_to_base): Handle both pointers and objects.
1503         Add nonnull parameter.
1504         (build_vfield_ref): Adjust call to convert_to_base.
1505         * cvt.c (cp_convert_to_pointer): Adjust call to build_ptrmemfunc.
1506         (convert_force): Likewise.
1507         * typeck.c (build_unary_op): Likewise.
1508         (convert_ptrmem): New function.
1509         (build_static_cast_1): Use it.
1510         (build_reinterpret_cast): Allow conversions to vector types.
1511         (get_delta_difference): Add c_cast_p parameter.
1512         (build_ptrmemfunc): Likewise.  Adjust calls to
1513         get_delta_difference.
1514
1515 2004-10-21  Andrew Pinski  <pinskia@physics.uc.edu>
1516
1517         PR c++/13560
1518         * error.c (cp_error_at): Output the context as it might be
1519         different file as the other location.
1520
1521 2004-10-21  Kazu Hirata  <kazu@cs.umass.edu>
1522
1523         * typeck.c: Fix a comment typo.
1524
1525 2004-10-20  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1526
1527         PR c++/13495
1528         * decl.c (make_unbound_class_template): Add PARM_LIST parameter.
1529         * cp-tree.h (make_unbound_class_template): Adjust prototype.
1530         * parser.c (cp_parser_lookup_name): Adjust call to
1531         make_unbound_class_template.
1532         (cp_parser_single_declaration): Handle member class of class
1533         template as template friend parsing correctly.
1534         * friend.c (is_friend): Call is_specialization_of_friend for
1535         template friend class.
1536         (make_friend_class): Handle member class of class template as
1537         template friend.
1538         * pt.c (is_specialization_of_friend): Likewise.
1539         (instantiate_class_template): Likewise.
1540         (tsubst): Adjust call to make_unbound_class_template.
1541
1542 2004-10-20  Nathan Sidwell  <nathan@codesourcery.com>
1543
1544         * typeck.c (composite_pointer_type): Add comment about DR 195
1545         (build_reinterpret_cast_1): Add for_reinterpret_cast_p parameter.
1546         Allow function pointer conversions that DR195 suggests.
1547         (build_reinterpret_cast, build_c_cast): Update
1548         build_reinterpret_cast_1 calls. 
1549
1550 2004-10-20  Kazu Hirata  <kazu@cs.umass.edu>
1551
1552         * call.c, typeck.c: Fix comment typos.
1553
1554 2004-10-20  Nathan Sidwell  <nathan@codesourcery.com>
1555
1556         * parser.c (cp_token_position): New typedef. Define VEC thereof.
1557         (struct cp_lexer): Allow buffer and buffer_end to be NULL. Make
1558         next_token and last_token cp_token_position. Make saved_tokens a
1559         VEC(cp_token_position).
1560         (eof_token): New static variable.
1561         (CP_SAVED_TOKENS_SIZE): Rename to ...
1562         (CP_SAVED_TOKEN_STACK): ... here.
1563         (cp_lexer_new_main): Adjust main lexer creation and buffer
1564         filling.
1565         (cp_lexer_new_from_tokens): Do not copy the tokens, merely point
1566         to the parent buffer.  Do not append eof token.
1567         (cp_lexer_destroy): Only free buffer if non-NULL. Free token
1568         stack.
1569         (cp_lexer_next_token, cp_lexer_prev_token): Remove.
1570         (cp_lexer_token_position, cp_lexer_token_at): New.
1571         (cp_lexer_saving_tokens): Adjust. Make inline.
1572         (cp_lexer_advance_token, cp_lexer_token_difference): Remove.
1573         (cp_lexer_peek_token_emit_debug_info): Fold into ...
1574         (cp_lexer_peek_token): ... here.
1575         (cp_lexer_peek_nth_token): Don't peek past EOF.
1576         (cp_lexer_consume_token): Set next_token to eof_token, if reaching
1577         EOF.
1578         (cp_lexer_purge_token): Adjust eof setting.
1579         (cp_lexer_purge_tokens_after): Likewise.
1580         (cp_lexer_save_tokens): Push next_token directly.
1581         (cp_lexer_commit_tokens): Adjust.
1582         (cp_lexer_rollback_tokens): Pop next_token directly.
1583         (cp_parser_check_for_invalid_template_id): Adjust token purging.
1584         (cp_parser_translation_unit): Do not consume the EOF.
1585         (cp_parser_nested_name_specifier_opt): Adjust token purging.
1586         (cp_parser_template_id, cp_parser_template_name): Likewise.
1587
1588 2004-10-19  Mark Mitchell  <mark@codesourcery.com>
1589
1590         PR c++/14035
1591         * call.c (struct conversion): Add base_p.
1592         (convert_like): Add c_cast_p argument.
1593         (convert_like_with_conversion): Likewise.
1594         (build_conv): Clear base_p.
1595         (standard_conversion): Set it, for derived-to-base conversions.
1596         (convert_like_real): Add c_cast_p parameter.  Handle pointer
1597         conversions directly rather than relying on ocp_convert.
1598         (perform_direct_initialization_if_possible): Add c_cast_p
1599         parameter.
1600         * cp-tree.h (perform_direct_initialization_if_possible): Change
1601         prototype.
1602         (convert_member_func_to_ptr): New function.
1603         * typeck.c (check_for_casting_away_constness): Add diag_fn
1604         parameter.
1605         (build_static_cast_1): New function, split out from ...
1606         (build_static_cast): ... here.  Use build_static_cast_1.
1607         (build_reinterpret_cast_1): New function, split out from ...
1608         (build_reinterpret_cast): ... here.  Use build_reinterpret_cast_1.
1609         (build_const_cast_1): New function, split out from ...
1610         (build_const_cast): ... here.  Use build_const_cast_1.
1611         (build_c_cast): Rewrite to use build_const_cast_1,
1612         build_static_cast_1, and build_reinterpret_cast_1.
1613         (convert_member_func_to_ptr): New function.
1614
1615 2004-10-19  Paolo Bonzini  <bonzini@gnu.org>
1616
1617         PR c++/18047
1618         * parser.c (enum cp_parser_prec): Give relational expressions
1619         a higher precedence than equality expressions.
1620
1621 2004-10-15  Nathan Sidwell  <nathan@codesourcery.com>
1622
1623         * cp-tree.h (UNIQUELY_DERIVED_FROM_P): Adjust lookup_base call.
1624         (ACCESSIBLY_UNIQUELY_DERIVED_P): Remove.
1625         (PUBLICLY_UNIQUELY_DERIVED_P): Adjust lookup_base call.
1626         (enum base_access): Reorganize.
1627         (accessible_base_p, accessible_p): Add consider_local_p parameter.
1628         * call.c (standard_conversion): Update comment about
1629         DERIVED_FROM_P.
1630         (enforce_access): Adjust accessible_p call.
1631         (build_over_call): Adjust accessible_base_p call.
1632         * class.c (convert_to_base): Adjust lookup_base call.
1633         (build_vtbl_ref_1): Likewise.
1634         (warn_about_ambiguous_bases): Likewise. Add early exit.
1635         * cvt.c (convert_to_pointer_force) Adjust lookup_base call.
1636         * search.c (accessible_base_p): Add consider_local_p parameter.
1637         (lookup_base): Pass consider_local_p to accessible_base_p call.
1638         (friend_accessible_p): Check whether scope is a class member.
1639         Remove unnecessary class template check.
1640         (accessible_p): Add consider_local_p parameter. Use it.
1641         (adjust_result_of_qualified_name_lookup): Adjust lookup_base call.
1642         * tree.c (maybe_dummy_object): Likewise.
1643         * typeck.c (comp_except_type): Use PUBLICLY_UNIQUELY_DERIVED_P.
1644         (build_class_member_access_expr): Adjust lookup_base call.
1645         * typeck2.c (binfo_or_else): Likewise.
1646         * rtti.c (build_dynamic_cast_1): Access can consider friendship
1647         and current scope.
1648
1649 2004-10-17  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
1650
1651         PR c++/17743
1652         * decl2.c (grokfield): Apply attributes also to TYPE_DECLs.
1653
1654 2004-10-16  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
1655
1656         PR c++/10479
1657         * parser.c (cp_parser_parenthesized_expression_list): Fold
1658         non-dependent expressions in attribute lists.
1659
1660 2004-10-15  Mark Mitchell  <mark@codesourcery.com>
1661
1662         PR c++/17042
1663         * decl.c (declare_global_var): Use the return value from pushdecl.
1664
1665         PR c++/14667
1666         * parser.c (cp_parser_simple_declaration): Do not diagnose invalid
1667         type names if we have already found a valid type.
1668         (cp_parser_member_declaration): Likewise.
1669         
1670         PR c++/17916
1671         * parser.c (cp_parser_member_specification_opt): Handle
1672         CPP_PRAGMA.
1673
1674 2004-10-15  Kazu Hirata  <kazu@cs.umass.edu>
1675
1676         * dump.c, g++spec.c, repo.c: Update copyright.
1677
1678 2004-10-15  Kazu Hirata  <kazu@cs.umass.edu>
1679
1680         * decl.c: Fix a comment typo.
1681
1682 2004-10-13  Andrew Pinski  <pinskia@physics.uc.edu>
1683
1684         PR c++/16301
1685         * name-lookup.c (parse_using_directive): If we have a
1686         error_mark_node, do not set the decl namespace associations
1687         on it.
1688
1689 2004-10-14  Mark Mitchell  <mark@codesourcery.com>
1690
1691         PR c++/17976
1692         * decl.c (cp_finish_decl): Do not call expand_static_init more
1693         than once for a single variable.
1694
1695 2004-10-14  Matt Austern  <austern@apple.com>
1696
1697         * Make-lang.in (pt.o): depends on pointer-set.h
1698         * cp-tree.h (cp_walk_subtrees): Last argument is pointer_set_t* now.
1699         * pt.c (struct pair_fn_data): Use pointer_set_t, not htab_t
1700         (for_each_template_parm): Convert from htab_t to pointer_set_t.
1701         * tree.c (cp_walk_subtrees): Last argument is pointer_set_t* now.
1702         
1703 2004-10-13  Andrew Pinski  <pinskia@physics.uc.edu>
1704
1705         PR c++/17661
1706         * semantics.c (finish_for_expr): Convert expression to void
1707         so that we don't create temporaries for a?b:c.
1708
1709 2004-10-13  Kazu Hirata  <kazu@cs.umass.edu>
1710
1711         * search.c: Fix a comment typo.
1712
1713 2004-10-12  Nathan Sidwell  <nathan@codesourcery.com>
1714
1715         * class.c (dfs_modify_vtables): Simplify condition. Return
1716         dfs_skip_bases as appropriate.
1717         (modify_all_vtables): Walk in pre-order.
1718         * search.c (dfs_walk_all, dfs_walk_once_r,
1719         dfs_walk_once_accessible_r): Assert post order function never
1720         returns dfs_skip_bases.
1721
1722         * search.c (struct lookup_base_data_s): New.
1723         (lookup_base_r): Replace with ...
1724         (dfs_lookup_base): ... this.
1725         (lookup_base): Use dfs_walk_all.
1726
1727 2004-10-12  Kazu Hirata  <kazu@cs.umass.edu>
1728
1729         * search.c: Fix comment typos.
1730
1731 2004-10-11  Mark Mitchell  <mark@codesourcery.com>
1732
1733         PR c++/15786
1734         * parser.c (cp_parser_declarator): Add member_p parameter. 
1735         (cp_parser_condition): Adjust calls to cp_parser_declarator.
1736         (cp_parser_explicit_instantiation): Likewise.
1737         (cp_parser_init_declarator): Likewise.
1738         (cp_parser_direct_declarator): Add member_p parameter.  Do not
1739         parse tentatively when parsing the parameters to a member.
1740         (cp_parser_type_id): Adjust calls to cp_parser_declarator.
1741         (cp_parser_parameter_declaration): Likewise.
1742         (cp_parser_member_declaration): Likewise.
1743         (cp_parser_exception_declaration): Likewise.
1744
1745         PR c++/17936
1746         * cp-tree.h (CLASSTYPE_TEMPLATE_SPECIALIZATION): Add a comment.
1747         * pt.c (optimize_specialization_lookup_p): Do not optimize lookups
1748         for members of partial or explicit specializations.
1749
1750         PR c++/17929
1751         * decl2.c (finish_anon_union): Robustify.
1752
1753 2004-10-11  Nathan Sidwell  <nathan@codesourcery.com>
1754
1755         * cp-tree.h (get_dynamic_cast_base_type): Rename to ...
1756         (dcast_base_hint): ... here.
1757         * rtti.c (build_dynamic_cast_1): Use dcast_base_hint.
1758         * search.c (struct dcast_data_s): New.
1759         (dynamic_cast_base_recurse): Remove. Replace with ...
1760         (dfs_dcast_hint_pre, dfs_dcast_base_post): ... these. New.
1761         (get_dynamic_cast_base_type): Rename to ...
1762         (dcast_base_hint): ... here.  Use dfs_walk_once_accessible.
1763         (accessible_r): Remove.
1764         (dfs_accessible_post): New, broken out of accessible_r.
1765         (accessible_p): Use dfs_walk_once_accessible.
1766         (dfs_walk_once_accessible_r): New. From accessible_r.
1767         (dfs_walk_once_accessible): New. From acessible_p.
1768
1769         * cp-tree.h (SAME_BINFO_TYPE_P): New.
1770         * class.c (build_base_path): Use SAME_BINFO_TYPE_P to compare
1771         binfo types.
1772         (convert_to_base_statically, determine_primary_bases,
1773         update_vtable_entry_for_fn, dfs_modify_vtables, build_vtt_inits,
1774         dfs_build_secondary_vptr_vtt_inits, build_ctor_vtbl_group,
1775         accumulate_vtbl_inits, dfs_accumulate_vtbl_inits,
1776         build_vtbl_initializer, add_vcall_offset_vtbl_entries_1): Likewise.
1777         * init.c (expand_member_init): Likewise.
1778         * search.c (lookup_base_r, dynamic_cast_base_recurse,
1779         binfo_via_virtual, copied_binfo, binfo_for_vbase,
1780         original_binfo): Likewise.
1781         * tree.c (copy_binfo): Likewise.
1782
1783 2004-10-11  Kazu Hirata  <kazu@cs.umass.edu>
1784
1785         * semantics.c: Fix comment typos.
1786
1787 2004-10-10  Andrew Pinski  <pinskia@physics.uc.edu>
1788
1789         PR c++/17554
1790         part of c++/17657
1791         middle-end/17703
1792         * semantics.c (maybe_cleanup_point_expr): Call
1793         fold_build_cleanup_point_expr.
1794         (maybe_cleanup_point_expr_void): New function.
1795         (add_decl_expr): Call maybe_cleanup_point_expr_void.
1796         (finish_expr_stmt): Likewise.
1797         (finish_return_stmt): Likewise.
1798         (finish_for_expr): Likewise.
1799         (finish_asm_stmt): Likewise.
1800         * typeck.c (condition_conversion): Call
1801         fold_build_cleanup_point_expr.
1802
1803 2004-10-10  Andrew Pinski  <pinskia@physics.uc.edu>
1804
1805         PR c++/17907
1806         * semantics.c (add_decl_expr): If the decl has a size which
1807         has side effects then the decl expression needs a cleanup point.
1808
1809 2004-10-10  Mark Mitchell  <mark@codesourcery.com>
1810
1811         PR c++/17393
1812         * decl.c (grokdeclarator): Robustify error-recovery on invalid
1813         declarations.
1814
1815 2004-10-10  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1816
1817         Convert diagnostics to use quoting flag q 7/n
1818         * typeck.c (composite_pointer_type_r, composite_pointer_type, 
1819         cxx_sizeof_or_alignof_type, cxx_sizeof_or_alignof_expr, 
1820         string_conv_p, build_class_member_access_expr, 
1821         build_class_member_access_expr, lookup_destructor, 
1822         finish_class_member_access_expr, build_indirect_ref, 
1823         get_member_function_from_ptrfunc, build_function_call, 
1824         convert_arguments, build_binary_op, pointer_diff, build_unary_op, 
1825         check_for_casting_away_constness, build_static_cast, 
1826         build_reinterpret_cast, build_const_cast, build_c_cast, 
1827         build_modify_expr, get_delta_difference, build_ptrmemfunc, 
1828         dubious_conversion_warnings, convert_for_assignment, 
1829         convert_for_initialization, 
1830         maybe_warn_about_returning_address_of_local, check_return_expr): 
1831         Use quoting marks.
1832
1833         * typeck2.c (error_not_base_type, readonly_error, 
1834         abstract_virtuals_error, cxx_incomplete_type_diagnostic, 
1835         store_init_value, digest_init, build_x_arrow, 
1836         build_m_component_ref, require_complete_eh_spec_types): Likewise.
1837
1838         * tree.c (cp_build_qualified_type_real, 
1839         handle_java_interface_attribute, handle_init_priority_attribute):
1840         Likewise.
1841
1842         * semantics.c (finish_asm_stmt, finish_non_static_data_member, 
1843         finish_pseudo_destructor_expr, 
1844         check_template_template_default_arg, begin_class_definition, 
1845         finish_base_specifier, qualified_name_lookup_error, 
1846         finish_id_expression, finish_typeof): Likewise.
1847
1848         * search.c (lookup_base, check_final_overrider,
1849         look_for_overrides_r): Likewise.
1850
1851         * rtti.c (get_tinfo_decl, build_dynamic_cast_1): Likewise.
1852
1853 2004-10-09  Mark Mitchell  <mark@codesourcery.com>
1854
1855         PR c++/17867
1856         * error.c (dump_expr): Correct handling of AGGR_INIT_EXPRs using a
1857         constructor.
1858
1859         PR c++/17670
1860         * init.c (build_new): Correct comments.
1861         * parser.c (cp_parser_new_expression): Use NULL_TREE for nelts in
1862         the non-array case.
1863
1864         PR c++/17821
1865         * parser.c (cp_parser_postfix_dot_deref_expression): If the
1866         pseduo-destructor-name production does not work, fall back to the
1867         ordinary production.
1868
1869         PR c++/17826
1870         * tree.c (cp_tree_equal): Handle a BASELINK.
1871
1872         PR c++/17524
1873         * cp-tree.h (check_var_type): New function.
1874         * decl.c (check_var_type): New function, split out from ...
1875         (grokdeclarator): ... here.
1876         * pt.c (tsubst_decl): Use check_var_type.
1877
1878         PR c++/17685
1879         * decl.c (grokdeclarator): Disallow declarations of operators as
1880         non-functions.
1881         
1882 2004-10-08  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1883
1884         PR c++/17868
1885         * error.c (dump_expr): Add missing case for RDIV_EXPR.
1886
1887 2004-10-08  Kazu Hirata  <kazu@cs.umass.edu>
1888
1889         * pt.c, search.c: Fix comment typos.
1890
1891 2004-10-08  Nathan Sidwell  <nathan@codesourcery.com>
1892
1893         * cp-tree.h (dfs_walk, dfs_walk_real, dfs_unmark, markedp,
1894         unmarkedp): Remove.
1895         (dfs_skip_bases, dfs_walk_all, dfs_walk_once): New.
1896         * class.c (struct find_final_overrider_data): Remove most_derived,
1897         vpath_list and vpath fields.  Add path field.
1898         (dfs_find_final_ocerrider_1): Add DEPTH parameter. Adjust.
1899         (dfs_find_final_overrider): Rename to ...
1900         (dfs_find_final_overrider_pre): ... here. Adjust.
1901         (dfs_find_final_overrider_post): Adjust.
1902         (dfs_find_final_overrider_q): Fold into
1903         dfs_find_final_overrider_pre.
1904         (find_final_overrider): Adjust dfs searching.
1905         (dfs_modify_vtables): Don't mark binfo here.
1906         (modify_all_vtables): Use dfs_walk_once.
1907         (build_vtt_inits): Likwise. Use dfs_walk_all.
1908         (dfs_build_secondary_vptr_vtt_inits): Don't mark binfo here.
1909         Return dfs_skip_bases as appropriate.
1910         (dfs_fixup_binfo_vtbls): Return dfs_skip_bases as appropriate.
1911         * init.c (dfs_initialized_vtbl_ptrs): Return dfs_skip_bases as
1912         appropriate. Don't mark binfo here.
1913         (initialize_vtbl_ptrs): Use dfs_walk_once.
1914         * search.c (struct vbase_info): Remove unused struct.
1915         (access_in_type): Use dfs_walk_once.
1916         (dfs_access_in_type): Don't mark binfo here.
1917         (dfs_accessible_queue_p, dfs_accessible_p) Remove.
1918         Fold into ...
1919         (accessible_r): ... here. New. Specialize dfs_walk_once.
1920         (accessible_p): Use accessible_r.
1921         (lookup_field_queue_p): Remove. Fold into ...
1922         (lookup_field_r): ... here. Adjust.
1923         (lookup_member): Use dfs_walk_all.
1924         (dfs_walk_real, dfs_walk): Replace with ...
1925         (dfs_walk_all, dfs_walk_once): ... these.
1926         (dfs_walk_once_r, dfs_unmark_r): Workers for dfs_walk_once.
1927         (dfs_unmark, unmarkedp, markedp): Remove.
1928         (dfs_get_pure_virtuals): Don't mark binfo here.
1929         (get_pure_virtuals): Use dfs_walk_once.
1930         (dfs_debug_unmarked_p): Remove. Fold into ...
1931         (dfs_debug_mark): ... here.
1932         (note_debug_info_needed): Use dfs_walk_all.
1933
1934 2004-10-07  Andrew Pinski  <pinskia@physics.uc.edu>
1935
1936         * pt.c (tsubst_expr) <case ASM_EXPR>: Look passed the
1937         CLEANUP_POINT_EXPR to get the asm expression.
1938
1939 2004-10-07  Mark Mitchell  <mark@codesourcery.com>
1940
1941         * cp-tree.h (ICS_USER_FLAG): Remove comment about obsolete flag.
1942         (DECL_MEMBER_TEMPLATE_P): New macro.
1943         (is_member_template): Remove.
1944         (class_method_index_for_fn): New function.
1945         * pt.c (build_over_call): Use DECL_MEMBER_TEMPLATE_P.
1946         * class.c (finish_struct_methods): Remove out-of-date comment.
1947         * decl.c (copy_fn_p): Use DECL_MBMER_TEMPLATE_P.
1948         * decl2.c (check_classfn): Use DECL_MEMBER_TEMPLATE_P and
1949         class_method_index_for_fn.
1950         * pt.c (is_member_template): Remove.
1951         (is_member_template_class): Likewise.
1952         (optimize_specialization_lookup_p): New function.
1953         (retrieve_specialization): Optimize lookups for members that are
1954         not member templates.
1955         (register_specialization): Adjust accordingly.
1956         (build_template_decl): Add member_template_p parameter.  Set
1957         DECL_MEMBER_TEMPLATE_P.
1958         (process_partial_specialization): Adjust call to
1959         retrieve_specialization.
1960         (push_template_decl_real): Determine whether the template is a
1961         member template.
1962         (lookup_template_class): Use retrieve_specialization.
1963         (tsubst_decl): Adjust call to retrieve_specialization.
1964         (tsubst_exception_specification): New function.
1965         (tsubst): Use it.
1966         (tsubst_copy): Use DECL_MEMBER_TEMPLATE_P.
1967         (instantiate_template): Adjust call to retrieve_specialization.
1968         (regenerate_decl_from_template): Do not actually generate a new
1969         DECL.
1970         (instantiate_decl): Adjust call to retrieve_specialization.
1971         (class_method_index_for_fn): New method.
1972
1973 2004-10-07  Andrew Pinski  <pinskia@physics.uc.edu>
1974
1975         * parser.c (cp_parser_asm_definition): Look passed the
1976         CLEANUP_POINT_EXPR to get the asm expression.
1977
1978 2004-10-06  Andrew Pinski  <pinskia@physics.uc.edu>
1979
1980         PR c++/17368
1981         * semantics.c (finish_asm_stmt): Asm expressions need cleanup
1982         also.
1983
1984 2004-10-05  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1985
1986         Convert diagnostics to use quoting flag q 6/n
1987         * pt.c (finish_member_template_decl, check_specialization_scope, 
1988         maybe_process_partial_specialization, determine_specialization, 
1989         check_explicit_specialization, maybe_check_template_type, 
1990         process_partial_specialization, check_default_tmpl_args, 
1991         push_template_decl_real, redeclare_class_template, 
1992         convert_nontype_argument, coerce_template_parms, 
1993         lookup_template_class, push_tinst_level, 
1994         instantiate_class_template, tsubst_arg_types, 
1995         tsubst_function_type, tsubst, tsubst_qualified_id, 
1996         tsubst_copy_and_build, check_instantiated_args, 
1997         do_decl_instantiation, do_type_instantiation, 
1998         invalid_nontype_parm_type_p, check_specialization_namespace, 
1999         convert_template_argument, determine_specialization, 
2000         check_template_shadow, tsubst_decl 
2001         instantiate_pending_templates): Use quoting marks.
2002
2003 2004-10-05  Nathan Sidwell  <nathan@codesourcery.com>
2004
2005         PR c++/17829
2006         * parser.c (cp_parser_postfix_expression): Inhibit Koenig when
2007         unqualified lookup finds a member function.
2008
2009 2004-10-04  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2010
2011         Convert diagnostics to use quoting flag q 5/n
2012         * parser.c (cp_parser_name_lookup_error, 
2013         cp_parser_diagnose_invalid_type_name, 
2014         cp_parser_primary_expression, cp_parser_unqualified_id, 
2015         cp_parser_nested_name_specifier_opt, cp_parser_labeled_statement, 
2016         cp_parser_jump_statement, cp_parser_simple_declaration, 
2017         cp_parser_decl_specifier_seq, cp_parser_mem_initializer_id, 
2018         cp_parser_type_parameter, cp_parser_template_id, 
2019         cp_parser_template_name, cp_parser_direct_declarator, 
2020         cp_parser_parameter_declaration_list, cp_parser_class_head, 
2021         cp_parser_base_specifier, cp_parser_lookup_name, 
2022         cp_parser_late_parsing_default_args, 
2023         cp_parser_optional_template_keyword 
2024         cp_parser_elaborated_type_specifier, cp_parser_check_class_key, 
2025         cp_parser_check_access_in_redeclaration): Use quoting marks.
2026
2027         * name-lookup.c (supplement_binding, pushdecl, 
2028         check_for_out_of_scope_variable, validate_nonmember_using_decl, 
2029         do_nonmember_using_decl, lookup_tag, set_decl_namespace, 
2030         push_namespace, do_namespace_alias, do_using_directive, 
2031         ambiguous_decl, lookup_namespace_name, add_function): Likewise.
2032
2033         * method.c (use_thunk): Likewise.
2034
2035         * lex.c (unqualified_name_lookup_error, 
2036         unqualified_fn_lookup_error): Likewise.
2037
2038 2004-10-04  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2039
2040         Convert diagnostics to use quoting flag q 4/n
2041         * except.c (decl_is_java_type, build_throw, 
2042         is_admissible_throw_operand, check_handlers_1, check_handlers): 
2043         Use quoting formats.
2044         * friend.c (add_friend, make_friend_class, do_friend): Likewise.
2045         * init.c (sort_mem_initializers, emit_mem_initializers, 
2046         member_init_ok_or_else, expand_member_init, is_aggr_type, 
2047         build_offset_ref, build_java_class_ref): Likewise.
2048
2049 2004-10-03  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2050
2051         Convert diagnostics to use quoting flag q 3/n
2052         * decl.c (pop_label, duplicate_decls, redeclaration_error_message,
2053         redeclaration_error_message, lookup_label, check_goto,
2054         make_typename_type, make_unbound_class_template,
2055         fixup_anonymous_aggr, check_tag_decl, start_decl, start_decl_1, 
2056         grok_reference_init, layout_var_decl, maybe_commonize_var, 
2057         check_for_uninitialized_const_var, reshape_init_array, 
2058         reshape_init, check_initializer, cp_finish_decl,
2059         member_function_or_else, bad_specifiers, grokfndecl, grokvardecl, 
2060         check_static_variable_definition, compute_array_index_type, 
2061         create_array_type_for_decl, check_special_function_return_type, 
2062         grokdeclarator, check_default_argument, grokparms, 
2063         grok_ctor_properties, grok_op_properties, 
2064         check_elaborated_type_specifier, xref_tag, finish_enum, 
2065         build_enumerator, check_function_type, start_preparsed_function, 
2066         store_parm_decls): Use quoting formats.
2067         * decl2.c (grok_array_decl, delete_sanity, check_member_template, 
2068         check_java_method, check_classfn, finish_static_data_member_decl, 
2069         grokfield, grokbitfield, grok_function_init,
2070         build_anon_union_vars, coerce_new_type, coerce_delete_type,
2071         check_default_args): Likewise.
2072         * parser.c (cp_parser_decl_specifier_seq): Likewise.
2073
2074 2004-10-03  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2075
2076         Convert diagnostics to use quoting flag q 2/n
2077         * class.c (build_base_path, add_method, alter_access,
2078         handle_using_decl, check_bases,
2079         maybe_warn_about_overly_private_class, find_final_overrider,
2080         warn_hidden, finish_struct_anon, add_implicitly_declared_members,
2081         check_bitfield_decl, check_field_decls, layout_empty_base,
2082         build_base_field, check_methods, layout_virtual_bases,
2083         warn_about_ambiguous_bases, layout_class_type, finish_struct_1,
2084         resolve_address_of_overloaded_function, instantiate_type,
2085         note_name_declared_in_class): Use format flag "q" for quoting.
2086
2087 2004-10-03  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2088
2089         Convert diagnostics to use quoting flag q 1/n
2090         * error.c (locate_error): Ignore quoting flag q.
2091         * call.c (build_user_type_conversion_1, build_operator_new_call,
2092         build_object_call, op_error, build_conditional_expr,
2093         build_new_op, build_op_delete_call, enforce_access,
2094         convert_like_real, convert_arg_to_ellipsis, build_x_va_arg,
2095         convert_default_arg, build_over_call, build_new_method_call,
2096         joust, perform_implicit_conversion, initialize_reference): Use the
2097         quoting flag q.
2098
2099 2004-10-03  Andrew Pinski  <pinskia@physics.uc.edu>
2100
2101         PR c++/17797
2102         * typeck.c (build_reinterpret_cast): Return if the inner type
2103         is error_mark_node.
2104
2105 2004-10-01  Jan Hubicka  <jh@suse.cz>
2106
2107         * semantics.c (expand_body): Update call of tree_rest_of_compilation.
2108
2109 2004-09-30  Nathan Sidwell  <nathan@codesourcery.com>
2110
2111         * cp-tree.h (struct lang_decl): Shrink by reordering fields and
2112         turning operator_code and fixed_offset into bitfields.
2113
2114 2004-09-29  Joseph S. Myers  <jsm@polyomino.org.uk>
2115
2116         * decl.c (duplicate_decls): Merge TREE_DEPRECATED.
2117
2118 2004-09-29  Jason Merrill  <jason@redhat.com>
2119
2120         PR tree-optimization/17697
2121         * decl.c (duplicate_decls): Copy TREE_NOTHROW from newdecl to olddecl.
2122
2123 2004-09-28  Jason Merrill  <jason@redhat.com>
2124
2125         PR middle-end/17525
2126         * class.c (build_base_field): Set TYPE_MODE.
2127
2128 2004-09-28  Roger Sayle  <roger@eyesopen.com>
2129
2130         PR driver/17537
2131         * g++spec.c (lang_specific_driver): Unrecognized libraries, other
2132         than -lc and -lm, may require linking against libstc++.
2133
2134 2004-09-28  Kazu Hirata  <kazu@cs.umass.edu>
2135
2136         * tree.c: Fix a comment typo.
2137
2138 2004-09-28  Nathan Sidwell  <nathan@codesourcery.com>
2139
2140         * class.c (VTT_TOP_LEVEL_P, VTT_MARKED_BINFO_P): Remove.
2141         (struct secondary_vptr_vtt_init_data_s): New.
2142         (build_vtt_inits): Adjust dfs_walkers.
2143         (dfs_build_secondary_vptr_vtt_inits): Caller data is a
2144         secondary_vptr_vtt_init_data_s structure. Adjust.
2145         (dfs_ctor_vtable_bases_queue_p): Remove.
2146         (dfs_fixup_binfo_vtbls): No need to clear BINFO_MARKED. Simplify.
2147
2148         * pt.c (struct get_template_base_data_s): Remove.
2149         (get_template_base_r): Fold into get_template_base.
2150         (get_template_base): Walk base binfos directly in inheritance
2151         graph order.
2152
2153 2004-09-27  Mark Mitchell  <mark@codesourcery.com>
2154
2155         PR c++/17642
2156         * cp-tree.h (fold_if_not_in_template): New function.
2157         * call.c (build_conditional_expr): Use fold_if_not_in_template.
2158         (build_cxx_call): Likewise.
2159         * cvt.c (convert_to_complex): Likewise.
2160         (ocp_convert): Likewise.
2161         (convert): Likewise.
2162         (convert_force): Likewise.
2163         * decl.c (compute_array_index_type): Clear
2164         processing_template_decl while folding array bounds.
2165         * pt.c (convert_nontype_argument): Clear
2166         processing_template_decl while processing non-type argument
2167         initialization.
2168         * tree.c (fold_if_not_in_template): New function.
2169         * typeck.c (build_class_member_access_expr): Use
2170         fold_if_not_in_template.
2171         (build_array_ref): Likewise.
2172         (build_binary_op): Likewise.  Do not try to optimize computations
2173         when processing templates.
2174         (cp_pointer_int_sum): Use fold_if_not_in_template.
2175         (pointer_diff): Likewise.
2176         (build_unary_op): Likewise.
2177         (build_reinterpret_cast): Likewise.
2178         (get_delta_difference): Likewise.
2179         (expand_ptrmemfunc_cst): Likewise.
2180         (dubious_conversion_warnings): Likewise.
2181
2182 2004-09-27  Matt Austern  <austern@apple.com>
2183
2184         * cp/parser.c (struct cp_token): New one-bit field , implicit_extern_c
2185         (cp_lexer_get_preprocessor_token): Set implicit_extern_c for
2186         tokens that come from headers that are implicitly extern "C".
2187         (struct cp_parser): new one-bit field, implicit_extern_c.
2188         (cp_parser_new): Set parser's implicit_extern_c to false.
2189         (cp_parser_translation_unit): Pop lang context if we were in a
2190         header that was implicitly extern "C".
2191         (cp_parser_declaration_seq_opt): Push/pop lang context as
2192         required by the token's and parser's implicit_extern_c.
2193         
2194 2004-09-27  Mark Mitchell  <mark@codesourcery.com>
2195
2196         PR c++/17585
2197         * cp-tree.h (shared_member_p): Declare.
2198         * search.c (shared_member_p): Give it external linkage.
2199         * semantics.c (finish_qualified_id_expr): Use it.
2200         (finish_id_expression): Likewise.
2201
2202         PR c++/17585
2203         * semantics.c (finish_id_expression): Do not add "this->" to
2204         static member functions.
2205
2206 2004-09-27  Nathan Sidwell  <nathan@codesourcery.com>
2207
2208         PR c++/17681
2209         * error.c (dump_type): Change TREE_VEC case into TREE_BINFO.
2210
2211         * class.c (struct count_depth_data): Remove.
2212         (dfs_depth_post, dfs_depth_q): Remove.
2213         (find_final_overrider): Use number of vbase classes as depth
2214         bound.
2215         
2216         * cp-tree.h (types_overlap_p): Remove.
2217         * search.c (struct overlap_info): Remove.
2218         (dfs_check_overlap, dfs_no_overlap_yet, types_overlap_p): Remove.
2219         
2220         * pt.c (GTB_VIA_VIRTUAL, GTB_IGNORE_TYPE): Remove.
2221         (get_template_base_recursive): Remove. Replace with ...
2222         (get_template_base_r): ... this.
2223         (struct get_template_base_data_s): New.
2224         (get_template_base): Use get_template_base_r via dfs_walk.  Always
2225         return NULL on failure.
2226         (unify): Remove error_mark_node check from get_template_base result.
2227
2228 2004-09-24  Paolo Bonzini  <bonzini@gnu.org>
2229
2230         * parser.c (cp_parser_expression_stack): Clarify why it is
2231         an array of NUM_PREC_VALUES elements.
2232         (cp_parser_binary_expression): Clarify why we do not need to
2233         handle stack overflow.
2234
2235 2004-09-24  Nathan Sidwell  <nathan@codesourcery.com>
2236
2237         PR c++/16889
2238         * search.c (lookup_field_queue_p): Correct check for hidden base.
2239
2240         * search.c (bfs_walk): Remove.
2241         (lookup_member): Use dfs_walk_real.
2242         (dfs_walk_real): Move and adjust documentation from bfs_walk.
2243
2244 2004-09-23  Zack Weinberg  <zack@codesourcery.com>
2245
2246         * decl.c (grokfndecl): If ::main is found not to return int,
2247         correct it after issuing a diagnostic.
2248         (grokdeclarator): If the incoming type was error_mark_node, do
2249         not complain about declaring something with no type.
2250         (start_function): Change check for ::main not returning int to
2251         an assertion, as grokfndecl now catches this when the user did it.
2252         * init.c (perform_member_init, sort_mem_initializers)
2253         (emit_mem_initializers): Make most diagnostics be issued on
2254         the line of current_function_decl, not whatever the current
2255         input line is.
2256         * parser.c (cp_lexer_peek_token_emit_debug_info): Surround
2257         definition and declaration with #ifdef ENABLE_CHECKING.
2258         Avoid unnecessary use of fprintf.
2259         (cp_lexer_print_token, cp_lexer_debug_stream): Adjust stub
2260         definitions to avoid warnings.
2261         (cp_lexer_new_main): Add assertion that first token is not a
2262         padding token.
2263         (cp_lexer_new_from_token_array): Fold into ...
2264         (cp_lexer_new_from_tokens): ... here.  Add assertion that
2265         first token is not a padding token.
2266         (cp_lexer_set_source_position_from_token): Move nearer to callers.
2267         Remove unused lexer argument.
2268         (cp_lexer_peek_token): Just print debugging report (if enabled)
2269         and return lexer->next_token.
2270         (cp_lexer_skip_purged_tokens): Delete.
2271         (cp_lexer_next_token_is, cp_lexer_next_token_is_not): Make
2272         inline, simplify bodies.
2273         (cp_lexer_peek_nth_token): Add debugging report a la
2274         cp_lexer_peek_token.
2275         (cp_lexer_consume_token): Correct commentary.  Advance over
2276         purged tokens here.  Set current source position here, from
2277         token to be returned.  Avoid unnecessary use of fprintf.
2278         (cp_lexer_purge_token): Advance next_token pointer over this and
2279         subsequent purged tokens.
2280         (cp_parser_error): Adjust source position to that of the
2281         peeked token.
2282         (cp_parser_push_lexer_for_tokens, cp_parser_pop_lexer): New functions.
2283         (cp_parser_string_literal): Remove some excessive cleverness.
2284         (cp_parser_enum_specifier): Call start_enum before consuming
2285         the opening brace.
2286         (cp_parser_member_declaration): Make the "extra semicolon"
2287         diagnostic consistently-worded with the other place this is
2288         diagnosed.  Explicitly set the diagnostic location to the
2289         location of the offending semicolon.
2290         (cp_parser_enclosed_template_argument_list): Use %</%> quoting
2291         in diagnostics.  Do not use cp_parser_require.  Set location
2292         of diagnostics about improper use of '>>' to location of
2293         offending token.
2294         (cp_parser_late_parsing_for_member):
2295         Use cp_parser_push_lexer_for_tokens and cp_parser_pop_lexer.
2296         (cp_parser_late_parsing_default_args): Likewise.  Manually
2297         move some logic outside the loop.
2298
2299 2004-09-23  Andrew Pinski  <pinskia@physics.uc.edu>
2300
2301         PR c++/17618
2302         * cvt.c (cp_convert_to_pointer): Return early when the type is
2303         an error_mark_node.
2304
2305 2004-09-21 Fariborz Jahanian <fjahanian@apple.com>
2306
2307         PR c++/13989
2308         PR c++/9844
2309         * decl.c (grokfndecl): Add new argument "attrlist", use it
2310         to call cplus_decl_attributes.
2311         (start_function): Remove call to cplus_decl_attributes.
2312         * cvt.c (ocp_convert): Add support to use type conversion
2313         function to vector type.
2314         * parser.c (cp_parser_conversion_type_id): Add attributes, if any,
2315         to the parsed type.
2316
2317 2004-09-23  Paolo Bonzini  <bonzini@gnu.org>
2318
2319         PR c++/17596
2320
2321         * parser.c (cp_parser_token_tree_map_node,
2322         cp_parser_pm_expression, cp_parser_additive_expression,
2323         cp_parser_multiplicative_expression, cp_parser_shift_expression,
2324         cp_parser_relational_expression, cp_parser_equality_expression,
2325         cp_parser_and_expression, cp_parser_exclusive_or_expression,
2326         cp_parser_inclusive_or_expression,
2327         cp_parser_logical_and_expression,
2328         cp_parser_logical_or_expression): Removed.
2329         (enum cp_parser_prec, struct cp_parser_token_tree_map_node,
2330         binops, binops_by_token): New.
2331         (cp_parser_assignment_expression): Use cp_parser_binary_expression.
2332         (cp_parser_new): Initialize binops_by_token.
2333         (cp_parser_binary_expression): Rewritten.
2334         (N_CP_TTYPES): New.
2335
2336 2004-09-23  Kazu Hirata  <kazu@cs.umass.edu>
2337
2338         * parser.c: Fix a comment typo.
2339
2340 2004-09-23  Nathan Sidwell  <nathan@codesourcery.com>
2341
2342         PR c++/17620
2343         * decl.c (xref_basetypes): Look through typedefs before checking
2344         for duplicate base.
2345
2346 2004-09-22  Nathan Sidwell  <nathan@codesourcery.com>
2347
2348         * cp-tree.h (unemitted_tinfo_decls): Make a VEC(tree).
2349         * decl2.c (cp_finish_file): Adjust tinfo decl emission loop.
2350         * rtti.c (unemitted_tinfo_decls): Make a VEC(tree).
2351         (init_rtti_processing): Initialize it to something realistic.
2352         (get_tinfo_decl): Adjust pushing the new decl.
2353
2354         * cp-tree.h (struct lang_type_class): Remove marked flags, add
2355         diamond_shaped and repeated_base flags.  Reorder to keep 8-bit blocks.
2356         (TYPE_MARKED_P): New.
2357         (CLASSTYPE_DIAMOND_SHAPED_P, CLASSTYPE_REPEATED_BASE_P): New.
2358         (CLASSTYPE_MARKED_N, SET_CLASSTYPE_MARKED_N,
2359         CLEAR_CLASSTYPE_MARKED_N): Remove.
2360         (CLASSTYPE_MARKED_*, SET_CLASSTYPE_MARKED_*,
2361         CLEAR_CLASSTYPE_MARKED_*): Remove.
2362         * decl.c (xref_basetypes): Use TYPE_MARKED_P. Determine diamond
2363         shaped and repeated base properties.
2364         * lex.c (cxx_make_type): Don't clear TYPE_ALIAS_SET.
2365         * rtti.c (dfs_class_hint_mark, dfs_class_hint_unmark,
2366         class_hint_flags): Remove.
2367         (get_pseudo_ti_init): Use CLASSTYPE_REPEATED_BASE_P and
2368         CLASSTYPE_DIAMOND_SHAPED_P.
2369
2370 2004-09-21  Ziemowit Laski  <zlaski@apple.com>
2371
2372         * cp-lang.c (LANG_HOOKS_FOLD_OBJ_TYPE_REF): Moved here from
2373         cp-objcp-common.h.
2374         (objcp_tsubst_copy_and_build): Reformat function signature.
2375         * cp-objcp-common.h (objcp_tsubst_copy_and_build): Likewise.
2376         (LANG_HOOKS_FOLD_OBJ_TYPE_REF): Moved to cp-lang.c.
2377
2378 2004-09-21  Zack Weinberg  <zack@codesourcery.com>
2379
2380         * parser.c (cp_lexer_peek_token, cp_lexer_consume_token):
2381         Don't handle CPP_PRAGMA tokens specially.
2382         (cp_lexer_handle_pragma): Use cp_lexer_consume_token.  Don't
2383         purge the token; do clear token->value after processing.  Add
2384         assertion at beginning that token->value is nonzero.
2385         (cp_parser_statement, cp_parser_declaration_seq_opt): Handle
2386         CPP_PRAGMA as a full statement or declaration in its own right.
2387
2388 2004-09-21  Matt Austern  <austern@apple.com>
2389
2390         PR c++/15049
2391         * decl.c (grokvardecl): Accept declarations of global variables
2392         using anonymous types.
2393
2394 2004-09-21  Roger Sayle  <roger@eyesopen.com>
2395
2396         PR c++/7503
2397         * tree.c (lvalue_p_1):  Disallow MIN_EXPR and MAX_EXPR as lvalues
2398         if either operand has side-effects.
2399         * typeck.c (rationalize_conditional_expr): Assert that neither
2400         operand of MIN_EXPR or MAX_EXPR has side-effects.
2401         (build_modify_expr):  Add support for MIN_EXPR and MAX_EXPR.
2402         Check that the "lhs" is a valid lvalue, i.e. that neither operand
2403         of a MIN_EXPR or MAX_EXPR has a side-effect.
2404
2405 2004-09-21  Nathan Sidwell  <nathan@codesourcery.com>
2406
2407         * cp-tree.h (struct lang_type_header): Remove
2408         uses_multiple_inheritance field.
2409         (TYPE_USES_MULTIPLE_INHERITANCE): Remove.
2410         (TYPE_BASE_CONVS_MAY_REQUIRE_CODE_P): Remove.
2411         (TYPE_USES_VIRTUAL_BASECLASSES): Remove.
2412         (DECL_NEEDS_VTT_PARM_P): Use CLASSTYPE_VBASECLASSES.
2413         (TYPE_CONTAINS_VPTR_P): Likewise.
2414         * call.c (add_template_candidate_real): Use
2415         CLASSTYPE_VBASECLASSES.
2416         (build_special_member_call): Likewise.
2417         * class.c (finish_struct_bits): Remove
2418         TYPE_BASE_CONVS_MAY_REQUIRE_CODE_P & TYPE_USES_VIRTUAL_BASECLASSES
2419         bookkeeping.
2420         (check_bases_and_members): Use TYPE_CONTAINS_VPTR_P.
2421         (create_vtable_ptr): Remove TYPE_BASE_CONVS_MAY_REQUIRE_CODE_P
2422         bookkeeping.
2423         (build_vtt_inits): Use CLASSTYPE_VBASECLASSES.
2424         (accumulate_vtbl_inits, build_vbase_offset_vtbl_entries):
2425         Likewise.
2426         * decl.c (xref_basetypes): Remove TYPE_USES_MULTIPLE_INHERITANCE,
2427         TYPE_BASE_CONVS_MAY_REQUIRE_CODE_P, TYPE_USES_VIRTUAL_BASECLASSES
2428         bookkeeping.
2429         (cxx_maybe_build_cleanup): Use CLASSTYPE_VBASECLASSES.
2430         * decl2.c (maybe_retrofit_in_chrg): Likewise.
2431         * init.c (expand_member, push_base_cleanups): Likewise.
2432         * pt.c (instantiate_class_template): Remove
2433         TYPE_USES_MULTIPLE_INHERITANCE,
2434         TYPE_BASE_CONVS_MAY_REQUIRE_CODE_P, TYPE_USES_VIRTUAL_BASECLASSES
2435         bookkeeping.
2436         * ptree.c (cxx_print_type): Remove TYPE_USES_MULTIPLE_INHERITANCE
2437         check.
2438         * typeck2.c (process_init_constructor): Replace some sorrys with
2439         asserts.
2440
2441 2004-09-21  Andreas Tobler  <a.tobler@schweiz.ch>
2442
2443         * decl.c (reshape_init_array): Initialize max_index_cst to fix
2444         bootstrap failure.
2445
2446 2004-09-20  Mark Mitchell  <mark@codesourcery.com>
2447
2448         PR c++/17530
2449         * pt.c (tsubst): Fix parentheses to accomodate emacs.
2450         (tsubst_baselink): If we get a single function, mark it as used.
2451
2452 2004-09-20  Matt Austern <austern@apple.com>
2453             Zack Weinberg  <zack@codesourcery.com>
2454
2455         * decl.c (make_rtl_for_nonlocal_decl, start_preparsed_function):
2456         Apply lbasename to input_filename before passing to get_fileinfo.
2457         * semantics.c (begin_class_definition): Likewise.
2458         * lex.c (handle_pragma_interface): Apply get_fileinfo to the
2459         correct filename.  Rename variables to be less confusing.
2460         (handle_pragma_implementation): Likewise.  Disable "appears
2461         after file is included" diagnostic.
2462
2463         * parser.c (struct cp_token): Add in_system_header fiag.
2464         (CP_TOKEN_BLOCK_NUM_TOKENS, struct cp_token_block)
2465         (CP_TOKEN_BUFFER_SIZE, cp_token_cache_push_token)
2466         (CPP_NONE, cp_lexer_read_token): Delete.
2467         (struct cp_lexer): Remove first_token, string_tokens,
2468         main_lexer_p fields.  Clarify comments.
2469         (struct cp_token_cache): Now just a pair of pointers.
2470         (CP_LEXER_BUFFER_SIZE): New #define.
2471         (CPP_PURGED): New fake token type.
2472         (cp_lexer_new_from_token_array, cp_lexer_destroy)
2473         (cp_lexer_peek_token_emit_debug_info, cp_lexer_skip_purged_tokens)
2474         (cp_lexer_handle_pragma, cp_token_cache_new, cp_parser_string_literal):
2475         New functions.
2476         (cp_lexer_new_from_tokens): Now a simple wrapper around
2477         cp_lexer_new_from_token_array.
2478         (cp_lexer_set_source_position_from_token): Also update
2479         in_system_header.
2480         (cp_lexer_next_token, cp_lexer_prev_token, cp_lexer_advance_token):
2481         Don't wrap round.
2482         (cp_lexer_token_difference): Dont handle wrapping round.
2483         (cp_lexer_new_main): Enable pragma deferral and raw strings,
2484         read the entire translation unit through c_lex_with_flags into
2485         this lexer's buffer, then turn raw strings back off again.
2486         (cp_lexer_grow_buffer): Adjust for buffer no longer being circular.
2487         (cp_lexer_get_preprocessor_token): No need to handle not being
2488         the main lexer.  Set token->in_system_header too.
2489         (cp_lexer_peek_token): Skip purged tokens.  Feed pragma tokens
2490         to cp_lexer_handle_pragma.  No need to call cp_lexer_read_token.
2491         (cp_lexer_peek_nth_token): Likewise.
2492         (cp_lexer_purge_token): Mark the token PURGED, don't shift all
2493         the other tokens down.
2494         (cp_lexer_purge_tokens_after): Likewise.
2495         (cp_lexer_save_tokens, cp_lexer_rollback_tokens): Don't worry
2496         about there being no tokens.
2497         (cp_lexer_print_token): Revise to give useful information on
2498         all tokens.
2499         (struct cp_parser): Add field translate_strings_p.
2500         (cp_parser_new): Initialize it.
2501         (cp_parser_translation_unit): Destroy the lexer when done.
2502         (cp_parser_parameter_declaration): Restructure saving of
2503         default arguments.
2504         (cp_parser_save_member_function_body): Likewise.
2505         (cp_parser_check_for_invalid_template_id)
2506         (cp_parser_nested_name_specifier_opt, cp_parser_template_id):
2507         Adjust calls to cp_lexer_advance_token.
2508         (cp_parser_skip_to_closing_parenthesis, cp_parser_declaration):
2509         No need to fiddle c_lex_string_translate.
2510         (cp_parser_primary_expression, cp_parser_linkage_specification)
2511         (cp_parser_asm_definition, cp_parser_asm_specification_opt)
2512         (cp_parser_asm_operand_list, cp_parser_asm_clobber_list)
2513         Use cp_parser_string_literal.
2514         (cp_parser_attribute_list): Save and restore
2515         parser->translate_strings_p, not c_lex_string_translate.
2516         (cp_parser_cache_group): Delete.
2517         (cp_parser_cache_group_1): Rename cp_parser_cache_group.  Do
2518         not take a cache argument.
2519
2520 2004-09-20  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
2521
2522         PR c++/14179
2523         * decl.c (reshape_init): Extract array handling into...
2524         (reshape_init_array): New function. Use integers instead of trees
2525         for indices. Handle out-of-range designated initializers.
2526
2527 2004-09-20  Steven Bosscher  <stevenb@suse.de>
2528
2529         * lex.c (cxx_init): Don't set the ridpointer for RID_NULL
2530         to null_node.
2531
2532 2004-09-19  Mark Mitchell  <mark@codesourcery.com>
2533
2534         * decl2.c (determine_visibility): Allow class visibility
2535         directives to override targetm.cxx.export_class_data.
2536
2537 2004-09-18  Kazu Hirata  <kazu@cs.umass.edu>
2538
2539         * call.c, semantics.c: Follow spelling conventions.
2540         * class.c: Fix a comment typo.
2541
2542 2004-09-16  Geoffrey Keating  <geoffk@apple.com>
2543
2544         PR pch/13361
2545         * cp/lex.c (handle_pragma_interface): Duplicate string from tree.
2546         (handle_pragma_implementation): Likewise.
2547
2548 2004-09-17  Jeffrey D. Oldham  <oldham@codesourcery.com>
2549             Zack Weinberg  <zack@codesourcery.com>
2550
2551         * cp-tree.def: Use tree_code_class enumeration constants
2552         instead of code letters.
2553         * call.c, class.c, cp-gimplify.c, cp-lang.c, cxx-pretty-print.c
2554         * mangle.c, pt.c, semantics.c, tree.c, typeck.c:
2555         Update for new tree-class enumeration constants.
2556
2557 2004-09-16  Mark Mitchell  <mark@codesourcery.com>
2558
2559         PR c++/16002
2560         * parser.c (cp_parser_simple_declaration): Commit to tentative
2561         parses after seeing a decl-specifier.
2562         (cp_parser_simple_declaration): Eliminate spurious message.
2563         (cp_parser_init_declarator): Adjust error message.
2564
2565         PR c++/16029
2566         * lex.c (unqualified_name_lookup_error): Mark the dummy
2567         declaration as used.
2568
2569         PR c++/17501
2570         * parser.c (cp_parser_nested_name_specifier): Do not resolve
2571         typename types if the user explicitly said "typename".
2572
2573 2004-09-16  Andrew MacLeod  <amacleod@redhat.com>
2574
2575         * error.c (dump_decl): Make sure there is lang_specific info before
2576         checking for DTOR and CTOR decls.
2577
2578 2004-09-16  Nathan Sidwell  <nathan@codesourcery.com>
2579
2580         * class.c (copy_virtuals): Remove.
2581         (build_primary_vtable): Use copy_list directly.
2582         (build_secondary_vtable): Likewise.
2583         (update_vtable_entry_for_fn): Clear BV_CALL_INDEX here.
2584         (create_vtable_ptr): Likewise.
2585
2586 2004-09-16  Kazu Hirata  <kazu@cs.umass.edu>
2587
2588         * search.c: Follow spelling conventions.
2589
2590 2004-09-16  Nathan Sidwell  <nathan@codesourcery.com>
2591
2592         * cp-tree.h (struct lang_type_class): Make pure_virtuals a
2593         VEC(tree).
2594         (CLASSTYPE_INLINE_FRIENDS, CLASSTYPE_PURE_VIRTUALS): Update
2595         comments.
2596         * call.c (build_new_method_call): Don't confirm a pure virtual is
2597         in CLASSTYPE_PURE_VIRTUALS.  Reorder checks. Make it a warning.
2598         * class.c (check_methods): CLASSTYPE_INLINE_FRIENDS is a VEC(tree).
2599         (fixup_inline_methods, finish_struct): Likewise.
2600         * decl.c (finish_method): Likewise.
2601         * search.c (dfs_get_pure_virtuals, get_pure_virtuals):
2602         CLASSTYPE_PURE_VIRTUALS is a VEC(tree).
2603         * typeck2.c (abstract_virtuals_error): Likewise. Truncate the
2604         vector to avoid repeating the list in error messages.
2605
2606 2004-09-15  Mark Mitchell  <mark@codesourcery.com>
2607
2608         * cp-objcp-common.h (LANG_HOOKS_COMDAT_GROUP): Define.
2609         * cp-tree.h (cxx_comdat_group): Declare.
2610         * decl.c (cxx_comdat_group): New function.
2611
2612 2004-09-15  Nathan Sidwell  <nathan@codesourcery.com>
2613
2614         * search.c (get_pure_virtuals): Remove unused variables.
2615
2616         * cp-tree.h (struct lang_decl_flags): Remove
2617         needs_final_overrider.
2618         (DECL_NEEDS_FINAL_OVERRIDER_P): Remove.
2619         * decl.c (duplicate_decls): Do not copy DECL_NEEDS_FINAL_OVERRIDER_P.
2620         * class.c (finish_struct_bits): Correct comment about
2621         CLASSTYPE_PURE_VIRTUALS.
2622         * search.c (get_pure_virtuals): Remove useless loop.
2623
2624 2004-09-14  Mark Mitchell  <mark@codesourcery.com>
2625
2626         PR c++/17324
2627         * mangle.c (partially_mangled_name): New variable.
2628         (partially_mangled_name_len): Likewise.
2629         (save_partially_mangled_name): New function.
2630         (restore_partially_mangled_name): Likewise.
2631         (write_encoding): Save and restore partially mangled names around
2632         calls to get_mostly_instantiated_function_type.
2633         (write_unqualified_name): Likewise.
2634
2635 2004-09-14  Nathan Sidwell  <nathan@codesourcery.com>
2636
2637         * pt.c (unify): Replace gcc_unreachable with gcc_assert.
2638
2639 2004-09-13  Mark Mitchell  <mark@codesourcery.com>
2640
2641         PR c++/16162
2642         * parser.c (cp_parser_id_expression): Correct value for
2643         is_declarator.
2644         (cp_parser_nested_name_specifier_opt): Look through typenames as
2645         necessary.
2646         (cp_parser_template_name): Honor check_dependency_p.
2647
2648         PR c++/16716
2649         * parser.c (cp_parser_parse_and_diagnose_invalid_type_name):
2650         Robustify.
2651
2652         PR c++/17327
2653         * pt.c (unify): Add ENUMERAL_TYPE case.  Replace sorry with
2654         gcc_unreacable.
2655
2656 2004-09-12  Richard Henderson  <rth@redhat.com>
2657
2658         PR c++/16254
2659         * semantics.c (maybe_cleanup_point_expr): Don't call fold.
2660         * typeck.c (condition_conversion): Likewise.
2661
2662 2004-09-11  Richard Henderson  <rth@redhat.com>
2663
2664         PR c++/17404
2665         * pt.c (cur_stmt_expr): Move from tsubst_expr.
2666         (tsubst_expr) <case STMT_EXPR>: Move ...
2667         (tsubst_copy_and_build): ... here.
2668
2669 2004-09-10  Zack Weinberg  <zack@codesourcery.com>
2670
2671         * cp-tree.h (interface_only, interface_unknown): Delete declarations;
2672         comment explaining them moved to c-common.h.
2673         * lex.c (interface_only, interface_unknown, extract_interface_info):
2674         Delete definitions.
2675         (cxx_finish): Don't reset interface_unknown.
2676         (handle_pragma_interface): Don't set interface_only and
2677         interface_unknown; just the like-named fields in finfo.
2678         (handle_pragma_implementation): Adjust comment.
2679         * decl2.c (cp_finish_file): Don't reset interface_only and
2680         interface_unknown.
2681         * method.c (synthesize_method): Don't reset interface_unknown or
2682         call extract_interface_info.
2683         * pt.c (pop_tinst_level): Don't call extract_interface_info.
2684         * decl.c (start_cleanup_fn): Don't save or restore interface_only
2685         and interface_unknown.
2686         (make_rtl_for_nonlocal_decl): Call get_fileinfo on input_filename
2687         and use the result instead of the interface_only/interface_unknown
2688         globals.
2689         (start_preparsed_function): Likewise.
2690         * lex.c (cxx_make_type): Likewise.
2691         * semantics.c (begin_class_definition): Likewise.
2692         (expand_body): Don't call extract_interface_info.
2693
2694 2004-09-10  Ziemowit Laski  <zlaski@apple.com>
2695
2696         * decl.c (objc_mark_locals_volatile): Make description of
2697         routine more descriptive; only mark VAR_DECLs at each
2698         binding level.
2699
2700 2004-09-10  Richard Henderson  <rth@redhat.com>
2701
2702         PR c++/17386
2703         * call.c (build_vfield_ref): Move...
2704         * class.c (build_vfield_ref): ... here.  Convert datum to the
2705         primary base containing the vptr.
2706         (make_new_vtable): Simplify build_primary_vtable arguments.
2707         (finish_struct_1): Do not duplicate TYPE_VFIELD.
2708         * typeck.c (build_class_member_access_expr): Don't warn for
2709         null object access to base fields.
2710
2711 2004-09-10  Ziemowit Laski  <zlaski@apple.com>
2712
2713         * decl.c (objc_get_current_scope, objc_mark_locals_volatile):
2714         New functions, to be called from ObjC++.
2715
2716 2004-09-10  Kazu Hirata  <kazu@cs.umass.edu>
2717
2718         * class.c, cp-tree.h, decl.c, decl2.c, mangle.c,
2719         name-lookup.h, parser.c, search.c, semantics.c, typeck2.c: Fix
2720         comment typos.
2721
2722 2004-09-09  Ziemowit Laski  <zlaski@apple.com>
2723
2724         * typeck.c (build_c_cast): Preserve the cast if casting
2725         to and from an Objective-C type.
2726
2727 2004-09-09  Ziemowit Laski  <zlaski@apple.com>
2728
2729         * Make-lang.in (cp/typeck.o): Depend on c-common.h.
2730         * typeck.c: Include c-common.h.
2731         (comptypes): For RECORD_TYPEs, call objc_comptypes() and
2732         return the result if nonnegative.
2733
2734 2004-09-09  Zack Weinberg  <zack@codesourcery.com>
2735
2736         * decl2.c (import_export_class)
2737         * lex.c (handle_pragma_interface):
2738         Test MULTIPLE_SYMBOL_SPACES with if, not #ifdef.
2739
2740 2004-09-08  Ziemowit Laski  <zlaski@apple.com>
2741
2742         * Make-lang.in (cp/semantics.o): Depend on c-common.h.
2743         * semantics.c: Include c-common.h.
2744         (finish_compound_stmt): Call objc_clear_super_receiver().
2745
2746 2004-09-08  Ziemowit Laski  <zlaski@apple.com>
2747
2748         * cp-tree.h (do_poplevel): New prototype.
2749         * semantics.c (do_poplevel): Make externally visible.
2750
2751 2004-09-08  Nathan Sidwell  <nathan@codesourcery.com>
2752
2753         * cp-tree.h (tree_pair_s): Define a GC'd vector.
2754         * name-lookup.h (cxx_saved_binding, cp_class_binding): Likewise.
2755         * semantics.c (deferred_access): Likewise.
2756
2757 2004-09-06  Daniel Jacobowitz  <dan@debian.org>
2758
2759         * semantics.c (expand_body): Assert that we are not nested.
2760
2761 2004-09-06  Zack Weinberg  <zack@codesourcery.com>
2762
2763         * decl.c (build_enumerator): Use add_double and int_fits_type_p
2764         instead of cp_build_binary_op, to avoid creating short-lived trees.
2765         * parser.c (cp_parse_type_specifier <RID_ENUM>): Use two-token
2766         lookahead instead of backtracking.  Move some code to avoid a
2767         conditional branch.
2768         (cp_parser_enum_specifier): Avoid duplication of effort with caller.
2769         Use cp_lexer_next_token_is/cp_lexer_next_token_is_not as appropriate.
2770         (cp_parser_enumerator_list, cp_parser_enumerator_definition):
2771         Use cp_lexer_next_token_is/cp_lexer_next_token_is_not as appropriate.
2772
2773 2004-09-04  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2774
2775         * decl.c (grok_declarator): Remove a redundant semicolon.
2776
2777         * parser.c (cp_parser_decl_specifier_seq, cp_parser_type_specifier):
2778         Correct comments describing function parameters.
2779
2780 2004-09-03  Matt Austern  <austern@apple.com>
2781         Compile speed improvement.
2782         * parser.c (cp_lexer_print_token): Only define if ENABLE_CHECKING set.
2783         Otherwise define a stub macro that expands to nothing.
2784         (cp_lexer_debugging_p): Only define if ENABLE_CHECKING set.  Otherwise
2785         define a stub macro that expands to 0.
2786         (cp_lexer_start_debugging): Only define if ENABLE_CHECKING set.
2787         (cp_lexer_stop_debugging): Likewise.
2788         (cp_lexer_debug_stream): Only define if ENABLE_CHECKING set.  Otherwise
2789         define a stub macro that expands to NULL.
2790         (cp_lexer_new_main): Only set debugging_p if ENABLE_CHECKING set.
2791         (cp_lexer_new_from_tokens): Likewise.
2792
2793 2004-09-03  Jan Hubicka  <jh@suse.cz>
2794
2795         * decl.c (finish_function): Clean out pointers we no longer need.
2796
2797 2004-09-03  Jan Beulich  <jbeulich@novell.com>
2798
2799         * g++spec.c (MATH_LIBRARY_PROFILE): Default to MATH_LIBRARY rather
2800         than "-lm".
2801
2802 2004-09-02  Paul Brook  <paul@codesourcery.com>
2803
2804         * decl2.c (determine_visibility): Only check data visibility
2805         for VAR_DECLS.
2806
2807 2004-08-31  Mark Mitchell  <mark@codesourcery.com>
2808
2809         * cp-tree.h (DECL_CONSTRUCTION_VTABLE_P): New macro.
2810         * class.c (build_ctor_vtbl_group): Set DECL_CONSTRUCTION_VTABLE_P.
2811         * decl2.c (determine_visibility): Honor
2812         TARGET_CXX_EXPORT_CLASS_DATA.
2813
2814         * class.c (key_method): Rename to ...
2815         (determine_key_method): ... this.
2816         (finish_struct_1): Adjust accordingly.
2817         * cp-tree.h (key_method): Declare.
2818         * decl2.c (maybe_emit_vtables): Determine the key method here if
2819         it has not already been done.
2820
2821 2004-08-31  Ziemowit Laski  <zlaski@apple.com>
2822
2823         * Make-lang.in (CXX_AND_OBJCXX_OBJS): Add cp/cp-objcp-common.o.
2824         (cp/cp-lang.o): Depend on debug.h, gtype-cp.h and cp/cp-objcp-common.h.
2825         (cp/cp-decl.c): Do not depend on gtype-cp.h.
2826         (cp/cp-objcp-common.o): New target.
2827         * cp-lang.c: Include debug.h, cp-objcp-common.h and gtype-cp.h.
2828         (cxx_get_alias_set, cxx_warn_unused_global_decl, cp_expr_size,
2829         cp_tree_size, cp_var_mod_type_p, cxx_initialize_diagnostics): Move
2830         prototypes and definitions to cp-objcp-common.h and cp-objcp-common.c,
2831         respectively.
2832         (LANG_HOOKS_TREE_SIZE, LANG_HOOKS_FINISH,
2833         LANG_HOOKS_CLEAR_BINDING_STACK, LANG_HOOKS_INIT_OPTIONS,
2834         LANG_HOOKS_INITIALIZE_DIAGNOSTICS, LANG_HOOKS_HANDLE_OPTION,
2835         LANG_HOOKS_HANDLE_FILENAME, LANG_HOOKS_MISSING_ARGUMENT,
2836         LANG_HOOKS_POST_OPTIONS, LANG_HOOKS_GET_ALIAS_SET,
2837         LANG_HOOKS_EXPAND_CONSTANT, LANG_HOOKS_EXPAND_EXPR,
2838         LANG_HOOKS_EXPAND_DECL, LANG_HOOKS_PARSE_FILE,
2839         LANG_HOOKS_DUP_LANG_SPECIFIC_DECL, LANG_HOOKS_TRUTHVALUE_CONVERSION,
2840         LANG_HOOKS_SET_DECL_ASSEMBLER_NAME, LANG_HOOKS_MARK_ADDRESSABLE,
2841         LANG_HOOKS_PRINT_STATISTICS, LANG_HOOKS_PRINT_XNODE,
2842         LANG_HOOKS_PRINT_DECL, LANG_HOOKS_PRINT_TYPE,
2843         LANG_HOOKS_PRINT_IDENTIFIER, LANG_HOOKS_PRINT_ERROR_FUNCTION,
2844         LANG_HOOKS_WARN_UNUSED_GLOBAL_DECL, LANG_HOOKS_WRITE_GLOBALS,
2845         LANG_HOOKS_FUNCTION_INIT, LANG_HOOKS_FUNCTION_FINAL,
2846         LANG_HOOKS_FUNCTION_MISSING_NORETURN_OK_P,
2847         LANG_HOOKS_COMMON_ATTRIBUTE_TABLE, LANG_HOOKS_FORMAT_ATTRIBUTE_TABLE,
2848         LANG_HOOKS_ATTRIBUTE_TABLE, LANG_HOOKS_TREE_INLINING_WALK_SUBTREES,
2849         LANG_HOOKS_TREE_INLINING_CANNOT_INLINE_TREE_FN,
2850         LANG_HOOKS_TREE_INLINING_ADD_PENDING_FN_DECLS,
2851         LANG_HOOKS_TREE_INLINING_AUTO_VAR_IN_FN_P,
2852         LANG_HOOKS_TREE_INLINING_ANON_AGGR_TYPE_P,
2853         LANG_HOOKS_TREE_INLINING_VAR_MOD_TYPE_P,
2854         LANG_HOOKS_TREE_DUMP_DUMP_TREE_FN,
2855         LANG_HOOKS_TREE_DUMP_TYPE_QUALS_FN, LANG_HOOKS_EXPR_SIZE,
2856         LANG_HOOKS_CALLGRAPH_ANALYZE_EXPR,
2857         LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION, LANG_HOOKS_MAKE_TYPE,
2858         LANG_HOOKS_TYPE_FOR_MODE, LANG_HOOKS_TYPE_FOR_SIZE,
2859         LANG_HOOKS_SIGNED_TYPE, LANG_HOOKS_UNSIGNED_TYPE,
2860         LANG_HOOKS_SIGNED_OR_UNSIGNED_TYPE, LANG_HOOKS_INCOMPLETE_TYPE_ERROR,
2861         LANG_HOOKS_TYPE_PROMOTES_TO, LANG_HOOKS_REGISTER_BUILTIN_TYPE,
2862         LANG_HOOKS_GIMPLIFY_EXPR, LANG_HOOKS_FOLD_OBJ_TYPE_REF): Move
2863         hooks to cp-objcp-common.h.
2864         (finish_file): New function.
2865         * cp-objcp-common.c: New file.
2866         * cp-objcp-common.h: New file.
2867         * cp-tree.h (cp_finish_file): New prototype.
2868         * decl.c: Do not include gtype-cp.h.
2869         * decl2.c (finish_file): Rename to cp_finish_file.
2870
2871 2004-08-31  Richard Henderson  <rth@redhat.com>
2872
2873         PR c++/17221
2874         * pt.c (tsubst_expr): Move OFFSETOF_EXPR handling ...
2875         (tsubst_copy_and_build): ... here.
2876
2877 2004-08-30  Mark Mitchell  <mark@codesourcery.com>
2878
2879         * cp-tree.h (initialize_artificial_var): Declare.
2880         * decl.c (initialize_artifical_var): New function.
2881         * class.c (initialize_array): Remove.
2882         (initialize_vtable): Use initialize_artificial_var.
2883         (build_vtt): Likewise.
2884         (build_ctor_vtbl_group): Likewise.
2885
2886 2004-08-30  Richard Henderson  <rth@redhat.com>
2887
2888         * class.c (build_base_path): Use build_address directly.
2889         * typeck.c (build_unary_op): Don't lower &a.b to pointer
2890         arithmetic directly.
2891         * typeck2.c (store_init_value): Don't assume !TREE_CONSTANT
2892         means !initializer_constant_valid_p.
2893
2894 2004-08-30  Richard Henderson  <rth@redhat.com>
2895
2896         * class.c (fixed_type_or_null): Use get_base_address before
2897         assuming an ADDR_EXPR is non-null.
2898
2899 2004-08-30  Nathan Sidwell  <nathan@codesourcery.com>
2900
2901         * name-lookup.c (pop_binding, pushdecl,
2902         set_identifier_type_value_with_scope, push_overloaded_decl,
2903         arg_assoc_type): Replace abort with gcc_assert or gcc_unreachable.
2904         * parser.c (cp_parser_diagnose_invalid_type_name,
2905         cp_parser_postfix_expression, cp_parser_unary_expression,
2906         cp_parser_check_declarator_template_para): Likewise.
2907         * pt.c (push_inline_template_parms_recursive,
2908         check_explicit_specialization, convert_nontype_argument,
2909         coerce_template_template_parms, uses_template_parms,
2910         instantiate_class_template, tsubst_decl, tsubst, tsubst_copy,
2911         tsubst_expr, instantiate_template,
2912         maybe_adjust_types_for_deduction, type_unification_real,
2913         resolve_overloaded_unification, template_decl_level,
2914         type_dependent_expression_p): Likewise.
2915         * search.c (lookup_base_r): Likewise.
2916         * semantics.c (finish_stmt_expr, simplify_aggr_init_expr): Likewise.
2917         * tree.c (lvalue_p_1, count_functions, cxx_printable_name,
2918         verify_stmt_tree_r, get_type_decl, stabilize_call): Likewise.
2919         * typeck.c (common_type, get_member_function_from_ptrfunc,
2920         build_binary_op, build_unary_op, expand_ptrmemfunc_cst): Likewise.
2921         * typeck2.c (cxx_incomplete_type_diagnostic,
2922         split_nonconstant_init_1, store_init_value,
2923         process_init_constructor): Likewise.
2924
2925 2004-08-30  Nathan Sidwell  <nathan@codesourcery.com>
2926
2927         * call.c (check_dtor_name): Replace abort with gcc_assert or
2928         gcc_unreachable.
2929         (build_call, add_builtin_candidate, build_new_op,
2930         convert_like_real, build_over_call, in_charge_arg_for_name,
2931         source_type, joust): Likewise.
2932         * class.c (build_simple_base_path, get_vcall_index,
2933         finish_struct_1, instantiate_type, get_enclosing_class,
2934         add_vcall_offset_vtbl_entries_1, cp_fold_obj_type_ref): Likewise.
2935         * cp-gimplify.c (cp_genericize): Likewise.
2936         * cp-lang.c (cp_expr_size, cp_tree_size): Likewise.
2937         * cvt.c (cp_convert_to_pointer, ocp_convert): Likewise.
2938         * decl.c (poplevel, make_unbound_class_template, reshape_init,
2939         check_special_function_return_type, grokdeclarator,
2940         grok_op_properties, tag_name, xref_tag, start_preparsed_function,
2941         finish_function): Likewise.
2942         * decl2.c (grokfield, maybe_emit_vtables):Likewise.
2943         * error.c (dump_global_iord, dump_decl, dump_template_decl,
2944         language_to_string): Likewise.
2945         * except.c (choose_personality_routine): Likewise.
2946         * friend.c (do_friend): Likewise.
2947         * g++spec.c (lang_specific_driver): Likewise.
2948         * init.c (build_zero_init, expand_default_init, build_new_1,
2949         build_vec_delete_1, build_vec_init, build_dtor_call): Likewise.
2950         * lex.c (retrofit_lang_decl, cp_type_qual_from_rid): Likewise.
2951         * mangle.c (add_substitution, write_unscoped_name,
2952         write_template_prefix, write_identifier,
2953         write_special_name_destructor, write_type, write_builtin_type,
2954         write_expression, write_template_param,
2955         write_java_integer_type_codes): Likewise.
2956         * method.c (implicitly_declare_fn): Likewise.
2957
2958 2004-08-30  Nathan Sidwell  <nathan@codesourcery.com>
2959
2960         * cp-tree.h (BINFO_PRIMARY_P): Use a binfo flag.
2961         (BINFO_INDIRECT_PRIMARY_P): Remove.
2962         * class.c (determine_primary_base): Rename to ...
2963         (determine_primary_bases): ... here.  Set all primary bases.
2964         (set_primary_base): Remove.
2965         (mark_primary_bases): Remove.
2966         (build_simple_base_path, walk_subobject_offsets,
2967         propagate_binfo_offsets, end_of_class): Adjust.
2968         (layout_class_type): Rename determine_primary_base call.
2969         (dump_class_hierarchy_r, dump_vtable): Adjust. Don't pass a binfo
2970         to type_as_string.
2971         (dfs_build_secondary_vptr_vtt_inits, dfs_accumulate_vtbl_inits,
2972         build_rtti_vtbl_entries): Adjust.
2973         * init.c (build_vtbl_address): Adjust.
2974
2975         * cp-tree.h (SET_BINFO_NEW_VTABLE_MARKED): Use gcc_assert.
2976
2977 2004-08-28  Ziemowit Laski  <zlaski@apple.com>
2978
2979         * Make-lang.in (CXX_OBJS): Split up into CXX_OBJS and
2980         CXX_AND_OBJCXX_OBJS.
2981         (CXX_C_OBJS): Include in CXX_AND_OBJCXX_OBJS instead of listing
2982         separately on the link line.
2983
2984 2004-08-28  Jason Merrill  <jason@redhat.com>
2985
2986         * decl.c (expand_static_init): Avoid bogus warnings.
2987
2988 2004-08-27  Jason Merrill  <jason@redhat.com>
2989
2990         PR c++/16851
2991         * tree.c (stabilize_init): See through a COMPOUND_EXPR.
2992
2993         PR c++/13684
2994         * decl.c (expand_static_init): Use thread-safety API.
2995         (register_dtor_fn): Return the call, don't expand it.
2996         * tree.c (add_stmt_to_compound): New fn.
2997         (stabilize_call): Use it.
2998
2999 2004-08-27  Richard Henderson  <rth@redhat.com>
3000
3001         * cp-tree.def (OFFSETOF_EXPR): New.
3002         * parser.c (cp_parser_builtin_offsetof): Either built an
3003         OFFSETOF_EXPR, or call fold_offsetof immediately.
3004         * pt.c (tsubst_expr): Handle OFFSETOF_EXPR.
3005
3006 2004-08-27  Nathan Sidwell  <nathan@codesourcery.com>
3007
3008         * call.c (validate_conversion_obstack): Replace
3009         my_friendly_assert with gcc_assert or gcc_unreachable.
3010         (direct_reference_binding, merge_conversion_sequences,
3011         build_user_type_conversion_1, perform_overload_resolution,
3012         build_op_delete_call, enforce_access, call_builtin_trap,
3013         build_over_call, build_special_member_call, build_new_method_call,
3014         initialize_reference): Likewise.
3015         * class.c (build_base_path, build_primary_vtable, alter_access,
3016         check_bases, update_vtable_entry_for_fn, layout_empty_base,
3017         clone_function_decl, adjust_clone_args,
3018         type_requires_array_cookie, include_empty_classes,
3019         finish_struct_1, resolve_address_of_overloaded_function,
3020         instantiate_type, get_vtbl_decl_for_binfo, build_vtt_inits,
3021         dfs_build_secondary_vptr_vtt_inits, build_ctor_vtbl_group,
3022         accumulate_vtbl_inits, build_vtbl_initializer,
3023         build_vbase_offset_vtbl_entries, build_rtti_vtbl_entries): Likewise.
3024         * cvt.c (build_up_reference, convert_to_reference): Likewise.
3025         * decl.c (poplevel, duplicate_decls, make_typename_type,
3026         cxx_init_decl_processing, reshape_init, check_initializer,
3027         make_rtl_for_nonlocal_decl, initialize_local_var, cp_finish_decl,
3028         expand_static_init, grokfndecl, grokvardecl, build_ptrmem_type,
3029         grokdeclarator, copy_fn_p, grok_op_properties, xref_tag,
3030         xref_basetypes, start_preparsed_function, save_function_data,
3031         finish_function, finish_method, maybe_register_incomplete_var,
3032         complete_vars): Likewise.
3033         * decl2.c (grok_array_decl, check_member_template,
3034         check_classfn, finish_static_data_member_decl, coerce_new_type,
3035         coerce_delete_type, import_export_class, decl_needed_p,
3036         determine_visibility, import_export_decl, build_cleanup,
3037         start_static_initialization_or_destructi, do_static_destruction,
3038         prune_vars_needing_no_initialization,
3039         build_offset_ref_call_from_tree): Likewise.
3040         * error.c (dump_decl, dump_expr): Likewise.
3041         * init.c (finish_init_stmts, build_zero_init,
3042         expand_virtual_init, expand_default_init, expand_aggr_init_1,
3043         build_offset_ref, build_new_1, build_delete, build_vbase_delete):
3044         Likewise.
3045         * mangle.c (write_method_parms, write_template_args,
3046         write_expression, write_template_arg): Likewise.
3047         * method.c (make_thunk, finish_thunk, use_thunk): Likewise.
3048         * name-lookup.c (pop_binding, begin_scope, leave_scope,
3049         resume_scope, push_using_decl, validate_nonmember_using_decl,
3050         is_ancestor, poplevel_class, set_inherited_value_binding_p,
3051         push_class_level_binding, do_class_using_decl, push_namespace,
3052         pop_namespace, add_using_namespace, ambiguous_decl,
3053         lookup_namespace_name, lookup_type_current_level,
3054         maybe_process_template_type_declaration): Likewise.
3055         * parser.c (cp_lexer_peek_nth_token,
3056         cp_parser_parse_and_diagnose_invalid_typ,
3057         cp_parser_translation_unit, cp_parser_template_id,
3058         cp_parser_lookup_name, cp_parser_late_parsing_for_member): Likewise.
3059         * pt.c (push_access_scope, finish_member_template_decl,
3060         push_inline_template_parms_recursive, add_outermost_template_args,
3061         get_innermost_template_args, begin_explicit_instantiation,
3062         end_explicit_instantiation, retrieve_specialization,
3063         is_specialization_of, is_specialization_of_friend,
3064         register_specialization, check_explicit_specialization,
3065         comp_template_parms, process_template_parm,
3066         process_partial_specialization, convert_nontype_argument,
3067         coerce_template_template_parms, coerce_template_parms,
3068         mangle_class_name_for_template, lookup_template_function,
3069         lookup_template_class, instantiate_class_template, tsubst_decl,
3070         tsubst_function_type, tsubst, tsubst_qualified_id, tsubst_copy,
3071         instantiate_template, fn_type_unification, type_unification_real,
3072         get_template_base, regenerate_decl_from_template,
3073         template_for_substitution, instantiate_decl,
3074         get_mostly_instantiated_function_type, dependent_scope_ref_p,
3075         value_dependent_expression_p, resolve_typename_type): Likewise.
3076         * repo.c (repo_emit_p): Likewise.
3077         * rtti.c (build_headof, get_tinfo_decl, get_pseudo_ti_init,
3078         create_tinfo_types, emit_tinfo_decl): Likewise.
3079         * search.c (lookup_base_r, lookup_base, lookup_field_1,
3080         dfs_access_in_type, build_baselink, lookup_member,
3081         adjust_result_of_qualified_name_lookup, copied_binfo): Likewise.
3082         * semantics.c (perform_or_defer_access_check,
3083         finish_non_static_data_member, finish_stmt_expr_expr,
3084         finish_stmt_expr, finish_call_expr, finish_pseudo_destructor_expr,
3085         finish_template_template_parm, finish_member_declaration,
3086         emit_associated_thunks): Likewise.
3087         * tree.c (build_target_expr_with_type, force_target_expr,
3088         copy_binfo, get_first_fn, cp_tree_equal): Likewise.
3089         * typeck.c (type_after_usual_arithmetic_conversions, comptypes,
3090         cxx_sizeof_or_alignof_type, perform_integral_promotions,
3091         build_class_member_access_expr, finish_class_member_access_expr,
3092         build_ptrmemfunc_access_expr, build_unary_op,
3093         unary_complex_lvalue, cxx_mark_addressable, build_modify_expr,
3094         build_ptrmemfunc, expand_ptrmemfunc_cst, check_return_expr
3095         * typeck2.c (complete_type_check_abstract,
3096         abstract_virtuals_error, process_init_constructor,
3097         add_exception_specifier): Likewise.
3098
3099 2004-08-27  Nathan Sidwell  <nathan@codesourcery.com>
3100
3101         * class.c (build_vtbl_initializer): Use ssize_int.
3102         * decl.c (complete_array_type): Likewise.
3103         * method.c (finish_thunk): Likewise.
3104         * search.c (get_dynamic_base_type): Likewise.
3105
3106 2004-08-26  Richard Henderson  <rth@redhat.com>
3107
3108         * cp-tree.h (DECL_FIELD_IS_BASE): New.
3109         * class.c (build_base_field): Set it.
3110         (build_simple_base_path): Use it.
3111         (fixed_type_or_null): Don't consider base fields definitive.
3112
3113 2004-08-25  Roger Sayle  <roger@eyesopen.com>
3114
3115         PR middle-end/16693
3116         PR tree-optimization/16372
3117         * decl.c (finish_enum): Make the precision of the enumerated type
3118         the same width as the underlying integer type.
3119
3120 2004-08-25  Mark Mitchell  <mark@codesourcery.com>
3121
3122         PR c++/17155
3123         * lex.c (build_lang_decl): Set DECL_NO_STATIC_CHAIN for all C++
3124         functions.
3125
3126         * mangle.c (get_identifier_nocopy): Add cast.
3127
3128         * cp-tree.h (mangle_type): Remove.
3129         * mangle.c (globals): GTY it.
3130         (mangle_obstack): New variable.
3131         (name_obstack): Likewise.
3132         (name_base): Likewise.
3133         (write_char): Adjust accordingly.
3134         (write_chars): Likewise.
3135         (write_string): Likewise.
3136         (start_mangling): Initialize G.substitutions only one.  Add
3137         ident_p parameter.
3138         (finish_mangling): Use VARRAY_CLEAR to reclaim
3139         storage in G.substitutions.  Use obstack_finish.
3140         (init_mangle): Adjust for changes to variable names above.
3141         Initialize G.substitutions.
3142         (mangle_decl_string): Adjust call to start_mangling.
3143         (get_identifier_nocopy): New function.
3144         (mangle_decl): Use it.
3145         (mangle_type_string): Adjust call to start_mangling.
3146         (mangle_special_for_type): Likewise.
3147         (mangle_vtt_for_type): Likewise.
3148         (mangle_ctor_vtbl_for_type): Likewise.
3149         (mangle_thunk): Likewise.
3150         (mangle_guard_variable): Likewise.
3151         (mangle_ref_init_variable): Likewise.
3152
3153 2004-08-25  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3154
3155         PR c++/14428
3156         * pt.c (redeclare_class_template): Check the type of non-type and
3157         template template parameter.
3158
3159 2004-08-25  Nathan Sidwell  <nathan@codesourcery.com>
3160
3161         * call.c (convert_class_to_reference): Adjust build_int_cst calls.
3162         (build_user_type_conversion_1, convert_like_real,
3163         build_java_interface_fn_ref, build_special_member_call): Likewise.
3164         * class.c (finish_struct_1, build_vtbl_initializer): Likewise.
3165         * cp-gimplify.c (cp_gimplify_expr): Likewise.
3166         * cvt.c (cp_convert_to_pointer): Likewise.
3167         * decl.c (cxx_init_decl_processing, complete_array_type): Likewise.
3168         * decl2.c (start_static_initialization_or_destruction,
3169         generate_ctor_or_dtor_function): Likewise.
3170         * except.c (build_throw): Likewise.
3171         * mangle.c (write_integer_cst): Likewise.
3172         * method.c (finish_thunk): Likewise.
3173         * rtti.c (build_headof, get_tinfo_decl_dynamic,
3174         build_dynamic_cast_1, ptr_initializer, ptm_initializer,
3175         get_pseudo_ti_init): Likewise.
3176         * search.c (get_dynamic_cast_base_type): Likewise.
3177
3178 2004-08-25  Zack Weinberg  <zack@codesourcery.com>
3179
3180         * class.c, search.c: Remove references to DWARF_DEBUG.
3181
3182 2004-08-25  Adam Nemet  <anemet@lnxw.com>
3183
3184         * repo.c (extract_string): Reset backquote after one character.
3185         (get_base_filename): Fix indentation.
3186
3187 2004-08-24  Nathan Sidwell  <nathan@codesourcery.com>
3188
3189         * decl.c (cxx_init_decl_processing): Adjust
3190         build_common_tree_nodes call.
3191
3192 2004-08-24  Nathan Sidwell  <nathan@codesourcery.com>
3193
3194         PR c++/16889
3195         * (is_subobject_of_p): Resurrect & optimize.
3196         (lookup_field_r): Use it.
3197
3198 2004-08-24  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3199
3200         PR c++/16706
3201         * search.c (friend_accessible_p): Increment processing_template_decl
3202         when deal with TEMPLATE_DECL of SCOPE.
3203
3204 2004-08-24  Nathan Sidwell  <nathan@codesourcery.com>
3205
3206         PR c++/17149
3207         * semantics.c (check_accessibility_of_qualified_id): Defer check
3208         if qualifying_type is a template parameter.
3209
3210 2004-08-23  Mark Mitchell  <mark@codesourcery.com>
3211
3212         PR c++/17163
3213         * pt.c (instantiate_decl): Do not try to apply
3214         DECL_DECLARED_INLINED_P to a VAR_DECL.
3215
3216         * search.c (build_baselink): Fix typo in comment.
3217
3218 2004-08-22 Andrew Pinski  <apinski@apple.com>
3219
3220         Revert:
3221         2004-08-22  Andrew Pinski  <apinski@apple.com>
3222         PR c++/14029
3223         * typeck.c (build_unary_op): Use &a.b if the folded lowered
3224         expression is not constant.
3225
3226 2004-08-23  Nathan Sidwell  <nathan@codesourcery.com>
3227
3228         * name-lookup.c (pushdecl): Rename build_type_copy call.
3229         * tree.c (cp_build_qualified_type_real,
3230         build_exception_variant, handle_java_interface_attribute): Likewise.
3231
3232 2004-08-22  Andrew Pinski  <apinski@apple.com>
3233
3234         PR c++/14029
3235         * typeck.c (build_unary_op): Use &a.b if the folded lowered
3236         expression is not constant.
3237
3238 2004-08-20  Mark Mitchell  <mark@codesourcery.com>
3239
3240         PR c++/17121
3241         * decl.c (expand_static_init): Use DECL_FUNCTION_SCOPE_P.
3242
3243 2004-08-21  Joseph S. Myers  <jsm@polyomino.org.uk>
3244
3245         PR c++/17120
3246         * pt.c (tsubst_copy_and_build): Avoid clearing TREE_NO_WARNING for
3247         MODOP_EXPR.
3248
3249 2004-08-20  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3250
3251         * pt.c (register_specialization): Check DECL_TEMPLATE_SPECIALIZATION
3252         before calling comp_template_args.
3253
3254 2004-08-20  Nathan Sidwell  <nathan@codesourcery.com>
3255
3256         * class.c (build_vtbl_initializer): Use build_int_cst for
3257         negative size types.
3258         * decl.c (complete_array_type): Likewise.
3259         * method.c (finish_thunk): Likewise.
3260
3261 2004-08-20  Andreas Tobler  <a.tobler@schweiz.ch>
3262
3263         * tree.c: Remove unused mark_local_for_remap_r.
3264
3265 2004-08-19  Eric Christopher  <echristo@redhat.com>
3266
3267         * cp-tree.h (cxx_unsave_expr_now): Delete prototype.
3268         * tree.c (cxx_unsave_expr_now): Delete.
3269         (cp_unsave_r): Ditto.
3270
3271 2004-08-19  Mark Mitchell  <mark@codesourcery.com>
3272
3273         PR c++/15890
3274         * pt.c (push_template_decl_real): Disallow template allocation
3275         functions with fewer than two parameters.
3276
3277 2004-08-19  Nathan Sidwell  <nathan@codesourcery.com>
3278
3279         * cp-tree.h (build_shared_int_cst): Remove.
3280         * tree.c (shared_int_cache): Remove.
3281         (build_shared_int_cst): Remove.
3282         * class.c (finish_struct_1): Use build_int_cst.
3283
3284 2004-08-19  Nathan Sidwell  <nathan@codesourcery.com>
3285
3286         * decl.c (finish_enum): Do not copy value node early, copy
3287         later.
3288         * lex.c (cxx_init): Force null_node to be unique.
3289
3290 2004-08-19  Joseph S. Myers  <jsm@polyomino.org.uk>
3291
3292         PR c++/17041
3293         * pt.c (tsubst_copy, tsubst_copy_and_build): Copy TREE_NO_WARNING
3294         from input for MODOP_EXPR.
3295
3296 2004-08-18  Mark Mitchell  <mark@codesourcery.com>
3297
3298         * pt.c (dependent_template_p): Fix typo in commment.
3299
3300         PR c++/17068
3301         * pt.c (dependent_template_p): Treat IDENTIFIER_NODEs as
3302         dependent.
3303
3304 2004-08-17  Mark Mitchell  <mark@codesourcery.com>
3305
3306         PR c++/16246
3307         * pt.c (unify): Tidy ARRAY_TYPE handling.  Make sure that non-type
3308         arguments have the same type as the corresponding parameter.
3309
3310         PR c++/16215
3311         * parser.c (cp_parser_name_lookup_error): If parser->object_scope
3312         is set use it for diagnostic purposes.
3313         (cp_parser_pseudo_destructor_name): Remove special-case error
3314         message.
3315
3316         PR c++/15871
3317         * semantics.c (expand_or_defer_fn): Honor -fkeep-inline-functions.
3318
3319         PR c++/16965
3320         * cp-tree.h (qualified_name_lookup_error): Add parameter.
3321         * name-lookup.c (do_class_using_decl): Restrict set of entities
3322         passed to cp_emit_debug_info_for_using more carefully.
3323         (lookup_qualified_name): Allow lookup_member to return sets of
3324         ambiguous entries.
3325         * parser.c (cp_parser_lookup_name): Add ambiguous_p parameter.
3326         (cp_parser_primary_expression): Handle ambiguous lookups.
3327         (cp_parser_template_name): Adjust use of cp_parser_lookup_name.
3328         (cp_parser_template_argument): Likewise.
3329         (cp_parser_elaborate_type_specifier): Likewise.
3330         (cp_parser_namespace_name): Likewise.
3331         (cp_parser_class_name): Likewise.
3332         (cp_parser_lookup_name_simple): Likewise.
3333         * pt.c (tsubst_qualified_id): Handle ambiguous results.
3334         (tsubst_expr): Likewise.
3335         * semantics.c (qualified_name_lookup_error): Add decl paramter.
3336         For ambiguous lookups, print candidates.
3337
3338 2004-08-16  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3339
3340         PR c++/6749
3341         * pt.c (instantiate_pending_templates): Add int parameter.  Don't
3342         return anything.
3343         * cp-tree.h (instantiate_pending_templates): Adjust prototype.
3344         * decl2.c (finish_file): Adjust call to
3345         instantiate_pending_templates.
3346
3347 2004-08-15  Roger Sayle  <roger@eyesopen.com>
3348
3349         * call.c (build_vfield_ref, build_call, build_conditional_expr,
3350         convert_arg_to_ellipsis, build_x_va_arg, build_over_call,
3351         build_java_interface_fn_ref, build_special_member_call,
3352         build_new_method_call, initialize_reference): Replace calls to
3353         build with calls to buildN.
3354         * class.c (build_base_path, convert_to_base_statically,
3355         build_vfn_ref, instantiate_type, dfs_accumulate_vtbl_inits,
3356         build_vtbl_initializer): Likewise.
3357         * cp-gimplify.c (genericize_try_block, genericize_catch_block,
3358         gimplify_if_stmt, cp_genericize_r): Likewise.
3359         * cvt.c (convert_to_void): Likewise.
3360         * decl.c (check_initializer, finish_constructor_body,
3361         finish_destructor_body): Likewise.
3362         * error.c (dump_expr): Likewise.
3363         * except.c (build_exc_ptr, expand_start_catch_block, build_throw):
3364         Likewise.
3365         * init.c (perform_member_init, expand_virtual_init,
3366         expand_cleanup_for_base, build_init, expand_default_init,
3367         build_offset_ref, decl_constant_value, build_new, build_new_1,
3368         build_vec_delete_1, build_vec_init, build_delete,
3369         push_base_cleanups, build_vec_delete): Likewise.
3370         * mangle.c (write_integer_cst): Likewise.
3371         * method.c (thunk_adjust, do_build_copy_constructor,
3372         do_build_assign_ref): Likewise.
3373         * pt.c (lookup_template_function, tsubst, tsubst_copy_and_build,
3374         unify, build_non_dependent_expr): Likewise.
3375         * rtti.c (build_headof, build_typeid, ifnonnull,
3376         build_dyanmic_cast_1, tinfo_base_init): Likewise.
3377         * semantics.c (begin_compound_stmt, finish_call_expr,
3378         finish_pseudo_destructor_expr, finish_id_expression,
3379         simplify_aggr_init_expr, finalize_nrv_r): Likewise.
3380         * tree.c (build_target_expr, build_cplus_new, array_type_nelts_top,
3381         array_type_nelts_total, stabilize_call): Likewise.
3382         * typeck.c (decay_conversion, build_class_member_access_expr,
3383         lookup_destructor, build_ptrmemfunc_access_expr, build_array_ref,
3384         get_member_function_from_ptrfunc, build_binary_op, pointer_diff,
3385         build_x_unary_op, build_unary_op, unary_complex_lvalue,
3386         build_compound_expr, build_modify_expr, expand_ptrmemfunc_cst,
3387         check_return_expr): Likewise.
3388         * typeck2.c (split_nonconstant_1, split_nonconstant_init_1,
3389         split_nonconstant_init, store_init_value, build_m_component_ref):
3390         Likewise.
3391
3392 2004-08-15  Nathan Sidwell  <nathan@codesourcery.com>
3393
3394         * call.c (convert_class_to_reference,
3395         build_user_type_conversion_1, convert_like_real,
3396         build_java_interface_fn_ref, build_special_member_call): Use
3397         build_int_cst.
3398         * class.c (build_vtbl_initializer): Likewise.
3399         * cp-gimplify.c (cp_gimplify_expr): Likewise.
3400         * cvt.c (cp_convert_to_pointer): Likewise.
3401         * decl.c (cxx_init_decl_processing, complete_array_type): Likewise.
3402         * decl2.c (start_static_initialization_or_destruction,
3403         generate_ctor_or_dtor_function): Likewise.
3404         * except.c (build_throw): Likewise.
3405         * lex.c (cxx_init): Likewise.
3406         * mangle.c (write_integer_cst): Likewise.
3407         * rtti.c (build_headof, get_tinfo_decl_dynamic,
3408         build_dynamic_cast_1, ptr_initializer, ptm_initializer,
3409         get_pseudo_ti_init): Likewise.
3410         * search.c (get_dynamic_cast_base_type): Likewise.
3411         * tree.c (build_shared_int_cst): Likewise.
3412
3413 2004-08-12  Mark Mitchell  <mark@codesourcery.com>
3414
3415         PR c++/16273
3416         * class.c (count_depth_data): New type.
3417         (dfs_depth_post): New function.
3418         (dfs_depth_q): Likewise.
3419         (find_final_overrider_data_s): Change type of vpath.
3420         Add vpath_list.
3421         (dfs_find_final_overrider_1): New function.
3422         (dfs_find_final_overrider): Use it.
3423         (dfs_find_final_overrider_q): Adjust use of vpath.
3424         (dfs_find_final_overrider_post): Likewise.
3425         (find_final_overrider): Use dfs_depth.  Allocate and deallocate
3426         vpath_list.
3427
3428 2004-08-12 Jan Beulich <jbeulich@novell.com>
3429
3430         * parser.c (cp_parser_asm_definition): Properly consume scope operator
3431         tokens preceding the clobbers. Don't check for scope operator
3432         following inputs. Simplify inputs handling to match that now used for
3433         clobbers.
3434
3435 2004-08-11  Mark Mitchell  <mark@codesourcery.com>
3436
3437         PR c++/16698
3438         * except.c (build_throw): Allocate cleanup_type and the function
3439         for __cxa_throw separately.
3440
3441         PR c++/16853
3442         * call.c (standard_conversion): Do not accept conversions between
3443         pointers to members if the class types are unrelated.
3444
3445         PR c++/16618
3446         * parser.c (cp_parser_builtin_offsetof): Cast to "const volatile
3447         char &" instead of just "char &".
3448
3449         PR c++/16870
3450         * pt.c (tsubst): Just return the unknown_type_node.
3451
3452 2004-08-11  Mark Mitchell  <mark@codesourcery.com>
3453
3454         PR c++/16964
3455         * parser.c (cp_parser_class_specifier): Robustify.
3456
3457         PR c++/16904
3458         * pt.c (tsubst_copy_and_build): Complain about invalid
3459         qualification.
3460
3461         PR c++/16929
3462         * pt.c (tsubst_default_argument): Clear out current_class_ptr and
3463         current_class_ref while tsubsting.
3464
3465 2004-08-10  Mark Mitchell  <mark@codesourcery.com>
3466
3467         PR c++/16971
3468         * parser.c (cp_parser_init_declarator): Robustify.
3469
3470 2004-08-06  Richard Sandiford  <rsandifo@redhat.com>
3471
3472         * typeck2.c (process_init_constructor): Guard the missing field warning
3473         with warn_missing_field_initializers rather than extra_warnings.
3474
3475 2004-08-06  Paolo Bonzini  <bonzini@gnu.org>
3476
3477         * class.c (instantiate_type) <ENTRY_VALUE_EXPR>: Do not handle.
3478
3479 2004-08-05  Mark Mitchell  <mark@codesourcery.com>
3480
3481         * decl.c (start_preparsed_function): Move determine_visibility
3482         call.
3483         * decl2.c (determine_visibility): Incorporate dllexport testing.
3484
3485 2004-08-05  Geoffrey Keating  <geoffk@apple.com>
3486
3487         * g++spec.c (lang_specific_driver): An -Xlinker or -Wl, option
3488         means that libstdc++ is needed.
3489
3490 2004-08-05  Nathan Sidwell  <nathan@codesourcery.com>
3491
3492         * cvt.c (cp_convert_to_pointer): Adjust force_fit_type call.
3493
3494 2004-08-04  Geoffrey Keating  <geoffk@apple.com>
3495
3496         * decl.c (make_rtl_for_nonlocal_decl): Set DECL_ASSEMBLER_NAME rather
3497         than passing it as a parameter to rest_of_decl_compilation.
3498         * decl2.c (grokfield): Use set_user_assembler_name.
3499
3500 2004-08-04  Nathan Sidwell  <nathan@codesourcery.com>
3501
3502         * decl.c (complete_array_type): Don't gratuitously copy
3503         maxindex. Its type is always set.
3504
3505 2004-08-04  Paul Brook  <paul@codesourcery.com>
3506
3507         * Make-lang.in (cp/semantics.o, cp/optimize.o): Depend on TARGET_H.
3508         * cp-tree.h (struct language_function): Rename x_dtor_label to
3509         x_cdtor_label.
3510         (dtor_label): Rename ...
3511         (cdtor_label): ... to this.
3512         * decl.c (begin_constructor_body): Remove.
3513         (check_special_function_return_type): Maybe change the return type.
3514         (grokdeclarator): Pass the class type.
3515         (start_preparsed_function): Constructors may need a return label.
3516         (finish_constructor_body, finish_destructor_body): Set the return
3517         value.
3518         (begin_function_body): Don't call begin_constructor_body.
3519         (finish_function): Don't warn for constructors or destructors.
3520         (implicitly_declare_fn): Maybe change the return type.
3521         * optimize.c: Include target.h.
3522         (maybe_clone_body): Remap the function result.
3523         * semantics.c: Include target.h.
3524         (finish_return_stmt): Maybe jump to return label for constructors.
3525
3526 2004-08-03  Mark Mitchell  <mark@codesourcery.com>
3527
3528         * class.c (build_vtable): Do not set DECL_VISIBILITY here.
3529         (check_field_decls): Or here.
3530         (check_methods): Or here.
3531         (initialize_array): Don't mess with DECL_CONTEXT.
3532         * cp-tree.h (start_decl): Adjust prototype.
3533         (determine_visibility): New function.
3534         * decl.c (duplicate_decls): Remove checks for hidden "operator
3535         new".
3536         (build_library_fn_1): Give all library functions default
3537         visibility.
3538         (start_decl): Add pop_scope_p parameter.  Tidy.
3539         (cp_finish_decl): Do not pop scopes here.  Call
3540         determine_visibility for variable definitions.
3541         (start_preparsed_function): Call determine_visibility.
3542         * decl2.c (determine_visibility): New function.
3543         * method.c (use_thunk): Fix formatting.
3544         * parser.c (cp_parser_condition): Adjust calls to start_decl.
3545         (cp_parser_init_declarator): Likewise.
3546         * pt.c (instantiate_decl): Always call pop_nested_class.
3547         * rtti.c (get_tinfo_decl): Do not set DECL_VISIBILITY.
3548         (tinfo_base_init): Likewise.
3549
3550 2004-08-02  Mark Mitchell  <mark@codesourcery.com>
3551
3552         PR c++/16707
3553         * name-lookup.c (validate_nonmember_using_decl): Robustify.
3554
3555 2004-08-01  Mark Mitchell  <mark@codesourcery.com>
3556
3557         PR c++/16224
3558         * name-lookup.c (decl_namespace): Remove.
3559         (current_decl_namespace): Use decl_namespace_context instead of
3560         decl_namespace.
3561         (push_decl_namespace): Likewise.
3562         (arg_assoc_class): Likewise.
3563         (arg_assoc_type): Likewise.
3564         * pt.c (check_specialization_namespace): New function.
3565         (maybe_process_partial_specialization): Use it.
3566         (register_specialization): Likewise.
3567
3568         PR c++/16489
3569         * cp-tree.h (DECL_INTEGRAL_CONSTANT_VAR_P): New macro.
3570         * call.c (null_ptr_cst_p): Handle variables with constant
3571         initializers.
3572         * pt.c (convert_nontype_argument): Use
3573         DECL_INTEGRAL_CONSTANT_VAR_P.
3574         * semantics.c (finish_id_expression): Likewise.
3575
3576         PR c++/16529
3577         * decl.c (duplicate_decls): Reject duplicate namespace
3578         declarations.
3579
3580         PR c++/16810
3581         * typeck.c (build_ptrmemfunc): Loosen assertion.
3582
3583 2004-08-01  Gabriel Dos Reis  <gdr@integrable-solutions.net>
3584
3585         * call.c (z_candidate::template_decl): Rename from template.
3586         (add_template_candidate_real): Adjust member reference.
3587         (joust): Likewise.
3588
3589 2004-07-29  Mark Mitchell  <mark@codesourcery.com>
3590
3591         * cp-tree.h (IDENTIFIER_REPO_CHOSEN): Define.
3592         (lang_decl_flags): Narrow the width of "languages".  Add
3593         repo_available_p.
3594         (DECL_NEEDED_P): Remove.
3595         (FOR_EACH_CLONE): New macro.
3596         (DECL_REPO_AVAILABLE_P): Likewise.
3597         (DECL_TINFO_P): Likewise.
3598         (set_linkage_according_to_type): Declare.
3599         (import_export_vtable): Remove.
3600         (import_export_tinfo): Likewise.
3601         (mark_needed): New function.
3602         (decl_needed_p): Likewise.
3603         (note_vauge_linkage_fn): Likewise.
3604         (init_repo): Change prototype.
3605         (repo_template_used): Remove.
3606         (repo_template_instantiated): Likewise.
3607         (repo_emit_p): New function.
3608         (repo_export_class_p): Likewise.
3609         (no_linkage_check): Change prototype.
3610         * class.c (set_linkage_according_to_type): New function.
3611         (build_vtable): Use it.  Do not call import_export_vtable.  Set
3612         DECL_IGNORED_P if appropriate.
3613         * decl.c (duplicate_decls): Preserve DECL_REPO_AVAILABLE_P.
3614         (make_rtL_for_nonlocal_decls): Check for template instantiations
3615         explicitly.
3616         (grokfndecl): Adjust call to no_linkage_check.
3617         (set_linkage_for_static_data_member): New function.
3618         (grokvardecl): Use it.  Adjust call to no_linkage_check.
3619         (grokdeclarator): Use set_linkage_for_static_data_member.
3620         * decl2.c (note_vague_linkage_fn): New function.
3621         (note_vague_linkage_var): Likewise.
3622         (finish_static_data_member_decl): Use it.
3623         (import_export_vtable): Remove.
3624         (import_export_class): Use repo_export_class_p.
3625         (var_finalized_p): Simplify.
3626         (maybe_emit_vtables): Simplify.
3627         (mark_needed): New function.
3628         (decl_needed_p): Likewise.
3629         (import_export_decl): Add documentation and consistency checks.
3630         Use repo_emit_p.  Handle virtual tables and RTTI information
3631         here.
3632         (import_export_tinfo): Remove.
3633         (write_out_vars): Call import_export_decl.
3634         (cxx_callgraph_analyze_expr): Ensure that all vtables are emitted
3635         whenever one is.
3636         (finish_file): Use decl_needed_p.  Do not call import_export_decl
3637         for undefined static data members.  Do not warn about undefined
3638         inlines when using a repository.
3639         (mark_used): Use note_vague_linkage_fn.  Always defer template
3640         instantiations.
3641         * lex.c (cxx_init): Adjust call to init_repo.  Always set
3642         flag_unit_at_a-time.
3643         * method.c (synthesize_method): Remove unncessary
3644         import_export_decl call.
3645         (implicitly_declare_fn): Use set_linkage_according_to_type.
3646         * optimize.c (maybe_clone_body): Use FOR_EACH_CLONE.
3647         * pt.c (instantiate_class_template): Don't redundantly add classes
3648         to keyed_classes.  Don't call repo_template_used.
3649         (tsubst_decl): Set DECL_INTERFACE_KNOWN for instantiations of
3650         templates with internal linkage.
3651         (check_instantiated_args): Adjust call to no_linkage_check.
3652         (instantiate_template): Use FOR_EACH_CLONE.
3653         (mark_definable): New function.
3654         (mark_decl_instantiated): Use it.
3655         (do_decl_instantiation): Adjust tests for explicit instantiation
3656         after "extern template".
3657         (instantiate_class_member): Do not use repo_template_instantiated.
3658         (do_type_instantiation): Simplify.
3659         (instantiate_decl): Use mark_definable.  Check repo_emit_p.
3660         Simplify.
3661         * repo.c (repo_get_id): Remove.
3662         (original_repo): Remove.
3663         (IDENTIFIER_REPO_USED): Remove.
3664         (IDENTIFIER_REPO_CHOSEN): Remove.
3665         Remove all #if 0'd code.
3666         (repo_template_used): Remove.
3667         (repo_template_instantiated): Remove.
3668         (temporary_obstack_initialized_p): New variable.
3669         (init_repo): Register with lang_post_pch_load.  Avoid creating
3670         identifiers unnecessarily.  Don't use original_repo.  Close the
3671         file here.
3672         (reopen_repo_file_for_write): Not here.
3673         (finish_repo): Always write out a new repository file.
3674         (repo_emit_p): New function.
3675         (repo_export_class_p): Likewise.
3676         * rtti.c (get_tinfo_decl): Use set_linkage_according_to_type.
3677         (involves_incomplete_p): New function.
3678         (tinfo_base_init): Use it.
3679         (ptr_initializer): Remove non_public_ptr parameter.
3680         (ptm_initializer): Likewise.
3681         (get_pseudo_ti_init): Likewise.
3682         (unemitted_tinfo_decl_p): Remove.
3683         (emit_tinfo_decl): Use import_export_decl.
3684         * semantics.c (expand_body): Move updates of static_ctors and
3685         static_dtors to ...
3686         (expand_or_defer_fn): ... here.
3687         * tree.c (no_linkage_check): Add relaxed_p parameter.
3688
3689 2004-07-28  Eric Christopher  <echristo@redhat.com>
3690
3691         * cp-lang.c (LANG_HOOKS_UNSAFE_FOR_REEVAL): Delete.
3692
3693 2004-07-28  Nathan Sidwell  <nathan@codesourcery.com>
3694
3695         * cp-tree.h (struct tree_pair_s): New.
3696         (typedef tree_pair_p): New.
3697         (DEF_VEC_O(tree_pair_s)): New.
3698         (struct lang_type_class): Make vcall_indices a VEC(tree_pair_s).
3699         (CLASSTYPE_VCALL_INDICES): Update documentation.
3700         * class.c (get_vcall_index): Adjust.
3701         (add_vcall_offset): Adjust.
3702
3703 2004-07-27  Kelley Cook  <kcook@gcc.gnu.org>
3704
3705         * pt.c, typeck.c: Remove spurious carriage returns.
3706
3707 2004-07-27  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3708
3709         PR c++/14429
3710         * pt.c (coerce_template_template_parms) <PARM_DECL case>: Only check
3711         when the type of ARG is not dependent.
3712
3713 2004-07-26  Geoffrey Keating  <geoffk@apple.com>
3714
3715         * g++spec.c (LIBSTDCXX_PROFILE): Default to LIBSTDCXX.
3716         (lang_specific_driver): If the C++ or math library options don't
3717         start with '-l', don't count them as added libraries.
3718
3719 2004-07-26  Nathan Sidwell  <nathan@codesourcery.com>
3720
3721         * decl.c (xref_basetypes): Adjust base access vector creation.
3722         * rtti.c (get_pseudo_ti_init, get_pseudo_ti_desc): Adjust base
3723         access accesses.
3724         * search.c (dynamic_cast_base_recurse, dfs_access_in_type): Likewise.
3725
3726 2004-07-26  Niall Douglas  <s_fsfeurope2@nedprod.com>
3727             Brian Ryner  <bryner@brianryner.com>
3728
3729         PR c++/15000
3730         PR c++/9283
3731         * class.c (check_field_decls): Apply hidden visibility if
3732         -fvisibility-inlines-hidden and inlined unless otherwise specified
3733         (build_vtable): Set vtable visibility to class visibility.
3734         (check_field_decls): Default static member visibility to class
3735         visibility.
3736         (check_methods): Default method visibility to class visibility.
3737         * cp-tree.h: Added CLASSTYPE_VISIBILITY and
3738         CLASSTYPE_VISIBILITY_SPECIFIED macro.
3739         * decl.c (duplicate_decls): New logic for merging definition decls
3740         with declaration decls. Added ignore & warning when non default
3741         applied to global operator new or delete.
3742         * method.c, optimize.c, rtti.c: Added setting of VISIBILITY_SPECIFIED
3743         wherever VISIBILITY was changed
3744         * rtti.c (get_tinfo_decl): Set typeinfo visibility to class
3745         visibility.
3746         (tinfo_base_init): Set typeinfo name visibility to class visibility.
3747
3748 2004-07-25  Bernardo Innocenti  <bernie@develer.com>
3749
3750         * decl.c: Rename all identifiers named `class' to `cl'.
3751         * cp-tree.h: Likewise.
3752
3753 2004-07-25  Gabriel Dos Reis  <gdr@integrable-solutions.net>
3754
3755         * cp-tree.h (TYPE_SET_PTRMEMFUNC_TYPE): Use GGC_CNEW.
3756         * typeck2.c (abstract_virtuals_error): Use GGC_NEW.
3757         * name-lookup.c (binding_entry_make): Use GGC_NEW.
3758         (binding_table_construct): Use GGC_CNEWVEC.
3759         (binding_table_new): Use GGC_NEW.
3760         (cxx_binding_make): Likewise.
3761         (begin_scope): Likewise.
3762         (push_to_top_level): Use GCC_CNEW.
3763         * parser.c (cp_token_cache_new): Likewise.
3764         (cp_token_cache_push_token): Likewise.
3765         (cp_lexer_new_main): Likewise.
3766         (cp_lexer_new_from_tokens): Likewise.
3767         (cp_parser_context_new): Likewise.
3768         (cp_parser_new): Likewise.
3769         (cp_lexer_new_from_tokens): Use GGC_NEWVEC.
3770         * lex.c (cxx_make_type): Use GGC_CNEW.
3771         (retrofit_lang_decl): Use GGC_NEWVAR.
3772         (cxx_dup_lang_specific_decl): Likewise.
3773         (copy_lang_type): Likewise.
3774         * decl.c (use_label): Use GGC_NEW instead of ggc_alloc.
3775         (save_function_data): Likewise.
3776         (lookup_label): Use GGC_CNEW instead of ggc_alloc_cleared.
3777         (cxx_push_function_context): Likewise.
3778
3779 2004-07-25  Richard Henderson  <rth@redhat.com>
3780
3781         * decl.c (start_preparsed_function): Set DECL_ARTIFICIAL and
3782         DECL_IGNORED_P on RESULT_DECL.
3783         * semantics.c (finalize_nrv): Copy them too.
3784
3785 2004-07-23  Nathan Sidwell  <nathan@codesourcery.com>
3786
3787         * search.c (lookup_conversion_operator): Avoid two loops.
3788         (add_conversions): Remove.
3789         (check_hidden_convs, split_conversions,
3790         lookup_conversions_r):  New.
3791         (lookup_conversions): Use lookup_conversions_r.
3792
3793 2004-07-22  Nathan Sidwell  <nathan@codesourcery.com>
3794
3795         * pt.c (get_template_base): Check type is completable.
3796
3797 2004-07-21  Eric Christopher  <echristo@redhat.com>
3798
3799         * decl.c (poplevel): Inline unused variable checking.
3800         Change formatting.
3801
3802 2004-07-21  Paolo Bonzini  <bonzini@gnu.org>
3803
3804         * typeck.c (build_binary_op): Do not use RDIV_EXPR for
3805         integer vectors.
3806
3807 2004-07-21  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
3808
3809         PR c++/14497
3810         * pt.c (check_explicit_specialization): Remove extension to accept
3811         specializations without template headers. Fall-through to normal
3812         processing.
3813
3814 2004-07-21  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
3815
3816         PR c++/509
3817         * pt.c (determine_specialization): New parameter template_count.
3818         Disambiguate between member templates and member functions counting
3819         the template headers.
3820         (check_explicit_specialization): Update caller.
3821         (tsubst_friend_function): Likewise.
3822
3823 2004-07-20  Steven Bosscher  <stevenb@suse.de>
3824
3825         * cp-tree.def (TINST_LEVEL): Make it an 'x' node.
3826         * cp-tree.h (tinst_level_t): New tree type.
3827         (union lang_tree_node): Handle it.
3828         (TINST_LOCATION): New accessor macro.
3829         (make_tinst_level): New prototype.
3830         * cp-lang.c (cp_tree_size): Handle TINST_LEVEL.
3831         * decl.c (cp_tree_node_structure): Likewise.
3832         * error.c (print_instantiation_full_context): Use TINST_LOCATION.
3833         (print_instantiation_partial_context): Likewise.
3834         * pt.c (pop_tinst_level): Likewise.
3835          (push_tinst_level): Use make_tinst_level.
3836         * tree.c (make_tinst_level): New function.
3837         (cp_walk_subtrees): Walk TINST_DECL for a TINST_LEVEL node.
3838
3839 2004-07-20  Mark Mitchell  <mark@codesourcery.com>
3840
3841         * parser.c (cp_parser_simple_type_specifier): Fix typo.
3842
3843         PR c++/16637
3844         * parser.c (cp_parser_simple_type_specifier): Do not record usage
3845         of globally-qualified names.
3846
3847 2004-07-20  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3848
3849         PR c++/16175
3850         * error.c (dump_type) <BOUND_TEMPLATE_TEMPLATE_PARM case>: Output
3851         cv qualifier.
3852
3853 2004-07-19  Mark Mitchell  <mark@codesourcery.com>
3854
3855         PR c++/16623
3856         * cp-tree.h (lang_type_class): Add lazy_assignment_op.
3857         (CLASSTYPE_LAZY_ASSIGNMENT_OP): New macro.
3858         * class.c (add_implicitly_declared_members): Use
3859         CLASSTYPE_LAZY_ASSIGNMENT_OP.
3860         * method.c (lazily_declare_fn): Clear
3861         CLASSTYPE_LAZY_ASSIGNMENT_OP.
3862         * search.c (lookup_fnfields_1): Check it.
3863
3864 2004-07-20  Nathan Sidwell  <nathan@codesourcery.com>
3865
3866         * cp-tree.h (vec_binfo_member): Remove.
3867         * tree.c (vec_binfo_member): Remove.
3868
3869         * cp-tree.h (struct lang_type_class): Remove vfields field.
3870         (CLASSTYPE_VFIELDS): Remove.
3871         (SET_BINFO_NEW_VTABLE_MARKED): Adjust.
3872         * class.c (determine_primary_base): Remove CLASSTYPE_VFIELDS
3873         handling.
3874         (dfs_modify_vtables): Use TYPE_CONTAINS_VPTR_P.
3875         (finish_struct_1): Remove CLASSTYPE_VFIELDS handling.
3876         * init.c (dfs_initialize_vtbl_ptrs): Use TYPE_CONTAINS_VPTR_P.
3877
3878 2004-07-20  Nathan Sidwell  <nathan@codesourcery.com>
3879
3880         * cp-tree.h (DEF_VEC_P(tree)): Remove here.
3881         (BINFO_SUBVTT_INDEX, BINFO_VPTR_INDEX, BINFO_PRIMARY_BASE_OF):
3882         Moved to common.
3883         (BINFO_LANG_SLOTS): Remove.
3884         * tree.c (copy_binfo): Adjust BINFO creation and accessors.
3885         * decl.c (xref_basetypes): Adjust BINFO creation and accessors.
3886         * class.c (check_bases): Adjust BINFO accessors.
3887         (determine_primary_base, finish_struct_bits,
3888         maybe_warn_about_overly_private_class, warn_hidden,
3889         walk_subobject_offsets, propagate_binfo_offsets, end_of_class,
3890         warn_about_ambiguous_bases, get_vfield_name,
3891         dump_class_hierarchy_r, build_vtt_inits, accumulate_vtbl_inits,
3892         add_vcall_offset_vtbl_entries_r): Likewise.
3893         * dump.c (cp_dump_tree): Likewise.
3894         * init.c (sort_mem_initializers, expand_member_init, build_delete,
3895         push_base_cleanups): Likewise.
3896         * method.c (do_build_copy_constructor, do_build_assign_ref,
3897         synthesize_exception_spec): Likewise.
3898         name-lookup.c (arg_assoc_class): Likewise.
3899         * pt.c (instantiate_class_template,
3900         get_template_base_recursive): Likewise.
3901         * rtti.c (get_pseudo_ti_init, get_pseudo_ti_desc): Likewise.
3902         * typeck2.c (process_init_constructor): Likewise.
3903         * search.c (lookup_base_r, dynamic_cast_base_recurse,
3904         dfs_access_in_type, dfs_walk_real, look_for_overrides,
3905         types_overlap_p, copied_binfo, original_binfo): Likewise.
3906         (binfo_for_vtable): Remove
3907
3908 2004-07-20  Steven Bosscher  <stevenb@suse.de>
3909
3910         * cp-tree.h (struct lang_decl_flags): Unify the template_info and
3911         thunk_alias, and the access and virtual_offset fields.
3912         (THUNK_VIRTUAL_OFFSET, THUNK_ALIAS): Adjust.
3913         * decl.c (finish_case_label): Update c_add_case_node call.
3914
3915 2004-07-19  Mark Mitchell  <mark@codesourcery.com>
3916
3917         Revert patch for PR c++/16623.
3918
3919 2004-07-19  Kelley Cook  <kcook@gcc.gnu.org>
3920
3921         * except.c: Remove two spurious carriage returns.
3922
3923 2004-07-19  Mark Mitchell  <mark@codesourcery.com>
3924
3925         PR c++/16623
3926         * cp-tree.h (lang_type_class): Add lazy_assignment_op.
3927         (CLASSTYPE_LAZY_ASSIGNMENT_OP): New macro.
3928         * class.c (add_implicitly_declared_members): Use
3929         CLASSTYPE_LAZY_ASSIGNMENT_OP.
3930         * method.c (lazily_declare_fn): Clear
3931         CLASSTYPE_LAZY_ASSIGNMENT_OP.
3932         * search.c (lookup_fnfields_1): Check it.
3933
3934 2004-07-19  Nathan Sidwell  <nathan@codesourcery.com>
3935
3936         * class.c (add_method): Delay adding the slot until the end.
3937         (determine_primary_base): Adjust VEC_iterate invokation.
3938         (resort_type_method_vec, finish_struct_methods, warn_hidden,
3939         walk_subobject_offsets, end_of_class, warn_about_ambiguous_bases,
3940         build_vtbl_initializer): Likewise.
3941         * init.c (sort_mem_initializers, build_delete, push_base_cleanups,
3942         build_vbase_delete): Likewise.
3943         * method.c (do_build_copy_constructor): Likewise.
3944         * name-lookup.c (new_class_binding, print_binding_level,
3945         poplevel_class, store_class_bindings, push_to_top_level,
3946         pop_from_top_level): Likewise.
3947         * pt.c (check_explicit_specialization): Likewise.
3948         * search.c (lookup_conversion_operator, lookup_fnfields_1,
3949         get_pure_virtuals, add_conversions, dfs_check_overlap,
3950         binfo_for_vbase): Likewise.
3951
3952 2004-07-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3953
3954         PR c++/12170
3955         * pt.c (unify) <BOUND_TEMPLATE_TEMPLATE_PARM case>: Use only
3956         innermost set of template arguments during deduction.  Simplify.
3957
3958 2004-07-19  Joseph S. Myers  <jsm@polyomino.org.uk>
3959
3960         * typeck.c (build_modify_expr, build_x_modify_expr): Set
3961         TREE_NO_WARNING on assignments with an operator other than '='.
3962
3963 2004-07-10  Steven Bosscher  <stevenb@suse.de>
3964             Joseph S. Myers  <jsm@polyomino.org.uk>
3965
3966         * cp-tree.h (C_SET_EXP_ORIGINAL_CODE): Remove.
3967         * decl2.c (grokfield): Don't check current_class_depth via
3968         unused TREE_COMPLEXITY.
3969         * semantics.c (finish_parenthesized_expr): Set TREE_NO_WARNING
3970         to avoid the missing parentheses warning.
3971         Don't set C_SET_EXP_ORIGINAL_CODE.
3972
3973 2004-07-18  Mark Mitchell  <mark@codesourcery.com>
3974
3975         * tree.c (no_linkage_helper): Remove.
3976         (no_linkage_check): Don't use walk_tree_without_duplicates.
3977
3978         * mangle.c (write_expression): Issue a sorry for zero-operand
3979         functional casts.
3980
3981 2004-07-18  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3982
3983         PR c++/13092
3984         * init.c (build_offset_ref): Build SCOPE_REF with non-null
3985         TREE_TYPE for non-dependent names.
3986         * typeck.c (build_x_unary_op): Handle non-dependent SCOPE_REF.
3987         * pt.c (type_dependent_expression_p): Handle SCOPE_REF with
3988         unknown_type_node as its TREE_TYPE.
3989         * cxx-pretty_print.c (pp_cxx_unqualified_id): Handle BASELINK.
3990         * error.c (dump_decl) <SCOPE_REF case>: Use pp_expression.
3991         (dump_expr) <SCOPE_REF case>: Likewise.
3992
3993 2004-07-17  Jason Merrill  <jason@redhat.com>
3994
3995         PR c++/16115
3996         * call.c (type_passed_as): Make the invisible reference type
3997         __restrict.
3998         * cp-gimplify.c (gimplify_cleanup_stmt): Rename to
3999         cp_genericize_r.  Handle invisible reference lowering.
4000         (is_invisiref_parm): New fn.
4001         (cp_genericize): Adjust the types of invisible reference parms.
4002         Don't repeat the walk for clones.
4003         * decl.c (store_parm_decls): Don't generate any code for clones.
4004
4005 2004-07-17  Joseph S. Myers  <jsm@polyomino.org.uk>
4006
4007         * cp-tree.h (builtin_function): Declare.
4008
4009 2004-07-16  Mark Mitchell  <mark@codesourcery.com>
4010
4011         * class.c (finish_struct_methods): Remove unncessary code.
4012         (add_implicitly_declared_members): Create declarations for default
4013         constructors and copy constructors lazily.
4014         * cp-tree.h (lang_type_class): Remove lazy_default_ctor and
4015         lazy_copy_ctor.
4016         (CLASSTYPE_LAZY_DEFAULT_CTOR): New macro.
4017         (CLASSTYPE_LAZY_COPY_CTOR): Likewise.
4018         * decl2.c (check_classfn): Robustify.
4019         (locate_dtor): Handle empty CLASSTYPE_METHOD_VEC.
4020         (locate_ctor): Handle lazy default constructors.
4021         (locate_copy): Handle lazy copy constructors.
4022         (implicitly_declare_fn): Make sure we're looking at the
4023         TYPE_MAIN_VARIANT for a class before creating functions.  Don't
4024         set TYPE_HAS_CONSTRUCTOR.
4025         (lazily_declare_fn): New function.
4026         * name-lookup.c (constructor_name_full): Simplify.
4027         * search.c (lookup_fnfields_1): Lazily create methods, as
4028         necessary.
4029         (lookup_for_overrides): Handle empty CLASSTYPE_METHOD_VEC.
4030
4031 2004-07-16  Steven Bosscher  <stevenb@suse.de>
4032
4033         * cp-tree.h (struct lang_type): Don't have three GTY options on a
4034         single bit GTY desc.
4035
4036 2004-07-16  Richard Henderson  <rth@redhat.com>
4037
4038         * cp-lang.c (LANG_HOOKS_TREE_INLINING_COPY_RES_DECL_FOR_INLINING): Die.
4039         * cp-tree.h (cp_copy_res_decl_for_inlining): Remove.
4040         * tree.c (cp_copy_res_decl_for_inlining): Remove.
4041
4042 2004-07-16  Nathan Sidwell  <nathan@codesourcery.com>
4043
4044         * class.c (finish_struct_bits): Use for loop.
4045         (propagate_binfo_offsets): Do primary binfo outside of loop.
4046
4047         PR c++/16583
4048         * dump.c (cp_dump_tree): Don't dump the bases if there's no
4049         binfo.
4050
4051         * pt.c (tsubst) <TREE_BINFO case>: We should never get here.
4052
4053 2004-07-15  Mark Mitchell  <mark@codesourcery.com>
4054
4055         * cp-tree.h (lang_type_class): Remove has_real_assign_ref and
4056         has_abstract_assign_ref.  Make methods a VEC(tree) *.
4057         (TYPE_HAS_CONST_ASSIGN_REF): Add documentation.
4058         (CLASSTYPE_CONSTRUCTORS): Adjust for changes to CLASSTYPE_METHOD_VEC.
4059         (CLASSTYPE_DESTRUCTORS): Likewise.
4060         (TYPE_HAS_REAL_ASSIGN_REF): Remove.
4061         (TYPE_HAS_ABSTRACT_ASSIGN_REF): Likewise.
4062         (add_method): Change prototoype.
4063         * class.c (add_method): Remove error_p parameter.  Adjust for
4064         changes to CLASSTYPE_METHOD_VEC.
4065         (handle_using_decl): Adjust call to add_method.
4066         (maybe_warn_about_overly_private_class): Adjust for
4067         changes to CLASSTYPE_METHOD_VEC.
4068         (resort_type_method_vec): Likewise.
4069         (finish_struct_methods): Likewise.
4070         (check_for_override): Likewise.
4071         (warn_hidden): Likewise.
4072         (add_implicitly_declared_members): Defer creation of assignment
4073         operators.  Adjust call to add_method.
4074         (clone_function_decl): Adjust call to add_method.
4075         (check_bases_and_members): Don't set TYPE_HAS_REAL_ASSIGN_REF.
4076         (finish_struct_1): Use CLASSTYPE_DESTRUCTORS.
4077         * decl.c (grok_special_member_properties): Don't set
4078         TYPE_HAS_ABSTRACT_ASSIGN_REF.
4079         * decl2.c (check_classfn): Adjust for
4080         changes to CLASSTYPE_METHOD_VEC.
4081         * method.c (locate_dtor): Use CLASSTYPE_DESTRUCTORS.
4082         (locate_ctor): Use CLASSTYPE_CONSTRUCTORS.
4083         (locate_copy): Adjust for changes to CLASSTYPE_METHOD_VEC.
4084         (implicitly_declare_fn): Set DECL_SOURCE_LOCATION.  Do not call
4085         cp_finish_decl.
4086         * pt.c (check_explicit_specialization): Adjust for
4087         changes to CLASSTYPE_METHOD_VEC.
4088         (instantiate_class_template): Do not set
4089         TYPE_HAS_ABSTRACT_ASSIGN_REF.
4090         * ptree.c (cxx_print_type): Don't try to print
4091         CLASSTYPE_METHOD_VEC.
4092         * rtti.c (emit_support_tinfos): Use CLASSTYPE_DESTRUCTORS.
4093         * search.c (lookup_field_r): Adjust for
4094         changes to CLASSTYPE_METHOD_VEC.
4095         (lookup_fnfields): Likewise.
4096         (lookup_conversion_operator): Likewise.
4097         (lookup_fnfields_1): Likewise.  Create assignment operators
4098         lazily.
4099         (look_for_overrides_here): Adjust for
4100         changes to CLASSTYPE_METHOD_VEC.
4101         (add_conversions): Likewise.
4102         * semantics.c (finish_member_declaration): Adjust call to add_method.
4103
4104 2004-07-15  Jason Merrill  <jason@redhat.com>
4105
4106         * cp-lang.c (cxx_types_compatible_p): To the middle-end,
4107         references and pointers are compatible.
4108
4109 2004-07-15  Nathan Sidwell  <nathan@codesourcery.com>
4110
4111         * decl.c (xref_basetypes): Refactor.
4112         * tree.c (copy_base_binfos): Replace with ...
4113         (copy_binfo): ... this. Deep copy the given binfo, (not the just
4114         bases of the given base).
4115         * cp-tree.h (copy_base_binfo): Remove.
4116         (copy_binfo): Declare.
4117
4118 2004-07-15  Mark Mitchell  <mark@codesourcery.com>
4119
4120         * name-lookup.c (set_inherited_value_binding_p): Add class_type
4121         parameter.
4122         (get_class_binding): Adjust.
4123         (push_class_level_binding): Don't use set_inherited_value_binding_p.
4124
4125 2004-07-15  Nathan Sidwell  <nathan@codesourcery.com>
4126
4127         * class.c (finish_struct_bits): Don't set TYPE_HAS_CONVERSION here.
4128         * decl.c (xref_basetypes): Set it here.
4129
4130         * class.c (check_bases): Don't set CLASSTYPE_NON_AGGREGATE here.
4131         Don't check for incomplete base.
4132         (get_vfield_name): Simplify while loop.
4133         * decl.c (xref_basetypes): Set CLASSTYPE_NON_AGGREGATE here.
4134
4135 2004-07-14  Mark Mitchell  <mark@codesourcery.com>
4136
4137         * lex.c (cxx_make_type): Remove call to get_pointer_type.
4138
4139         * cp-tree.h (IDENTIFIER_VALUE): Remove.
4140         (BINFO_PUSHDECLS_MARKED): Likewise.
4141         (maybe_inject_for_scope_var): Likewise.
4142         (push_class_decls): Likewise.
4143         * name-lookup.h (push_class_binding): Remove.
4144         (innermost_non_namespace_value): New function.
4145         (outer_binding): Likewise.
4146         * class.c (add_method): Push bindings before adding to
4147         TYPE_METHODS.
4148         (restore_class_cache): Do not restore class_shadowed.
4149         (pushclass): Do not add USING_DECLs.  Do not call
4150         push_class_decls.
4151         * config-lang.in (gtfiles): Remove $(srcdir)/cp/search.c.
4152         * decl.c (pushdecl): Use outer_binding.
4153         (poplevel): Set the scope for an out-of-scope for-loop declaration
4154         appropriately.
4155         (cp_finish_decl): Don't call maybe_inject_for_scope_var.
4156         * name-lookup.c (new_class_binding): New function.
4157         (push_binding): Use it.
4158         (pushdecl): Use innermost_non_namespace_value.
4159         (maybe_inject_for_scope_var): Remove.
4160         (push_class_binding): Remove.
4161         (set_inherited_value_binding_p): New function.
4162         (get_class_binding): New function.
4163         (push_class_level_binding): Assert that the current_class_type is
4164         being defined.
4165         (outer_binding): New function.
4166         (innermost_non_namespace_value): Likewise.
4167         (lookup_name_real): Use outer_binding.
4168         (lookup_name_current_level): Ignore out-of-scope variables.
4169         * pt.c (check_template_shadow): Use innermost_non_namespace_value.
4170         (lookup_template_class): Likewise.
4171         * search.c (dfs_push_type_decls): Remove.
4172         (dfs_push_decls): Likewise.
4173         (setup_class_bindings): Likewise.
4174         (lookup_field_1): Handle USING_DECLs from dependent scopes.
4175         (marked_pushdecls_p): Remove.
4176         (unmarked_pushdecls_p): Remove.
4177         (marked_identifiers): Remove.
4178         (setup_class_bindings): Remove.
4179         (dfs_push_type_decls): Remove.
4180         (dfs_push_decls): Remove.
4181         (push_class_decls): Remove.
4182
4183 2004-07-13  Mark Mitchell  <mark@codesourcery.com>
4184
4185         PR c++/16518
4186         PR c++/16337
4187         * decl.c (grokvardecl): Make declspecs parameter const.
4188         (grokdeclarator): Likewise.  Adjust accordingly.
4189         * decl.h (grokdeclarator): Adjust declaration.
4190         * parser.c (cp_parser_init_declarator): Do not clear
4191         decl_specifiers->attributes.
4192
4193         * cp-tree.h (lang_identifier): Remove class_value.
4194         (IDENTIFIER_CLASS_VALUE): Remove.
4195         (pop_class_decls): Likewise.
4196         (init_search_processing): Likewise.
4197         * class.c (handle_using_decl): Use lookup_member, not
4198         IDENTIFIER_CLASS_VALUE.
4199         (restore_class_cache): New function, split out from ...
4200         (pushclass): ... here.  Do not call clear_identifier_class_values.
4201         (invalidate_class_lookup_cache): Do not clear
4202         IDENTIFIER_CLASS_VALUE.
4203         (popclass): Do not call pop_class_decls.
4204         (maybe_note_name_used_in_class): Do not save names looked up after
4205         the class is complete.  Use lookup_member, not
4206         IDENTIFIER_CLASS_VALUE.
4207         * config-lang.in (gtfiles): Add $(srcdir)/cp/search.c.
4208         * decl.c (cxx_init_decl_processing): Do not call
4209         init_search_processing.
4210         * method.c (do_build_copy_constructor): Remove unnecessary code.
4211         (do_build_assign_ref): Likewise.
4212         * name-lookup.c (pushdecl): Use lookup_member, not
4213         IDENTIFIER_CLASS_VALUE.
4214         (set_identifier_type_value_with_scope): Set TREE_TYPE on the
4215         type_shadowed list.
4216         (poplevel_class): Do not restore IDENTIFIER_CLASS_VALUE.
4217         (push_class_binding): Do not set it.
4218         (clear_identifier_class_values): Remove.
4219         (push_class_level_binding): Do not set IDENTIFIER_CLASS_VALUE.
4220         (store_binding): Do not save it.
4221         (pop_from_top_level): Do not restore it.
4222         * name-lookup.h (cxx_saved_binding): Remove class_value.
4223         (clear_identifier_class_values): Remove.
4224         * ptree.c (cxx_print_identifier): Do not print
4225         IDENTIFIER_CLASS_VALUE.
4226         * search.c (search_obstack): Remove.
4227         (push_stack_level): Remove.
4228         (pop_stack_level): Remove.
4229         (search_level): Remove.
4230         (search_stack): Remove.
4231         (lookup_member): Don't check IDENTIFIER_CLASS_VALUE.
4232         (setup_class_bindings): Use IDENTIFIER_MARKED, not
4233         IDENTIFIER_CLASS_VALUE.
4234         (marked_identifiers): New variable.
4235         (push_class_decls): Clear IDENTIFIER_MARKED.
4236         (pop_class_decls): Don't call pop_search_level.
4237         (init_search_processing): Remove.
4238
4239 2004-07-12  Mark Mitchell  <mark@codesourcery.com>
4240
4241         * cp-tree.h (get_aggr_typedef): Remove.
4242         * init.c (get_aggr_typedef): Likewise.
4243
4244         * name-lookup.c (push_class_level_binding): Simplify.
4245
4246 2004-07-12  Andrew Pinski  <apinski@apple.com>
4247
4248         PR c++/16475
4249         Revert:
4250         2004-07-07  H.J. Lu  <hongjiu.lu@intel.com>
4251                 PR c++/16276
4252                 * rtti.c (emit_tinfo_decl): Turn off DECL_ONE_ONLY if typeinfo
4253                 is not public.
4254
4255 2004-07-12  Eric Christopher  <echristo@redhat.com>
4256
4257         * parser.c (cp_parser_class_head): Remove unused variable.
4258
4259 2004-07-12  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
4260
4261         * decl.c (grok_op_properties): Reject [de-]allocation functions
4262         declared in a namespace, or declared as static.
4263
4264 2004-07-12  Nathan Sidwell  <nathan@codesourcery.com>
4265
4266         * cp-tree.h (make_binfo): Remove.
4267         * decl.c (xref_basetypes): Use make_tree_binfo directly.
4268         * tree.h (copy_base_binfos): Likewise.
4269         (make_binfo): Remove.
4270
4271         * call.c (build_user_type_conversion_1, build_new_op,
4272         check_constructor_callable, build_temp,
4273         perform_direct_initialization_of_possible): Pass type directly to
4274         lookup_fnfields & build_special_member_call.
4275         (build_special_member_call): Accept a type, and complete it.
4276         * class.c (finish_stuct_bits): Copy the BINFOs here.
4277         * cvt.c (ocp_convert): Pass type directly to
4278         build_special_member_call.
4279         * decl.c (build_ptrmemfunc_type): Call xref_bastypes here.
4280         (xref_basetypes): Allocate the binfo here. Adjust.
4281         * init.c (build_init, build_new_1): Pass type directly to
4282         build_special_member_call.
4283         * lex.c (cxx_make_type): Do not allocate binfo here.
4284         * name-lookup.c (arg_assoc_class): Incomplete types have no binfo.
4285         * parser.c (cp_parser_class_head): Always call xref_basetypes.
4286         * pt.c (instantiate_class_template): Likewise. Inhibit access
4287         checking for template friends.
4288         * ptree.c (cxx_print_type): Adjust record printing.
4289         * search.c (lookup_base): When taking a type, complete it before
4290         looking for a binfo.
4291         (lookup_member): Delay completing a type.
4292         (push_class_decls): Don't walk an incomplete type.
4293         (lookup_conversions): Likewise.
4294         * semantics.c (finish_stmt_expr_expr): Pass type directly to
4295         build_special_member_call.
4296         * tree.c (copy_base_binfos): Adjust.
4297         (make_binfo): Likewise.
4298         * typeck.c (build_modify_expr): Pass type directly to
4299         build_special_member_call.
4300         * typeck2.c (process_init_constructor): Check a binfo exists.
4301         (build_m_component_ref): Allow accessing an incomplete type.
4302         (build_functional_cast): Pass type directly to
4303         build_special_member_call.
4304
4305 2004-07-12  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
4306
4307         PR c++/2204
4308         * config-lang.in (gtfiles): Add typeck2.c.
4309         * Make-lang.in: Tweak typeck2.c dependencies, and add rule for
4310         gt-cp-typeck2.h.
4311         * cp-tree.h: Declare complete_type_check_abstract.
4312         * typeck2.c (pat_calc_hash, pat_compare,
4313         complete_type_check_abstract): New functions.
4314         (abstract_virtuals_error): If the type is abstract, register the
4315         declaration within abstract_pending_vars for further checks.
4316         Inspect also dependent types. Handle IDENTIFIER_NODEs as decl.
4317         * decl.c (cp_finish_decl): Do not strip array types.
4318         (create_array_type_for_decl): Check for abstractness of the element
4319         type.
4320         (complete_vars): Call complete_type_check_abstract.
4321         * class.c (finish_struct): Prepare a list of virtual functions for
4322         template types, and call complete_vars on it to check for abstractness.
4323
4324 2004-07-12  Paolo Bonzini  <bonzini@gnu.org>
4325
4326         PR tree-optimization/14107
4327         * decl.c (finish_function): Remove temporary band-aid.
4328
4329 2004-07-11  Mark Mitchell  <mark@codesourcery.com>
4330
4331         * call.c (build_operator_new_call): Avoid using push_to_top_level.
4332         (build_new_op): Adjust call to lookup_function_nonclass.
4333         * name-lookup.c (identifier_type_value): Adjust call to
4334         lookup_name_real.
4335         (lookup_name_real): Add block_p parameter.
4336         (lookup_name_nonclass): Adjust call to lookup_name_real.
4337         (lookup_function_nonclass): Likewise.
4338         (lookup_name): Likewise.
4339         * name-lookup.h (lookup_name_real): Change prototype.
4340         (lookup_name_nonclass): Likewise.
4341         * parser.c (cp_parser_lookup_name): Likewise.
4342
4343         * cp-tree.h (saved_scope): Make old_bindings a vector.
4344         (unuse_fields): Remove.
4345         * name-lookup.h (cxx_saved_binding): Define it.
4346         * class.c (pushclass): Don't use unuse_fields.
4347         * name-lookup.c (cxx_saved_binding_make): Remove.
4348         (store_binding): Add new bindings to a vector, using an
4349         accumulator style, rather than adding them to a list.
4350         (store_bindings): Adjust accordingly.
4351         (store_class_bindings): Likewise.
4352         (push_to_top_level): Likewise.
4353         (pop_from_top_level): Likewise.
4354         * optimize.c (maybe_clone_body): Must push_to_top_level and
4355         pop_from_top_level calls outside of loop.
4356         * parser.c (cp_parser_class_specifier): Move push_scope/pop_scope
4357         calls here from cp_parser_late_parsing_default_args.
4358         (cp_parser_save_default_args): Record the class type in which the
4359         function is declared.
4360         (cp_parser_late_parsing_default_args): Do not call
4361         push_nested_class/pop_nested_class.
4362         * search.c (dfs_unuse_fields): Remove.
4363         (unuse_fields): Remove.
4364
4365 2004-07-11  Joseph S. Myers  <jsm@polyomino.org.uk>
4366
4367         * cp-lang.c (LANG_HOOKS_MAYBE_BUILD_CLEANUP, LANG_HOOKS_PUSHLEVEL,
4368         LANG_HOOKS_POPLEVEL, LANG_HOOKS_UPDATE_DECL_AFTER_SAVING): Remove.
4369         * cp-tree.h (poplevel): Declare.
4370         (set_block): Remove.
4371         * decl.c (set_block): Remove.
4372
4373 2004-07-10  Mike Stump  <mrs@apple.com>
4374
4375         * decl2.c (import_export_class): Never export/import vtables
4376         with inline key functions.
4377
4378 2004-07-09  Steven Bosscher  <stevenb@suse.de>
4379
4380         * typeck.c (c_expand_asm_operands): Remove.
4381
4382 2004-07-09  Mike Stump  <mrs@apple.com>
4383
4384         * typeck.c (build_class_member_access_expr): Skip null deref
4385         warning when we don't dereference it.
4386
4387 2004-07-09  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
4388
4389         PR c++/8211
4390         PR c++/16165
4391         * class.c (check_field_decls): Improve -Weffc++ warning: do not
4392         warn for pointers to functions/members, or for classes without
4393         destructors.
4394
4395 2004-07-08  Mark Mitchell  <mark@codesourcery.com>
4396
4397         * name-lookup.h (struct cp_binding_level): Update documentation
4398         for class_shadowed.
4399
4400 2004-07-08  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
4401
4402         PR c++/16169
4403         * typeck.c (check_return_expr): Improve -Weffc++ warning: handle
4404         returning CALL_EXPR, and non-reference return type.
4405
4406 2004-07-08  Nathan Sidwell  <nathan@codesourcery.com>
4407
4408         * name-lookup.c (push_binding): Use VEC_reserve.
4409
4410 2004-07-08  Richard Henderson  <rth@redhat.com>
4411
4412         * cp-tree.h (expand_eh_spec_block): Remove.
4413
4414 2004-07-07  Mark Mitchell  <mark@codesourcery.com>
4415
4416         * cp-tree.h (saved_scope): Remove x_previous_class_type and
4417         x_previous_class_values; add x_previous_class_level.
4418         (previous_class_type): Remove.
4419         (previous_class_values): Remove.
4420         (previous_class_level): New macro.
4421         * class.c (pushclass): Restore the identifier cache more
4422         expeditiously.
4423         (invalidate_class_lookup_cache): Use vector for class_shadowed and
4424         previous_class_values.
4425         * decl.c (poplevel): Likewise.
4426         * name-lookup.c (cxx_binding_init): New function.
4427         (cxx_binding_make): Use it.
4428         (push_binding): For a binding in a class level, use a vector of
4429         cp_class_binding nodes.
4430         (push_binding_level): New function.
4431         (begin_scope): Use it.
4432         (leave_scope): Do not put class binding levels on the free list.
4433         (print_binding_level): Adjust for the fact that class_shadowed is
4434         a vector.
4435         (poplevel_class): Likewise.
4436         (clear_identifier_class_values): Likewise.
4437         (push_class_level_binding): Likewise.
4438         (set_class_shadows): Remove.
4439         (store_binding): New function.
4440         (store_class_bindings): New function.
4441         (push_to_top_level): Use store_class_bindings as appropriate.
4442         (pop_from_top_level): Use previous_class_level, not
4443         previous_class_type.
4444         * name-lookup.h (cp_class_binding): New type.
4445         (cp_binding_level): Use a vector object for class_shadowed.
4446         (push_binding_level): Declare.
4447         (set_class_shadows): Remove.
4448
4449 2004-07-07  Andrew Pinski  <apinski@apple.com>
4450
4451         * class.c (instantiate_type): BUFFER_REF is dead.
4452         * lex.c (init_operators): IN_EXPR is dead.
4453
4454 2004-07-07  Jason Merrill  <jason@redhat.com>
4455
4456         PR c++/16334
4457         * call.c (build_new_op): Give overload warnings for built-in
4458         candidates.
4459
4460 2004-07-07  H.J. Lu  <hongjiu.lu@intel.com>
4461
4462         PR c++/16276
4463         * rtti.c (emit_tinfo_decl): Turn off DECL_ONE_ONLY if typeinfo
4464         is not public.
4465
4466 2004-07-07  Nathan Sidwell  <nathan@codesourcery.com>
4467
4468         * cp-tree.h (CLASSTYPE_N_BASECLASSES): Remove.
4469         * class.c (build_primary_vtable, check_bases,
4470         determine_primary_base, finish_struct_bits,
4471         maybe_warn_about_overly_private_class, dfs_find_final_overrider_q,
4472         get_basefndecls, warn_hidden, walk_subobject_offsets,
4473         build_base_fields, create_vtable_ptr, propagate_binfo_offsets,
4474         layout_virtual_bases, end_of_class, warn_about_ambiguous_bases,
4475         finish_struct_1, get_vfield_name, contains_empty_class_p,
4476         dump_class_hierarchy_r, finish_vtbls, build_vtt_inits,
4477         dfs_ctor_vtable_bases_queue_p, accumulate_vtbl_inits,
4478         add_vcall_offset_vtbl_entries_r, cp_fold_obj_type_ref): Adjust
4479         BINFO macros.
4480         * decl.c (xref_basetypes): Likewise.
4481         * dump.c (cp_dump_tree): Likewise.
4482         * error.c (dump_expr): Likewise.
4483         * init.c (sort_mem_initializers, expand_member_init,
4484         push_base_cleanups): Likewise.
4485         * method.c (do_build_copy_constructor, do_build_assign_reg,
4486         synthesize_exception_spec): Likewise.
4487         * name-lookup.c (arg_assoc_class): Likewise.
4488         * pt.c (instantiate_class_template, tsubst,
4489         get_template_base_recursive): Likewise.
4490         * ptree.c (cxx_print_type): Likewise.
4491         * rtti.c (get_psuedo_ti_init, get_pseudo_ti_desc): Likewise.
4492         * search.c (lookup_base_r, dynamic_cast_base_recurse,
4493         dfs_access_in_type, access_in_type, lookup_field_queue_p,
4494         bfs_walk, dfs_walk_real, look_for_overrides, markedp, unmarkedp,
4495         marked_pushdecls_p, unmarked_pushdecls_p, dfs_debug_markedp,
4496         dfs_debug_unmarkedp, dfs_check_overlap, dfs_no_overlap_yet,
4497         binfo_for_vtable, copied_binfo, original_binfo): Likewise
4498         * tree.c (copy_base_binfos, make_binfo): Likewise.
4499         * typeck.c (commmon_base_type): Likewise
4500         * typeck2.c (process_init_constructor): Likewise
4501
4502 2004-07-06  Joseph S. Myers  <jsm@polyomino.org.uk>
4503
4504         * decl.c (check_tag_decl): Name redeclared type in diagnostic.
4505
4506 2004-07-06  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
4507
4508         PR c++/3671
4509         * pt.c (convert_nontype_argument): Disallow conversions between
4510         different enumeration types.
4511
4512 2004-07-06  Nathan Sidwell  <nathan@codesourcery.com>
4513
4514         * cp-tree.h (BINFO_MARKED): Remove.
4515         (BINFO_VTABLE_PATH_MARKED, BINFO_NEW_VTABLE_MARKED,
4516         BINFO_DEPENDENT_BASE_P, BINFO_LOST_PRIMARY_P,
4517         BINFO_INDIRECT_PRIMARY_P): Use appropriate BINFO_FLAG_n.
4518         (SET_BINFO_NEW_VTABLE_MARKED): Use BINFO_VIRTUAL_P.
4519         * class.c (build_base_path): Use BINFO_VIRTUAL_P.
4520         (mark_primary_bases, determine_primary_base, base_derived_from,
4521         dfs_find_final_overrider, dfs_find_final_overrider_q,
4522         dfs_find_inal_overrider_post, update_vtable_entry_for_fn,
4523         dfs_modify_vtables, walk_subobject_offsets,
4524         layout_nonempty_base_or_field, build_base_field,
4525         build_base_fields, propagate_binfo_offsets, layout_virtual_bases,
4526         end_of_class, get_vfield_name, dump_class_hierarchy, dump_vtable,
4527         finish_vtbls, build_vtt_inits, dfs_build_secondary_vptr_vtt_inits,
4528         build_ctor_vtbl_group, accumulate_vtble_inits,
4529         dfs_accumulate_vtbls_inits, build_vbase_offset_vtbl_entries,
4530         build_vcall_offset_vtbl_entries, add_vcall_offset_vtbl_entries_r,
4531         add_vcall_offset_vtbl_entries_1): Likewise.
4532         * decl.c (xref_basetypes): Incomming virtual base indicated by
4533         TREE_TYPE. Adjust.
4534         * dump.c (cp_dump_tree): Use BINFO_VIRTUAL_P.
4535         * init.c (finish_init_stmts, sort_mem_initializers,
4536         emit_mem_initializers, build_vtble_address, expand_member_init,
4537         push_base_cleanups): Likewise.
4538         * method.c (do_build_copy_constructor): Likewise.
4539         * pt.c (instantiate_class_template,
4540         get_template_base_recursive): Likewise.
4541         * rtti.c (dfs_class_hint_mark, get_pseudo_ti_init,
4542         get_pseudo_ti_desc): Likewise.
4543         * search.c (lookup_base_r, dynamic_cast_base_recurse,
4544         binfo_from_vbase, binfo_via_virtual, copied_binfo,
4545         original_binfo): Likewise.
4546         * semantics.c (finish_base_specifier): Virtualness is indicated
4547         by TREE_TYPE.
4548         * tree.c (copy_base_binfos): Use BINFO_VIRTUAL_P.
4549
4550 2004-07-06  Mark Mitchell  <mark@codesourcery.com>
4551
4552         Revert:
4553         2004-06-24  Jason Merrill  <jason@redhat.com>
4554         PR c++/16115
4555         * decl.c (grokparms): Give the PARM_DECL reference type if the
4556         parameter is passed by invisible reference.
4557
4558 2004-07-05  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4559
4560         * cp-lang.c (cp_var_mod_type_p): Add extra arg.
4561         * decl.c (grokdeclarator): Extra arg to variably_modified_type_p.
4562         * pt.c (check_instantiated_args, unify): Likewise.
4563
4564 2004-07-05  Phil Edwards  <phil@codesourcery.com>
4565
4566         * Make-lang.in (check-c++, lang_checks):  Add some comments.
4567
4568 2004-07-05  Zack Weinberg  <zack@codesourcery.com>
4569
4570         * cp-mudflap.c: Delete file.
4571         * Makefile.in: Remove all references to cp-mudflap.o.
4572
4573 2004-07-05  Zack Weinberg  <zack@codesourcery.com>
4574
4575         * decl.c (cxx_init_decl_processing): Call
4576         build_common_tree_nodes before creating the global NAMESPACE_DECL.
4577
4578 2004-07-05  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
4579
4580         PR c++/2518
4581         * call.c (build_operator_new_call): Look only at global scope.
4582
4583 2004-07-05  Nathan Sidwell  <nathan@codesourcery.com>
4584
4585         * call.c (enforce_access): Expect TREE_BINFO.
4586         * class.c (binfo_ctor_vtable): Check TREE_BINFO.
4587         * cp-tree.h (RECORD_OR_UNION_TYPE_CHECK): Remove.
4588         (BINFO_SUBVTT_INDEX, BINFO_VPTR_INDEX, BINFO_PRIMARY_BASE_OF):
4589         Adjust.
4590         (BINFO_LANG_ELTS): Remove.
4591         (BINFO_LANG_SLOTS): New.
4592         (TYPE_RAISES_EXCEPTIONS, ENUM_TEMPLATE_INFO): Use TYPE_LANG_SLOT_1.
4593         (CLASSTYPE_TEMPLATE_INFO): Adjust.
4594         * pt.c (tsubst): Split TREE_BINFO case from TREE_VEC case.
4595         * search.c (lookup_member): Check TREE_BINFO.
4596         * semantics.c (perform_or_defer_access_check): Likewise.
4597         (check_accessibility_of_qualified_id): Check
4598         deferred_access_no_check.
4599         * tree.c (make_binfo): Use make_tree_binfo.
4600
4601 2004-07-04  Mark Mitchell  <mark@codesourcery.com>
4602
4603         * method.c (implicitly_declare_fn): Set linkage of generated
4604         functions.
4605
4606 2004-07-04  Richard Henderson  <rth@redhat.com>
4607
4608         * typeck.c (cxx_mark_addressable): Don't put_var_into_stack.
4609
4610 2004-07-03  Scott Brumbaugh  <scottb.lists@verizon.net>
4611
4612         PR c++/3761
4613         * name-lookup.c (push_class_level_binding): Don't pass a
4614         TREE_LIST of ambiguous names to check_template_shadow as it
4615         only handles declarations. Instead, pull the declaration
4616         out and pass that.
4617
4618 2004-07-03  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
4619
4620         PR c++/14971
4621         * pt.c (check_explicit_specialization): Clarify error message.
4622
4623 2004-07-02  Richard Henderson  <rth@redhat.com>
4624
4625         * tree.c (cp_unsave_r): Update remap_save_expr call.
4626
4627 2004-07-02  Mark Mitchell  <mark@codesourcery.com>
4628
4629         PR c++/16240
4630         * mangle.c (write_template_arg): Correct mangling.
4631
4632         PR c++/16297
4633         * decl.c (grokdeclarator): Robustify.
4634
4635 2004-07-01  Richard Henderson  <rth@redhat.com>
4636
4637         * class.c (fixed_type_or_null): Don't handle RTL_EXPR.
4638         * method.c (synthesize_method): Don't clear_last_expr.
4639         * name-lookup.c (maybe_push_cleanup_level): Likewise.
4640
4641 2004-07-01  Nick Clifton  <nickc@redhat.com>
4642
4643         * decl2.c (import_export_class): Invoke the
4644         import_export_class field in the gcc_target structure if it is not
4645         empty.
4646
4647 2004-06-30  Richard Henderson  (rth@redhat.com>
4648
4649         * decl.c (start_preparsed_function): Don't set immediate_size_expand.
4650         * method.c (use_thunk): Likewise.
4651
4652 2004-06-30  Joseph S. Myers  <jsm@polyomino.org.uk>
4653
4654         * call.c (build_over_call), typeck.c (build_function_call): Call
4655         check_function_arguments instead of check_function_format.
4656
4657 2004-06-30  Joseph S. Myers  <jsm@polyomino.org.uk>
4658
4659         * call.c (build_over_call), typeck.c (build_function_call): Update
4660         calls to check_function_format.
4661
4662 2004-06-30  Richard Henderson  <rth@redhat.com>
4663
4664         * call.c (build_over_call): Use __builtin_memcpy for copying
4665         CLASS_AS_BASE rather than funny casting.
4666
4667 2004-06-30  Richard Henderson  <rth@redhat.com>
4668
4669         * init.c (build_new_1): Fill in TYPE_DOMAIN, TYPE_SIZE and
4670         TYPE_SIZE_UNIT of full_type.
4671
4672 2004-06-30  Per Bothner  <per@bothner.com>
4673
4674         Conditionally compile support for --enable-mapped_location.
4675         * decl.c (pop_label):  Handle (imperfectly) USE_MAPPED_LOCATION case.
4676         * decl2.c:  If USE_MAPPED_LOCATION, don't do some line number
4677         adjustments - which I don't understand.
4678         * error.c (dump_decl):  Rename "<interrnal>" to "<built-in>".
4679         * error.c:  Use LOCATION_FILE and EXPR_LOCATION macros.
4680         (print_instantiation_partial_context):  Use expand_location.
4681         * decl.c (duplicate_decl):  Use new DECL_IS_BUILTIN macro.
4682         * name-lookup.c:  Likewise.
4683         * lex.c (cxx_init):  Likewise.  Also use BUILTINS_LOCATION.
4684         * name-lookup.c:  Use input_line macro.
4685         * parser.c (cp_lexer_get_preprocessor_token):  Use UNKNOWN_LOCATION.
4686         (cp_parser_statement):  Rename locaal variable statement_locus to
4687         statement_location and use SET_EXPR_LOCATION macro.
4688         * pt.c:  Handle USE_MAPPED_LOCATION case.  Use new macros.
4689         * tree.c (cp_walk_subtrees):  Likewise.
4690
4691 2004-06-29  Per Bothner  <per@bothner.com>
4692
4693         * tree.c (build_min_nt, build_min, build_min_non_dep):
4694         Don't set TREE_COMPLEXITY from input_line.
4695
4696 2004-06-29  Paul Brook  <paul@codesourcery.com>
4697
4698         * init.c: Include target.h.
4699         (get_cookie_size): Remove and replace with target hook.
4700         Update callers.
4701         (build_new_1): Store the element size in the cookie.
4702
4703 2004-06-29  Nathan Sidwell  <nathan@codesourcery.com>
4704
4705         PR c++/16260
4706         * parser.c (cp_parser_template_declaration_after_export): Disable
4707         access checks here ...
4708         (cp_parser_class_specifier): ... not here.
4709
4710 2004-06-28  Nathan Sidwell  <nathan@codesourcery.com>
4711
4712         * cp-tree.h (VAR_OR_FUNCTION_DECL_CHECK,
4713         VAR_FUNCTION_OR_PARM_DECL_CHECK, RECORD_OR_UNION_TYPE_CHECK,
4714         BOUND_TEMPLATE_TEMPLATE_PARM_TYPE_CHECK): Use appropriate
4715         TREE_CHECK macro.
4716
4717 2004-06-28  Nathan Sidwell  <nathan@codesourcery.com>
4718
4719         * cp-tree.h (struct deferred_access): Move to ...
4720         * semantics.c (struct deferred_access): ... here. Adjust.
4721         (deferred_access_stack): Make a VEC(deferred_access),
4722         (deferred_access_free_list): Remove.
4723         (deferred_access_no_check): New.
4724         (push_deferring_access_checks, resume_deferring_access_checks,
4725         stop_deferring_access_checks, pop_deferring_access_checks,
4726         get_deferred_access_checks, pop_to_parent_deferring_access_checks,
4727         perform_deferred_access_checks, perform_or_defer_access_check): Adjust.
4728
4729 2004-06-28  Nathan Sidwell  <nathan@codesourcery.com>
4730
4731         PR c++/16174
4732         * call.c (build_temp): Declare.
4733         (check_constructor_callable): New.
4734         (reference_binding): Only set CHECK_COPY_CONSTRUCTOR if not for
4735         CONSTRUCTOR_CALLABLE.
4736         (convert_like_real, initialize_reference): Use
4737         check_constructor_callable.
4738         * cp-tree.h (LOOKUP_CONSTRUCTOR_CALLABLE): New.
4739         (LOOKUP_*): Renumber.
4740
4741 2004-06-28  Nathan Sidwell  <nathan@codesourcery.com>
4742
4743         * friend.c (add_friend): Only perform access checks when context
4744         is a class.
4745         * lex.c (cxx_make_type): Only create a binfo for aggregate types.
4746         * parser.c (cp_parser_class_specifier): Disable access checks here
4747         when parsing the body of a templated class.
4748         * semantics.c (perform_or_defer_access_checks): Reorder to allow
4749         NULL binfos when not checking access.
4750
4751 2004-06-28  Nathan Sidwell  <nathan@codesourcery.com>
4752
4753         Use vector API for vbase list.
4754         * cp-tree.h: Include vec.h
4755         (DEF_VEC_P (tree)): New type.
4756         (struct lang_type_class): Change vbase's member type.
4757         (binfo_for_vbase): Declare.
4758         * class.c (determine_primary_base, base_derived_from,
4759         update_vtable_entry_for_fn, walk_subobject_offsets, end_of_class,
4760         warn_about_ambiguous_bases, dfs_accumulate_vtbl_inits,
4761         build_vtbl_initializer): Adjust.
4762         * decl.c (xref_basetypes): Adjust, accumulate upper bound of
4763         vbases.
4764         * init.c (sort_mem_initializers, expand_member_init,
4765         push_base_cleanups): Adjust.
4766         * method.c (do_build_copy_constructor): Adjust.
4767         * search.c (get_pure_virtuals, copied_binfo, original_binfo): Adjust.
4768         (binfo_for_vbase): New.
4769         * tree.c (copy_base_binfos): Adjust.
4770
4771 2004-06-28  Mark Mitchell  <mark@codesourcery.com>
4772
4773         * parser.c (cp_parser_set_decl_spec_type): Fix thinko.
4774
4775 2004-06-27  Gabriel Dos Reis  <gdr@integrable-solutions.net>
4776
4777         PR c++/14123
4778         * cxx-pretty-print.c (pp_cxx_ptr_operator): Properly put
4779         paranthesis in case of pointers to array members.
4780         * error.c (dump_type_prefix): Likewise.
4781         (dump_type_suffix): Maybe issue a whitespace when printing
4782         ARRAY_TYPE.
4783
4784 2004-06-27  Mark Mitchell  <mark@codesourcery.com>
4785
4786         PR c++/16193
4787         * parser.c (cp_parser_set_decl_spec_type): Refine test for
4788         redefinition of built-in types.
4789
4790 2004-06-27  Gabriel Dos Reis  <gdr@integrable-solutions.net>
4791
4792         * error.c (pp_template_argument_list_start): Remove.
4793         (pp_template_argument_list_end): Likewise.
4794         (pp_separate_with_comma): Use pp_cxx_separate_with.
4795         (reinit_global_formatting_buffer): Remove.
4796         (pp_non_consecutive_character): Likewise.
4797         (dump_scope): Use pp_cxx_colon_colon.
4798         (dump_template_parameter): Use pp_cxx_identifier,
4799         pp_cxx_tree_identifier and pp_cxx_whitespace.
4800         (dump_templat_bindings): Replace use of pp_string with sequence
4801         of pp_cxx_whitespace and pp_equal.
4802         (dump_type): Use pp_cxx_identifier, pp_cxx_tree_identifier,
4803         pp_cxx_colon_colon, pp_cxx_whitespace throughout.  Don't set
4804         padding here.
4805         (dump_aggr_type): Use pp_cxx_identifier amd pp_cxx_tree_identifier.
4806         (dump_type_prefix): Don't set padding.  Use pp_cxx_whitespace,
4807         pp_cxx_left_parent, pp_cxx_colon_colon and pp_cxx_star troughout.
4808         (dump_type_suffix): Use pp_cxx_right_paren, pp_cxx_left_bracket,
4809         pp_cxx_right_bracket, pp_cxx_identifier throughout,
4810         (dump_decl): Likewise.
4811         (dump_template_decl): Likewise.
4812         (dump_function_decl): Likewise.  Set padding as appropriate.
4813         (dump_parameters): Use pp_cxx_left_paren, pp_cxx_identifier and
4814         pp_cxx_right_paren.
4815         (dump_exception_spec): Likewise.
4816         (dump_function_name): Use pp_cxx_tree_identifier and
4817         pp_cxx_identifier.
4818         (dump_template_parms): Use pp_cxx_begin_template_argument_list and
4819         pp_cxx_end_template_argument_list.
4820         (dump_expr): Use pp_cxx_left_paren, pp_cxx_right_paren,
4821         pp_cxx_colon_colon, pp_cxx_identifier, pp_cxx_tree_identifier and
4822         pp_cxx_whitespace throughout.
4823         (dump_binary_op): Use pp_cxx_whitespace, pp_cxx_left_paren and
4824         pp_cxx_right_paren.
4825         (dump_unary_op): Likewise.
4826         (reinit_cxx_pp): New function.
4827         (type_as_string); Use it.
4828         (expr_as_string): Likewise.
4829         (decl_as_string); Likewise.
4830         (context_as_string): Likewise.
4831         (lang_decl_name): Likewise.
4832         (decl_to_string): Likewise.
4833         (expr_to_string): Likewise.
4834         (parm_to_string): Likewise.
4835         (type_to_string): Likewise.
4836         (args_to_string): Likewise.
4837         (cv_to_string): Likewise.
4838
4839 2004-06-26  Mark Mitchell  <mark@codesourcery.com>
4840
4841         * cp-tree.h (cp_cv_quals): New type.
4842         (cp_declarator): Use it instead of "tree" as appropriate.
4843         (grok_method_quals): Adjust prototype.
4844         (grokclassfn): Likewise.
4845         (do_friend): Likewise.
4846         * decl.c (grokfndecl): Use cp_cv_quals, not tree.
4847         (grokdeclarator): Likewise.
4848         * decl2.c (grok_method_quals): Likewise.
4849         (grokclassfn): Likewise.
4850         * friend.c (do_friend): Likewise.
4851         * method.c (implicitly_declare_fn): Adjust call to grokclassfn.
4852         * parser.c (make_call_declarator): Use cp_cv_quals, not tree.
4853         (make_pointer_declarator): Likewise.
4854         (make_reference_declarator): Likewise.
4855         (make_ptrmem_declarator): Likewise.
4856         (cp_parser_ptr_operator): Likewise.
4857         (cp_parser_cv_qualifier_seq_opt): Likewise.
4858         (cp_parser_cv_qualifier_opt): Remove.
4859         (cp_parser_new_declarator_opt): Adjust call to
4860         cp_parser_ptr_operator.
4861         (cp_parser_conversion_declaration_opt): Likewise.
4862         (cp_parser_declarator): Use cp_cv_quals, not tree.
4863         (cp_parser_direct_declarator): Likewise.
4864
4865 2004-06-26  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4866
4867         * call.c, cp-tree.h, cxx-pretty-print.c, decl.c, decl2.c:
4868         Rename DECL_STMT to DECL_EXPR.
4869         * init.c, name-lookup.c, parser.c, pt.c, semantics.c: Likewise.
4870         * cp-lang.c (LANG_HOOKS_SAFE_FROM_P): Deleted.
4871         * tree.c (cp_walk_subtrees): Don't call c_walk_subtrees.
4872
4873 2004-06-26  Jan Hubicka  <jh@suse.cz>
4874
4875         PR C++/14865
4876         * decl2.c (maybe_emit_vtables):  Always import_export_vtable for the
4877         reachability analysis.
4878
4879 2004-06-25  Mark Mitchell  <mark@codesourcery.com>
4880
4881         * cp-mudflap.c (mflang_flush_calls): Fix thinkos resulting from
4882         2004-06-23 change.
4883
4884 2004-06-25  Paul Brook  <paul@codesourcery.com>
4885
4886         * decl2.c (get_guard): Call targetm.cxx.guard_type.
4887         (get_guard_bits, get_guard_cond): Call targetm.cxx.guard_mask_bit.
4888
4889 2004-06-24  Mark Mitchell  <mark@codesourcery.com>
4890
4891         * decl.c (grokdeclarator): Restore error messages about __thread.
4892         * parser.c (cp_parser_decl_specifier_seq): Likewise.
4893
4894 2004-06-24  Jason Merrill  <jason@redhat.com>
4895
4896         PR c++/16115
4897         * decl.c (grokparms): Give the PARM_DECL reference type if the
4898         parameter is passed by invisible reference.
4899
4900 2004-06-24  Andreas Schwab  <schwab@suse.de>
4901
4902         * cp-tree.h (enum cp_storage_class): Remove trailing comma.
4903
4904 2004-06-23  Mark Mitchell  <mark@codesourcery.com>
4905
4906         * Make-lang.in (cp/lex.o): Do not depend on cp/lex.h.
4907         (cp/decl.o): Likewise.
4908         (cp/decl2.o): Likewise.
4909         (cp/pt.o): Likewise.
4910         (cp/semantics.o): Likewise.
4911         * config-lang.in (gtfiles): Do not reference cp/lex.h.
4912         * class.c: Do not include lex.h.
4913         (add_implicitly_declared_members): Do not use
4914         adding_implicit_members.
4915         (check_bases_and_members): Do not talk about grok_x_components.
4916         * cp/cp-tree.h (adding_implicit_members): Remove.
4917         (cp_storage_class): New type.
4918         (cp_decl_spec): Likewise.
4919         (cp_decl_specifier_seq): Likewise.
4920         (cp_parameter_declarator): Use it for the decl_specifiers field.
4921         (check_tag_decl): Adjust prototype.
4922         (shadow_tag): Likewise.
4923         (groktypename): Likewise.
4924         (start_decl): Likewise.
4925         (start_function): Likewise.
4926         (start_method): Likewise.
4927         (grok_x_components): Remove.
4928         (grokfield): Adjust prototype.
4929         (grokbitfield): Likewise.
4930         (finish_member_class_template): Remove.
4931         * decl.c: Do not include lex.h.
4932         (adding_implicit_members): Do not define.
4933         (check_tag_decl): Do not use trees to represent decl-specifiers.
4934         (shadow_tag): Likewise.
4935         (groktypename): Likewise.
4936         (start_decl): Likewise.
4937         (grokvardecl): Likewise.
4938         (grokdeclarator): Likewise.
4939         (grokparms): Likewise.
4940         (start_function): Likewise.
4941         (start_method): Likewise.
4942         * decl.h (grokdeclarator): Adjust prototype.
4943         * decl2.c: Do not include lex.h.
4944         (grok_x_components): Remove.
4945         (grokfield): Do not use trees to represent decl-specifiers.
4946         (grokbitfield): Likewise.
4947         * lex.c: Do not include lex.h.
4948         * lex.h: Remove.
4949         * parser.c: Include target.h.
4950         (clear_decl_specs): New function.
4951         (cp_parser_translation_unit): Do not use trees to represent
4952         decl-specifiers.
4953         (cp_parser_postfix_expression): Likewise.
4954         (cp_parser_new_type_id): Likewise.
4955         (cp_parser_condition): Likewise.
4956         (cp_parser_simple_declaration): Likewise.
4957         (cp_parser_decl_specifier_seq): Likewise.
4958         (cp_parser_function_specifier_opt): Likewise.
4959         (cp_parser_conversion_type_id): Likewise.
4960         (cp_parser_template_parameter): Likewise.
4961         (cp_parser_explicit_instantiation): Likewise.
4962         (cp_parser_type_specifier): Likewise.
4963         (cp_parser_simple_type_specifier): Likewise.
4964         (cp_parser_init_declarator): Likewise.
4965         (cp_parser_type_id): Likewise.
4966         (cp_parser_type_specifier_seq): Likewise.
4967         (cp_parser_parameter_declaration): Likewise.
4968         (cp_parser_member_declaration): Likewise.
4969         (cp_parser_exception_declaration): Likewise.
4970         (cp_parser_function_definition_from_specifiers_and_declarator):
4971         Likewise.
4972         (cp_parser_single_declaration): Likewise.
4973         (cp_parser_save_member_function_body): Likewise.
4974         (cp_parser_friend_p): Likewise.
4975         (cp_parser_set_storage_class): New function.
4976         (cp_parser_set_decl_spec_type): Likewise.
4977         * pt.c: Do not include lex.h.
4978         * semantics.c: Likewise.
4979         (finish_member_class_template): Remove.
4980
4981 2004-06-23  Roger Sayle  <roger@eyesopen.com>
4982
4983         * call.c (build_cxx_call): Don't call expand_tree_builtin.  No
4984         longer take both "args" and "convert_args" as arguments.
4985         (build_op_delete_call): Update call to build_cxx_call.
4986         (build_over_call): Likewise, update call to build_cxx_call.
4987         * cp-tree.h (build_cxx_call): Update funtion prototype.
4988         * typeck.c (build_function_call): Don't call expand_tree_builtin.
4989         * rtti.c (throw_bad_cast): Update call to build_cxx_call.
4990         (throw_bad_typeid): Likewise.
4991         (build_dynamic_cast_1): Likewise.
4992
4993 2004-06-22  Richard Henderson  <rth@redhat.com>
4994
4995         * class.c (build_vfn_ref): Take a pointer not object.  Build
4996         an OBJ_TYPE_REF.
4997         (cp_fold_obj_type_ref): New.
4998         * call.c (build_over_call): Update build_vfn_ref call.
4999         * cp-lang.c (LANG_HOOKS_FOLD_OBJ_TYPE_REF): New.
5000         * cp-tree.h (cp_fold_obj_type_ref): Declare.
5001
5002 2004-06-21  Jason Merrill  <jason@redhat.com>
5003
5004         PR c++/16112
5005         * cp-gimplify.c (cp_gimplify_init_expr): Look through
5006         CLEANUP_POINT_EXPR.
5007
5008 2004-06-21  Mark Mitchell  <mark@codesourcery.com>
5009
5010         * cp-tree.def (NEW_EXPR): Add a fourth slot.
5011         * cp-tree.h (PARMLIST_ELLIPSIS_P): Remove.
5012         (TREE_PARMLIST): Likewise.
5013         (CALL_DECLARATOR_PARMS): Likewise.
5014         (CALL_DECLARATOR_QUALS): Likewise.
5015         (CALL_DECLARATOR_EXCEPTION_SPEC): Likewise.
5016         (cp_declarator_kind): New type.
5017         (cp_parameter_declarator): Likewise.
5018         (cp_declarator): Likewise.
5019         (cp_error_declarator): Likewise.
5020         (no_parameters): Likewise.
5021         (groktypename): Change prototype.
5022         (start_decl): Likewise.
5023         (start_handler_parms): Likewise.
5024         (get_scope_of_declarator): Likewise.
5025         (start_function): Likewise.
5026         (start_preparsed_function): New function.
5027         (start_function): Change prototype.
5028         (start_method): Likewise.
5029         (grokfield): Likewise.
5030         (grokbitfield): Likewise.
5031         (build_new): Likewise.
5032         (make_pointer_declarator): Remove.
5033         (make_reference_declarator): Likewise.
5034         (make_call_declarator): Likewise.
5035         (set_quals_and_spec): Likewise.
5036         (process_template_parm): Change prototype.
5037         (begin_function_definition): Remove.
5038         (finish_parmlist): Remove.
5039         * decl.c (groktypename): Do not use trees to represent
5040         declarators.
5041         (start_decl): Likewise.
5042         (start_handler_parms): Remove.
5043         (get_scope_of_declarator): Reimplement.
5044         (grokdeclarator): Do not use trees to represent declarators.
5045         (grokparms): Likewise.
5046         (start_function): Likewise.
5047         (start_method): Likewise.
5048         (build_void_list_mode): Do not use TREE_PARMLIST.
5049         * decl.h (grokdeclarator): Change prototype.
5050         * decl2.c (grok_method_quals): Robustify.
5051         (grok_x_components): Do not use trees to represent declarators.
5052         (grokfield): Likewise.
5053         (grokbitfield): Likewise.
5054         (start_objects): Build FUNCTION_DECLs, not declarators.
5055         (start_static_storage_duration_function): Likewise.
5056         * init.c (build_new): Simplify.
5057         * lex.c (make_pointer_declarator): Remove.
5058         (make_reference_declarator): Likewise.
5059         (make_call_declarator): Likewise.
5060         (set_quals_and_spec): Likewise.
5061         * method.c (use_thunk): Use start_preparsed_function.
5062         (synthesize_method): Likewise.
5063         (implicitly_declare_fn): Build FUNCTION_DECLs, not declarators.
5064         * optimize.c (maybe_clone_body): Use start_preparsed_function.
5065         * parser.c (cp_error_declarator): New variable.
5066         (declarator_obstack): Likewise.
5067         (alloc_declarator): New function.
5068         (make_declarator): Likewise.
5069         (make_id_declarator): Likewise.
5070         (make_pointer_declarator): Likewise.
5071         (make_reference_declarator): Likewise.
5072         (make_ptrmem_declarator): Likewise.
5073         (make_call_declarator): Likewise.
5074         (make_array_declarator): Likewise.
5075         (no_parameters): New variable.
5076         (make_parameter_declarator): Likewise.
5077         (cp_parser_check_for_definition_in_return_type): Do not use trees
5078         to represent declarators.
5079         (cp_parser_translation_unit): Likewise.
5080         (cp_parser_new_expression): Likewise.
5081         (cp_parser_new_type_id): Likewise.
5082         (cp_parser_new_declarator_opt): Likewise.
5083         (cp_parser_direct_new_declarator): Likewise.
5084         (cp_parser_condition): Likewise.
5085         (cp_parser_declaration_statement): Likewise.
5086         (cp_parser_declaration): Likewise.
5087         (cp_parser_conversion_type_id): Likewise.
5088         (cp_parser_conversion_declarator_opt): Likewise.
5089         (cp_parser_template_parameter_list): Likewise.
5090         (cp_parser_template_parameter): Likewise.
5091         (cp_parser_explicit_instantiation): Likewise.
5092         (cp_parser_init_declarator): Likewise.
5093         (cp_parser_declarator): Likewise.
5094         (cp_parser_direct_declarator): Likewise.
5095         (cp_parser_type_id): Likewise.
5096         (cp_parser_parameter_declaration_clause): Likewise.
5097         (cp_parser_parameter_declaration_list): Likewise.
5098         (cp_parser_parameter_declaration): Likewise.
5099         (cp_parser_member_declaration): Likewise.
5100         (cp_parser_exception_declaration): Likewise.
5101         (cp_parser_check_declarator_template_parameters): Likewise.
5102         (cp_parser_function_definition_from_specifiers_and_declarator):
5103         Likewise.
5104         (cp_parser_save_member_function_body): Likewise.
5105         * pt.c (process_template_parm): Add is_non_type parameter.
5106         (convert_template_argument): Adjust call to groktypename.
5107         (tsubst_call_declarator_parms): Remove use of TREE_PARMLIST.
5108         (tsubst): Do not expect declarators.
5109         (tsubst_copy_and_build): Adjust NEW_EXPR case to handle additional
5110         argument.
5111         (instantiate_decl): Use start_preparsed_function.
5112         * semantics.c (begin_function_definition): Remove.
5113         (finish_parmlist): Remove.
5114         * cp-mudflap.c (mflang_flush_calls): Build FUNCTION_DECLs, not
5115         declarators.
5116
5117 2004-06-21  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5118
5119         * call.c (build_vfield_ref): Add new operand for COMPONENT_REF.
5120         (build_new_method_call): Likewise.
5121         * decl.c (local_variable_p_walkfn): Don't walk into types.
5122         * decl2.c (grok_array_decl): Add new operands for ARRAY_REF.
5123         (build_anon_union_vars): Add new operand for COMPONENT_REF.
5124         * init.c (buld_new): Add new operand for ARRAY_REF.
5125         * method.c (do_build_copy_constructor): New op for COMPONENT_REF.
5126         (do_build_assign_ref): Likewise.
5127         * parser.c (cp_parser_direct_new_declarator): Add new operands
5128         for ARRAY_REF.
5129         (cp_parser_direct_declarator): Likewise.
5130         * pt.c (tsubst): Likewise.
5131         (tsubst_copy, tsubst_copy_and_build): Likewise; also add new operand
5132         for COMPONENT_REF.
5133         * semantics.c (finish_non_static_data_member): Add new operand
5134         for COMPONENT_REF.
5135         * typeck.c (build_class_member_access_expr): Likewise.
5136         (build_class_member_access_expr, finish_class_member_access_expr):
5137         Likewise.
5138         (build_ptrmemfunc_access_expr): Likewise.
5139         (build_array_ref): Add new operands for ARRAY_REF.
5140         * typeck2.c (split_nonconstant_init_1): Likewise; COMPONENT_REF too.
5141         * tree.c (count_trees_r, no_linkage_helper): Don't walk in types.
5142
5143 2004-06-21  Richard Henderson  <rth@redhat.com>
5144
5145         * dump.c (cp_dump_tree): Don't use dump_next_stmt.
5146         * parser.c (cp_parser_jump_statement): Update commentary.
5147         * pt.c (tsubst_expr): Use RETURN_EXPR.
5148         * semantics.c (finish_return_stmt): Likewise.
5149         (finalize_nrv_r): Likewise.
5150         * typeck.c, typeck2.c: Update file start commentary.
5151
5152 2004-06-21  Richard Henderson  <rth@redhat.com>
5153
5154         * semantics.c (finish_expr_stmt): Call verify_sequence_points.
5155
5156 2004-06-20  Richard Henderson  <rth@redhat.com>
5157
5158         * cp-tree.h (add_decl_stmt): Declare.
5159         * pt.c (tsubst_copy): Abort for CLEANUP_POINT_EXPR.
5160         * semantics.c (maybe_cleanup_point_expr): New.
5161         (add_decl_stmt, finish_expr_stmt, finish_return_stmt,
5162         finish_for_expr, finish_switch_cond): Use it.
5163         (finalize_nrv_r): Don't build an EXPR_STMT.  Don't frob TREE_CHAIN.
5164
5165 2004-06-20  Richard Henderson  <rth@redhat.com>
5166
5167         * cp-tree.def (CLEANUP_STMT, IF_STMT): Move from c-common.def.
5168         * cp-gimplify.c (gimplify_if_stmt): Move from c-gimplify.c.
5169         (cp_gimplify_expr): Call it.
5170         (gimplify_cleanup_stmt): Move from c-gimplify.c.
5171         (cp_genericize): New.
5172         * decl.c (finish_function): Call it.
5173         * cp-tree.h (cp_stmt_codes): Add CLEANUP_STMT, IF_STMT.
5174         (CLEANUP_BODY, CLEANUP_EXPR, CLEANUP_DECL): Move from c-common.h.
5175         (IF_COND, THEN_CLAUSE, ELSE_CLAUSE): Likewise.
5176         (cp_genericize): Declare.
5177         * cxx-pretty-print.c (pp_cxx_statement): Add CLEANUP_STMT, IF_STMT.
5178         * dump.c (cp_dump_tree): Likewise.
5179         * semantics.c (push_cleanup): Move from c-semantics.c.
5180
5181 2004-06-20  Zack Weinberg  <zack@codesourcery.com>
5182
5183         * cp-lang.c (has_c_linkage): Implement.
5184
5185         * cp-tree.h (set_mangled_name_for_decl): Don't prototype.
5186         * decl.c (duplicate_decls): Use COPY_DECL_RTL.
5187         (builtin_function_1): Don't call make_decl_rtl.
5188         (build_cp_library_fn): Don't call set_mangled_name_for_decl.
5189         (grokvardecl): Don't call mangle_decl.
5190         * except.c (nothrow_libfn_p): Look at DECL_NAME, not
5191         DECL_ASSEMBLER_NAME.
5192         * method.c (set_mangled_name_for_decl): Delete.
5193         * name-lookup.c (pushdecl): When a local extern shadows a
5194         file-scope declaration of the same object, give both DECLs the
5195         same DECL_UID.
5196         * typeck.c (cxx_mark_addressable): Don't set TREE_ADDRESSABLE
5197         on DECL_ASSEMBLER_NAME.
5198
5199 2004-06-19  Richard Henderson  <rth@redhat.com>
5200
5201         * cp-gimplify.c: Remove unnecessary prototypes.
5202         (cp_gimplify_stmt): Merge into ...
5203         (cp_gimplify_expr): ... here.  Move to end of file.  Handle
5204         stmts_are_full_exprs_p frobbing.
5205         * cp-tree.h (cp_gimplify_stmt): Remove.
5206         * pt.c (tsubst_expr): Merge prep_stmt and unify.
5207         * tree.c (init_tree): Don't set lang_gimplify_stmt.
5208
5209 2004-06-18  Richard Henderson  <rth@redhat.com>
5210
5211         PR c++/16034
5212         * semantics.c (begin_cond): New.
5213         (finish_cond): Rewrite to handle template DECL_STMTs specially.
5214         Assume that non-template decls go land before the conditional.
5215         (simplify_loop_decl_cond): Likewise.
5216         (begin_if_stmt, finish_if_stmt_cond, begin_while_stmt,
5217         finish_while_stmt_cond, finish_for_init_stmt, finish_for_cond,
5218         begin_switch_stmt, finish_switch_cond): Update to match.
5219
5220 2004-06-17  Jason Merrill  <jason@redhat.com>
5221
5222         PR c++/16015
5223         * semantics.c (simplify_aggr_init_expr): Don't return the slot.
5224         (finish_stmt_expr_expr): Update type after conversions.
5225         (finish_stmt_expr): Wrap initializer in CLEANUP_POINT_EXPR.
5226         Handle void initializer.
5227         * tree.c (build_cplus_new): Make AGGR_INIT_EXPRs void.
5228
5229 2004-06-17  Geoffrey Keating  <geoffk@apple.com>
5230
5231         * class.c (build_clone): Don't call defer_fn, let mark_used do it.
5232         * cp-tree.h (defer_fn): Delete.
5233         * decl2.c (defer_fn): Delete.
5234         (finish_file): Simplify deferred_fns loops; check that
5235         only used inline functions get into deferred_fns.
5236         (mark_used): Inline previous contents of defer_fn.
5237
5238 2004-06-16  Richard Henderson  <rth@redhat.com>
5239
5240         * cp-tree.h (COMPOUND_STMT_TRY_BLOCK, COMPOUND_STMT_BODY_BLOCK): Kill.
5241         (BIND_EXPR_TRY_BLOCK, BIND_EXPR_BODY_BLOCK): New.
5242         * cxx-pretty-print.c (pp_cxx_function_definition): Move handling
5243         of CTOR_INITIALIZER ...
5244         (pp_cxx_statement): ... here.
5245         * decl.c (begin_function_body): Don't set COMPOUND_STMT_BODY_BLOCK.
5246         (finish_function): Use alloc_stmt_list to zap entire function.
5247         * parser.c (cp_parser_compound_statement): Update commentary.
5248         * pt.c (tsubst_expr): Use BIND_EXPR instead of COMPOUND_STMT.
5249         * semantics.c (begin_compound_stmt, finish_compound_stmt): Likewise.
5250         (finish_stmt_expr): Don't look through COMPOUND_STMT.
5251
5252 2004-06-16  Geoffrey Keating  <geoffk@apple.com>
5253
5254         * pt.c (mark_decl_instantiated): Don't call defer_fn.
5255
5256 2004-06-16  Richard Henderson  <rth@redhat.com>
5257
5258         * parser.c (cp_parser_labeled_statement): Update commentary.
5259         * pt.c (tsubst_expr): Use CASE_LABEL_EXPR.
5260         * tree.c (mark_local_for_remap_r): Likewise.
5261
5262 2004-06-16  Richard Henderson  <rth@redhat.com>
5263
5264         * parser.c (cp_parser_asm_definition): Update commentary.
5265         * pt.c (tsubst_expr): Use ASM_EXPR.
5266         * semantics.c (finish_asm_stmt): Likewise.
5267
5268 2004-06-16  Richard Henderson  <rth@redhat.com>
5269
5270         * decl.c (finish_destructor_body): Use LABEL_EXPR.
5271         * parser.c (cp_parser_statement): Update commentary.
5272         * pt.c (tsubst_expr): Use LABEL_EXPR, GOTO_EXPR.
5273         * semantics.c (finish_goto_stmt, finish_label_stmt): Likewise.
5274         * tree.c (mark_local_for_remap_r): Likewise.
5275
5276 2004-06-16  Richard Henderson  <rth@redhat.com>
5277
5278         PR c++/16012
5279         * semantics.c (begin_for_stmt, begin_for_stmt): Do put the init
5280         statement in FOR_INIT_STMT for templates.
5281
5282 2004-06-15  Richard Henderson  <rth@redhat.com>
5283
5284         * call.c (initialize_reference): Don't build CLEANUP_STMT here.
5285         * cp-gimplify.c (cp_gimplify_stmt): Remove next_p argument.
5286         (genericize_try_block): Use gimplify_stmt.
5287         (genericize_catch_block, genericize_eh_spec_block): Likewise.
5288         (cp_gimplify_init_expr): Remove STMT_EXPR special case.
5289         (gimplify_must_not_throw_expr): Update voidify_wrapper_expr call.
5290         * cp-lang.c (LANG_HOOKS_TREE_INLINING_TREE_CHAIN_MATTERS_P): Remove.
5291         (cp_tree_chain_matters_p): Remove.
5292         * cp-tree.h (COMPOUND_STMT_TRY_BLOCK): New.
5293         (COMPOUND_STMT_BODY_BLOCK): New.
5294         (STATEMENT_LIST_NO_SCOPE, STATEMENT_LIST_TRY_BLOCK): New.
5295         (EXPR_STMT_STMT_EXPR_RESULT): New.
5296         (building_stmt_tree): Check cur_stmt_list.
5297         (tf_stmt_expr_cmpd, tf_stmt_expr_body): Remove.
5298         (BCS_NO_SCOPE, BCS_TRY_BLOCK, BCS_FN_BODY): New.
5299         * decl.c (poplevel): Use pop_stmt_list for minding cleanups.
5300         (cp_finish_decl): Use push_cleanup.
5301         (start_function, finish_function): Use statement lists.
5302         (finish_stmt): Do nothing.
5303         * except.c (begin_eh_spec_block): Use statement lists.
5304         (check_handlers_1, check_handlers): Likewise.
5305         * init.c (construct_virtual_base): Don't add extra compound stmts.
5306         (build_vec_init): Likewise.
5307         * name-lookup.c (maybe_push_cleanup_level): Use statement lists.
5308         * name-lookup.h (struct cp_binding_level): Add statement_list.
5309         * parser.c (cp_parser_statement): Take the STMT_EXPR node, not a bool.
5310         (cp_parser_labeled_statement, cp_parser_expression_statement,
5311         cp_parser_statement_seq_opt): Likewise.
5312         (cp_parser_compound_statement): Likewise.  Take bool for try block.
5313         (cp_parser_selection_statement): Tidy if processing.
5314         (cp_parser_already_scoped_statement): Rewrite to do what it says.
5315         * pt.c (tsubst_copy): Move STMT_EXPR to tsubst_expr.
5316         (tsubst_expr): Rewrite STMT_EXPR processing.  Handle STATEMENT_LIST.
5317         Mind COMPOUND_STMT_TRY_BLOCK, EXPR_STMT_STMT_EXPR_RESULT.
5318         * semantics.c (do_poplevel, do_pushlevel): Use statement lists.
5319         (finish_cond): New, rewritten from FINISH_COND.
5320         (simplify_loop_decl_cond): New.
5321         (finish_expr_stmt): Avoid nested EXPR_STMTs.
5322         (begin_if_stmt, finish_if_stmt_cond, finish_then_clause,
5323         begin_else_clause, finish_else_clause, finish_if_stmt,
5324         begin_while_stmt, finish_while_stmt_cond, finish_while_stmt,
5325         begin_do_stmt, finish_do_body, begin_for_stmt, finish_for_init_stmt,
5326         finish_for_cond, finish_for_stmt, begin_switch_stmt,
5327         finish_switch_cond, finish_switch_stmt, begin_try_block,
5328         finish_try_block, finish_cleanup_try_block, finish_function_try_block,
5329         finish_handler_sequence, finish_function_handler_sequence,
5330         begin_handler, finish_handler_parms, finish_handler,
5331         begin_stmt_expr, finish_stmt_expr_expr, finish_stmt_expr): Rewrite
5332         using statement lists.
5333         (begin_compound_stmt): Replace has_no_scope argument with flags.
5334         Update all callers.  Use statement lists.
5335         (finish_compound_stmt): Likewise.
5336         (finish_decl_cleanup, finish_eh_cleanup): Use push_cleanup.
5337         (current_scope_stmt_stack): Remove.
5338         (simplify_aggr_init_expr): Don't muck with TREE_CHAIN.
5339         * typeck2.c (split_nonconstant_init_1, split_nonconstant_init):
5340         Rewrite with statement lists.
5341
5342 2004-06-15  Alexandre Oliva  <aoliva@redhat.com>
5343
5344         * parser.c: Change all assignments of c_lex_string_translate
5345         to true and false to 1 and 0.
5346         (cp_lexer_read_token): Convert type of the translated string.
5347         (cp_parser_skip_to_closing_parentheses): Preserve original
5348         value of c_lex_string_translate, and set it to -1 while
5349         running.
5350         (cp_parser_cache_group): Likewise.
5351         (cp_parser_cache_group_1): Renamed.
5352         (cp_parser_asm_operand_list): Remove redundant setting of
5353         c_lex_string_translate.
5354         (cp_parser_primary_expression) [CPP_STRING, CPP_WSTRING]:
5355         Handle chained strings.
5356
5357 2004-06-12  Andrew Pinski  <apinski@apple.com>
5358
5359         PR c++/14639
5360         Revert:
5361         2004-06-02  Andrew Pinski  <pinskia@physics.uc.edu>
5362
5363                 * cp-tree.h: Fix typo.
5364
5365                 * cp-tree.h: Include cgraph.h
5366                 (DECL_NEEDED_P): Use cgraph_*node on the decl instead of
5367                 TREE_SYMBOL_REFERENCED on the DECL_ASSEMBLER_NAME of the decl.
5368
5369 2004-06-12  Jason Merrill  <jason@redhat.com>
5370
5371         PR tree-optimization/14107
5372         * decl.c (finish_function): Warn about no return in all functions.
5373
5374 2004-06-15  Paolo Bonzini  <bonzini@gnu.org>
5375
5376         * cp-tree.h (struct language_function): Remove cannot_inline.
5377         * decl.c (save_function_data): cannot_inline is no more.
5378         (cxx_push_function_context): Likewise.
5379         * decl2.c (start_objects, start_static_storage_duration_function):
5380         Reset DECL_INLINE, set DECL_UNINLINABLE.
5381
5382 2004-06-14  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
5383
5384         PR c++/15967
5385         * search.c (lookup_field): Propagate the ambiguity list.
5386         (lookup_fnfields): Likewise.
5387
5388 2004-06-14  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
5389
5390         PR c++/15947
5391         * parser.c (cp_parser_template_name): Ctors/dtors never need a
5392         template keyword to disambiguate.
5393
5394 2004-06-14  Mark Mitchell  <mark@codesourcery.com>
5395
5396         PR c++/15096
5397         * decl.c (grokdeclarator): Ignore pointer-to-members when
5398         computing template depth.
5399
5400         PR c++/14930
5401         * name-lookup.c (pushtag): Do not try to put class declarations in
5402         explicit specialization scopes.
5403
5404 2004-06-11  Andrew Pinski  <pinskia@physics.uc.edu>
5405
5406         * decl.c (grokdeclarator): Do not depend on C99's _Bool's behavior.
5407
5408 2004-06-11  Mark Mitchell  <mark@codesourcery.com>
5409
5410         PR c++/15862
5411         * name-lookup.c (unqualified_namespace_lookup): Do not ignore type
5412         bindings for undeclared built-ins.
5413
5414 2004-06-11  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
5415
5416         * typeck2.c (abstract_virtual_errors): Reword diagnostics, make them
5417         appear at the correct location.
5418
5419 2004-06-10  Jason Merrill  <jason@redhat.com>
5420
5421         PR c++/15875
5422         Revert:
5423         2004-06-01  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
5424         * init.c (build_offset_ref): Build SCOPE_REF with non-null
5425         TREE_TYPE for non-dependent names.
5426         * pt.c (type_dependent_expression_p): Handle SCOPE_REF with
5427         unknown_type_node as its TREE_TYPE.
5428         * cxx-pretty_print.c (pp_cxx_unqualified_id): Handle BASELINK.
5429         * error.c (dump_decl) <SCOPE_REF case>: Use pp_expression.
5430         (dump_expr) <SCOPE_REF case>: Likewise.
5431
5432 2004-06-10  Mark Mitchell  <mark@codesourcery.com>
5433
5434         PR c++/15227
5435         * parser.c (cp_parser_direct_declarator): Robustify.
5436
5437         PR c++/15877
5438         * pt.c (tsubst_copy): Use decl_constant_value on enumeration
5439         constants in non-dependent contexts.
5440
5441         PR c++/14211
5442         PR c++/15076
5443         * typeck.c (build_static_cast): Wrap casts in NON_LVALUE_EXPR when
5444         necessary.
5445
5446 2004-06-10  Jakub Jelinek  <jakub@redhat.com>
5447
5448         PR c++/14791
5449         * decl.c (duplicate_decls): Handle fileptr_type_node arguments
5450         specially.
5451
5452 2004-06-09  Mark Mitchell  <mark@codesourcery.com>
5453
5454         Revert:
5455         PR c++/15815
5456         2004-06-07  Mark Mitchell  <mark@codesourcery.com>
5457         * lex.c (handle_pragma_interface): Deprecate.
5458         (handle_pragma_implementation): Likewise.
5459
5460 2004-06-09  Andrew Pinski  <pinskia@physics.uc.edu>
5461
5462         * g++spec.c (lang_specific_driver): Remove check for -lm
5463         and -lmath when check it see if it was the math library.
5464
5465 2004-06-08  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
5466
5467         PR c++/7841
5468         * parser.c (cp_parser_direct_declarator): Reject constructor named
5469         as qualified template-id.
5470
5471 2004-06-07  Mark Mitchell  <mark@codesourcery.com>
5472
5473         PR c++/15815
5474         * lex.c (handle_pragma_interface): Deprecate.
5475         (handle_pragma_implementation): Likewise.
5476
5477 2004-06-07  Mark Mitchell  <mark@codesourcery.com>
5478
5479         PR c++/15766
5480         * parser.c (cp_parser_iteration_statement): Fix typo in error
5481         message.
5482
5483         PR c++/14777
5484         * pt.c (tsubst_default_argument): Do not defer access checks
5485         while substituting into the default argument.
5486
5487         PR c++/15554
5488         * pt.c (tsubst_copy): Do not try to substitute for an enumeration
5489         constant in a non-dependent context.
5490
5491         PR c++/15057
5492         * except.c (build_throw): Ensure that temp_expr has been
5493         initialized.
5494
5495 2004-06-06  Roger Sayle  <roger@eyesopen.com>
5496
5497         * cp/cp-tree.h (lvalue_or_else): Add function prototype.
5498
5499 2004-06-06  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
5500
5501         PR c++/15503
5502         * parser.c (cp_parser_mem_initializer_id): Gracefully reject
5503         'typename', and accept 'template'.
5504
5505 2004-06-03  Andrew Pinski  <pinskia@physics.uc.edu>
5506             Jan Hubicka  <jh@suse.cz>
5507
5508         PR c++/14639
5509         * method.c (use_think): Do not mark thunk as referenced.
5510
5511 2004-06-03  Matt Austern  <austern@apple.com>
5512
5513         PR c++/15428
5514         * decl2.c (maybe_emit_vtables): If TARGET_WEAK_NOT_IN_ARCHIVE_TOC
5515         is nonzero, and if we see a noninline definition of a key method,
5516         make the vtables nonweak.
5517
5518 2004-06-02  Matt Austern  <austern@apple.com>
5519
5520         * cp-tree.h (instantiate_decl): new boolean parameter,
5521         undefined_ok. Current behavior is equivalent to its being 0.
5522         * decl2.c (mark_used): Add new argument when calling instantiate_decl
5523         * pt.c (mark_decl_instantiated): Unconditionally make
5524         instantiations explicit unconditionally
5525         (do_decl_instantiation): Don't call SET_DECL_EXPLICIT_INSTANTIATION,
5526         since mark_decl_instantiated now does it.
5527         (instantiate_class_member): New.  Instantiate a member of an
5528         explicitly instantiated class template.
5529         (do_type_instantiation): Explicitly instantiate members of an
5530         explicitly instantiated class template.
5531         (instantiate_decl): if undefined_ok is nonzero, and if we're
5532         trying to explicitly instantiated a template with no definition,
5533         change it to an implicit instantiation.
5534         (instantiate_pending_templates): Add new argument to instantiate_decl.
5535         * tree.c (cp_cannot_inline_tree_fn): Likewise.
5536
5537 2004-06-02  Andrew Pinski  <pinskia@physics.uc.edu>
5538
5539         * cp-tree.h: Fix typo.
5540
5541         * cp-tree.h: Include cgraph.h
5542         (DECL_NEEDED_P): Use cgraph_*node on the decl instead of
5543         TREE_SYMBOL_REFERENCED on the DECL_ASSEMBLER_NAME of the decl.
5544
5545 2004-06-01  Jason Merrill  <jason@redhat.com>
5546
5547         PR c++/15142
5548         * call.c (call_builtin_trap): Remove type parm.
5549         (convert_arg_to_ellipsis): Change a non-POD argument to integer type.
5550         (build_x_va_arg): Dereference a null pointer for a non-POD argument.
5551
5552 2004-06-01  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
5553
5554         PR c++/13092
5555         * init.c (build_offset_ref): Build SCOPE_REF with non-null
5556         TREE_TYPE for non-dependent names.
5557         * pt.c (type_dependent_expression_p): Handle SCOPE_REF with
5558         unknown_type_node as its TREE_TYPE.
5559         * cxx-pretty_print.c (pp_cxx_unqualified_id): Handle BASELINK.
5560         * error.c (dump_decl) <SCOPE_REF case>: Use pp_expression.
5561         (dump_expr) <SCOPE_REF case>: Likewise.
5562
5563 2004-06-01  Richard Henderson  <rth@redhat.com>
5564             Andrew Pinski  <pinskia@physics.uc.edu>
5565
5566         * lex.c (reswords): Rename "__offsetof" to "__builtin_offsetof".
5567         * parser.c (struct cp_parser): Remove in_offsetof.
5568         (cp_parser_new): Don't set it.
5569         (cp_parser_unary_expression): Don't check it.
5570         (cp_parser_postfix_open_square_expression): Split out from ...
5571         (cp_parser_postfix_expression): ... here.
5572         (cp_parser_postfix_dot_deref_expression): Likewise.
5573         (cp_parser_builtin_offsetof): New.
5574         (cp_parser_primary_expression): Use it.
5575
5576 2004-06-01  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
5577
5578         PR c++/14932
5579         * parser.c (cp_parser_postfix_expression): Allow subscript
5580         operator in offsetof.
5581
5582 2004-05-31  Mark Mitchell  <mark@codesourcery.com>
5583
5584         PR c++/15701
5585         * friend.c (add_friend): Do not try to perform access checks for
5586         functions from dependent classes.
5587
5588 2004-05-31  Gabriel Dos Reis  <gdr@integrable-solutions.net>
5589
5590         * cxx-pretty-print.c (pp_cxx_colon_colon): Expor.
5591         (pp_cxx_begin_template_argument_list): Turn into a function.
5592         (pp_cxx_end_template_argument_list): Likewise.
5593         (pp_cxx_separate_with): Define.
5594         (pp_cxx_unqualified_id): Tidy.
5595         (pp_cxx_primary_expression): Likewise.
5596         (pp_cxx_postfix_expression): Likewise.
5597         (pp_cxx_expression): Likewise.
5598         (pp_cxx_simple_type_specifier): Likewise.
5599         (pp_cxx_type_specifier_seq): Likewise.
5600         (pp_cxx_parameter_declaration_clause): Likewise.
5601         (pp_cxx_exception_specification): Likewise.
5602         (pp_cxx_direct_declarator): Likewise.
5603         (pp_cxx_type_id): Likewise.
5604         * cxx-pretty-print.h (pp_cxx_whitespace): Export from
5605         cxx-pretty-print.c.
5606         (pp_cxx_left_paren): Likewise.
5607         (pp_cxx_right_paren): Likewise.
5608         (pp_cxx_left_brace): Likewise.
5609         (pp_cxx_right_brace): Likewise.
5610         (pp_cxx_left_bracket): Likewise.
5611         (pp_cxx_right_bracket): Likewise.
5612         (pp_cxx_dot): Likewise.
5613         (pp_cxx_identifier): Likewise.
5614         (pp_cxx_tree_identifier): Likewise.
5615         (pp_cxx_ampersand): New macro.
5616         (pp_cxx_star): Likewise.
5617         (pp_cxx_arrow): Likewise.
5618         (pp_cxx_semicolon): Likewise.
5619         (pp_cxx_complement): Likewise.
5620         (pp_cxx_begin_template_argument_list): Declaree.
5621         (pp_cxx_end_template_argument_list): Likewise.
5622         (pp_cxx_colon_colon): likewise.
5623
5624 2004-05-31  Eric Botcazou  <ebotcazou@libertysurf.fr>
5625
5626         * parser.c (cp_parser_simple_type_specifier): Explicitly test
5627         against NULL_TREE.
5628
5629 2004-05-31  Kazu Hirata  <kazu@cs.umass.edu>
5630
5631         * call.c, class.c, cp-tree.def, decl2.c, name-lookup.c, pt.c,
5632         typeck.c: Fix comment formatting.
5633
5634 2004-05-30  Andrew Pinski  <pinskia@physics.uc.edu>
5635
5636         * cp-lang.c (cp_expand_decl): Remove.
5637         (LANG_HOOKS_EXPAND_DECL): Use c_expand_decl.
5638
5639 2004-05-30  Andreas Jaeger  <aj@suse.de>
5640
5641         * lang-specs.h: Add missing initializers for .ii.
5642
5643 2004-05-28  Aldy Hernandez  <aldyh@redhat.com>
5644
5645         * decl.c (cp_make_fname_decl): Free return value from
5646         fname_as_string.
5647
5648 2004-05-28  Mark Mitchell  <mark@codesourcery.com>
5649
5650         PR c++/15083
5651         * decl2.c (delete_sanity): Set TREE_SIDE_EFFECTS on a DELETE_EXPR,
5652         even in a templat.e
5653         * init.c (build_new): Likewise.
5654
5655         PR c++/15640
5656         * name-lookup.c (arg_assoc): Robustify.
5657
5658         PR c++/15471
5659         * typeck.c (unary_complex_lvalue): Use context_for_name_lookup
5660         when determining the scope to use for a pointer to member.
5661         (lookup_anon_field): Give it external linkage.
5662         * cp-tree.h (lookup_anon_field): Declare it.
5663         * expr.c (cplus_expand_constant): Use it.
5664
5665 2004-05-28  Mark Mitchell  <mark@codesourcery.com>
5666
5667         PR c++/14668
5668         * parser.c (cp_parser_simple_type_specifier): Call
5669         maybe_note_name_used_in_class.
5670
5671 2004-05-28  Tom Marshall  <tmarshall@real.com>
5672
5673         PR c++/15214
5674         * class.c (finish_struct_1): Warn only if the dtor is non-private or
5675         the class has friends.
5676
5677 2004-05-27  Adam Nemet  <anemet@lnxw.com>
5678
5679         PR c++/12883
5680         * decl.c (complete_array_type): Set TYPE_NEEDS_CONSTRUCTING and
5681         TYPE_HAS_NONTRIVIAL_DESTRUCTOR based on the underlying type.
5682
5683 2004-05-24  Geoffrey Keating  <geoffk@apple.com>
5684
5685         * method.c (implicitly_declare_fn): Don't call defer_fn; abort
5686         if it might be needed.
5687         * pt.c (mark_decl_instantiated): Only call defer_fn if
5688         the function actually needs processing in finish_file.
5689         * decl2.c (finish_file): Add check that elements in
5690         deferred_fns_used are really needed there.  Remove unnecessary
5691         test of DECL_SAVED_TREE.
5692
5693 2004-05-23  Paolo Bonzini  <bonzini@gnu.org>
5694
5695         * Make-lang.in: No need to specify $(LIBCPP).
5696
5697 2004-05-23  Mark Mitchell  <mark@codesourcery.com>
5698
5699         PR c++/15044
5700         * parser.c (cp_parser_class_head): Robustify.
5701
5702         PR c++/15317
5703         * parser.c (cp_parser_decl_specifier_seq): Correct error in
5704         comment.
5705         (cp_parser_constructor_declarator_p): Treat attributes
5706         as decl-specifiers.
5707
5708         PR c++/15329
5709         * typeck.c (build_unary_op): Do not attempt to resolve casts to
5710         base classes in templates.
5711
5712 2004-05-23  Mark Mitchell  <mark@codesourcery.com>
5713
5714         PR c++/15165
5715         * pt.c (instantiate_template): Robustify.
5716
5717 2004-05-23  Mark Mitchell  <mark@codesourcery.com>
5718
5719         PR c++/15025
5720         * decl.c (xref_tag): Issue errors about redeclaring template
5721         classes as non-template classes.
5722
5723 2004-05-23  Mark Mitchell  <mark@codesourcery.com>
5724
5725         PR c++/14821
5726         * name-lookup.c (supplement_binding): Allow redefinitions of
5727         namespace aliases.
5728
5729         PR c++/14883
5730         * parser.c (cp_parser_template_argument): Robustify.
5731
5732 2004-05-23  Gabriel Dos Reis  <gdr@integrable-solutions.net>
5733
5734         * class.c (alter_access): Use %E format specifier to print an
5735         identifier node.  Avoid looking at the IDENTIFIER_POINTER.
5736         (push_lang_context): Likewise.
5737         * decl.c (lookup_label): Likewise.
5738         (grokdeclarator): Likewise.
5739         * parser.c (cp_parser_check_for_invalid_template_id): Likewise.
5740         * pt.c (do_type_instantiation): Likewise.
5741         * tree.c (handle_java_interface_attribute): Likewise.
5742         (handle_com_interface_attribute): Likewise.
5743         (handle_init_priority_attribute): Likewise.
5744
5745 2004-05-22  Mark Mitchell  <mark@codesourcery.com>
5746
5747         PR c++/15285
5748         PR c++/15299
5749         * pt.c (build_non_dependent_expr): Expand the set of tree nodes
5750         recognized as overloaded functions.
5751
5752 2004-05-22  Mark Mitchell  <mark@codesourcery.com>
5753
5754         PR c++/15507
5755         * class.c (layout_nonempty_base_or_field): Do not try to avoid
5756         layout conflicts for unions.
5757
5758         PR c++/15542
5759         * typeck.c (build_x_unary_op): Instantiate template class
5760         specializations before looking for "operator &".
5761
5762         PR c++/15427
5763         * typeck.c (complete_type): Layout non-dependent array types, even
5764         in templates.
5765
5766         PR c++/15287
5767         * typeck.c (build_unary_op): Do not optimize "&x[y]" when in a
5768         template.
5769
5770 2004-05-22  Roger Sayle  <roger@eyesopen.com>
5771
5772         * name-lookup.c (check_for_out_of_scope_variable): Avoid ICE by
5773         returning when TREE_TYPE is error_mark_node.
5774         * typeck.c (require_complete_type): Return error_mark_node if
5775         value's type is an error_mark_node.
5776
5777 2004-05-20  Andrew Pinski  <pinskia@physics.uc.edu>
5778
5779         * optimize.c (calls_setjmp_r): Remove.
5780         (calls_setjmp_p): Remove.
5781         * cp-tree.c (calls_setjmp_p): Remove.
5782         * decl.c (finish_function): Do not call calls_setjmp_p.
5783
5784 2004-05-18  Zack Weinberg  <zack@codesourcery.com>
5785
5786         * decl.c (cp_finish_decl): Use mark_decl_referenced.
5787         * decl2.c (maybe_make_one_only): Likewise.
5788         * method.c (use_thunk): Likewise.
5789
5790 2004-05-18  Jason Merrill  <jason@redhat.com>
5791
5792         * class.c (build_base_path): Tidy a bit.
5793
5794 2004-05-14  Geoffrey Keating  <geoffk@apple.com>
5795
5796         * name-lookup.c (struct scope_binding): New.
5797         (EMPTY_SCOPE_BINDING): New.
5798         (lookup_using_namespace): Take a scope_binding instead of a
5799         cxx_binding.
5800         (qualified_lookup_using_namespace): Likewise.
5801         (cxx_binding_clear): Delete.
5802         (do_nonmember_using_decl): Use a scope_binding instead of a
5803         cxx_binding.
5804         (lookup_tag): Don't call select_decl.
5805         (ambiguous_decl): Don't return anything (and change callers to match).
5806         Take a scope_binding as the second parameter.
5807         (lookup_namespace_name): Use a scope_binding instead of a
5808         cxx_binding.
5809         (unqualified_namespace_lookup): Likewise.
5810         (lookup_qualified_name): Likewise.
5811         (select_decl): Take a scope_binding instead of a cxx_binding.
5812         Use macros rather than hand-coding tests for type-ness.
5813
5814 2004-05-13  Diego Novillo  <dnovillo@redhat.com>
5815
5816         * cp-gimplify.c: Rename from cp-simplify.c.
5817         * Make-lang.in, optimize.c: Update.
5818
5819 2004-05-13  Diego Novillo  <dnovillo@redhat.com>
5820
5821         Merge from tree-ssa-20020619-branch.  See
5822         ChangeLog.tree-ssa for details.
5823
5824         * Make-lang.in, call.c, class.c, cp-lang.c, cp-tree.def,
5825         cp-tree.h, cvt.c, decl.c, decl2.c, error.c, except.c,
5826         expr.c, init.c, name-lookup.h, optimize.c, parser.c,
5827         pt.c, rtti.c, semantics.c, tree.c, typeck.c, typeck2.c:
5828         Merged.
5829         * cp-mudflap.c: New file.
5830         * cp-simplify.c:: New file.
5831
5832 2004-05-03  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
5833
5834         PR c++/14389
5835         * decl2.c (check_classfn): For member templates, compare also the
5836         template parameters to match the declaration.
5837         * cp-tree.h: Adjust declaration of check_classfn.
5838         * decl.c (start_decl, grokfndecl): Adjust callers of check_classfn.
5839         * friend.c (do_friend): Likewise.
5840         * pt.c (tsubst_friend_function): Likewise.
5841
5842 2004-05-01  Zack Weinberg  <zack@codesourcery.com>
5843
5844         * decl.c (reshape_init): Do not apply TYPE_DOMAIN to a VECTOR_TYPE.
5845         Instead, dig into the representation type to find the array bound.
5846
5847 2004-04-30  Jason Merrill  <jason@redhat.com>
5848
5849         Refer to base members using COMPONENT_REFs where possible.
5850         * class.c (build_simple_base_path): New fn.
5851         (build_base_path): Use it for non-virtual base references.
5852         (layout_class_type): Change base fields to their real type
5853         after layout is done.
5854         * cp-tree.h (IS_FAKE_BASE_TYPE): New macro.
5855         * cp-lang.c (cxx_get_alias_set): Use it.
5856
5857 2004-04-30  Kazu Hirata  <kazu@cs.umass.edu>
5858
5859         * class.c, cp-tree.h, decl.c, decl2.c, pt.c, rtti.c: Fix
5860         comment typos.
5861
5862 2004-04-23  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
5863
5864         PR c++/15064
5865         * parser.c (cp_parser_postfix_expression): typeid operator cannot be
5866         used in integral constant expressions.
5867
5868 2004-04-22  Mark Mitchell  <mark@codesourcery.com>
5869
5870         * init.c (build_aggr_init): Fix accidental use of C99 construct in
5871         previous change.
5872
5873         * class.c (initialize_array): Don't set TREE_HAS_CONSTRUCTOR on
5874         braced initializer.
5875         * cp-tree.h (BRACE_ENCLOSED_INITIALIZER_P): New macro.
5876         * decl.c (reshape_init): Use it.
5877         * init.c (perform_member_init): Remove redundant condition.
5878         (build_aggr_init): Adjust to handle brace-enclosed initializers
5879         correctly.
5880         (expand_default_init): Use BRACE_ENCLOSED_INITIALIZER_P.
5881
5882         * parser.c (cp_parser_initializer_clause): Do not set
5883         TREE_HAS_CONSTRUCTOR on the initializer.
5884         * rtti.c (tinfo_base_init): Likewise.
5885         (generic_initializer): Likewise.
5886         (ptr_initializer): Likewise.
5887         (ptm_initializer): Likewise.
5888         (class_initializer): Likewise.
5889         (get_pseudo_ti_init): Likewise.
5890         * typeck2.c (digest_init): Use BRACE_ENCLOSED_INITIALIZER_P.
5891
5892 2004-04-22  Alan Modra  <amodra@bigpond.net.au>
5893
5894         * name-lookup.c (anonymous_namespace_name): Make static.
5895
5896 2004-04-19  Roger Sayle  <roger@eyesopen.com>
5897
5898         PR middle-end/14531
5899         * class.c (build_base_path): Call fold whilst building the NULL
5900         pointer check expression trees.
5901
5902 2004-04-15  Bryce McKinlay  <mckinlay@redhat.com>
5903
5904         * init.c (build_new_1): Don't use type size argument for Java
5905         _Jv_AllocObject call.
5906
5907 2004-04-09  Danny Smith  <dannysmith@users.sourceforge.net>
5908
5909         * method.c (make_alias_for_thunk): Remove preprocessor guard on
5910         declaration and definition.
5911
5912 2004-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
5913
5914         PR c++/14808
5915         * method.c (use_thunk): Test TARGET_USE_LOCAL_THUNK_ALIAS_P rather
5916         than ASM_OUTPUT_DEF.
5917
5918 2004-04-08  Jakub Jelinek  <jakub@redhat.com>
5919
5920         * decl2.c (mark_used): Don't segfault if cfun != NULL but
5921         current_function_decl == NULL.
5922
5923 2004-04-05  Nathan Sidwell  <nathan@codesourcery.com>
5924
5925         PR c++/3518
5926         * pt.c (check_cv_quals_for_unify): Ignore bogus CV quals at outer
5927         level.
5928
5929 2004-04-05  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5930
5931         * init.c (decl_constant_value): Don't look at DECL_INITIAL
5932         of PARM_DECL.
5933         * tree.c (bot_manip, build_min): Don't look at TREE_CONSTANT
5934         or TREE_SIDE_EFFECTS of a type.
5935
5936 2004-04-02  Nathan Sidwell  <nathan@codesourcery.com>
5937
5938         PR c++/14007
5939         * pt.c (check_cv_quals_for_unify): Correct logic for disallowed
5940         cv-qualifier unification.
5941         * tree.c (cp_build_qualified_type_real): Renable DR295 logic.
5942
5943 2004-04-02  Jan Hubicka  <jh@suse.cz>
5944
5945         * cp-lang. (LANG_HOOKS_UPDATE_DECL_AFTER_SAVING): Define.
5946         * cp-tree.h (cp_update_decl_after_saving): Declare.
5947         * tree.c (cp_update_decl_after_saving): Define.
5948
5949 2004-04-01  Mark Mitchell  <mark@codesourcery.com>
5950
5951         PR c++/14803
5952         * typeck.c (get_delta_difference): Call fold before returning the
5953         value.
5954
5955 2004-04-01  Richard Henderson  <rth@redhat.com>
5956
5957         PR c++/14804
5958         * decl.c (cp_finish_decl): Preserve TREE_READONLY more often.
5959         * typeck2.c (split_nonconstant_init): Clear TREE_READONLY.
5960
5961 2004-04-01  Mark Mitchell  <mark@codesourcery.com>
5962
5963         PR c++/14810
5964         * name-lookup.c (maybe_push_cleanup_level): Robustify.
5965
5966 2004-04-01  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5967
5968         * class.c (VTT_TOP_LEVEL_P): Use unsigned_flag directly.
5969
5970 2004-03-31  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5971
5972         * call.c (joust): Use TYPE_UNSIGNED, not TREE_UNSIGNED.
5973         * class.c (check_bitfield_decl): Likewise.
5974         * cvt.c (type_promotes_to): Likewise.
5975         * decl.c (finish_enum): Likewise.
5976         * mangle.c (write_builtin_type): Likewise.
5977         * semantics.c (finish_switch_cond, finish_unary_op_expr): Likewise.
5978         * typeck.c (type_after_usual_arithmetic_conversions): Likewise.
5979         (build_binary_op): Likewise.
5980
5981 2004-03-31  Jan Hubicka  <jh@suse.cz>
5982
5983         * tree.h (optimize_function): Kill prototype.
5984         * optimize.c (dump_function, optimize_function, dump_finction): Kill.
5985         * semantics.c (expand_body): Kill.
5986
5987 2004-03-30  Mark Mitchell  <mark@codesourcery.com>
5988
5989         PR c++/14724
5990         * decl.c (start_decl_1): Do not decide whether or not to create a
5991         new cleanup level until after the type has been completed.
5992
5993         PR c++/14763
5994         * pt.c (tsubst_default_argument): Clear current_function_decl.
5995
5996 2004-03-30  Zack Weinberg  <zack@codesourcery.com>
5997
5998         * name-lookup.c, parser.c: Use new shorter form of GTY markers.
5999
6000 2004-03-29  Zack Weinberg  <zack@codesourcery.com>
6001
6002         * error.c (dump_function_name): If T's DECL_LANG_SPECIFIC
6003         is null, just print the literal name and return.
6004
6005 2004-03-25  Kazu Hirata  <kazu@cs.umass.edu>
6006
6007         * cxx-pretty-print.c: Fix comment typos.
6008
6009 2004-03-24  Kazu Hirata  <kazu@cs.umass.edu>
6010
6011         * cxx-pretty-print.c, cxx-pretty-print.h, decl.h, friend.c:
6012         Update copyright.
6013
6014 2004-03-23  Ziemowit Laski  <zlaski@apple.com>
6015
6016         * Make-lang.in (cp/mangle.o): Depend on $(TARGET_H).
6017         * mangle.c (write_type): Add call to 'mangle_fundamental_type'
6018         target hook.
6019
6020 2004-03-23  Zack Weinberg  <zack@codesourcery.com>
6021
6022         PR 12267, 12391, 12560, 13129, 14114, 14133
6023         * cp-lang.c (c_reset_state): Delete.
6024         (push_file_scope, pop_file_scope): New stubs.
6025         * parser.c (c_parse_file): Call sorry() here if called more than once.
6026
6027 2004-03-23  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6028
6029         * typeck.c (build_c_cast): Only look at TREE_CONSTANT_OVERFLOW
6030         for INTEGER_CST.
6031
6032 2004-03-22  Gabriel Dos Reis  <gdr@integrable-solutions.net>
6033
6034         * cxx-pretty-print.c (pp_cxx_parameter_declaration_clause): Declare.
6035
6036 2004-03-21  Gabriel Dos Reis  <gdr@integrable-solutions.net>
6037
6038         * error.c (enum pad): Remove.
6039         (dump_qualifiers): Likewise.
6040         (dump_type): Replace dump_qualifiers with pp_cxx_cv_qualifier_seq.
6041         (dump_aggr_type): Likewise.
6042         (dump_type_suffix): Likewise.
6043         (dump_simple_decl): Likewise.
6044         (dump_function_decl): Likewise.
6045         (cv_to_string): Likewise.
6046         (dump_type_prefix): Likewise.  Adjust return void.
6047         * cxx-pretty-print.c (pp_cxx_cv_qualifier_seq): Move to
6048         cxx_pretty_print.h.
6049         (pp_cxx_template_keyword_if_needed): Document.
6050         (pp_cxx_qualified_id): Document case FUNCTION_DECL.  Tidy.
6051         (pp_cxx_expression): Handle NON_DEPENDENT_EXPR and
6052         MUST_NOT_THROW_EXPR.
6053
6054 2004-03-21  Mark Mitchell  <mark@codesourcery.com>
6055
6056         PR c++/14616
6057         * decl.c (cp_finish_decl): Compute the size of arrays declared in
6058         templates, if their type is non-dependent.
6059
6060 2004-03-19  Mark Mitchell  <mark@codesourcery.com>
6061
6062         * call.c (build_op_delete_call): Do not forget the placement
6063         arguments when iterating through mutiple delete operators.
6064
6065         * cp-tree.h (svaed_scope): Remove last_parms.
6066         (NEW_DELETE_OPNAME_P): New macro.
6067         (last_function_parms): Remove.
6068         (do_friend): Adjust prototype.
6069         * decl.c (grokparms): Return the PARM_DECLs directly, rather than
6070         using last_function_parms.
6071         (grokfndecl): Take the PARM_DECLs as an argument, rather than
6072         using last_function_parms.
6073         (grokdeclarator): Adjust accordingly.  Do not form METHOD_TYPEs
6074         for class-specific operator new and operator delete.
6075         (grok_op_properties): Do not look for allocation functions with
6076         METHOD_TYPEs.
6077         (start_function): Use DECL_ARGUMENTS instead of
6078         last_function_parms.
6079         * decl.h (last_function_parms): Do not declare.
6080         * decl2.c (grokclassfn): Do not use last_function_parms.
6081         * friend.c (do_friend): Remove parmdecls parameter.
6082         * name-lookup.c (push_to_top_level): Do not save last_function_parms.
6083         (pop_from_top_level): Do not restore it.
6084         * pt.c (check_explicit_specialization): Do not adjust
6085         last_function_parms.
6086
6087         * name-lookup.c (do_local_using_decl): Create a local binding for
6088         types brought in via using declarations.
6089
6090         * name-lookup.c (lookup_arg_dependent): Handle block-scope
6091         function declarations correctly.
6092
6093         * semantics.c (finish_id_expression): Correct handling of
6094         conversion operators to dependent types.
6095
6096         * typeck.c (lookup_destructor): Allow the use of destructors from
6097         base classes.
6098
6099 2004-03-19  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6100
6101         * cxx-pretty-print.c (pp_cxx_unqualified_id): Use
6102         TEMPLATE_TYPE_PARM_INDEX instead of TYPE_FIELDS.
6103         * search.c (dfs_unuse_fields): Add two more TREE_CODES that mean
6104         the field is named TEMPLATE_TYPE_PARM_INDEX.
6105
6106 2004-03-19  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6107
6108         PR c++/14545
6109         * parser.c (cp_parser_functional_cast): A cast to anything
6110         but integral or enumaration type is not an integral constant
6111         expression.
6112         * pt.c (value_dependent_expression_p): Handle cast expressions
6113         without operands (such as "int()").
6114
6115 2004-03-18  Mark Mitchell  <mark@codesourcery.com>
6116
6117         * semantics.c (finish_pseudo_destructor_expr): Allow differing
6118         cv-qualification between the type named by the
6119         pseudo-destructor-name and the object-type.
6120
6121         * search.c (accessible_base_p): Handle non-proper bases.
6122
6123         * name-lookup.c (do_nonmember_using_decl): If a using declaration
6124         refers to a single overloaded function, set the type of the
6125         function.
6126         * tree.c (lvalue_type): Simplify.
6127         * typeck.c (type_unknown_p): Do not assume all OVERLOADs have an
6128         unknown type.
6129         (build_unary_op): Handle OVERLOADs with known types.
6130
6131         * decl.c (duplicate_decls): Do not destroy DECL_ARGUMENTS for
6132         function templates.
6133
6134         * parser.c (cp_parser_postfix_expression): Handle the use of
6135         "typename" in non-dependent contexts.  Convert appropriately when
6136         when using a qualified name after "->" or ".".
6137
6138         * call.c (conditional_conversion): Honor the requirement that some
6139         conversions refer to the original object.
6140
6141 2004-03-18  Mark Mitchell  <mark@codesourcery.com>
6142
6143         * call.c (build_conditional_expr): Do not call force_rvalue for
6144         operands of void_type when the conditional expression itself has
6145         void type.
6146         * name-lookup.c (pushdecl): Don't consider a declaration of a
6147         function named "main" to be an overload of a type named "main".
6148         * parser.c (cp_parser_template_name): Perform name lookup when the
6149         template name is proceeded by "template" if the qualifying scope
6150         is non-dependent.
6151         * typeck.c (composite_pointer_type_r): Correctly handle
6152         pointer-to-member types.
6153         (build_const_cast): Likewise.
6154
6155 2004-03-18  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6156
6157         * cp-tree.def (TEMPLATE_TYPE_PARM, TYPEOF_TYPE): Update comments.
6158         * cp-tree.h (NEW_EXPR_USE_GLOBAL, DELETE_EXPR_USE_GLOBAL): Add check.
6159         (DELETE_EXPR_USE_VEC, COMPOUND_EXPR_OVERLOADED): Likewise.
6160         (KOENIG_LOOKUP_P, PTRMEM_OK_P, TEMPLATE_TYPE_PARM_INDEX): Likewise.
6161         (TYPENAME_TYPE_FULLNAME): Add check and use type.values.
6162         (TYPEOF_TYPE_EXPR): New macro.
6163         * class.c (finish_struct_bits): Use TYPE_VFIELD and TYPE_METHODS.
6164         * error.c (dump_type): Use TYPEOF_TYPE_EXPR.
6165         * pt.c (tsubst): Likewise.
6166         * semantics.c (finish_typeof): Likewise.
6167         * search.c (dfs_unuse_fields): Handle TYPENAME_TYPE, TYPEOF_TYPE,
6168         and TEMPLATE_TYPE_PARM.
6169         * typeck.c (comptypes): Use TYPE_ORIG_SIZE_TYPE, not TYPE_DOMAIN.
6170         (build_array_ref): Use TYPE_DOMAIN, not TYPE_VALUES.
6171
6172 2004-03-16  Mark Mitchell  <mark@codesourcery.com>
6173
6174         PR c++/14586
6175         * cp-tree.h (build_new_op): Change prototype.
6176         (build_x_binary_op): Likewise.
6177         * call.c (build_new_op): Add overloaded_p parameter.
6178         * decl2.c (grok_array_decl): Adjust call to build_new_op.
6179         * parser.c (cp_parser_binary_expression): Note that uses of
6180         overloaded operators prevents an expression from being considered
6181         an integral constant.
6182         * pt.c (tsubst_copy_and_build): Adjust calls to build_new_op and/or
6183         build_x_binary_op.
6184         * semantics.c (finish_call_expr): Likewise.
6185         * typeck.c (rationalize_conditional_expr): Likewise.
6186         (build_x_indirect_ref): Likewise.
6187         (build_x_binary_op): Likewise.
6188         (build_x_unary_op): Likewise.
6189         (build_x_compound_expr): Likewise.
6190         (build_modify_expr): Likewise.
6191         * typeck2.c (build_x_arrow): Likewise.
6192
6193 2004-03-15  Kazu Hirata  <kazu@cs.umass.edu>
6194
6195         * cp-lang.c, ptree.c: Update copyright.
6196
6197 2004-03-13  Mark Mitchell  <mark@codesourcery.com>
6198
6199         PR c++/14550
6200         * parser.c (cp_parser_non_integral_constant_expression): Encode
6201         more of the idiom that surrounded calls to this function within
6202         the function itself
6203         (cp_parser_primary_expression): Adjust accordingly.
6204         (cp_parser_postfix_expression): Likewise.
6205         (cp_parser_unary_expression): Likewise.
6206         (cp_parser_cast_expression): Likewise.
6207         (cp_parser_assignment_expression): Likewise.
6208         (cp_parser_expression): Likewise.
6209         (cp_parser_new_expression): Note that new-expressions are not
6210         allowed in integral constant expressions.
6211         (cp_parser_delete_expression): Likewise.
6212
6213 2004-03-12  Matt Austern  <austern@apple.com>
6214
6215         * decl2.c (maybe_make_one_only): Look at
6216         TARGET_EXPLICIT_INSTANTIATION_ONE_ONLY when deciding whether
6217         to make an explicit instantiation weak.
6218         * method.c (use_thunk): Make sure we call comdat_linkage
6219         when appropriate.
6220         * pt.c (do_type_instantiation): On systems where weak symbols
6221         don't go in a static archive's TOC, explicit instantiation of a
6222         class must imply *explicit* instantiation of its memeber.
6223
6224 2004-03-11  Kazu Hirata  <kazu@cs.umass.edu>
6225
6226         * call.c, cp-tree.h, pt.c: Fix comment typos.
6227
6228 2004-03-10  Mark Mitchell  <mark@codesourcery.com>
6229
6230         PR c++/14510
6231         * decl.c (xref_tag): Disregard non-type declarations when
6232         looking up a tagged type.
6233
6234 2004-03-09  Nathan Sidwell  <nathan@codesourcery.com>
6235
6236         PR c++/14397
6237         * call.c (convert_like_real): Build a const qualified temporary,
6238         when testing ctor access.
6239
6240 2004-03-09  Mark Mitchell  <mark@codesourcery.com>
6241
6242         * call.c (initialize_reference): Fix typo.
6243
6244 2004-03-09  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6245
6246         PR c++/14409
6247         * pt.c (determine_specialization): For member templates, match also
6248         constness.
6249
6250         PR c++/14448
6251         * parser.c (cp_parser_initializer_clause): Fold initializer if it is
6252         non-dependent.
6253         * pt.c (tsubst_copy_and_build): Handle NOP_EXPRs.
6254
6255 2004-03-09  Mark Mitchell  <mark@codesourcery.com>
6256
6257         PR c++/14230
6258         * call.c (initialize_reference): Handle initializers that are
6259         class-member access expressions applies to rvalues.
6260
6261 2004-03-09  Mark Mitchell  <mark@codesourcery.com>
6262
6263         PR c++/14432
6264         * name-lookup.c (supplement_binding): Ignore functions that are
6265         marked DECL_ANTICIPATED.
6266
6267 2004-03-08  Mark Mitchell  <mark@codesourcery.com>
6268
6269         PR c++/14401
6270         * class.c (check_field_decls): Complain about non-static data
6271         members of reference type in unions.  Propagate
6272         CLASSTYPE_REF_FIELDS_NEED_INIT and
6273         CLASSTYPE_READONLY_FIELDS_NEED_INIT from the types of non-static
6274         data members.
6275         * init.c (perform_member_init): Complain about mbmers with const
6276         type that are not explicitly initialized.
6277
6278 2004-03-08  Mark Mitchell  <mark@codesourcery.com>
6279
6280         * class.c (check_methods): Don't use IDENTIFIER_ERROR_LOCUS.
6281         * cp-tree.h (DECL_INVALID_OVERRIDER_P): New macro.
6282         (lang_identifier): Remove implicit_decl and error_locus.
6283         (IDENTIFIER_IMPLICIT_DECL): Remove.
6284         (SET_IDENTIFIER_IMPLICTI_DECL): Likewise.
6285         (IDENTIFIER_ERROR_LOCUS): Likewise.
6286         (SET_IDENTIFIER_ERROR_LOCUS): Likewise.
6287         (TYPE_ASSEMBLER_NAME_STRING): Likewise.
6288         (TYPE_ASSEMBLER_NAME_LENGTH): Likewise.
6289         (implicitly_declare): Remove.
6290         * decl.c (warn_extern_redeclared_static): Remove check of
6291         IDENTIFIER_IMPLICIT_DECL.
6292         (duplicate_decls): Don't check IDENTIFIER_ERROR_LOCUS.
6293         (implicitly_declare): Remove.
6294         (grok_ctor_properties): Don't set IDENTIFIER_ERROR_LOCUS.
6295         (start_function): Don't check IDENTIFIER_IMPLICIT_DECL.
6296         (start_method): Don't check IDENTIFIER_ERROR_LOCUS.
6297         * lex.c (unqualified_name_lookup_error): Create a dummy VAR_DECL
6298         in the innermost scope, rather than at namespace scope.
6299         * name-lookup.c (push_local_binding): Give it external linkage.
6300         (pushdecl): Remove dead code.
6301         * name-lookup.h (push_local_binding): Declare it.
6302         * ptree.c (cxx_print_identifier): Don't print
6303         IDENTIFIER_IMPLICIT_DECL or IDENTIFIER_ERROR_LOCUS.
6304         * search.c (check_final_overrider): Use DECL_INVALID_OVERRIDER_P,
6305         not IDENTIFIER_ERROR_LOCUS.
6306         * typeck.c (build_function_call): Remove dead code.
6307
6308 2004-03-08  Jason Merrill  <jason@redhat.com>
6309
6310         PR c++/13170
6311         * decl.c (xref_tag): Remove attribute handling.
6312         * cp-tree.h: Adjust prototype.
6313         * decl.c, parser.c, rtti.c: Adjust callers.
6314         * parser.c (cp_parser_class_head): Pass back attributes in the
6315         class head.
6316         (cp_parser_class_specifier): Adjust.
6317
6318 2004-03-08  Matt Austern  <austern@apple.com>
6319
6320         PR debug/14079
6321         * name-lookup.c (add_decl_to_level): Add extern variables, as well
6322         as static, to static_decls array.
6323
6324 2004-03-05  Jason Merrill  <jason@redhat.com>
6325
6326         * tree.c (list_hash_pieces): s/TYPE_HASH/TREE_HASH/.
6327
6328 2004-03-04  Geoffrey Keating  <geoffk@apple.com>
6329
6330         * decl.c (grokfndecl): Update old incorrect comment.
6331         (grokvardecl): Diagnose C++ variables of type with no linkage.
6332
6333 2004-03-01  Mark Mitchell  <mark@codesourcery.com>
6334
6335         PR c++/14369
6336         * pt.c (build_non_dependent_expr): Do not create a
6337         NON_DEPENDENT_EXPR for a THROW_EXPR.
6338
6339 2004-03-01  Gabriel Dos Reis  <gdr@integrable-solutions.net>
6340
6341         PR c++/14369
6342         * error.c (dump_expr): Handle THROW_EXPR.
6343
6344 2004-03-01  Mark Mitchell  <mark@codesourcery.com>
6345
6346         PR c++/14360
6347         * parser.c (cp_parser_postfix_expression): Do not perform Koenig
6348         lookup if ordinary name-lookup finds a non-function.
6349         * pt.c (tsubst_copy_and_build): Likewise.
6350
6351         PR c++/14361
6352         * parser.c (cp_parser_late_parsing_default_args): Check that there
6353         are no extra tokens after the end of the default-argument
6354         expression.
6355
6356 2004-03-01  Mark Mitchell  <mark@codesourcery.com>
6357
6358         PR c++/14324
6359         * lex.c (retrofit_lang_decl): Treat entities with no linkage as
6360         having C++ linkage for name-mangling purposes.
6361
6362         PR c++/14260
6363         * parser.c (cp_parser_direct_declarator): Recognize constructor
6364         declarators that use a template-id to name the class being
6365         constructed.
6366
6367         PR c++/14337
6368         * pt.c (tsubst_qualified_id): Handle dependent qualifying scopes.
6369         (tsubst_expr): Do not call tsubst_copy, even when
6370         processing_template_decl.
6371
6372 2004-03-01  Jeff Law  <law@redhat.com>
6373
6374         * init.c (build_vec_delete_1): Convert 2nd argument to NE_EXPR to
6375         the proper type.
6376
6377 2004-02-29  Mark Mitchell  <mark@codesourcery.com>
6378
6379         PR c++/14138
6380         * name-lookup.h (push_scope): Change prototype.
6381         * name-lookup.c (push_scope): Do not reenter the current class
6382         scope.
6383         * decl.c (grokfndecl): Check return code from push_scope before
6384         calling pop_scope.
6385         * decl2.c (check_classfn): Likewise.
6386         * parser.c (cp_parser_conversion_function_id): Likewise.
6387         (cp_parser_init_declarator): Likewise.
6388         (cp_parser_direct_declarator): Likewise.
6389         (cp_parser_class_specifier): Likewise.
6390         (cp_parser_class_head): Likewise.
6391         (cp_parser_lookup_name): Likewise.
6392         (cp_parser_constructor_declarator_p): Likewise.
6393         * pt.c (instantiate_class_template): Likewise.
6394         (resolve_typename_type): Likewise.
6395
6396 2004-02-29  Mark Mitchell  <mark@codesourcery.com>
6397
6398         PR c++/14267
6399         * typeck.c (build_modify_expr): Remove more of the cast-as-lvalue
6400         extension.
6401
6402         PR debug/12103
6403         * class.c (update_vtable_entry_for_fn): Do not go through
6404         covariance machinery if the type returned by an overrider is the
6405         same as the original.
6406
6407 2004-02-29  Kazu Hirata  <kazu@cs.umass.edu>
6408
6409         * call.c: Fix a comment typo.
6410
6411 2004-02-27  Ziemowit Laski  <zlaski@apple.com>
6412
6413         * tree.c (pod_type_p): Treat VECTOR_TYPEs as PODs.
6414
6415 2004-02-26  Mark Mitchell  <mark@codesourcery.com>
6416
6417         PR c++/14278
6418         * parser.c (cp_parser_parameter_declaration_list): Commit
6419         to fewer tentative parses.
6420
6421 2004-02-26  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6422
6423         PR c++/14284
6424         * pt.c (dependent_type_p_r): A template template parameter is a
6425         dependent type.
6426
6427 2004-02-26  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6428
6429         PR c++/14246
6430         * mangle.c (write_template_arg_literal): Don't rely on identity for
6431         boolean constants.
6432
6433 2004-02-24  Jason Merrill  <jason@redhat.com>
6434
6435         * tree.c (build_exception_variant): Use check_qualified_type.
6436
6437 2004-02-23  Zack Weinberg  <zack@codesourcery.com>
6438             Kazu Hirata  <kazu@cs.umass.edu>
6439
6440         * decl.c (cxx_init_decl_processing): Don't check
6441         flag_writable_strings.
6442
6443 2004-02-23  Andrew Pinski  <pinskia@physics.uc.edu>
6444
6445         PR c++/14156
6446         * typeck.c (maybe_warn_about_returning_address_of_location):
6447         Change check for VAR_DECL to use DECL_P instead.
6448
6449 2004-02-23  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6450
6451         PR c++/14250
6452         * cvt.c (build_expr_type_conversion): Type must be complete before
6453         looking up for conversions.
6454
6455 2004-02-23  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6456
6457         PR c++/14143
6458         * name-lookup.c (arg_assoc_class): Don't look into template
6459         arguments if it is not a primary template.
6460
6461 2004-02-20  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
6462
6463         PR c++/12007
6464         * method.c (use_thunk): Always clone function argument tree.
6465
6466 2004-02-20  Mark Mitchell  <mark@codesourcery.com>
6467
6468         PR c++/14199
6469         * pt.c (tsubst_copy): Call mark_used for a PARM_DECL.
6470
6471         PR c++/14173
6472         * semantics.c (begin_class_definition): Set TYPE_PACKED correctly
6473         for all type variants.
6474
6475 2004-02-19  Mark Mitchell  <mark@codesourcery.com>
6476
6477         PR c++/13927
6478         * decl.c (duplicate_decls): Return error_mark_node for invalid
6479         redeclarations.
6480         * name-lookup.c (push_namespace): Ignore the return value from
6481         pushdecl.
6482         * pt.c (push_template_decl_real): Robustify.
6483
6484         PR c++/14186
6485         * name-lookup.c (push_class_level_binding): Do not complain about
6486         adding a binding for a member whose name is the same as the
6487         enclosing class if the member is located in a base class of the
6488         current class.
6489
6490 2004-02-19  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6491
6492         PR c++/14181
6493         * parser.c (cp_parser_new_expression): Parse an ill-formed
6494         direct-new-declarator after a parenthesized type-id to emit good
6495         diagnostic.
6496
6497 2004-02-18  Kazu Hirata  <kazu@cs.umass.edu>
6498
6499         * cp-tree.def, cvt.c: Update copyright.
6500
6501 2004-02-17  Mark Mitchell  <mark@codesourcery.com>
6502
6503         PR c++/11326
6504         * cp-tree.h (abi_version_at_least): Remove.
6505         * mangle.c: Include flags.h.
6506
6507 2004-02-15  Mark Mitchell  <mark@codesourcery.com>
6508
6509         PR c++/13971
6510         * call.c (build_conditional_expr): Handle conversions between
6511         class types which result in differently cv-qualified type
6512         variants.
6513
6514         PR c++/14086
6515         * class.c (delete_duplicate_fields_1): Remove.
6516         (delete_duplicate_fields): Likewise.
6517         (finish_struct_anon): Remove check for members with the same name
6518         as their enclosing class.
6519         (check_field_decls): Do not call duplicate_fields.
6520         * decl.c (grokdeclarator): Remove check for static data members
6521         with the same name as their enclosing class.
6522         * name-lookup.c (push_class_level_binding): Check for members with
6523         the same name as their enclosing class.
6524
6525 2004-02-15  Gabriel Dos Reis  <gdr@integrable-solutions.net>
6526
6527         PR c++/14085
6528         * error.c (dump_decl): Handle TEMPLATE_TYPE_PARM.
6529
6530 2004-02-14  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6531
6532         PR c++/13635
6533         * pt.c (push_template_decl_real): Make sure DECL_TI_ARGS of DECL
6534         has full set of arguments.
6535
6536 2004-02-13  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6537
6538         PR c++/13927
6539         * error.c (dump_decl) <ALIAS_DECL>: Dump as simple declarations.
6540
6541 2004-02-13  Mark Mitchell  <mark@codesourcery.com>
6542
6543         PR c++/14122
6544         * cp-tree.h (delete_sanity): Change prototype.
6545         * decl2.c (delete_sanity): Make doing_vec a bool, not an int.
6546         Remove dead code.  Adjust code to warn about deleting an array.
6547         * typekc.c (decay_conversion): Use build_address and build_nop.
6548
6549         PR c++/14108
6550         * search.c (accessible_p): Do not check access in thunks.
6551
6552         PR c++/14083
6553         * call.c (build_conditional_expr): Call force_rvalue on the
6554         non-void operand in the case that one result is a throw-expression
6555         and the other is not.
6556
6557 2004-02-13  Ian Lance Taylor  <ian@wasabisystems.com>
6558
6559         PR c++/9851
6560         * parser.c (cp_parser_pseudo_destructor_name): Check for errors on
6561         the type name and look ahead for ::~, and bail out early with a
6562         better error message if the parse is going to fail.
6563
6564 2004-02-12  Mark Mitchell  <mark@codesourcery.com>
6565
6566         * call.c (conversion_kind): New type.
6567         (conversion_rank): Likewise.
6568         (conversion): Likewise.
6569         (CONVERSION_RANK): New macro.
6570         (conversion_obstack): New variable.
6571         (obstack_initialized): Likewise.
6572         (z_candidate): Change type of convs and second_conv.
6573         (candidate_warning): New type.
6574         (IDENTITY_RANK): Remove.
6575         (EXACT_RANK): Likewise.
6576         (PROMO_RANK): Likewise.
6577         (STD_RANK): Likewise.
6578         (PBOOL_RANK): Likewise.
6579         (USER_RANK): Likewise.
6580         (ELLIPSIS_RANK): Likewise.
6581         (BAD_RANK): Likewise.
6582         (ICS_RANK): Likewise.
6583         (ICS_STD_RANK): Likewise.
6584         (ICS_USER_FLAG): Likewise.
6585         (ICS_ELLIPSIS_FLAG): Likewise.
6586         (ICS_THIS_FLAG): Likewise.
6587         (ICS_BAD_FLAG): Likewise.
6588         (NEED_TEMPORARY_P): Likewise.
6589         (CHECK_COPY_CONSTRUCTOR_P): Likewise.
6590         (USER_CONV_CAND): Likewise.
6591         (USER_CONV_FN): Likewise.
6592         (conversion_obstack_alloc): New function.
6593         (alloc_conversion): Likewise.
6594         (validate_conversion_obstack): Likewise.
6595         (alloc_conversions): Likewise.
6596         (build_conv): Adjust to deal with new conversion data structures.
6597         (build_identity_conv): New function.
6598         (build_ambiguous_conv): Likewise.
6599         (standard_conversion): Adjust to deal with new conversion data
6600         structures.
6601         (convert_class_to_reference): Likewise.
6602         (direct_reference_binding): Likewise.
6603         (reference_binding): Likewise.
6604         (implicit_conversion): Likewise.
6605         (add_candidate): Likewise.
6606         (add_function_candidate): Likewise.
6607         (add_conv_candidate): Likewise.
6608         (build_builtin_candidate): Likewise.
6609         (print_z_candidate): Likewise.
6610         (merge_conversion_sequences): Likewise.
6611         (build_user_type_conversion_1): Likewise.
6612         (build_user_type_conversion): Likewise.
6613         (build_new_function_call): Likewise.
6614         (build_object_call): Likewise.
6615         (conditional_conversion): Likewise.
6616         (build_conditional_expr): Likewise.
6617         (build_new_op): Likewise.
6618         (build_op_delete_call): Likewise.
6619         (convert_like_real): Likewise.
6620         (build_over_call): Likewise.
6621         (build_new_method_call): Likewise.
6622         (is_subseq): Likewise.
6623         (maybe_handle_implicit_object): Likewise.
6624         (maybe_handle_ref_bind): Likewise.
6625         (compare_ics): Likewise.
6626         (source_type): Likewise.
6627         (add_warning): Likewise.
6628         (joust): Likewise.
6629         (can_convert_arg): Likewise.
6630         (can_convert_arg_bad): Likewise.
6631         (perform_implicit_conversion): Likewise.
6632         (perform_direct_initialization_if_possible): Likewise.
6633         (initialize_reference): Likewise.
6634         * cp-lang.c (cp_tree_size): Do not handle WRAPPER.
6635         * cp-tree.def (WRAPPER): Likewise.
6636         (IDENTITY_CONV): Remove.
6637         (LVALUE_CONV): Likewise.
6638         (QUAL_CONV): Likewise.
6639         (STD_CONV): Likewise.
6640         (PTR_CONV): Likewise.
6641         (PMEM_CONV): Likewise.
6642         (BASE_CONV): Likewise.
6643         (REF_BIND): Likewise.
6644         (USER_CONV): Likewise.
6645         (AMBIG_CONV): Likewise.
6646         (RVALUE_CONV): Likewise.
6647         * cp-tree.h (tree_wrapper): Remove.
6648         (WRAPPER_ZC): Remove.
6649         (lang_tree_node): Remove wrapper.
6650         (LOOKUP_SPECULATIVELY): Remove.
6651         (build_op_delete_call): Adjust prototype.
6652         (validate_conversion_obstack): Declare.
6653         (build_zc_wrapper): Remove.
6654         * cvt.c (convert_to_reference): Remove dead code.
6655         (ocp_convert): Likewise.
6656         * decl.c (redeclaration_error_message): Correct handling of
6657         templates.
6658         (finish_destructor_body): Do not use LOOKUP_SPECULATIVELY.
6659         (cp_tree_node_structure): Remove WRAPPER case.
6660         * decl2.c (finish_file): Call validate_conversion_obstack.
6661         * init.c (build_new_1): Remove use of LOOKUP_SPECULATIVELY.
6662         (build_op_delete_call): Likewise.
6663         (build_x_delete): Likewise.
6664         (build_delete): Adjust call to build_op_delete_call.
6665         * pt.c (tsubst_friend_declaration): Adjust code to determine
6666         whether or not a friend template is a definition.
6667         (tsubst_decl): Clear DECL_INITIAL for new FUNCTION_DECLs.
6668         * tree.c (build_zc_wrapper): Remove.
6669
6670 2004-02-12  Zack Weinberg  <zack@codesourcery.com>
6671
6672         * cp-lang.c: Don't define LANG_HOOKS_BUILTIN_TYPE_DECLS.
6673         * cp-tree.h: Don't declare cxx_builtin_type_decls.
6674         * decl.c (builtin_type_decls, cxx_builtin_type_decls): Delete.
6675         (record_builtin_type): Call debug_hooks->type_decl on the TYPE_DECL.
6676
6677 2004-02-10  Mark Mitchell  <mark@codesourcery.com>
6678
6679         * typeck.c (lookup_destructor): Fix typo in error message.
6680
6681 2004-02-09  Kazu Hirata  <kazu@cs.umass.edu>
6682
6683         * call.c, parser.c, tree.c: Fix comment typos.
6684
6685 2004-02-07  Zack Weinberg  <zack@codesourcery.com>
6686
6687         Bug 13856
6688         * optimize.c (maybe_clone_body): Don't update DECL_ESTIMATED_INSNS.
6689         * decl.c (duplicate_decls, start_function): Likewise.
6690
6691 2004-02-07  Zack Weinberg  <zack@codesourcery.com>
6692
6693         * name-lookup.c (pushdecl): Issue shadow warnings directly.
6694         * parser.c (free_parser_stacks): Delete.
6695
6696 2004-02-07  Kazu Hirata  <kazu@cs.umass.edu>
6697
6698         * rtti.c: Update copyright.
6699
6700 2004-02-06  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6701
6702         PR c++/14033
6703         * decl.c (require_complete_types_for_parms): Do not insert
6704         error_mark_node in the parameter list.
6705
6706 2004-02-06  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6707
6708         PR c++/14028
6709         * parser.c (cp_parser_enclosed_template_argument_list): Emit straight
6710         error when terminator can not be found.
6711
6712 2004-02-05  Kelley Cook  <kcook@gcc.gnu.org>
6713
6714         Make-lang.in (po-generated):  Delete.
6715
6716 2004-02-05  Kazu Hirata  <kazu@cs.umass.edu>
6717
6718         * call.c (type_passed_as): Replace PROMOTE_PROTOTYPES with
6719         targetm.calls.promote_prototypes.
6720
6721 2004-02-05  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
6722
6723         PR middle-end/13750
6724         Revert:
6725         2004-01-15  Geoffrey Keating  <geoffk@apple.com>
6726         PR pch/13361
6727         * cp/lex.c (handle_pragma_interface): Duplicate string from tree.
6728         (handle_pragma_implementation): Likewise.
6729
6730 2004-02-05  Mark Mitchell  <mark@codesourcery.com>
6731
6732         PR c++/13714
6733         * typeck.c (lookup_destructor): Tweak error message.
6734
6735 2004-02-05  Jan Hubicka  <jh@suse.cz>
6736
6737         * tree.c (cp_cannot_inline_tree_fn):  Allow inlining of comdat
6738         functions.
6739
6740 2004-02-05  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6741
6742         PR c++/14008
6743         * parser.c (cp_parser_diagnose_invalid_typename): Removed parsing
6744         code, only emits the diagnostic now. Added lookup of the identifier
6745         and support for qualified ids.
6746         (cp_parser_parse_and_diagnose_invalid_type_name): New function.
6747         Parse an (invalid) type name as id-expression within a declarator.
6748         (cp_parser_simple_declaration): Use it.
6749         (cp_parser_member_declaration): Likewise.
6750         (cp_parser_make_typename_type): New function. Handle errors through
6751         cp_parser_diagnose_invalid_typename.
6752         (cp_parser_elaborated_type_specifier): Use it.
6753
6754 2004-02-04  Mark Mitchell  <mark@codesourcery.com>
6755
6756         PR c++/13932
6757         * call.c (convert_like_real): Use "converting" rather than
6758         "argument" as the descriptive keyword to
6759         dubious_conversion_warnings.
6760         * typeck.c (convert_for_assignment): Do not call
6761         dubious_conversion_warnings.
6762
6763 2004-02-04  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6764
6765         PR c++/13086
6766         * init.c (build_delete): Emit a more informative error message in
6767         case of an incomplete type, and on the correct source line.
6768
6769 2004-02-04  Kazu Hirata  <kazu@cs.umass.edu>
6770
6771         * error.c, search.c: Update copyright.
6772
6773 2004-02-04  Mark Mitchell  <mark@codesourcery.com>
6774
6775         PR c++/9941
6776         * rtti.c (tinfo_base_init): Use import_export_tinfo to decide the
6777         linkage for the typeinfo name string.
6778
6779 2004-02-04  Mark Mitchell  <mark@codesourcery.com>
6780
6781         PR c++/13969
6782         * cp-tree.h (fold_non_dependent_expr): New function.
6783         * parser.c (cp_parser_fold_non_dependent_expr): Remove.
6784         (cp_parser_template_argument): Use fold_non_dependent_expr.
6785         (cp_parser_direct_declarator): Likewise.
6786         * pt.c (fold_non_dependent_expr): New function.
6787         (convert_nontype_argument): Use it.
6788         (tsubst_qualified_id): Simplify.
6789         (tsubst_copy_and_build): Likewise.
6790
6791 2004-02-04  Mark Mitchell  <mark@codesourcery.com>
6792
6793         * decl.c (cxx_push_function_context): Do not set
6794         current_function_is_thunk.
6795         * method.c (use_thunk): Set CALL_FROM_THUNK on the call to the
6796         actual function.
6797
6798 2004-02-04  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6799
6800         PR c++/13997
6801         * pt.c (more_specialized_class): Increase processing_template_decl
6802         while partial ordering.
6803
6804 2004-02-03  Mark Mitchell  <mark@codesourcery.com>
6805
6806         PR c++/13925
6807         * decl.c (start_function): Do not call pushdecl for any
6808         instantiation or specialization of a primary template.
6809
6810 2004-02-03  Mark Mitchell  <mark@codesourcery.com>
6811
6812         PR c++/13950
6813         * parser.c (cp_parser_class_name): Robustify.
6814
6815         PR c++/13970
6816         * parser.c (cp_parser_cache_group): Do not consume the EOF token.
6817
6818         PR c++/14002
6819         * semantics.c (finish_id_expression): Do not return an
6820         IDENTIFIER_NODE when lookup finds a PARM_DECL.
6821
6822 2004-02-03  Mark Mitchell  <mark@codesourcery.com>
6823
6824         PR c++/13978
6825         * pt.c (build_non_dependent_expr): Do not build
6826         NON_DEPENDENT_EXPRs for FUNCTION_DECLs or TEMPLATE_DECLs.
6827
6828         PR c++/13968
6829         * semantics.c (finish_id_expression): Do not return an
6830         IDENTIFIER_NODE when lookup finds a VAR_DECL.
6831
6832         PR c++/13975
6833         * parser.c (cp_parser_simple_declaration): When skipping to the
6834         end of the statement swallow the terminating semicolon.
6835
6836 2004-02-02  Mark Mitchell  <mark@codesourcery.com>
6837
6838         PR c++/13113
6839         * init.c (build_offset_ref): Improve error recovery for invalid
6840         uses of non-static member functions.
6841
6842         PR c++/13854
6843         * cp-tree.h (cp_build_type_attribute_variant): New function.
6844         * class.c (build_clone): Use cp_build_type_attribute_variant.
6845         * decl.c (duplicate_decls): Likewise.
6846         * pt.c (copy_default_args_to_explicit_spec): Likewise.
6847         (tsubst_function_type): Likewise.
6848         * tree.c (build_exception_variant): Check attributes before
6849         concluding that two types are the same.
6850         (cp_build_type-attribute_variant): New method.
6851         * typeck.c (merge_types): Use cp_build_type_attribute_variant.
6852
6853         PR c++/13907
6854         * call.c (convert_class_to_reference): Keep better track of
6855         pedantically invalid user-defined conversions.
6856
6857 2004-02-01  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6858
6859         PR c++/13957
6860         * pt.c (tsubst_qualified_id): Improved error message when a type
6861         is expected but not found.
6862
6863 2004-01-31  Kazu Hirata  <kazu@cs.umass.edu>
6864
6865         * class.c: Fix comment typos.
6866         * decl.c: Likewise.
6867         * error.c: Likewise.
6868         * parser.c: Likewise.
6869         * pt.c: Likewise.
6870         * search.c: Likewise.
6871         * typeck.c: Likewise.
6872
6873 2004-01-30  Richard Henderson  <rth@redhat.com>
6874
6875         PR c++/13693
6876         * method.c (use_thunk): Don't force_target_expr for void thunks.
6877         * tree.c (build_target_expr_with_type): Assert non-void type.
6878         (force_target_expr): Likewise.
6879
6880 2004-01-30  Michael Matz  <matz@suse.de>
6881
6882         * parser.c (cp_parser_labeled_statement): Accept case ranges.
6883
6884 2004-01-30  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6885
6886         DR206
6887         PR c++/13813
6888         * decl.c (grokdeclarator): Check immediatly type completeness for
6889         non-dependent types.
6890
6891 2004-01-30  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6892
6893         PR c++/13683
6894         * call.c (convert_arg_to_ellipsis): Don't emit a warning if within
6895         a sizeof expression.block
6896
6897 2004-01-29  Mark Mitchell  <mark@codesourcery.com>
6898
6899         PR c++/13883
6900         * mangle.c (write_encoding): Correct encoding of member template
6901         constructors.
6902
6903 2004-01-28  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6904
6905         * parser.c (cp_parser_template_id): Parse tentatively `[:' after a
6906         template name as it was `<::' (digraph typo).
6907         (cp_parser_nth_token_starts_template_argument_list_p): New function.
6908         (cp_parser_id_expression): Use it.
6909         (cp_parser_nested_name_specifier_opt): Likewise.
6910         (cp_parser_template_name): Likewise.
6911         (cp_parser_class_name): Likewise.
6912         (cp_lexer_get_preprocessor_token): Use c_lex_with_flags.
6913
6914 2004-01-28  Mark Mitchell  <mark@codesourcery.com>
6915
6916         PR c++/13791
6917         * typeck.c (merge_types): Do not merge attributes into
6918         TYPENAME_TYPEs.
6919
6920         PR c++/13736
6921         * parser.c (cp_parser_direct_declarator): Do not prevent
6922         backtracking inside a parenthesized declarator.
6923         (cp_parser_parameter_declaration): Fix typo in comment.
6924
6925 2004-01-28  Jan Hubicka  <jh@suse.cz>
6926
6927         * semantics.c (expand_body)  Do emit_associated_thunks before
6928         expansion.
6929
6930 2004-01-27  Devang Patel  <dpatel@apple.com>
6931
6932         * name-lookup.c: Include "debug.h"
6933         (do_namespace_alias): Invoke debug_hooks to emit debug info
6934         for namespace alias.
6935         (do_local_using_decl): Invoke debug_hooks to emit debug info
6936         for using decl.
6937         (do_class_using_decl): Same.
6938         (do_toplevel_using_decl): Same.
6939         (do_using_directive): Same.
6940         (cp_emit_debug_info_for_using): New function.
6941         * Make-lang.in (cp/parser.o): Depend on debug.h
6942         (cp/name-lookup.o): Same.
6943
6944 2004-01-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6945
6946         * cp-tree.h (language_function, lang_type_header): Use
6947         BOOL_BITFIELD.
6948         * name-lookup.h (cp_binding_level): Likewise.
6949
6950 2004-01-26  Mark Mitchell  <mark@codesourcery.com>
6951
6952         PR c++/13663
6953         * semantics.c (finish_for_expr): Check for unresolved overloaded
6954         functions.
6955
6956         * class.c (add_method): Just check processing_template_decl to
6957         determine whether or not we are within a template.
6958         * decl2.c (maybe_retrofit_in_chrg): Likewise.
6959         * init.c (decl_constant_value): Check the type of the declaration,
6960         not TREE_READONLY.
6961         * name-lookup.c (maybe_push_to_top_level): Rename to ...
6962         (push_to_top_level): ... this.
6963         * name-lookup.h (maybe_push_to_top_level): Do not declare it.
6964         * pt.c (push_template_decl_real): Reorder condition for speed.
6965         (convert_template_argument): Use dependency-checking functions in
6966         place of uses_template_parms.
6967         (lookup_template_class): Avoid calling uses_template_parms more
6968         than once.
6969         (uses_template_parms): Reimplement, using dependency-checking
6970         functions.
6971         (instantiate_class_template): Use push_to_top_level, not
6972         maybe_push_to_top_level.
6973         (type_unification_real): Simplify.
6974         (type_dependent_expression_p): Handle OFFSET_REFs and
6975         TEMPLATE_DECLs.
6976         (any_dependent_template_arguments_p): Handle multiple levels of
6977         template argument.
6978         * semantics.c (expand_or_defer_fn): Do not check
6979         uses_template_parms for template instantiations.
6980         * typeck.c (comptypes): Avoid calling cp_type_quals.
6981
6982 2004-01-25  Mark Mitchell  <mark@codesourcery.com>
6983
6984         PR c++/13833
6985         * call.c (build_over_call): Do not convert arguments when
6986         processing a template.
6987         * pt.c (build_non_dependent_expr): Do not build a
6988         NON_DEPENDENT_EXPR for arithmetic constants.
6989
6990 2004-01-25  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
6991
6992         PR c++/13810
6993         * parser.c (cp_parser_type_parameter): When cp_parser_id_expression
6994         returns a TYPE_DECL. no further lookup is required.
6995         * semantics.c (check_template_template_default_arg): A TYPE_DECL
6996         is invalid. Rework to give better diagnostics.
6997
6998 2004-01-25  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6999
7000         PR c++/13797
7001         * pt.c (instantiate_class_template): Add an error_mark_node
7002         check.
7003         (tsubst_decl) <TEMPLATE_DECL case>: Likewise.
7004
7005 2004-01-23  Andrew Pinski  <pinskia@physics.uc.edu>
7006
7007         PR c++/13701
7008         * decl.c (finish_function): Move the call to
7009         finish_fname_decls below the call to
7010         finish_eh_spec_block.
7011
7012 2004-01-21  Kazu Hirata  <kazu@cs.umass.edu>
7013
7014         * optimize.c, typeck2.c: Update copyright.
7015
7016 2004-01-21  Kazu Hirata  <kazu@cs.umass.edu>
7017
7018         * Make-lang.in, call.c, class.c, decl2.c, except.c, expr.c,
7019         init.c, mangle.c, typeck.c: Update copyright.
7020
7021 2004-01-21  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
7022
7023         * parser.c (cp_parser_class_specifier): Prevent garbage collection.
7024
7025 2004-01-20  Kelley Cook  <kcook@gcc.gnu.org>
7026
7027         * Make-lang.in: Replace $(docdir) with doc.
7028         (c++.info, c++.srcinfo): Dummy entry.
7029         (c++.man, c++.srcman): New rules.
7030         (c++.install-man): Revamp rule.
7031
7032 2004-01-20  Kelley Cook  <kcook@gcc.gnu.org>
7033
7034         * Make-lang.in (CXX_INSTALL_NAME, GXX_INSTALL_NAME,
7035         CXX_TARGET_INSTALL_NAME, GXX_TARGET_INSTALL_NAME): Define via a
7036         immediate $(shell) instead of deferred backquote.
7037
7038 2004-01-19  Mark Mitchell  <mark@codesourcery.com>
7039
7040         PR c++/13651
7041         * parser.c (cp_parser_postfix_expression): When encountering
7042         incomplete type on left-hand side of "->" or ".", treat the entire
7043         expression as erroneous.
7044
7045         PR c++/13592
7046         * call.c (build_field_call): Remove.
7047         (n_build_method_call): Likewise.
7048         (build_method_call): Likewise.
7049         (build_new_method_call): Do not call build_field_call.
7050         * class.c (n_build_method_call): Remove.
7051         (print_class_statistics): Do not print it.
7052         * cp-tree.h (build_method_call): Remove declaration.
7053         (finish_object_call_expr): Likewise.
7054         (build_new_1): Do not use build_method_call.
7055         * parser.c (cp_parser_postfix_expression): Use finish_call_expr
7056         when the function appearing on the right-hand-side of "." or "->"
7057         is not actually a function.
7058         * pt.c (tsubst_copy_and_build): Likewise.
7059         * semantics.c (finish_object_call_expr): Remove.
7060
7061 2004-01-18  Mark Mitchell  <mark@codesourcery.com>
7062
7063         PR c++/13710
7064         * pt.c (tsubst): Use finish_typeof.
7065
7066 2004-01-18  Jason Merrill  <jason@redhat.com>
7067
7068         PR c++/11725
7069         * except.c (build_throw): In a template, set
7070         current_function_returns_abnormally.
7071
7072 2004-01-17  Fred Fish  <fnf@intrinsity.com>
7073
7074         PR c++/11895
7075         * decl.c (reshape_init): Handle VECTOR_TYPE like ARRAY_TYPE,
7076         except don't call array_type_nelts() with a VECTOR_TYPE.
7077
7078 2004-01-16  Jan Hubicka  <jh@suse.cz>
7079
7080         * mangle.c (write_mangled_name): Remove inline modifier.
7081
7082 2004-01-16  Mark Mitchell  <mark@codesourcery.com>
7083
7084         PR c++/13574
7085         * decl.c (compute_array_index_type): Fix grammar in comment.
7086         * init.c (build_zero_init): Handle zero-sized arrays correctly.
7087
7088         PR c++/13178
7089         * call.c (name_as_c_string): Print conversion operator names
7090         correctly.
7091
7092         PR c++/13478
7093         * call.c (initialize_reference): Pass -1 for inner parameter to
7094         convert_like_real.
7095
7096 2004-01-15  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
7097
7098         PR c++/13407
7099         * parser.c (cp_parser_base_specifier): Check for an invalid
7100         keyword `typename' and emit an user-friendly error message.
7101
7102 2004-01-15  Geoffrey Keating  <geoffk@apple.com>
7103
7104         PR pch/13361
7105         * cp/lex.c (handle_pragma_interface): Duplicate string from tree.
7106         (handle_pragma_implementation): Likewise.
7107
7108 2004-01-15  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
7109
7110         PR c++/9259
7111         * typeck.c (build_class_member_access_expr): Allow to access members
7112         of the currently open class.
7113         (finish_class_member_access_expr): Likewise.
7114
7115 2004-01-15  Alexandre Oliva  <aoliva@redhat.com>
7116
7117         PR c++/13659
7118         * name-lookup.c (validate_nonmember_using_decl): Take scope and
7119         name by value, instead of computing them.
7120         (do_local_using_decl, do_toplevel_using_decl): Add scope and name
7121         arguments.  Pass them to validate_nonmember_using_decl.
7122         * name-lookup.h (do_local_using_decl): Adjust.
7123         (do_toplevel_using_decl): Likewise.
7124         * parser.c (cp_parser_using_declaration): Likewise.
7125         * pt.c (tsubst_expr): Likewise.
7126
7127 2004-01-15  Alexandre Oliva  <aoliva@redhat.com>
7128
7129         PR c++/13594
7130         PR c++/13658
7131         * name-lookup.c (qualified_lookup_using_namespace): Search
7132         strongly-associated namespaces first, and only then try other
7133         namespaces.
7134
7135 2004-01-15  Kelley Cook  <kcook@gcc.gnu.org>
7136
7137         * Make-lang.in (c++.srcextra): Dummy entry.
7138
7139 2004-01-15  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
7140
7141         PR c++/8856
7142         * parser.c (cp_parser_template_name): Don't try to parse a
7143         conversion-function-id, as it cannot be a template-name.
7144         (cp_parser_simple_type_specifier): Check for invalid template-ids
7145         even after a built-in type.
7146
7147 2004-01-14  Jan Hubicka  <jh@suse.cz>
7148
7149         PR c++/12850
7150         * pt.c (instantiate_decl):  Do not increase function_depth.
7151
7152 2004-01-14  Danny Smith  <dannysmith@users,sourceforge.net>
7153
7154         PR c++/9021
7155         PR c++/11005
7156         * parser.c (cp_parser_elaborated_type_specifier): Warn about
7157         attributes and discard.
7158         * decl.c (xref_tag): Don't overwite existing attributes with
7159         NULL_TREE.
7160
7161 2004-01-14  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
7162
7163         PR c++/12335
7164         * parser.c (cp_parser_lookup_name): Return error_mark_node if there
7165         is no destructor while looking up a BIT_NOT_EXPR.
7166
7167 2004-01-13  Ian Lance Taylor  <ian@wasabisystems.com>
7168
7169         * cxxfilt.c: Remove unused file.
7170
7171 2004-01-14  Jan Hubicka  <jh@suse.cz>
7172
7173         Partial fix to PR c++/12850
7174         * decl2.c (mark_used): Do not proactively instantiate templates
7175         when compiling in unit-at-a-time or not optimizing.
7176         * optimize.c (maybe_clone_body): Do not increase function depth.
7177
7178 2004-01-13  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
7179
7180         PR c++/13474
7181         * pt.c (tsubst) <INTEGER_TYPE>: Remove obsolete array index tweaking.
7182
7183 2004-01-12  Steven Bosscher  <stevenb@suse.de>
7184
7185         PR c++/13558
7186         * parser.c (cp_parser_member_declaration): Any non-type is also
7187         not a class or a function.
7188
7189 2004-01-12  Jason Merrill  <jason@redhat.com>
7190
7191         PR c++/12815
7192         * class.c (build_base_path): Do not mark vtable references as
7193         TREE_CONSTANT.
7194         (build_vtbl_ref_1): Likewise.
7195
7196 2004-01-12  Richard Henderson  <rth@redhat.com>
7197
7198         PR opt/10776
7199         * typeck2.c (split_nonconstant_init_1, split_nonconstant_init): New.
7200         (store_init_value): Use it.
7201         * decl.c (check_initializer): Expect full initialization code
7202         from store_init_value.
7203         * init.c (expand_aggr_init_1): Likewise.
7204         * decl2.c (maybe_emit_vtables): Abort if runtime init needed.
7205
7206 2004-01-12  Mark Mitchell  <mark@codesourcery.com>
7207
7208         * class.c (layout_class_type): For non-POD class types, also copy
7209         the DECL_SIZE and DECL_MODE of fields to the base class type.
7210
7211 2004-01-12  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
7212
7213         PR c++/13289
7214         * pt.c (instantiate_decl): Set DECL_TEMPLATE_INSTANTIATED before
7215         calling regenerate_decl_from_template.
7216
7217 2004-01-12  Scott Brumbaugh  <scottb.lists@verizon.net>
7218
7219         PR c++/4100
7220         * parser.c (cp_parser_decl_specifier_seq): Add check for a friend
7221         decl-specifier occurring along with a class definition.
7222
7223 2004-01-12  Ian Lance Taylor  <ian@wasabisystems.com>
7224
7225         * parser.c (cp_parser_decl_specifier_seq): Add parenthetical
7226         clauses to comments describing declares_class_or_enum.
7227         (cp_parser_type_specifier): Set *declares_class_or_enum to 0, not
7228         false.
7229
7230 2004-01-12  Jan Hubicka  <jh@suse.cz>
7231
7232         * pt.c (for_each_template_parm): Do not check for duplicates.
7233         (for_each_template_parm): Use walk_tree duplicate checking code.
7234
7235 2004-01-11  Ian Lance Taylor  <ian@wasabisystems.com>
7236
7237         PR c++/3478
7238         * parser.c (cp_parser_decl_specifier_seq): If the first decl_spec
7239         is error_mark_node, don't add any more decl_specs.
7240         (cp_parser_init_declarator): After committing to a declaration, if
7241         the decl_specifiers start with error_mark_node, issue an error and
7242         change the type to "int".
7243
7244 2004-01-09  Nathanael Nerode  <neroden@gcc.gnu.org>
7245
7246         PR bootstrap/7817
7247         * Make-lang.in: Copy gcc.1 to g++.1 rather than using .so.
7248
7249 2004-01-10  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
7250
7251         DR 337
7252         PR c++/9256
7253         * pt.c (tsubst): Substitution must fail if we are attempting to
7254         create an array with element type that is an abstract class type.
7255         * decl.c (cp_finish_decl): Strip pointers and array types recursively
7256         before calling abstract_virtuals_error.
7257
7258 2004-01-09  Alexandre Oliva  <aoliva@redhat.com>
7259
7260         * name-lookup.c (qualified_lookup_using_namespace): Consider
7261         strong using directives even if we've already found a binding.
7262
7263 2004-01-09  Mark Mitchell  <mark@codesourcery.com>
7264
7265         * cp-tree.h (cxx_expand_expr): Change prototype.
7266         * expr.c (cxx_expand_expr): Add alt_rtl parameter.
7267
7268 2004-01-08  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
7269
7270         PR c++/12573
7271         * pt.c (value_dependent_expression_p): Handle COMPONENT_REFs by
7272         looking into them recursively. They can be there because of the
7273         new __offsetof__ extension.
7274
7275 2004-01-07  Zack Weinberg  <zack@codesourcery.com>
7276
7277         * parser.c (cp_parser_save_member_function_body): Mark the
7278         definition static.
7279
7280 2004-01-05  Mark Mitchell  <mark@codesourcery.com>
7281
7282         PR c++/13057
7283         * class.c (build_clone): Copy type attributes from the original
7284         function to the clone.
7285
7286         PR c++/12815
7287         * class.c (build_vtbl_ref_1): Do not unconditionally mark vtable
7288         references as constant.
7289
7290         PR c++/12132
7291         * parser.c (cp_parser_explicit_instantiation): Improve error
7292         recovery.
7293         (cp_parser_require): Improve indication of the error location.
7294
7295         PR c++/13451
7296         * parser.c (cp_parser_class_head): Reorder logic to check for
7297         invalid qualification.
7298
7299 2004-01-04  Mark Mitchell  <mark@codesourcery.com>
7300
7301         PR c++/13157
7302         * name-lookup.c (lookup_using_namespace): Remove spacesp
7303         parameter.
7304         (unqualified_namespace_lookup): Likewise.
7305         (lookup_qualified_name): Adjust accordingly.
7306         (lookup_name_real): Likewise.
7307         (lookup_arg_dependent): Do not eliminate the namespace of the
7308         functions found by unqualified name lookup unless that is the
7309         current namespace.
7310
7311 2004-01-04  Andrew Pinski  <pinskia@physics.uc.edu>
7312
7313         * semantics.c (push_deferring_access_checks): Fix format.
7314         (resume_deferring_access_checks): Likewise.
7315         (stop_deferring_access_checks): Likewise.
7316         (pop_deferring_access_checks): Likewise.
7317         (get_deferred_access_checks): Likewise.
7318         (pop_to_parent_deferring_access_checks): Likewise.
7319         (perform_deferred_access_checks): Likewise.
7320         (perform_or_defer_access_check): Likewise.
7321
7322 2004-01-04  Richard Henderson  <rth@redhat.com>
7323
7324         * call.c (build_over_call): Don't create a save_expr of an
7325         aggregate, but rather its address.
7326
7327 2004-01-04  Mark Mitchell  <mark@codesourcery.com>
7328
7329         PR c++/13529
7330         * parser.c (cp_parser_postfix_expression): Allow "." to appear in
7331         an offsetof expression.
7332
7333         * parser.c (cp_parser_parameter_declaration): Fix comment.
7334
7335         PR c++/12226
7336         * call.c (CHECK_COPY_CONSTRUCTOR_P): New macro.
7337         (reference_binding): Set it when appropriate.
7338         (build_temp): New function, split out from ...
7339         (convert_like_real): ... here.  Honor CHECK_COPY_CONSTRUCTOR_P.
7340         (initialize_reference): Likewise.
7341
7342         PR c++/13536
7343         * parser.c (cp_parser): Add in_type_id_in_expr_p.
7344         (cp_parser_new): Initialize it.
7345         (cp_parser_postfix_expression): Set it.
7346         (cp_parser_sizeof_operand): Likewise.
7347         (cp_parser_parameteR_declaration): Do not commit early to tenative
7348         parsers when in_type_id_in_expr_p is set.
7349
7350 2004-01-03  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
7351
7352         PR c++/13094
7353         * parser.c (cp_parser_template_argument): Don't call
7354         make_unbound_class_template directly.
7355         (cp_parser_lookup_name): Don't extract TEMPLATE_DECL from
7356         UNBOUND_CLASS_TEMPLATE tree node.
7357
7358 2004-01-02  Richard Sandiford  <rsandifo@redhat.com>
7359
7360         PR target/12729
7361         * method.c (use_thunk): Pass the CALL_EXPR through force_target_expr.
7362
7363 2004-01-02  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
7364
7365         PR c++/13520
7366         * cp-tree.h (DECL_UNBOUND_CLASS_TEMPLATE_P): New macro.
7367         (DECL_FUNCTION_TEMPLATE_P): Use it.
7368         (DECL_CLASS_TEMPLATE_P): Likewise.
7369         * parser.c (cp_parser_lookup_name): Add is_template parameter.
7370         (cp_parser_type_parameter): Adjust call to cp_parser_lookup_name.
7371         (cp_parser_template_name): Likewise.
7372         (cp_parser_elaborated_type_specifier): Likewise.
7373         (cp_parser_namespace_name): Likewise.
7374         (cp_parser_class_name): Likewise.
7375         (cp_parser_lookup_name_simple): Likewise.
7376
7377 See ChangeLog.3 for earlier changes.