OSDN Git Service

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