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