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