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