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