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