OSDN Git Service

PR c++/28304
[pf3gnuchains/gcc-fork.git] / gcc / cp / ChangeLog
1 2006-07-17  Steve Ellcey  <sje@cup.hp.com>
2
3         PR c++/28304
4         * decl2.c (check_classfn): Return NULL_TREE on error.
5
6 2006-07-17  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
7
8         PR c++/28250
9         * name-lookup.c (pushdecl_maybe_friend): Return early on
10         error_mark_node.
11         * except.c (expand_start_catch_block): Use error_mark_node instead
12         of NULL_TREE for invalid decls.
13         * parser.c (cp_parser_exception_declaration): Return error_mark_node
14         on invalid catch parameter. Simplify.
15
16 2006-07-16  Jakub Jelinek  <jakub@redhat.com>
17
18         PR c++/28370
19         * decl2.c (note_vague_linkage_var): Removed.
20         (finish_static_data_member_decl): Add decl to pending_statics vector
21         directly.  Do it even for non-public decls.
22
23 2006-07-15  Lee Millward  <lee.millward@gmail.com>
24
25         PR c++/28292
26         * decl2.c (acceptable_java_type): Robustify. Use
27         proper Boolean return type instead of return 1.
28         (check_java_method): Don't issue error about
29         type not being an acceptable Java parameter if 
30         it's error_mark_node.
31         
32         PR c++/28269
33         * parser.c (cp_parser_elaborated_type_specifier):
34         Return early if an invalid type was detected.
35         
36 2006-07-15  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
37
38         PR c++/28249
39         * parser.c (cp_parser_check_decl_spec): New function.
40         (cp_parser_decl_specifier_seq): Factor out check for repeated
41         decl-specifiers into cp_parser_check_decl_spec. Use it.
42         (cp_parser_type_specifier_seq): Use it.
43
44         PR c++/28294
45         * semantics.c (finish_offsetof): Use TREE_OPERAND for COMPONENT_REFs
46         only.
47
48         PR c++/28387
49         * decl2.c (cplus_decl_attributes): Check for invalid decls.
50
51 2006-07-14  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
52
53         PR c++/28343
54         * decl.c (cp_finish_decl): Check asmspec_tree for error_mark_node.
55         * decl2.c (grokfield): Likewise.
56
57 2006-07-12  Geoffrey Keating  <geoffk@apple.com>
58
59         * decl2.c (determine_visibility): Don't change visibility of
60         function locals because of -fvisibility-inlines-hidden.
61
62 2006-07-12  Jason Merrill  <jason@redhat.com>
63
64         PR c++/28217
65         * semantics.c (note_decl_for_pch): Don't premangle templates.
66
67 2006-07-12  Martin Michlmayr  <tbm@cyrius.com>
68
69         * typeck.c (string_conv_p): Remove spurious quotation mark in
70         warning.
71
72 2006-07-07  Lee Millward  <lee.millward@gmail.com>
73             Andrew Pinski  <pinskia@gmail.com>
74
75         PR c++/27820
76         * decl.c (define_label): Return error_mark_node on error.
77         * semantics.c (finish_label_stmt): Don't call
78         add_stmt for invalid labels.
79         
80 2006-07-06  Jason Merrill  <jason@redhat.com>
81
82         PR c++/28279
83         * decl2.c (finish_static_data_member_decl): Don't assert
84         TREE_PUBLIC.
85
86 2006-07-05  Jason Merrill  <jason@redhat.com>
87
88         PR c++/13983
89         PR c++/17519
90         * class.c (check_field_decls): Check TYPE_PACKED after
91         stripping array types.
92         (finish_struct_bits): Don't copy TYPE_SIZE here.
93
94         PR c++/18681
95         * friend.c (is_friend): Fix DR 45 implementation.
96
97 2006-07-05  Richard Guenther  <rguenther@suse.de>
98         Andrew Pinski  <pinskia@gcc.gnu.org>
99
100         PR c++/27084
101         * cp-objcp-common.c (cxx_types_compatible_p): Ignore
102         top level qualifiers for pointer type comparisons.
103
104 2006-07-01  Jason Merrill  <jason@redhat.com>
105
106         PR c++/28215
107         * method.c (make_thunk): Unset DECL_USE_TEMPLATE and 
108         DECL_TEMPLATE_INFO.
109
110 2006-06-30  Jason Merrill  <jason@redhat.com>
111
112         PR c++/26577
113         * call.c (build_new_method_call): Force evaluation of the 
114         instance pointer, not the object.
115
116 2006-06-30  Kazu Hirata  <kazu@codesourcery.com>
117
118         * decl2.c: Fix a comment typo.
119
120 2006-06-30  Jason Merrill  <jason@redhat.com>
121
122         PR c++/18698
123         * decl2.c (grokfield): Only try to treat the decl as an access 
124         declaration if the scope is a class.
125
126 2006-06-29  Jason Merrill  <jason@redhat.com>
127
128         PR c++/26905
129         PR c++/26612
130         PR c++/27000
131         PR c++/26984
132         PR c++/19134
133         * decl2.c (determine_visibility): Overhaul.
134         (determine_visibility_from_class): Likewise.
135         (min_vis_r, type_visibility, constrain_visibility): New fns.
136         (constrain_visibility_for_template): Likewise.
137         (constrain_class_visibility): Likewise.
138         * decl.c (cp_finish_decl): Call determine_visibility for function
139         decls, too.
140         * name-lookup.c (pushtag): Call determine_visibility.
141         * decl.c (duplicate_decls): Don't copy visibility from template to
142         specialization.
143         * pt.c (check_explicit_specialization): Likewise.
144         (lookup_template_class, tsubst_decl): Call determine_visibility.
145         * class.c (finish_struct_1): Call constrain_class_visibility.
146
147         PR c++/26905
148         PR c++/21675
149         PR c++/17470
150         * parser.c (cp_parser_explicit_instantiation): Pass the attributes
151         to grokdeclarator.
152         (cp_parser_type_specifier): Allow 'enum __attribute ((...)) E'.
153         (cp_parser_enum_specifier): Likewise.
154         (cp_parser_elaborated_type_specifier): Apply attributes if this
155         declares only the class.
156         (cp_parser_class_specifier): Apply leading attributes immediately.
157         * semantics.c (begin_class_definition): Add attributes parameter,
158         apply them to the type.
159
160         PR c++/21581
161         PR c++/25915
162         * tree.c (decl_anon_ns_mem_p): New function.
163         * cp-tree.h: Declare it.
164         * decl2.c (determine_visibility): Make anonymous namespace
165         members static.
166         (min_vis_r, constrain_visibility): Likewise.
167         * rtti.c (create_pseudo_type_info): Set TREE_PUBLIC on
168         pseudo-types.
169         * decl.c (cxx_init_decl_processing): Set TREE_PUBLIC on
170         global_namespace.
171         * name-lookup.c (push_namespace_with_attribs): Don't set TREE_PUBLIC
172         on anonymous namespaces.
173
174 2006-06-28  Jason Merrill  <jason@redhat.com>
175
176         PR c++/27424
177         * pt.c (convert_template_argument): Pass all template arguments 
178         on to coerce_template_template_parms.
179
180 2006-06-25  Lee Millward  <lee.millward@gmail.com>
181             Mark Mitchell <mark@codesuorcery.com>
182
183         PR c++/28054
184         * decl2.c (grokbitfied): Remove check for grokdeclarator
185         returning NULL_TREE, instead check for error_mark_node
186         to indicate failure.
187         * decl.c (grokdeclarator): Adjust block comment.
188         
189 2006-06-25  Lee Millward  <lee.millward@gmail.com>
190
191         PR c++/28051
192         * mangle.c (mangle_conv_op_name_for_type): Check for
193         invalid types.
194         * name-lookup.c (push_class_level_binding): Robustify.
195         (do_class_using_decl): Return early if name is error_mark_node.
196         
197 2006-06-23  Steve Ellcey  <sje@cup.hp.com>
198
199         PR c++/28114
200         * name-lookup.c (pushtag): Return if we have error_mark_node.
201
202 2006-06-23  Steve Ellcey  <sje@cup.hp.com>
203
204         PR c++/27019
205         * typeck2.c (process_init_constructor_array): Set ce->value on errors.
206
207 2006-06-23  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
208
209         PR c++/28112
210         * parser.c (cp_parser_attribute_list): Skip attributes with invalid
211         arguments.  Fix comment.
212
213         PR c++/11468
214         * init.c (build_new_1): Handle error_mark_nodes returned by
215         build_java_class_ref.
216         (build_java_class_ref): Do not abort compilation, but return
217         error_mark_node.  Improve error message.  Fix indentation.
218
219 2006-06-23  Danny Smith   <dannysmith@users.sourceforge.net>
220
221         PR target/27789
222         * decl.c (start_decl): Check that dllimports are not initialized.
223
224 2006-06-22  Lee Millward  <lee.millward@gmail.com>
225
226         PR c++/27805
227         * typeck2.c (build_m_component_ref): Use error_operand_p.
228
229         PR c++/27821
230         * decl.c (grokdeclarator): Return error_mark_node on
231         invalid uses of the scope resolution operator.
232         
233 2006-06-22  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
234
235         PR c++/28111
236         * pt.c (determine_specialization): Check for invalid decls.
237
238         PR c++/28110
239         * pt.c (unify) <case TEMPLATE_PARM_INDEX>: Check for invalid
240         parameters.
241
242         PR c++/28109
243         * rtti.c (get_tinfo_decl_dynamic): Robustify.
244
245 2006-06-20  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
246
247         PR c++/28052
248         * init.c (push_base_cleanups): Skip members with invalid types.
249         * typeck.c (build_class_member_access_expr): Robustify.
250
251 2006-06-19  Mark Mitchell  <mark@codesourcery.com>
252
253         * pt.c (instantiate_template): Fix typo in comment.
254
255 2006-06-19  Richard Guenther  <rguenther@suse.de>
256
257         * parser.c (CP_LEXER_BUFFER_SIZE): Adjust to assure near
258         power-of-two token vector size.
259
260 2006-06-16  Mark Mitchell  <mark@codesourcery.com>
261
262         PR c++/28016
263         * decl.c (cp_finsh_decl): Do not emit uninstantiated static data
264         members.
265
266         PR c++/27979
267         * call.c (standard_conversion): Strip cv-qualifiers from bitfield
268         types.
269
270         PR c++/27884
271         * decl.c (have_extern_spec): Remove.
272         (start_decl): Do not check have_extern_spec.
273         (start_function): Likewise.
274         * cp-tree.h (have_extern_spec): Remove.
275         * parser.c (cp_parser_linkage_specification): Don't set
276         have_extern_spec.
277         (cp_parser_init_declarator): Likewise.
278         (cp_parser_parameter_declaration): Do not treat parameters as
279         within the scope of an unbraced linkage specification.
280
281 2006-06-15  Mark Mitchell  <mark@codesourcery.com>
282
283         PR c++/27689
284         * cp-tree.h (CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P): New
285         macro.
286         * pt.c (unify): Use it.
287
288         PR c++/27666
289         * call.c (build_conditional_expr): Robustify.
290
291         PR c++/27640
292         * pt.c (instantiate_template): Set processing_template_decl to
293         zero while performing substitutions.
294
295 2006-06-14  Mark Mitchell  <mark@codesourcery.com>
296
297         PR c++/27665
298         * parser.c (cp_parser_unqualified_id): Use constructor_name_p to
299         identify destructors.
300         (cp_parser_nested_name_specifier_opt): Remove invalid
301         optimization.
302         (cp_parser_template_id): Refine heuristic for determining whether
303         we are entering a scope.
304
305         PR c++/27648
306         * parser.c (cp_parser_declarator): Robustify.
307
308         PR c++/26559
309         * pt.c (tsubst_expr): Use finish_omp_atomic.
310         (value_dependent_expression_p): All CALL_EXPRs are dependent.
311         * semantics.c (finish_omp_atomic): Rework to use standard
312         paradigms for handling non-dependent expressions.
313
314 2006-06-14  Gabriel Dos Reis  <gdr@integrable-solutions.net>
315
316         * typeck.c (build_modify_expr): Tidy diagnostic message.
317
318 2006-06-14  Mark Mitchell  <mark@codesourcery.com>
319
320         PR c++/28018
321         * typeck.c (build_modify_expr): Disallow array assignment.
322
323 2006-06-14  Gabriel Dos Reis  <gdr@integrable-solutions.net>
324
325         * cp-tree.def: Fix typo.
326
327 2006-06-13  Mark Mitchell  <mark@codesourcery.com>
328
329         PR c++/27227
330         * decl.c (decls_match): Allow an extern "C" variable declarations
331         from different namespaces to match.
332         (duplicate_decls): Disallow redeclaring a variable with a
333         different linkage specification.
334
335 2006-06-13  Jakub Jelinek  <jakub@redhat.com>
336
337         PR middle-end/27793
338         * cp-tree.h (cxx_int_tree_map): New struct.
339         (struct language_function): Add extern_decl_map field.
340         * name-lookup.c (pushdecl_maybe_friend): Add x -> t mapping
341         to cp_function_chain->extern_decl_map hash table instead of
342         copying over DECL_UID.
343         * cp-gimplify.c (cxx_int_tree_map_eq, cxx_int_tree_map_hash): New
344         functions.
345         (cp_genericize_r): Remap DECL_EXTERN local decls using
346         cp_function_chain->extern_decl_map hash table.
347         * decl.c (finish_function): Clear extern_decl_map.
348
349 2006-06-12  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
350
351         PR c++/27601
352         * semantics.c (finish_offsetof): Handle pseudo-destructors.
353
354         PR c++/27933
355         * name-lookup.c (lookup_qualified_name): Always return error_mark_node
356         if lookup fails.
357
358         PR c++/27951
359         * decl2.c (finish_anon_union): Return early if build_anon_union_vars
360         fails.
361
362 2006-06-12  Roger Sayle  <roger@eyesopen.com>
363
364         PR c++/21210
365         * typeck2.c (build_functional_cast): Use cp_convert to construct
366         non-aggregate initializers instead of the user-level build_c_cast.
367
368 2006-06-07  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
369
370         PR c++/27601
371         * cp-tree.h (finish_offsetof): Add prototype.
372         * semantics.c (finish_offsetof): New function.
373         * parser.c (cp_parser_builtin_offsetof): Call it instead of
374         fold_offsetof.
375         * pt.c (tsubst_copy_and_build): Likewise.
376
377 2006-06-06  Mark Mitchell  <mark@codesourcery.com>
378
379         PR c++/27177
380         * call.c (standard_conversion): Require that the derived type be
381         complete when performing a derived-to-base conversion.
382
383 2006-06-04  Mark Mitchell  <mark@codesourcery.com>
384
385         PR c++/27819
386         * decl.c (cp_finish_decl): Process initializers for static data
387         members with non-dependent initializers, even in templates.
388
389         PR c++/27722
390         * decl.c (maybe_deduce_size_from_array_init): If the declaration
391         is erroneous, give it an erroneous type.
392         (layout_var_decl): If the type is erroneous, give up.
393         (check_initializer): Likewise.
394
395         PR c++/27807
396         * cp-tree.h (TYPE_OBJ_P): New macro.
397         (TYPE_PTROB_P): Use it.
398         (TYPE_REF_OBJ_P): Likewise.
399         * semantics.c (finish_compound_literal): Do not permit compound
400         literals of non-object types.
401
402         PR c++/27806
403         * typeck.c (original_type): Robustify.
404
405 2006-06-05  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
406
407         PR c++/27804
408         * init.c (constant_value_1): Return decl instead of error_mark_node
409         for invalid initializers.
410
411 2006-06-01  Andrew Pinski  <pinskia@physics.uc.edu>
412
413         PR c++/27592
414         * rtti.c (build_dynamic_cast_1): Call c_common_truthvalue_conversion
415         on operand of the COND_EXPR for the null pointer check.
416
417 2006-06-01  Andrew Pinski  <pinskia@physics.uc.edu>
418
419         PR c++/26740
420         * typeck.c (build_unary_op): Mark the function as being used.
421
422 2006-06-01  Alexandre Oliva  <aoliva@redhat.com>
423
424         PR c++/26660
425         * parser.c (cp_parser_initial_pragma): Read one more token for
426         caller after reading PCH file in.
427
428 2006-05-31  Mark Mitchell  <mark@codesourcery.com>
429
430         PR c++/27801
431         * call.c (perform_implicit_conversion): Do not actually perform
432         conversions in templates.
433
434         PR c++/26496
435         * call.c (resolve_args): Check for invalid uses of bound
436         non-static member functions.
437         * init.c (build_offset_ref): Return error_mark_node for errors.
438
439         PR c++/27385
440         * decl.c (reshape_init): Robustify.
441         (reshape_init_array_1): Likewise.
442
443 2006-05-30  Mark Mitchell  <mark@codesourcery.com>
444
445         PR c++/27808
446         * parser.c (cp_parser_decl_specifier_seq): Issue errors about
447         "friend" specifiers that do not appear in class scopes.
448
449         PR c++/27803
450         * class.c (check_bitfield_decl): Ensure that all bitfields have
451         integral type.
452
453 2006-05-29  Kazu Hirata  <kazu@codesourcery.com>
454
455         * pt.c (convert_nontype_argument): Fix a typo in an error
456         message.
457
458 2006-05-28  Kazu Hirata  <kazu@codesourcery.com>
459
460         * decl.c, decl2.c, parser.c: Fix comment typos.  Follow
461         spelling conventions.
462
463 2006-05-24  Mark Mitchell  <mark@codesourcery.com>
464
465         PR c++/20103
466         * decl.c (cp_make_fname_decl): Don't set DECL_INITIAL to
467         error_mark_node to indicate an initialization is OK.
468         (start_decl): Likewise.  Adjust call to start_decl_1.
469         (start_decl_1): Add initialized parameter.  Simplify.
470         * except.c (initialize_handler_parm): Adjust call to
471         setart_decl_1.
472         (expand_start_catch_block): Let cp_finish_decl initialize catch
473         parameters.
474         * cp-tree.h (start_decl_1): Adjust prototype.
475         * pt.c (tsubst_expr): Don't set DECL_INITIAL to error_mark_node.
476         (instantiate_decl): Let cp_finish_decl handle initialization.
477         * semantics.c (finish_compound_literal): Create a temporary
478         variable for the literal.
479         * typeck.c (build_unary_op): Remove COMPOUND_LITERAL_P special
480         cases.
481         * decl2.c (finish_static_data_member_decl): Don't set
482         DECL_INITIAL.
483         (grokfield): Do not try to initialize functions.
484
485 2006-05-23  Mark Mitchell  <mark@codesourcery.com>
486
487         PR c++/20173
488         * pt.c (determine_specialization): Disallow partial
489         specializations of templates.
490
491 2006-05-22  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
492
493         PR c++/27716
494         * typeck.c (build_modify_expr): Test arguments for error_operand_p.
495
496         * decl.c (grokdeclarator): Return error_mark_node instead of NULL_TREE.
497
498 2006-05-21  Mark Mitchell  <mark@codesourcery.com>
499
500         PR c++/27210
501         * cp-tree.h (cp_save_expr): New function.
502         * init.c (build_new): Correct logic for zero-element array
503         warning.  Use cp_save_expr.
504         * tree.c (cp_save_expr): New function.
505
506 2006-05-21  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
507
508         PR c++/27398
509         * decl.c (grokdeclarator): Return error_mark_node instead of NULL_TREE
510         or void_type_node.
511
512 2006-05-19  Mike Stump  <mrs@apple.com>
513
514         * typeck.c (default_conversion): Remove static.
515
516 2006-05-19  Mark Mitchell  <mark@codesourcery.com>
517
518         PR c++/26433
519         * cp-tree.h (begin_function_try_block): Change prototype.
520         (finish_function_handler_sequence): Likewise.
521         * parser.c (cp_parser_function_try_block): Adjust calls.
522         * pt.c (tsubst_expr): Adjust calls.
523         * semantics.c (begin_function_try_block): Create an artificial
524         outer scope.
525         (finish_function_handler_sequence): Close it.
526
527 2006-05-18  Mark Mitchell  <mark@codesourcery.com>
528
529         PR c++/27471
530         PR c++/27506
531         * typeck.c (decay_conversion): Convert bitfields to their declared
532         types here.  Improve documentation.  Avoid use of cp_convert.
533         (default_conversion): Make it static.  Perform integral promotions
534         before lvalue-to-rvalue, function-to-pointer, and array-to-pointer
535         conversions.
536         * init.c (build_init): Remove.
537         (expand_default_init): Do not call rvalue.
538         * call.c (null_ptr_cst_p): Robustify.
539         (build_conditional_expr): Tidy.
540         * except.c (build_throw): Do not perform lvalue-to-rvalue
541         conversion on operand before initializing temporary.
542         * tree.c (convert.h): Include it.
543         (convert_bitfield_to_declared_type): Use convert_to_integer, not
544         cp_convert.
545         (rvalue): Don't convert bitfields to their declared type here.
546         * cp-tree.h (build_init): Remove.
547         (default_conversion): Likewise.
548         * typeck2.c (build_m_component_ref): Do not perform
549         lvalue-to-rvalue, function-to-pointer, or array-to-pointer
550         conversions here.  Correct error message.
551
552 2006-05-17  Mark Mitchell  <mark@codesourcery.com>
553
554         PR c++/26122
555         * decl2.c (check_member_template): Remove checks for virtual
556         functions.
557         * parser.c (cp_parser_function_specifier_opt): Complain about
558         virtual templates.
559         (cp_parser_pure_specifier): Likewise.
560
561         PR c++/26068
562         * parser.c (cp_parser_set_storage_class): Check for
563         invalid uses of storage classes on unbraced linkage
564         specifications.
565         (cp_parser_decl_specifier_seq): Pass keywords, not storage classes,
566         to cp_parser_set_storage_class.
567
568 2006-05-17  Jakub Jelinek  <jakub@redhat.com>
569
570         PR c++/27491
571         * semantics.c (finish_compound_literal): Only set TREE_HAS_CONSTRUCTOR
572         on CONSTRUCTORs.
573
574         PR middle-end/27415
575         * parser.c (cp_parser_omp_parallel): Set OMP_PARALLEL_COMBINED
576         on combined parallel workshare constructs.
577         * pt.c (tsubst_expr): Copy OMP_PARALLEL_COMBINED flag.
578
579 2006-05-16  H.J. Lu  <hongjiu.lu@intel.com>
580
581         PR driver/26885
582         * Make-lang.in (GXX_OBJS): Replace gcc.o with $(GCC_OBJS).
583
584 2006-05-15  Mark Mitchell  <mark@codesourcery.com>
585
586         PR c++/27339
587         * cp-tree.h (perform_access_checks): New function.
588         * semantics.c (perform_access_checks): New function.
589         (perform_deferred_access_checks): Use it.
590         * parser.c (cp_parser_simple_declaration): Adjust call to
591         cp_parser_init_declarator.
592         (cp_parser_type_parameter): Do not defer checks in default
593         arguments.
594         (cp_parser_explicit_specialization): Adjust call to
595         cp_parser_single_declaration.
596         (cp_parser_init_declarator): Perform template-parameter access
597         checks.
598         (cp_parser_parameter_declaration): Do not defer checks for
599         template parameter default arguments.
600         (cp_parser_template_declaration_after_export): Gather access
601         checks for template parameters, and pass them to
602         cp_parser_single_declaration.
603         (cp_parser_template_parameter_access_checks): New function.
604         (cp_parser_single_declaration): Add checks parameter.
605
606         PR c++/27505
607         * call.c (convert_like_real): Convert bitfields to their declared
608         types when forming an rvalue.
609         * tree.c (convert_bitfield_to_declared_type): New function.
610         (rvalue): Use it.
611         * cp-tree.h (convert_bitfield_to_declare_type): Declare it.
612
613 2006-05-15  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
614
615         PR c++/27582
616         * pt.c (any_dependent_template_arguments_p): Return early on invalid
617         argument list.
618
619         PR c++/27581
620         * search.c (adjust_result_of_qualified_name_lookup): Skip on
621         invalid context_class.
622
623         PR c++/27315
624         * pt.c (do_decl_instantiation): Return early on invalid decl.
625
626         PR c++/27559
627         * pt.c (push_template_decl_real): Return error_mark_node instead
628         of broken decl.
629
630         PR c++/27496
631         * pt.c (tsubst_friend_class): Return early on invalid friend
632         declarations.
633
634 2006-05-14  H.J. Lu  <hongjiu.lu@intel.com>
635
636         * Make-lang.in (cp/decl.o): Add dependency on $(TARGET_H).
637         (cp/decl2.o): Likewise.
638         (cp/typeck.o): Likewise.
639         (cp/cvt.o): Likewise.
640         (cp/parser.o): Likewise.
641         (cp/call.o): Replace target.h with $(TARGET_H).
642
643 2006-05-14  Alexandre Oliva  <aoliva@redhat.com>
644
645         * pt.c (build_non_dependent_expr): Leave ADDR_EXPR of
646         COMPONENT_REF alone.
647
648 2006-05-11  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
649
650         PR c++/27547
651         * decl.c (copy_fn_p): Return early on non-member functions.
652
653 2006-05-08  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
654
655         PR c++/27447
656         * decl2.c (build_memfn_type): Skip invalid functions and class types.
657
658 2006-05-06  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
659
660         PR c++/27427
661         * pt.c (convert_nontype_argument): Return early on invalid arguments.
662
663         * pt.c (process_template_parm): Remove superfluous temporary.
664
665         PR c++/27430
666         * pt.c (process_template_parm): Handle erroneous non-type parameters.
667
668         PR c++/27423
669         * typeck.c (convert_for_initialization): Skip erroneous types.
670
671         PR c++/27422
672         * typeck.c (convert_arguments): Return early on args with
673         invalid types.
674
675 2006-05-03  Aldy Hernandez  <aldyh@redhat.com>
676
677         PR/21391
678         * typeck.c (build_static_cast_1): Save casted types in used types
679         hash table.
680         (build_reinterpret_cast_1): Same.
681         * rtti.c (build_dynamic_cast_1): Same.
682
683 2006-05-04  Jakub Jelinek  <jakub@redhat.com>
684
685         PR c++/27359
686         * parser.c (cp_parser_omp_for_loop): Only call
687         cp_parser_abort_tentative_parse if cp_parser_parse_definitely was not
688         called.
689
690 2006-05-02  Mark Mitchell  <mark@codesourcery.com>
691
692         PR c++/27102
693         * decl.c (grokdeclarator): Robustify checks for defining members
694         of incomplete types.
695
696         PR c++/27309
697         * class.c (add_method): Call grok_special_member_properties.
698         * decl.c (grokdeclarator): Don't call it here.
699         (copy_fn_p): A TEMPLATE_DECL is never a copy constructor or
700         assignment operator.  Set TYPE_HAS_CONSTURCTOR if DECL is a
701         constructor.
702         (start_method): Don't call grok_special_member_properties.
703         * method.c (implicitly_declare_fn): Likewise.
704         * pt.c (instantiate_class_template): Likewise.
705         * decl2.c (grokfield): Likewise.
706
707 2006-05-02  Jakub Jelinek  <jakub@redhat.com>
708
709         PR middle-end/27337
710         * cp-gimplify.c (cxx_omp_privatize_by_reference): New function.
711         * cp-tree.h (cxx_omp_privatize_by_reference): New prototype.
712         * cp-objcp-common.h (LANG_HOOKS_OMP_PRIVATIZE_BY_REFERENCE): Define.
713
714 2006-04-30  Mark Mitchell  <mark@codesourcery.com>
715
716         PR c++/27094
717         * pt.c (tsubst_default_argument): Increment function_depth around
718         call to tsubst_expr.
719         * parser.c (cp_parser_parameter_declaration): Likewise.
720         * decl2.c (mark_used): Tidy.
721
722 2006-04-30  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
723
724         PR c++/27278
725         * decl.c (grok_op_properties): Skip operators with invalid args
726         when checking for class-type or enum-type args.
727
728 2006-04-29  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
729
730         PR c++/27279
731         * decl.c (copy_fn_p): Skip functions with invalid first arg.
732
733 2006-04-27  Mark Mitchell  <mark@codesourcery.com>
734
735         PR c++/27292
736         * tree.c (rvalue): Convert bitfields to their declared types.
737
738         PR c++/27102
739         * typeck2.c (cxx_incomplete_type_diagnostic): Handle
740         TYPENAME_TYPE.
741
742 2006-04-24  Mark Mitchell  <mark@codesourcery.com>
743
744         PR c++/27292
745         * typeck.c (decay_conversion): Don't adjust bitfield types.
746         (perform_integral_promotions): Treat bitfield enums as enums, not
747         as short integer types.
748         * tree.c (rvalue): Convert bitfields to their correct types.
749
750 2006-04-24  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
751
752         PR c++/19963
753         * class.c (layout_class_type): Skip fields with invalid types.
754
755 2006-04-23  Mark Mitchell  <mark@codesourcery.com>
756
757         PR c++/26912
758         * cp-tree.h (build_this_parm): Declare.
759         (grok_method_quals): Remove.
760         (build_memfn_type): Declare.
761         (build_artificial_parm): Declare.
762         (do_friend): Remove quals parameter.
763         * decl.c (build_this_parm): New function.
764         (grokfndecl): Use it.  Do not pass quals to grokclassfn.
765         (grokdeclarator): Rename quals to memfn_quals.  Avoid allocating
766         unnecessary TYPE_DECLs.  Correct qualification of member function
767         types.  Tidy.
768         * method.c (implicitly_declare_fn): Use build_this_parm.
769         * friend.c (do_friend): Remove quals parameter.
770         * decl2.c (grok_method_quals): Remove.
771         (build_memfn_type): New function.
772         (build_artificial_parm): Give it external linkage.
773         (grokclassfn): Remove quals parameter.  Do not build "this"
774         PARM_DECL here.
775
776         PR c++/26534
777         * cp-tree.h (is_bitfield_expr_with_lowered_type): New function.
778         * typeck.c (is_bitfield_expr_with_lowered_type): New function.
779         (decay_conversion): Convert bitfield expressions to the correct
780         type.
781         (build_modify_expr): Remove spurious conversions.
782         * class.c (layout_class_type): Modify the type of bitfields to
783         indicate a limited range.
784         * call.c (standard_conversion): Adjust the type of bitfield
785         expressions used in an rvalue context.
786         (build_conditional_expr): Likewise.
787
788 2006-04-22  Kazu Hirata  <kazu@codesourcery.com>
789
790         * decl.c: Fix comment typos.
791
792 2006-04-21  Eric Christopher  <echristo@apple.com>
793
794         * decl.c: Fix typo in function name.
795
796 2006-04-19  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
797
798         PR c++/26558
799         * parser.c (cp_parser_class_name): Check for invalid typenames.
800         Rearrange code.
801
802         PR c++/26739
803         * pt.c (tsubst_friend_function): Return early if
804         pushdecl_namespace_level fails.
805
806         PR c++/26036
807         * typeck.c (convert_arguments): Return error_mark_node instead of
808         error_mark_list.
809         * cp-tree.h (error_mark_list): Remove declaration.
810         * decl.c (error_mark_list): Remove definition.
811         (cxx_init_decl_processing): Do not initialize error_mark_list.
812
813         PR c++/10385
814         * rtti.c (build_dynamic_cast_1): Check for invalid conversions
815         before calling convert_to_reference.
816         * cvt.c (convert_to_reference): Assert that reftype is a
817         REFERENCE_TYPE.
818
819 2006-04-19  Mark Mitchell  <mark@codesourcery.com>
820
821         PR c++/27102
822         * class.c (currently_open_class): Tidy.
823         * decl.c (grokdeclarator): If we encounter an erroneous
824         declarator, assume that we have already issued an error message
825         and return.  Return error_mark_node instead of NULL_TREE in more
826         places.  Issue errors about function definitions that do not have
827         a function declarator.  Check for complete types for all function
828         definitions.
829         * cp-tree.h (cp_error_declarator): Remove.
830         (currently_open_class): Change return type.
831         * parser.c (cp_parser_id_expression): Add optional_p parameter.
832         (cp_parser_parse_diagnose_invalid_type_name): Adjust calls.
833         (cp_parser_id_expression): Likewise.
834         (cp_parser_unqualified_id): If the name is optional, return
835         NULL_TREE.
836         (cp_parser_postfix_dot_deref_expression): Adjust calls.
837         (cp_parser_type_parameter): Likewise.
838         (cp_parser_unqualified_id): Likewise.
839         (cp_parser_direct_declarator): Likewise.
840         (cp_parser_declarator_id): Add optional_p parameter.
841         (cp_parser_function_definition_from_specifiers_and_declarator):
842         Assume that start_function indicates failure only if it has issued
843         an error.
844         (cp_parser_omp_var_list_no_open): Adjust calls.
845
846 2006-04-17  Janis Johnson  <janis187@us.ibm.com>
847
848         PR c++/26114, c++/26115
849         * typeck.c (cxx_mark_addressable): Restore check for extra_warnings.
850         * class.c (check_field_decls): Ditto.
851
852 2006-04-17  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
853
854         * init.c (build_offset_ref): Remove superfluous temporary.
855
856 2006-04-16  Mark Mitchell  <mark@codesourcery.com>
857
858         PR c++/26365
859         * typeck.c (finish_class_member_access_expr): Robustify
860
861 2006-04-15  Kazu Hirata  <kazu@codesourcery.com>
862
863         * Make-lang.in (cp/pt.o): Depend on vecprim.h.
864         * pt.c: Include vecprim.h.
865         (inline_parm_levels): Change the type to VEC(int,heap) *.
866         (inline_parm_levels_used): Remove.
867         (maybe_begin_member_template_processing,
868         maybe_end_member_template_processing): Use VEC instead of
869         VARRAY.
870
871         * cp/call.c: Fix comment typos.
872
873 2006-04-12  Mark Mitchell  <mark@codesourcery.com>
874
875         * parser.c (cp_parser_init_declarator): Initialize local variables
876         aggressively.
877
878 2006-04-12  Roger Sayle  <roger@eyesopen.com>
879
880         * parser.c (cp_parser_init_declarator): Initialise
881         is_parenthesized_init to false to avoid compiler warning.
882
883 2006-04-11  Mark Mitchell  <mark@codesourcery.com>
884
885         * cp-tree.h (build_operator_new_call): Adjust prototype.
886         (build_new_method_call): Likewise.
887         (build_op_delete_call): Likewise.
888         * init.c (build_raw_new_expr): New function.
889         (build_new_1): Pass information as parameters, rather than
890         bundling it into a NEW_EXPR.
891         (build_new): Adjust accordingly.
892         (build_vec_delete_1): Adjust for changes to build_op_delete_call.
893         (build_delete): Likewise.
894         * decl.c (finish_destructor_body): Likewise.
895         * call.c (build_operator_new_call): Return the allocation function
896         used.
897         (build_op_delete_call): Take allocation function as parameter.
898         (build_special_member_call): Adjust call to build_new_method_call.
899         (build_new_method_call): Return function called.
900         * pt.c (tsubst_copy_and_build): Adjust call to
901         build_new_method_call.
902         * semantics.c (finish_call_expr): Likewise.
903         * parser.c (cp_parser_postfix_expression): Likewise.
904         * typeck2.c (cxx_incomplete_type_diagnostic): Refer to
905         "incomplete", not "undefined", types.
906
907         PR c++/26295
908         * decl.c (grokdeclarator): Remove namespace-handling code for
909         pointers-to-members.
910         * parser.c (cp_parser_ptr_operator): Check for qualified names
911         using namespaces.
912
913         PR c++/26122
914         * parser.c (cp_parser_init_declarator): Adjust logic for deciding
915         whether or not to look for a pure-specifier.
916         (cp_parser_member_declaration): Likewise.
917
918 2006-04-08  Kazu Hirata  <kazu@codesourcery.com>
919
920         * decl2.c, pt.c, semantics.c: Fix comment typos.
921
922 2006-04-06  Roger Sayle  <roger@eyesopen.com>
923
924         * call.c (null_ptr_cst_p): Add explicit TREE_CONSTANT_OVERFLOW check.
925
926 2006-04-05  Jason Merrill  <jason@redhat.com>
927
928         * name-lookup.c (push_namespace_with_attribs): Temporarily disable
929         default hidden visibility for anonymous namespace.
930
931 2006-03-29  Roger Sayle  <roger@eyesopen.com>
932
933         PR c++/22494
934         * init.c (build_vec_delete_1): Convert BASE pointer's type to
935         the base pointer type to avoid a type mismatch in the EQ_EXPR.
936
937 2006-03-24  Carlos O'Donell  <carlos@codesourcery.com>
938
939         * search.c (maybe_suppress_debug_info): If
940         flag_emit_class_debug_always then don't suppress.
941
942 2006-03-22  Jason Merrill  <jason@redhat.com>
943
944         * name-lookup.c (push_namespace_with_attribs): Only apply hidden
945         visibility to anonymous namespaces if HAVE_GAS_HIDDEN.
946
947 2006-03-21  Jakub Jelinek  <jakub@redhat.com>
948
949         PR c++/26691
950         * cp-gimplify.c (cxx_omp_clause_apply_fn): Handle default arguments.
951
952 2006-03-21  Jason Merrill  <jason@redhat.com>
953
954         PR c++/21581
955         * parser.c (cp_parser_declaration): Support attributes on
956         anonymous namespaces.
957         * name-lookup.c (push_namespace_with_attribs): Anonymous
958         namespaces default to hidden visibility.
959
960 2006-03-20  Jason Merrill  <jason@redhat.com>
961
962         PR c++/21764, c++/19238
963         * decl.c (cp_finish_decl): Call determine_visibility later.
964         (start_preparsed_function): Likewise.
965         * cp-tree.h (CP_TYPE_CONTEXT, TYPE_NAMESPACE_SCOPE_P): New macros.
966         (TYPE_CLASS_SCOPE_P, TYPE_FUNCTION_SCOPE_P): New macros.
967         * name-lookup.h (struct cp_binding_level): Add has_visibility
968         bitfield.
969         * name-lookup.c: Include c-pragma.h.
970         (push_namespace_with_attribs): Split out from push_namespace.
971         Push visibility if appropriate.  Set TREE_PUBLIC on namespaces.
972         (leave_scope): Pop visibility if appropriate.
973         * decl2.c (determine_visibility_from_class): Split out from...
974         (determine_visibility): ...here.  Handle function scope and
975         nested classes.
976         (import_export_decl): Move visibility handling to
977         determine_visibility_from_class.
978         * parser.c (cp_parser_declaration, cp_parser_namespace_name): Allow
979         attributes on namespace declarations.
980
981 2006-03-15  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
982
983         PR c++/6634
984         * decl.c (grokdeclarator): Do not accept long long double.
985         Reorganize checks for invalid (combinations of) type modifiers.
986         Quote modifiers in messages.
987
988 2006-03-09  Jason Merrill  <jason@redhat.com>
989
990         PR c++/16387, c++/16389
991         * typeck.c (cxx_alignof_expr, cxx_sizeof_expr): New functions.
992         (cxx_sizeof_or_alignof_expr): Split out from here.
993
994 2006-03-09  Diego Novillo  <dnovillo@redhat.com>
995
996         Merge from gomp-20050608-branch
997
998         2006-02-02  Diego Novillo  <dnovillo@redhat.com>
999
1000                 * decl.c (pop_labels_1): Use appropriate pointer casting.
1001                 (poplevel_named_label_1): Likewise.
1002                 (named_label_entry_hash): Likewise.
1003                 (named_label_entry_eq): Likewise.
1004                 (check_goto): Likewise.
1005                 (define_label): Likewise.
1006
1007         2006-01-26  Diego Novillo  <dnovillo@redhat.com>
1008
1009                 * cp-tree.h (CP_OMP_CLAUSE_INFO): Use TREE_TYPE instead
1010                 of TREE_BLOCK.
1011                 * pt.c: Use OMP_CLAUSE_CODE and OMP_CLAUSE_OPERAND
1012                 instead of TREE_CODE/TREE_OPERAND.
1013                 * semantics.c: Likewise.
1014                 * parser.c: Likewise.
1015
1016         2005-11-10  Diego Novillo  <dnovillo@redhat.com>
1017
1018                 * parser.c (cp_parser_omp_threadprivate): Emit diagnostic if
1019                 target does not support TLS.
1020
1021         2005-11-09  Jakub Jelinek  <jakub@redhat.com>
1022
1023                 * decl.c (redeclaration_error_message): Don't error about
1024                 DECL_THREAD_LOCAL_P mismatches if CP_DECL_THREADPRIVATE_P
1025                 (olddecl).
1026
1027         2005-11-08  Jakub Jelinek  <jakub@redhat.com>
1028
1029                 PR c++/24735
1030                 * semantics.c (finish_omp_barrier, finish_omp_flush): New
1031                   functions.
1032                 * parser.c (cp_parser_omp_barrier): Call finish_omp_barrier.
1033                 (cp_parser_omp_flush): Call finish_omp_flush.
1034                 * cp-tree.h (finish_omp_barrier, finish_omp_flush): New
1035                   prototypes.
1036
1037                 PR c++/24734
1038                 * pt.c (tsubst_expr): Handle OMP_MASTER and OMP_ORDERED.
1039
1040         2005-11-03  Jakub Jelinek  <jakub@redhat.com>
1041
1042                 * semantics.c (finish_omp_threadprivate): Error on class-scope
1043                 variables.
1044
1045         2005-11-02  Jakub Jelinek  <jakub@redhat.com>
1046
1047                 * parser.c (cp_parser_omp_all_clauses): If some clause
1048                 type is not allowed, don't remove just one of the
1049                 clauses, but all clauses added in that loop round.
1050
1051                 * semantics.c (finish_omp_clauses): Fix function
1052                 comment. Don't handle non-const or mutable specially,
1053                 as const and not mutable is predetermined shared and
1054                 that leads to double error. Don't ICE if copyin var is
1055                 PARM_DECL.
1056
1057                 PR c++/24613
1058                 * parser.c (cp_parser_pragma): Diagnose
1059                 PRAGMA_OMP_SECTION outside of PRAGMA_OMP_SECTIONS
1060                 construct.
1061
1062                 * semantics.c (finish_omp_threadprivate): Error if V
1063                   is automatic variable or has incomplete type.
1064
1065         2005-11-01  Diego Novillo  <dnovillo@redhat.com>
1066
1067                 * parser.c (cp_parser_omp_all_clauses): Use
1068                 OMP_CLAUSE_CHAIN instead of TREE_CHAIN.
1069
1070         2005-11-01  Diego Novillo  <dnovillo@redhat.com>
1071
1072                 * parser.c (cp_parser_omp_all_clauses): When emitting an
1073                 error message, remove the invalid clause from the list.
1074
1075         2005-10-31  Diego Novillo  <dnovillo@redhat.com>
1076
1077                 * parser.c (cp_parser_omp_parallel): Do not allow 'nowait' in
1078                 combined parallel+workshare directives.
1079
1080         2005-10-31  Richard Henderson  <rth@redhat.com>
1081
1082                 * cp-objcp-common.h (LANG_HOOKS_OMP_CLAUSE_DTOR):
1083                 Use cxx_omp_clause_dtor.
1084                 * cp-tree.h (CP_OMP_CLAUSE_INFO): New.
1085                 (cxx_omp_clause_dtor): New.
1086                 * cp-gimplify.c (cxx_omp_clause_apply_fn): New.
1087                 (cxx_omp_clause_default_ctor): Use it.
1088                 (cxx_omp_clause_copy_ctor, cxx_omp_clause_assign_op):
1089                 Likewise.
1090                 (cxx_omp_clause_dtor): New.
1091                 * semantics.c (finish_omp_clauses): Rewrite cdtor
1092                 checking to fill in CP_OMP_CLAUSE_INFO.  Don't
1093                 specialcase LASTPRIVATE for removal.
1094                 (cxx_omp_clause_default_ctor, cxx_omp_clause_copy_ctor,
1095                 cxx_omp_clause_assign_op): Move to cp-gimplify.c.
1096
1097         2005-10-28  Jakub Jelinek  <jakub@redhat.com>
1098
1099                 * semantics.c (finish_omp_threadprivate): If
1100                   DECL_RTL_SET_P, call make_decl_rtl again so that
1101                   encode_section_info can update SYMBOL_REF's flags.
1102
1103         2005-10-26  Jakub Jelinek  <jakub@redhat.com>
1104
1105                 * semantics.c (finish_omp_for): Don't segfault if COND
1106                 or INCR is NULL.  If not calling c_finish_omp_for
1107                 right away and one of COND and INCR is NULL, issue
1108                 error and don't expand anything.
1109
1110                 PR c++/24512
1111                 * cp-tree.h (finish_omp_for): Add PRE_BODY argument.
1112                 * semantics.c (finish_omp_for): Likewise.  Set
1113                 OMP_FOR_PRE_BODY to PRE_BODY if deferring, add it
1114                 into the current statement list if not processing
1115                 template decl or pass it to c_finish_omp_for.
1116
1117                 * parser.c (cp_parser_omp_for_loop): Expand optional DECL_EXPRs
1118                 into PRE_BODY statement list.  Pass it to finish_omp_for.
1119                 * pt.c (tsubst_expr) <case OMP_FOR>: tsubst_expr also
1120                 OMP_FOR_PRE_BODY into PRE_BODY stmt list, pass it to
1121                 finish_omp_for.  Put all the statements into sk_omp
1122                 scope.
1123
1124         2005-10-25  Jakub Jelinek  <jakub@redhat.com>
1125
1126                 PR c++/24516
1127                 * parser.c (struct cp_parser): Rename in_iteration_statement
1128                 field to in_statement.
1129                 (IN_SWITCH_STMT, IN_ITERATION_STMT): Define.
1130                 (IN_OMP_BLOCK, IN_OMP_FOR): Change values.
1131                 (cp_parser_new, cp_parser_begin_omp_structured_block,
1132                 cp_parser_end_omp_structured_block,
1133                 cp_parser_omp_for_loop): Adjust for
1134                 in_iteration_statement renaming.
1135                 (cp_parser_selection_statement): Save
1136                 parser->in_iteration, or it temporarily with
1137                 IN_SWITCH_STMT for the
1138                 cp_parser_implicitly_scoped_statement call.
1139                 (cp_parser_iteration_statement): Adjust for
1140                 in_iteration_statement renaming.  Use
1141                 IN_ITERATION_STMT rather than true.
1142                 (cp_parser_jump_statement): Adjust for
1143                 in_iteration_statement renaming and new values.  Don't
1144                 error on break in a switch statement within OMP_FOR or
1145                 OpenMP structured block.
1146
1147                 PR c++/24513
1148                 * parser.c (cp_parser_cache_group): Don't stop if next
1149                 token is CPP_PRAGMA_EOL and end is CPP_PRAGMA_EOL as
1150                 well.  If current token is CPP_PRAGMA, consume
1151                 everything until CPP_PRAGMA_EOL inclusive.
1152
1153         2005-10-24  Jakub Jelinek  <jakub@redhat.com>
1154
1155                 PR c++/24502
1156                 * semantics.c (finish_omp_for): Handle MODOP_EXPR in
1157                 addition to MODIFY_EXPR.
1158
1159         2005-10-23  Richard Henderson  <rth@redhat.com>
1160
1161                 * cp-gimplify.c (struct cp_gimplify_ctx): Remove.
1162                 (bc_label): New.
1163                 (begin_bc_block, finish_bc_block): Use it.
1164                 (push_context, pop_context): Remove.
1165                 (cp_genericize): Don't use them.  Assert bc_label is null.
1166                 * semantics.c (finish_omp_clauses): Create a fake data
1167                 element of TYPE for probing ctors.
1168
1169         2005-10-23  Richard Henderson  <rth@redhat.com>
1170
1171                 * cp-objcp-common.h (LANG_HOOKS_OMP_CLAUSE_DEFAULT_CTOR): New.
1172                 (LANG_HOOKS_OMP_CLAUSE_COPY_CTOR): New.
1173                 (LANG_HOOKS_OMP_CLAUSE_ASSIGN_OP): New.
1174                 (LANG_HOOKS_OMP_CLAUSE_DTOR): New.
1175                 * semantics.c (finish_omp_clauses): Look through
1176                 arrays when looking up special member calls.  Also
1177                 remove FIRSTPRIVATE when LASTPRIVATE fails.
1178                 (cxx_omp_clause_default_ctor, cxx_omp_clause_copy_ctor): New.
1179                 (cxx_omp_clause_assign_op): New.
1180                 * cp-tree.h: Declare them.
1181
1182         2005-10-21  Richard Henderson  <rth@redhat.com>
1183
1184                 * decl.c (check_previous_goto_1): Return false if error.
1185                 (check_switch_goto): Likewise.
1186                 (finish_case_label): Don't emit the case label on error.
1187                 * parser.c (struct cp_parser): Revert
1188                 in_switch_statement_p changes.
1189                 (cp_parser_labeled_statement,
1190                 cp_parser_selection_statement): Likewise.
1191                 (cp_parser_begin_omp_structured_block): Don't save...
1192                 (cp_parser_end_omp_structured_block): or restore
1193                 in_switch_statement_p.
1194
1195         2005-10-21  Richard Henderson  <rth@redhat.com>
1196
1197                 * semantics.c (finish_omp_threadprivate): Set
1198                 decl_flags.u2sel when necessary.
1199
1200         2005-10-21  Richard Henderson  <rth@redhat.com>
1201
1202                 * decl.c (poplevel_named_label_1): Restore creation of the
1203                 bad_decls list.
1204                 (decl_jump_unsafe): Check for error_mark_node types.
1205                 (check_goto): Don't check cdtor_label.  Don't use identify_goto.
1206                 * semantics.c (finish_return_stmt): Do check_omp_return before
1207                 converting to cdtor_label goto.
1208
1209         2005-10-21  Richard Henderson  <rth@redhat.com>
1210
1211                 PR c++/24451
1212                 * decl.c (check_omp_return): Return false on error.
1213                 * cp-tree.h (check_omp_return): Update decl.
1214                 * semantics.c (finish_return_stmt): Avoid adding
1215                 return on error.
1216
1217         2005-10-21  Richard Henderson  <rth@redhat.com>
1218
1219                 * cp-tree.h (struct language_function): Remove
1220                 x_named_label_uses.
1221                 Change x_named_labels to a hashtable.
1222                 (check_omp_return): Declare.
1223                 * decl.c (struct named_label_use_entry): Rename from
1224                 named_label_use_list.  Remove label_decl.
1225                 (struct named_label_entry): Rename from
1226                 named_label_list.  Remove old_value and next.  Change
1227                 in_try_scope and in_catch_scope to bool. Add
1228                 in_omp_scope.
1229                 (pop_labels_1): New.
1230                 (pop_labels): Use it.
1231                 (pop_local_label, poplevel_named_label_1): New.
1232                 (poplevel): Use them.
1233                 (named_label_entry_hash, named_label_entry_eq): New.
1234                 (make_label_decl): Create named_labels.  Move label
1235                 creation bits from lookup_label.
1236                 (declare_local_label): Tidy.
1237                 (identify_goto): Split out from ...
1238                 (check_previous_goto_1): Add exited_omp argument.
1239                 Handle omp scopes.
1240
1241                 (use_label): Merge into...
1242                 (check_goto): ... here.  Handle omp scopes.
1243                 (check_omp_return): New.
1244                 (check_previous_gotos): Merge into...
1245                 (define_label): ... here.
1246                 (save_function_data): Remove x_named_label_uses reference.
1247                 (finish_function): Likewise.
1248                 * name-lookup.h (sk_omp): New.
1249                 * name-lookup.c (begin_scope): Handle it.
1250                 * parser.c (cp_parser_omp_for): Don't create extra
1251                 compound stmt.
1252
1253                 (cp_parser_omp_sections): Likewise.
1254                 * semantics.c (finish_return_stmt): Call check_omp_return.
1255                 (begin_omp_structured_block): Use sk_omp.
1256                 (finish_omp_structured_block): Use do_poplevel.  Don't build a
1257                 MUST_NOT_THROW expression here.
1258                 (begin_omp_parallel, finish_omp_parallel): Don't create extra
1259                 compound statements.
1260
1261         2005-10-21  Diego Novillo  <dnovillo@redhat.com>
1262
1263                 PR 24455
1264                 * cp/cp-tree.h (struct lang_decl_flags): Add field
1265                 threadprivate_p.
1266                 (CP_DECL_IS_THREADPRIVATE): Define.
1267                 * cp/semantics.c (finish_omp_threadprivate): Set.  Do
1268                 not error out if CP_DECL_IS_THREADPRIVATE is set
1269                 already.
1270                 * cp/decl.c (duplicate_decls): Merge
1271                 CP_DECL_THREADPRIVATE_P.
1272
1273         2005-10-20  Richard Henderson  <rth@redhat.com>
1274
1275                 * cp-gimplify.c (cp_gimplify_omp_for): New.
1276                 (cp_gimplify_expr): Call it.
1277                 * cp-tree.h (OMP_FOR_GIMPLIFYING_P): New.
1278                 * parser.c (struct cp_parser): Rename
1279                 in_iteration_statement_p to in_iteration_statement and
1280                 change to unsigned char.  Similarly with
1281                 in_switch_statement.  Update all users.
1282                 (IN_OMP_BLOCK, IN_OMP_FOR): New.
1283                 (cp_parser_labeled_statement): Diagnose case labels
1284                 binding closer to an openmp block nested than the
1285                 switch.
1286                 (cp_parser_jump_statement): Diagnose break and
1287                 continue labels binding closer to an openmp block than
1288                 an iteration or switch.
1289                 (cp_parser_omp_for_loop): Mark in_iteration_statement
1290                 for an omp for.
1291                 (cp_parser_begin_omp_structured_block): New.
1292                 (cp_parser_end_omp_structured_block): New.
1293                 (cp_parser_omp_structured_block): Use them.
1294                 (cp_parser_omp_for, cp_parser_omp_sections_scope): Likewise.
1295                 (cp_parser_omp_parallel): Likewise.
1296
1297         2005-10-20  Richard Henderson  <rth@redhat.com>
1298
1299                 * semantics.c (begin_omp_structured_block): New.
1300                 (finish_omp_structured_block): New.
1301                 (begin_omp_parallel, finish_omp_parallel): Use them.
1302                 * parser.c (cp_parser_omp_structured_block): Likewise.
1303                 (cp_parser_omp_for): Likewise.
1304                 (cp_parser_omp_sections_scope): Likewise.
1305                 * cp-tree.h: Declare them.
1306
1307         2005-10-20  Richard Henderson  <rth@redhat.com>
1308
1309                 * parser.c (cp_parser_omp_master): Return the statement.
1310                 (cp_parser_omp_ordered): Likewise.
1311                 (cp_parser_omp_construct): Set the locus for them.
1312
1313         2005-10-19  Richard Henderson  <rth@redhat.com>
1314
1315                 * semantics.c (finish_omp_atomic): Revert to
1316                 uses_template_parms.
1317
1318         2005-10-19  Richard Henderson  <rth@redhat.com>
1319
1320                 * semantics.c (finish_omp_clauses): Avoid
1321                 DECL_THREAD_LOCAL_P on a PARM_DECL.  Remove some
1322                 stub asserts guaranteed to fail.
1323
1324         2005-10-19  Richard Henderson  <rth@redhat.com>
1325
1326                 * cp-tree.h (OMP_ATOMIC_DEPENDENT_P, OMP_ATOMIC_CODE): New.
1327                 (finish_omp_clauses, finish_omp_for, finish_omp_atomic): New.
1328                 * parser.c (cp_parser_omp_clause_copyin): Remove.
1329                 (cp_parser_omp_all_clauses): Use cp_parser_omp_var_list instead.                Call finish_omp_clauses.
1330                 (cp_parser_omp_clause_if): Don't do error checking here.
1331                 (cp_parser_omp_clause_num_threads): Likewise.
1332                 (cp_parser_omp_clause_schedule): Likewise.
1333                 (cp_parser_omp_atomic): Use finish_omp_atomic.
1334                 (cp_parser_omp_for_loop): Don't discard DECL_EXPR.
1335                 Don't decompose assignment statment here.  Use
1336                 finish_omp_for.
1337
1338                 * pt.c (tsubst_omp_clauses): New.
1339                 (tsubst_expr): Handle OMP_PARALLEL, OMP_FOR, OMP_SECTIONS,
1340                 OMP_SINGLE, OMP_SECTION, OMP_CRITICAL, OMP_ATOMIC.
1341                 * semantics.c (finish_omp_clauses): New.
1342                 (begin_omp_parallel, finish_omp_parallel): Know Less about the
1343                 internals of the stmt_list stack.
1344                 (finish_omp_for, finish_omp_atomic): New.
1345
1346         2005-10-18  Jakub Jelinek  <jakub@redhat.com>
1347
1348                 * semantics.c (cxx_omp_predetermined_sharing): New function.
1349                 * cp-tree.h (cxx_omp_predetermined_sharing): New prototype.
1350                 * cp-objcp-common.h
1351                 (LANG_HOOKS_OMP_PREDETERMINED_SHARING): Redefine.
1352
1353         2005-10-18  Richard Henderson  <rth@redhat.com>
1354
1355                 * parser.c (cp_parser_omp_single): Use make_node and accessors
1356                 instead of build.
1357
1358         2005-10-17  Richard Henderson  <rth@redhat.com>
1359
1360                 * parser.c (cp_parser_omp_for_loop): Handle declarations.
1361
1362         2005-10-12  Richard Henderson  <rth@redhat.com>
1363
1364                 * Make-lang.in (CXX_C_OBJS): Add c-omp.o.
1365                 * cp-tree.h (begin_omp_parallel, finish_omp_parallel): Declare.
1366                 (finish_omp_threadprivate): Declare.
1367                 * parser.c (struct cp_lexer): Add in_pragma.
1368                 (cp_lexer_consume_token): Don't consume a PRAGMA_EOL
1369                 when in_pragma.
1370                 (cp_parser_skip_to_closing_parenthesis): Stop at PRAGMA_EOL.
1371                 (cp_parser_skip_to_end_of_statement): Likewise.
1372                 (cp_parser_skip_to_end_of_block_or_statement): Likewise.
1373                 (cp_parser_skip_to_closing_brace): Likewise.
1374                 (cp_parser_skip_to_pragma_eol): Reset in_pragma.
1375                 (cp_parser_require_pragma_eol): New.
1376                 (cp_parser_statement): Add in_compound argument;
1377                 update all callers.
1378                 Restart if a non-statement pragma seen outside a
1379                 compound.
1380                 (cp_parser_statement_seq_opt): Stop at PRAGMA_EOL.
1381                 (cp_parser_declaration_seq_opt): Likewise.
1382                 (cp_parser_member_specification_opt): Likewise.
1383                 (cp_parser_function_definition_after_decl): Likewise.
1384                 (cp_parser_skip_until_found): Likewise.
1385                 (cp_parser_cache_group): Likewise.
1386                 (enum pragma_omp_clause, cp_parser_omp_clause_name,
1387                 check_no_duplicate_clause,
1388                 cp_parser_omp_var_list_no_open,
1389                 cp_parser_omp_var_list, cp_parser_omp_clause_copyin,
1390                 cp_parser_omp_clause_default, cp_parser_omp_clause_if,
1391                 cp_parser_omp_clause_nowait,
1392                 cp_parser_omp_clause_num_threads,
1393                 cp_parser_omp_clause_ordered,
1394                 cp_parser_omp_clause_reduction,
1395                 cp_parser_omp_clause_schedule,
1396                 cp_parser_omp_all_clauses,
1397                 cp_parser_omp_structured_block, cp_parser_omp_atomic,
1398                 cp_parser_omp_barrier, cp_parser_omp_critical,
1399                 cp_parser_omp_flush, cp_parser_omp_for_loop,
1400                 cp_parser_omp_for, cp_parser_omp_master,
1401                 cp_parser_omp_ordered, cp_parser_omp_sections_scope,
1402                 cp_parser_omp_sections, cp_parser_omp_parallel,
1403                 cp_parser_omp_single, cp_parser_omp_threadprivate,
1404                 cp_parser_omp_construct): New.
1405                 (cp_parser_pragma): Handle OpenMP pragmas.
1406                 * semantics.c (finish_omp_threadprivate): New.
1407                 (begin_omp_parallel, finish_omp_parallel): New.
1408
1409         2005-10-11  Richard Henderson  <rth@redhat.com>
1410
1411                 * parser.c (struct cp_token): Add pragma_kind.
1412                 (eof_token): Initialize it.
1413                 (cp_lexer_handle_pragma): Remove.
1414                 (cp_parser_initial_pragma): New.
1415                 (cp_lexer_new_main): Use it.
1416                 (cp_lexer_get_preprocessor_token): Initialize pragma_kind.
1417                 (cp_lexer_print_token): Don't handle CPP_PRAGMA.
1418                 (cp_parser_skip_to_pragma_eol): New.
1419                 (cp_parser_error): Use it.
1420                 (pragma_lex): New.
1421
1422         2005-10-09  Richard Henderson  <rth@redhat.com>
1423
1424                 * lex.c (parse_strconst_pragma): Update for c_lex name change.
1425                 (handle_pragma_java_exceptions): Likewise.
1426                 * parser.c (cp_lexer_new_main): Likewise.
1427
1428         2005-10-06  Richard Henderson  <rth@redhat.com>
1429
1430                 * parser.c (cp_lexer_new_main): Comment out defer_pragmas.
1431                 (cp_lexer_handle_pragma): Comment out
1432                 cpp_handle_deferred_pragma.
1433
1434         2005-10-01  Richard Henderson  <rth@redhat.com>
1435
1436                 * name-lookup.c (lookup_name): Remove prefer_type argument.
1437                 (lookup_name_prefer_type): New function.
1438                 * name-lookup.h (lookup_name_prefer_type): Declare it.
1439                 * decl.c (lookup_and_check_tag): Use it.
1440                 * pt.c (tsubst_friend_class): Likewise. Update for
1441                 lookup_name change.
1442                 (lookup_template_class, tsubst_copy_and_build): Likewise.
1443
1444 2006-03-06  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1445
1446         PR c++/15759
1447         * tree.c (bot_manip): Don't call mark_used.
1448
1449 2006-03-02  Mike Stump  <mrs@apple.com>
1450
1451         * decl2.c (import_export_decl): Remove redundant call to
1452         targetm.cxx.key_method_may_be_inline ().
1453
1454 2006-03-02  Richard Sandiford  <richard@codesourcery.com>
1455
1456         * decl.c (start_decl): Use have_global_bss_p when deciding
1457         whether to make the decl common.
1458
1459 2006-03-01  Mike Stump  <mrs@apple.com>
1460
1461         PR darwin/25908
1462         * decl2.c (import_export_decl): Fix ABI breakage on darwin.
1463
1464 2006-02-24  Geoffrey Keating  <geoffk@apple.com>
1465
1466         * except.c (expand_start_catch_block): Handle
1467         flag_use_cxa_get_exception_ptr.
1468
1469 2006-02-22  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1470
1471         PR c++/26291
1472         * decl.c (grok_op_properties): Check for ellipsis in arguments of
1473         operators.
1474
1475 2006-02-20  Rafael Ávila de Espíndola  <rafael.espindola@gmail.com>
1476
1477         * Make-lang.in (C++): Remove.
1478         (.PHONY): Remove C++.
1479
1480 2006-02-18  Mark Mitchell  <mark@codesourcery.com>
1481
1482         PR c++/26266
1483         * cp-tree.h (cp_finish_decl): Adjust declaration.
1484         (grokbitfield): Likewise.
1485         (finish_static_data_member_decl): Likewise.
1486         * init.c (constant_value_1): Ensure processing_template_decl when
1487         folding non-dependent initializers for static data members of
1488         dependent types.  Return error_mark_node for erroneous
1489         initailizers.
1490         * class.c (get_vtable_decl): Use finish_decl, not cp_finish_decl.
1491         * decl.c (cp_make_fname_decl): Adjust call to cp_finish_decl.
1492         (cp_finish_decl): Add init_const_expr_p parameter.  Set
1493         DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P here.
1494         (finish_decl): Adjust call to cp_finish_decl.
1495         (compute_array_index_type): Robustify.
1496         (start_method): Use finish_decl, not cp_finish_decl.
1497         * rtti.c (emit_tinfo_decl): Likewise.
1498         * except.c (initialize_handler_parm): Adjust call to
1499         cp_finish_decl.
1500         (expand_start_catch_block): Likewise.
1501         * cvt.c (build_up_reference): Adjust call to cp_finish_decl.
1502         * pt.c (instantiate_class_template): Adjust call to
1503         finish_static_data_member_decl.
1504         (tsubst_expr): Use finish_decl, not cp_finish_decl.
1505         (instantiate_decl): Adjust call to cp_finish_decl.
1506         * name-lookup.c (pushdecl_top_level_1): Use finish_decl, not
1507         cp_finish_decl.
1508         * decl2.c (finish_static_data_member_decl): Add init_const_expr_p
1509         parameter.
1510         (grokfield): Likewise.
1511         * parser.c (cp_parser_condition): Check for constant initializers.
1512         (cp_parser_init_declarator): Adjust calls to grokfield and
1513         cp_finish_decl.  Don't set
1514         DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P here.
1515         (cp_parser_member_declaration): Likewise.
1516         (cp_parser_objc_class_ivars): Likewise.
1517
1518 2006-02-14  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1519
1520         * call.c (standard_conversion): Return NULL instead of 0.
1521         (build_user_type_conversion_1): Likewise.
1522         (tourney): Likewise.
1523         * decl.c (redeclaration_error_message): Likewise.
1524         * error.c (language_to_string): Likewise.
1525
1526 2006-02-13  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1527
1528         * cp-tree.h (warn_hidden): Remove prototype.
1529         * class.c (warn_hidden): Make static.
1530
1531         * cp-tree.h (build_type_conversion): Remove prototype.
1532         * cvt.c (build_type_conversion): Add prototype, make static.
1533
1534         * cp-tree.h (push_tinst_level): Remove prototype.
1535         (pop_tinst_level): Likewise.
1536         * pt.c (push_tinst_level): Add prototype, make static.
1537         (pop_tinst_level): Likewise.
1538
1539 2006-02-13  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1540
1541         * decl.c (grokdeclarator): Return NULL_TREE instead of 0.
1542         * typeck.c (unary_complex_lvalue): Likewise.
1543
1544 2006-02-13  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1545
1546         * lex.c (parse_strconst_pragma): Return error_mark_node instead of
1547         "(tree)-1" to indicate failure.  Simplify.
1548         (handle_pragma_interface): Test for error_mark_node instead of
1549         "(tree)-1".
1550         (handle_pragma_implementation): Likewise.
1551
1552 2006-02-13  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1553
1554         PR c++/26151
1555         * parser.c (cp_parser_decl_specifier_seq): Check for duplicate
1556         decl-specifiers.  Remove extra check for duplicate 'friend'.
1557         * decl.c (grokdeclarator): Remove check for duplicate
1558         decl-specifiers.  Set longlong together with long_p.
1559
1560 2006-02-12  Jason Merrill  <jason@redhat.com>
1561
1562         PR c++/24996
1563         * except.c (build_throw): Add a CLEANUP_POINT_EXPR inside the
1564         TRY_CATCH_EXPR or MUST_NOT_THROW_EXPR.
1565
1566 2006-02-10  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1567
1568         * class.c (debug_class): Remove extern.
1569         (debug_thunks): Likewise.
1570
1571 2006-02-09  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1572
1573         * typeck.c (string_conv_p): Don't test for flag_const_strings.
1574
1575 2006-02-08  Jason Merrill  <jason@redhat.com>
1576
1577         PR c++/25979
1578         * cp-gimplify.c (cp_gimplify_expr): Don't call
1579         cp_gimplify_init_expr for MODIFY_EXPRs.
1580         * typeck2.c (split_nonconstant_init_1): Use INIT_EXPR.
1581
1582 2006-02-08  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1583
1584         PR c++/26071
1585         * decl.c (grokdeclarator): Set dname also for destructor.
1586
1587         PR c++/26070
1588         * decl.c (grokdeclarator): Clear storage_class together with staticp.
1589
1590 2006-02-07  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1591
1592         * cp-tree.h (tf_warning_or_error): Renamed from tf_warn_or_error.
1593         (cp_build_qualified_type): Propogate renaming.
1594         * call.c (convert_like_real): Likewise.
1595         * cvt.c (cp_convert_to_pointer, convert_to_reference): Likewise.
1596         * decl.c (make_typename_type, grokdeclarator): Likewise.
1597         * pt.c (tsubst_friend_function, instantiate_class_template,
1598         tsubst_default_argument, instantiate_decl,
1599         tsubst_initializer_list, tsubst_enum): Likewise.
1600         * semantics.c (finish_template_type): Likewise.
1601         * typeck.c (build_ptrmemfunc, convert_for_assignment): Likewise.
1602
1603 2006-02-07  Dirk Mueller  <dmueller@suse.com>
1604
1605         * typeck.c (build_binary_op): Annotate div-by-zero
1606         warnings to make -Wno-div-by-zero have an effect.
1607
1608 2006-02-07  Mark Mitchell  <mark@codesourcery.com>
1609
1610         PR c++/9737
1611         * pt.c (coerce_template_template_parms): Do not templates with
1612         excess default arguments to match template template parameters
1613         with fewer parameters.
1614         (coerce_template_parms): Add use_default_args parameter; use
1615         default arguments only when true.
1616         (lookup_template_class): Adjust call to coerce_template_parms.
1617         (fn_type_unification): Likewise.
1618         (unify): Likewise.
1619         (get_bindings): Likewise.
1620         (dependent_type_p): Add assertions.
1621
1622 2006-02-06  Roger Sayle  <roger@eyesopen.com>
1623
1624         * decl.c (grokdeclarator): Don't bother checking for CHAR_TYPE.
1625         * rtti.c (typeinfo_in_lib_p): Likewise.
1626         * cp-tree.h (INTEGRAL_CODE_P, CP_INTEGRAL_TYPE_P): Likewise.
1627         * name-lookup.c (arg_assoc_type): Likewise.
1628
1629 2006-02-04  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1630
1631         * cp-tree.h (tf_warn_or_error): New substituion flag.
1632         (cp_build_qualified_type): Use it.
1633         * call.c (convert_like_real): Likewise.
1634         * cvt.c (cp_convert_to_pointer): Likewise.
1635         (convert_to_reference): Likewise.
1636         * decl.c (make_typename_type): Likewise.
1637         (grokdeclarator): Likewise.
1638         * pt.c (tsubst_friend_function): Likewise.
1639         (tsubst_friend_class): Likewise.
1640         (instantiate_class_template): Likewise.
1641         (tsubst_default_argument): Likewise.
1642         (instantiate_decl): Likewise.
1643         (tsubst_initializer_list): Likewise.
1644         (tsubst_enum): Likewise.
1645         * semantics.c (finish_template_type): Likewise.
1646         * typeck.c (build_ptrmemfunc): Likewise.
1647         (convert_for_assignment): Likewise.
1648
1649 2006-02-03  Lee Millward  <lee.millward@gmail.com>
1650
1651        * typeck.c (string_conv_p): Pass appropiate
1652        OPT_Wxxxx values when calling warning().
1653        (build_array_ref, cxx_mark_addressable): Likewise.
1654        (check_return_expr): Likewise.
1655
1656        * init.c (perform_member_init): Likewise.
1657        (sort_mem_initializers, emit_mem_initializers): Likewise.
1658
1659        * class.c (check_field_decls): Likewise.
1660        (warn_about_ambiguous_bases): Likewise.
1661
1662        * decl.c (pop_label, poplevel): Likewise.
1663        (duplicate_decls, grok_op_properties): Likewise.
1664        (start_preparsed_function, finish_function): Likewise.
1665
1666        * name-lookup.c (pushdecl_maybe_friend): Likewise.
1667        (pushdecl_maybe_friend): Likewise.
1668
1669        * parser.c (cp_parser_warn_min_max): Likewise.
1670        (cp_parser_cast_expression): Likewise.
1671
1672        * method.c (lazily_declare_fn): Likewise.
1673        * cvt.c (convert_to_void): Likewise.
1674        * mangle.c (finish_mangling): Likewise.
1675        * cp-gimplify.c (gimplify_expr_stmt): Likewise.
1676
1677 2006-02-03  Mark Mitchell  <mark@codesourcery.com>
1678
1679         * name-lookup.c (do_class_using_decl): Use IDENTIFIER_TYPENAME_P,
1680         not IDENTIFIER_OPNAME_P.
1681
1682 2006-01-31  Mark Mitchell  <mark@codesourcery.com>
1683
1684         PR c++/25342
1685         * cp-tree.h (DECL_TEMPLATE_SPECIALIZATIONS): Revise
1686         documentation.
1687         * pt.c (determine_specialization): Use INNERMOST_TEMPLATE_PARMS,
1688         not TREE_VALUE.
1689         (instantiate_class_template): Simplify.
1690         (verify_class_unification): Remove.
1691         (unify): Document parameters.  Use INNERMOST_TEMPLATE_ARGS to
1692         permit multiple levels of template arguments.
1693         (more_specialized_class): Simplify.
1694         (get_class_bindings): Pass full arguments to unify.  Fold
1695         verify_class_unification into this function.  Return full
1696         arguments.
1697         (most_specialized_class): Adjust for changes to
1698         get_class_bindings.  Issue errors here for ambiguity.  Return the
1699         fully deduced arguments for the most specialized class, in
1700         addition to the partial specialization.
1701
1702 2006-01-31  Ben Elliston  <bje@au.ibm.com>
1703
1704         * mangle.c: Comment fix.
1705
1706 2006-01-29  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1707
1708         * Make-lang.in (cp-warn): Include CXX_COMPAT_WARN.
1709         * repo.c (extract_string, afgets): Use cast when converting from
1710         void *.
1711
1712 2006-01-29  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1713
1714         * call.c (alloc_conversion): Use cast when converting from void *.
1715         (alloc_conversions): Likewise.
1716         (add_candidate): Likewise.
1717         (print_z_candidates): Likewise.
1718         (add_warning): Likewise.
1719         * pt.c (retrieve_local_specialization): Likewise.
1720         (process_partial_specialization): Likewise.
1721         (mangle_class_name_for_template): Likewise.
1722         (tsubst_template_args): Likewise.
1723         * typeck2.c (pat_calc_hash): Likewise.
1724         (pat_compare): Likewise.
1725         (abstract_virtuals_error): Likewise.
1726         * class.c (method_name_cmp): Likewise.
1727         (resort_method_name_cmp): Likewise.
1728         (get_vfield_name): Likewise.
1729         * decl2.c (generate_ctor_and_dtor_functions_for_priority): Likewise.
1730         * lex.c (init_reswords): Likewise.
1731         * rtti.c (create_pseudo_type_info): Likewise.
1732         * search.c (dfs_lookup_base): Likewise.
1733         (dfs_dcast_hint_pre): Likewise.
1734         (dfs_dcast_hint_post): Likewise.
1735         * tree.c (hash_tree_cons): Likewise.
1736         * repo.c (extract_string): Likewise.
1737         (afgets): Likewise.
1738         * cp-objcp-common.c (decl_shadowed_for_var_lookup): Likewise.
1739         * g++spec.c (lang_specific_driver): Likewise.
1740
1741 2006-01-28  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1742
1743         * call.c (joust): Pass option code to warning.  Use inform for
1744         explanation.
1745         * class.c (check_bases): Likewise.
1746         (maybe_warn_about_overly_private_class): Likewise.
1747         (check_field_decls): Likewise.
1748         (layout_empty_base): Likewise.
1749         (layout_virtual_bases): Likewise.
1750         (layout_class_type): Likewise.
1751
1752 2006-01-28  Mark Mitchell  <mark@codesourcery.com>
1753
1754         PR c++/25999
1755         * decl.c (start_preparsed_function): Call maybe_apply_pragma_weak
1756         here, not ...
1757         (start_function): ... here.
1758
1759 2006-01-28  Mark Mitchell  <mark@codesourcery.com>
1760
1761         PR c++/25855
1762         * class.c (resolve_address_of_overloaded_function): Adjust use of
1763         return value from most_specialized_instantiation.
1764         * pt.c (determine_specialization): Avoid multiple calls to
1765         get_bindings.
1766         (most_specialized_instantiation): When a tie occurs, set the
1767         current presumed champion to the next template.  Return the
1768         TREE_LIST node containing the template, rather than the template
1769         itself.
1770         (most_specialized): Remove.
1771         * name-lookup.c (push_overloaded_decl): When duplicate_decls
1772         indicates a failed redeclaration, report that to callers.
1773
1774 2006-01-26  Jason Merrill  <jason@redhat.com>
1775
1776         PR c++/16021
1777         * name-lookup.c (parse_using_directive): Require strong using to
1778         name a nested namespace.
1779
1780 2006-01-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1781
1782         Revert:
1783         * cp-tree.h (do_poplevel): Remove prototype.
1784         * semantics.c (do_poplevel): Add prototype.  Make static.
1785
1786         Revert:
1787         * cp-tree.h (default_conversion): Remove prototype.
1788         * typeck.c (default_conversion): Make static.
1789
1790 2006-01-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1791
1792         * cp-tree.h (get_primary_binfo): Remove prototype.
1793         (push_using_decl): Likewise.
1794         (current_template_args): Likewise.
1795         (more_specialized_class): Likewise.
1796         (mark_class_instantiated): Likewise.
1797         (default_conversion): Likewise.
1798         (pfn_from_ptrmemfunc): Likewise.
1799         * class.c (get_primary_binfo): Add prototype, make static, simplify.
1800         * name-lookup.c (push_using_decl): Make static.
1801         * pt.c (current_template_args): Likewise.
1802         (more_specialized_class): Likewise.
1803         (mark_class_instantiated): Likewise.
1804         * typeck.c (default_conversion): Make static.
1805         (pfn_from_ptrmemfunc): Add prototype, make static.
1806
1807 2006-01-24  Dirk Mueller  <dmueller@suse.de>
1808
1809         * typeck.c (build_binary_op): Use OPT_Wfloat_equal in warning().
1810
1811 2006-01-24  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1812
1813         PR c++/25552
1814         * parser.c (cp_parser_unqualified_id): Check that destructor name
1815         and scope match.
1816         * call.c (check_dtor_name): Do not expect a BIT_NOT_EXPR.
1817         Adjust comment.  Return early if possible.
1818         Use same_type_p to compare types.
1819         * typeck.c (lookup_destructor): Adjust call to check_dtor_name.
1820
1821 2006-01-24  Mark Mitchell  <mark@codesourcery.com>
1822
1823         * semantics.c: Remove outdated comment.
1824
1825 2006-01-23  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1826
1827         * cp-tree.h (do_poplevel): Remove prototype.
1828         * semantics.c (do_poplevel): Add prototype.  Make static.
1829
1830         * cp-tree.h (original_type): Remove prototype.
1831         * typeck.c (original_type): Make static.
1832
1833         * cp-tree.h (declare_global_var): Remove prototype.
1834         * decl.c (declare_global_var): Make static.
1835
1836         * cp-tree.h (implicitly_declare_fn): Remove prototype.
1837         * method.c (implicitly_declare_fn): Make static.
1838
1839         * cp-tree.h (fold_decl_constant_value): Remove prototype.
1840         * pt.c (fold_decl_constant_value): Make static.
1841
1842         * cp-tree.h (build_x_delete): Remove prototype.
1843         * init.c (build_vec_delete_1): Call build_op_delete_call directly
1844         and not via build_x_delete.
1845         (build_x_delete): Remove.
1846
1847         * cp-tree.h (get_vtt_name): Remove prototype.
1848         * class.c (get_vtt_name): Remove.
1849         (build_vtt): Call mangle_vtt_for_type instead of get_vtt_name.
1850
1851 2006-01-22  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1852
1853         * rtti.c (build_dynamic_cast): Fix comment.
1854
1855 2006-01-22  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1856
1857         PR c++/10891
1858         * rtti.c (build_dynamic_cast): Reject dynamic_cast use if
1859         -fno-rtti.
1860
1861 2006-01-21  Mark Mitchell  <mark@codesourcery.com>
1862
1863         PR c++/25895
1864         * class.c (build_base_path): Generate a NOP_EXPR instead of a
1865         COMPONENT_REF if the base and derived classes are at the same
1866         address.
1867
1868         PR c++/25856
1869         * decl.c (begin_destructor_body): Robustify.
1870
1871         PR c++/25858
1872         * parser.c (cp_parser_direct_declarator): Robustify.
1873
1874 2006-01-20  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1875
1876         * parser.c (cp_lexer_next_token_is_keyword): Simplify.
1877
1878         * parser.c (clear_decl_specs): Remove prototype.
1879
1880         * parser.c (cp_parser_expression_fn): Remove.
1881
1882         * call.c (add_builtin_candidates): Remove superfluous return.
1883         * name-lookup.c (do_toplevel_using_decl): Likewise.
1884         * parser.c (cp_parser_type_specifier_seq): Likewise.
1885         (cp_parser_save_default_args): Likewise.
1886
1887 2006-01-20  Dirk Mueller  <dmueller@suse.com>
1888
1889         PR c++/5520
1890         * semantics.c (finish_if_stmt): Call empty_body_warning.
1891         * parser.c (cp_parser_implicitly_scoped_statement):
1892         Mark empty statement with an empty stmt.
1893
1894 2006-01-19  Mark Mitchell  <mark@codesourcery.com>
1895
1896         PR c++/22136
1897         * name-lookup.c (do_class_using_decl): Don't try to look up base
1898         classes in templates with dependent base types.
1899
1900 2006-01-19  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1901
1902         PR c++/25854
1903         * pt.c (maybe_process_partial_specialization): Return early on
1904         error_mark_node.
1905
1906 2006-01-19  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
1907
1908         PR c++/16829
1909         * decl.c (start_preparsed_function): Check default arguments
1910         unconditionally.
1911         * name-lookup.c (pushdecl_maybe_friend): Check default arguments
1912         of all functions and function templates.
1913         * parser.c (cp_parser_late_parsing_default_args): Check default
1914         arguments.
1915         * decl2.c (check_default_args): Set missing default arguments to
1916         error_mark_node.
1917
1918 2006-01-18  Mark Mitchell  <mark@codesourcery.com>
1919
1920         PR c++/25836
1921         * cp-tree.h (push_class_stack): New function.
1922         (pop_class_stack): Likewise.
1923         * class.c (class_stack_node): Add hidden field.
1924         (pushclass): Clear it.
1925         (push_class_stack): New function.
1926         (pop_class_stack): Likewise.
1927         (currently_open_class): Ignore hidden classes.
1928         (currently_open_derived_class): Likewise.
1929         * name-lookup.c (push_to_top_level): Call push_class_stack.
1930         (pop_from_top_level): Call pop_class_stack.
1931
1932 2006-01-18  Kazu Hirata  <kazu@codesourcery.com>
1933
1934         * tree.c (find_tree_t, find_tree): Remove.
1935         * cp-tree.h: Remove the prototype for find_tree.
1936
1937 2006-01-18  Jakub Jelinek  <jakub@redhat.com>
1938
1939         * search.c (lookup_conversions_r): Fix a pasto.
1940
1941 2006-01-17  Eric Christopher  <echristo@apple.com>
1942
1943         * call.c (convert_like_real): When issuing conversion
1944         warnings, depend on OPT_Wconversion.
1945         * cvt.c (build_expr_type_conversion): Ditto.
1946
1947 2006-01-17  Kazu Hirata  <kazu@codesourcery.com>
1948
1949         * name-lookup.c (lookup_namespace_name): Remove.
1950         * name-lookup.h: Remove the prototype for
1951         lookup_namespace_name.
1952
1953 2006-01-17  Jakub Jelinek  <jakub@redhat.com>
1954
1955         PR c/25682
1956         * decl.c (compute_array_index_type): After issuing not an integral
1957         constant-expression error, set size to 1 to avoid ICEs later on.
1958
1959 2006-01-16  Ian Lance Taylor  <ian@airs.com>
1960
1961         * parser.c: Include "cgraph.h".
1962         (cp_parser_asm_definition): Call cgraph_add_asm_node rather than
1963         assemble_asm.
1964
1965 2006-01-16  Rafael �ila de Esp�dola  <rafael.espindola@gmail.com>
1966
1967         * g++spec.c (lang_specific_spec_functions): Remove.
1968
1969 2006-01-15  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1970
1971         * decl.c (check_initializer): Fix thinko.
1972
1973 2006-01-14  Mark Mitchell  <mark@codesourcery.com>
1974
1975         PR c++/25663
1976         * parser.c (cp_parser_direct_declarator): Use cp_parser_error
1977         instead of error.
1978
1979 2006-01-13  Jason Merrill  <jason@redhat.com>
1980
1981         * pt.c (check_explicit_specialization): Use CP_DECL_CONTEXT even more.
1982
1983         * name-lookup.c (set_decl_namespace): Use CP_DECL_CONTEXT.
1984         * pt.c (check_explicit_specialization): Likewise.
1985
1986 2006-01-12  Jason Merrill  <jason@redhat.com>
1987
1988         PR libstdc++/24660
1989         * pt.c (check_explicit_specialization): Handle namespace
1990         association.
1991         * name-lookup.c (set_decl_namespace): Likewise.
1992
1993 2006-01-12  Nathan Sidwell  <nathan@codesourcery.com>
1994
1995         PR c++/24824
1996         * class.c (handle_using_decl): Pass correct scope to
1997         cp_emit_debug_info_for_using.
1998
1999 2006-01-11  Nathan Sidwell  <nathan@codesourcery.com>
2000
2001         PR c++/25386
2002         * tree.c (lvalue_p_1): Any part of a COMPONENT_REF affects
2003         packedness.
2004
2005 2006-01-06  Gabriel Dos Reis  <gdr@integrablesolutions.net>
2006
2007         * parser.c (cp_parser_primary_expression): Document the grammar
2008         for the built-in offsetof, a GNU extension.
2009
2010 2006-01-04  Zdenek Dvorak <dvorakz@suse.cz>
2011
2012         PR c++/25632
2013         * init.c (constant_value_1): Unshare use of DECL_INITIAL.  Fix a typo
2014         in condition.
2015
2016 2006-01-04  Chris Lattner  <sabre@gnu.org>
2017
2018         * typeck2.c: update copyright to 2006
2019         (split_nonconstant_init_1):  Set TREE_CONSTANT to true.
2020
2021 2006-01-04  Mark Mitchell  <mark@codesourcery.com>
2022
2023         PR c++/24782
2024         * parser.c (cp_parser_nested_name_specifier_opt): Preserve access
2025         checks, even when parsing tentatively.
2026
2027 2006-01-04  Richard Henderson  <rth@redhat.com>
2028
2029         Merge from gomp branch.
2030         * lex.c (handle_pragma_java_exceptions): Fix whitespace.
2031         * parser.c (struct cp_token): Add pragma_kind.
2032         (eof_token): Update to match.
2033         (struct cp_lexer): Add in_pragma; rearrange next for better packing.
2034         (cp_parser_initial_pragma): New.
2035         (cp_lexer_new_main): Use it.  Don't bother clearing
2036         c_lex_return_raw_strings.
2037         (cp_lexer_get_preprocessor_token): Always initialize keyword
2038         and pragma_kind fields.  Handle CPP_PRAGMA.
2039         (cp_lexer_consume_token): Don't allow CPP_PRAGMA_EOL when
2040         in_pragma is set.
2041         (cp_lexer_handle_pragma): Remove.  Update callers to cp_parser_pragma.
2042         (cp_lexer_print_token) <CPP_PRAGMA>: Don't print as a string.
2043         (cp_parser_skip_to_pragma_eol): New.
2044         (cp_parser_error): Use it.
2045         (cp_parser_skip_to_closing_parenthesis): Stop at CPP_PRAGMA_EOL;
2046         rearrange with switch statement.
2047         (cp_parser_skip_to_end_of_statement): Likewise.
2048         (cp_parser_skip_to_end_of_block_or_statement): Likewise.
2049         (cp_parser_skip_to_closing_brace): Likewise.
2050         (cp_parser_skip_until_found): Likewise.
2051         (cp_parser_statement): Add in_compound argument; update callers.
2052         Use it to decide how to handle pragma parsing.
2053         (cp_parser_labeled_statement): Add in_compound argument; pass
2054         it on to cp_parser_statement.
2055         (cp_parser_statement_seq_opt): Stop at CPP_PRAGMA_EOL.
2056         (cp_parser_declaration_seq_opt): Likewise.
2057         (cp_parser_parameter_declaration): Likewise.
2058         (cp_parser_member_specification_opt): Likewise.
2059         (cp_parser_function_definition_after_decl): Likewise.
2060         (cp_parser_cache_group): Handle CPP_PRAGMA/CPP_PRAGMA_EOL pairs.
2061         (cp_parser_pragma): New.
2062         (pragma_lex): New.
2063
2064 2006-01-04  Dirk Mueller <dmueller@suse.com>
2065
2066         * decl.c (finish_constructor_body): create simple
2067         compound stmt instead of a if(1) { } construct.
2068
2069 2006-01-03  Mark Mitchell  <mark@codesourcery.com>
2070
2071         PR c++/25492
2072         * name-lookup.c (push_class_level_binding): When a derived class
2073         provides a type binding, eliminate any type binding from a base
2074         class.
2075
2076         PR c++/25625
2077         * repo.c (repo_emit_p): Always instantiate static data members
2078         initialized by constant expressions, so that there values are
2079         available.
2080
2081 2006-01-02  Mark Mitchell  <mark@codesourcery.com>
2082
2083         PR c++/25635
2084         * class.c (add_method): Set TYPE_HAS_CONVERSION for classes with a
2085         conversion operator.
2086         * decl.c (grokdeclarator): Do not set TYPE_HAS_CONVERSION here.
2087
2088         PR c++/25638
2089         * class.c (add_method): Never associate more than one destructor
2090         with a single class.
2091
2092         PR c++/25637
2093         * cp-tree.h (do_friend): Adjust prototype.
2094         * decl.c (grokfndecl): Make funcdef_flag a bool, not an int.
2095         (grokdeclarator): Likewise.  Refine check for invalid
2096         declarations/definitions of member functions outside of their own
2097         class.
2098         * friend.c (do_friend): Make funcdef_flag a bool, not an int.
2099
2100         PR c++/25633
2101         * parser.c (cp_parser_mem_initializer_list): Check result of
2102         cp_parser_mem_initializer against error_mark_node, not NULL_TREE.
2103         (cp_parser_mem_initializer): Return error_mark_node for failure.
2104
2105         PR c++/25634
2106         * parser.c (cp_parser_template_parameter_list): Call
2107         begin_template_parm_list and end_template_parm_list here.
2108         (cp_parser_type_parameter): Not here.
2109         (cp_parser_template_declaration_after_export): Or here.
2110         (cp_parser_elaborated_type_specifier): Call
2111         cp_parser_check_template_parameters.
2112
2113         * tree.c (build_target_expr_with_type): Use force_target_expr.
2114
2115         * decl2.c (mark_used): Fix typo in comment.
2116
2117 2006-01-02  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
2118
2119         * parser.c (cp_parser_using_declaration): Skip name-lookup on
2120         invalid scope.
2121
2122 2005-12-30  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2123
2124         * cxx-pretty-print.c (pp_cxx_constant): New.  Print
2125         string-literal in parens if input program says so.
2126         (pp_cxx_primary_expression): Hand off constant printing to
2127         pp_cxx_constant.
2128         (pp_cxx_pretty_printer_init): Set pp->c_base.constant.
2129         (pp_cxx_expression): Use pp_cxx_constant for literals.
2130         * error.c (dump_expr): Use pp_constant for literals.
2131
2132 2005-12-29  Nathan Sidwell  <nathan@codesourcery.com>
2133
2134         * method.c (make_thunk): Don't set comdat_linkage here.
2135         (use_thunk): Make thunk one only here, if thunk target is
2136         DECL_ONE_ONLY.
2137
2138 2005-12-26  Mark Mitchell  <mark@codesourcery.com>
2139
2140         PR c++/25439
2141         * decl.c (grokdeclarator): Remove dead code.
2142         * ptree.c (cxx_print_xnode): Handle BASELINK.
2143         * parser.c (make_id_declarator): Add sfk parameter.
2144         (cp_parser_direct_declarator): Do not pass TYPE_DECLs to
2145         make_id_declarator.
2146         (cp_parser_declarator_id): Simplify BASELINKs here.
2147         (cp_parser_member_declaration): Adjust calls to
2148         make_id_declarator.
2149
2150 2005-12-26  Mark Mitchell  <mark@codesourcery.com>
2151
2152         PR c++/23171, c++/23172, c++/25417.
2153         * typeck.c (build_unary_op): Create temporary variables for
2154         compound literals whose addresses are taken.
2155         * init.c (expand_aggr_init_1): Use COMPOUND_LITERAL_P.
2156         * decl.c (reshape_init_vector): Likewise.
2157         (reshape_init): Give it external linkage.
2158         (check_initializer): Use COMPOUND_LITERAL_P.
2159         (initialize_artificial_var): Allow the initializer to be a
2160         CONSTRUCTOR.
2161         * call.c (make_temporary_var_for_ref_to_temp): Use
2162         create_temporary_var.
2163         * cp-tree.h (COMPOUND_LITERAL_P): New macro.
2164         (rehape_init): Declare.
2165         * typeck2.c (digest_init): Use COMPOUND_LITERAL_P.
2166         * semantics.c (finish_compound_literal): Use reshape_init.
2167
2168 2005-12-23  Mark Mitchell  <mark@codesourcery.com>
2169
2170         PR c++/24671
2171         * pt.c (instantiate_template): Handle SFINAE.
2172
2173 2005-12-23  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
2174
2175         * decl.c (grokdeclarator): Improve diagnostic for friend
2176         declarations of class members.
2177
2178 2005-12-22  Mark Mitchell  <mark@codesourcery.com>
2179
2180         PR c++/25369
2181         * tree.c (really_overloaded_fn): Tweak comment.
2182         * pt.c (tsubst_call_declarator_parms): Remove.
2183         (tsubst_copy): Call mark_used on the member referenced by an
2184         OFFSET_REF.
2185         * semantics.c (finish_qualified_id_expr): Simplify.
2186         * decl2.c (mark_used): Accept BASELINKs.
2187
2188         PR c++/25364
2189         * typeck.c (build_unary_op): Pass DECLs not names to
2190         build_offset_refs.
2191         * init.c (build_offset_ref): Do not do name lookup.  Do not call
2192         mark_used.
2193         * call.c (build_call): Simplify and tidy.
2194         * semantics.c (finish_qualified_id_expr): Call mark_used.
2195
2196 2005-12-22  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
2197
2198         PR c++/23333
2199         * parser.c (cp_parser_pure_specifier): Check for PURE_ZERO to
2200         identify a single '0'.
2201
2202 2005-12-20  Mark Mitchell  <mark@codesourcery.com>
2203
2204         PR c++/21228
2205         * decl.c (use_eh_spec_block): New function.
2206         (store_parm_decls): Use it.
2207         (finish_function): Likewise.
2208
2209 2005-12-19  Mark Mitchell  <mark@codesourcery.com>
2210
2211         PR c++/24278
2212         * init.c (expand_member_init): Print messages about baseclasses
2213         using %T rather than %D.
2214
2215         PR c++/24915
2216         * class.c (add_method): Do not treat templates as identical unless
2217         their return types are the same.
2218
2219 2005-12-12  Mark Mitchell  <mark@codesourcery.com>
2220
2221         PR c++/25300
2222         * tree.c (build_qualified_name): Return error_mark_node for
2223         erroneous input.
2224
2225 2005-12-10  Mark Mitchell  <mark@codesourcery.com>
2226
2227         PR c++/25337
2228         * pt.c (tsubst_copy_and_build): Permit dependent types for the
2229         object in a class member access expression.
2230
2231 2005-12-10  Terry Laurenzo  <tlaurenzo@gmail.com>
2232
2233         PR java/9861
2234         * mangle.c (write_bare_function_type): Mangle return type for
2235         methods of Java classes
2236
2237 2005-12-08  Th�dore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
2238
2239         * call.c (build_conditional_expr): Print types in error messages.
2240
2241 2005-12-07  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
2242
2243         * expr.c (cxx_expand_expr): Call gcc_unreachable instead of abort.
2244
2245 2005-12-07  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
2246
2247         * cp-gimplify.c (gimplify_cp_loop): Use fold_build3.
2248
2249 2005-12-07  Rafael �ila de Esp�dola  <rafael.espindola@gmail.com>
2250
2251         * Make-lang.in (c++.all.build, c++.install-normal): Remove.
2252
2253 2005-12-07  Rafael �ila de Esp�dola  <rafael.espindola@gmail.com>
2254
2255         * Make-lang.in: Remove all dependencies on s-gtype.
2256
2257 2005-12-06  Aldy Hernandez  <aldyh@redhat.com>
2258
2259        PR C++/24138
2260         * decl.c (reshape_init_array_1): Handle max_index of -1.
2261
2262 2005-12-06  Roger Sayle  <roger@eyesopen.com>
2263
2264         * typeck.c (build_binary_op): Issue warning if either operand of a
2265         comparison operator is a string literal, except for testing equality
2266         or inequality against NULL.
2267
2268 2005-12-06  Roger Sayle  <roger@eyesopen.com>
2269
2270         PR c++/25263
2271         * decl.c (compute_array_index_type): Check that itype is an
2272         INTEGER_CST node before testing/clearing TREE_OVERFLOW.
2273
2274 2005-12-05  Daniel Berlin  <dberlin@dberlin.org>
2275
2276         * ptree.c (cxx_print_decl): Update to check for decl_common
2277         structure.
2278
2279 2005-12-02  Mark Mitchell  <mark@codesourcery.com>
2280
2281         PR c++/24173
2282         * decl.c (duplicate_decls): Don't rely on DECL_TEMPLATE_INFO after
2283         clobbering newdecl.
2284
2285 2005-12-02  Richard Guenther  <rguenther@suse.de>
2286
2287         * semantics.c (simplify_aggr_init_expr): Use buildN instead
2288         of build.
2289
2290 2005-12-02  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2291
2292         * parser.c (cp_lexer_new_main): Usr GGC_RESIZEVEC instead of
2293         ggc_realloc.
2294         (cp_parser_template_argument_list): Use XRESIZEVEC instead of
2295         xrealloc.
2296         * class.c (pushclass): Likewise.
2297
2298 2005-12-02  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2299
2300         * decl2.c (get_priority_info): Use XNEW, not xmalloc.
2301         * decl.c (push_switch): Likewise.
2302         * lex.c (handle_pragma_implementation): Likewise.
2303         * cp-objcp-common.c (decl_shadowed_for_var_insert): Use GGC_NEW,
2304         not ggc_alloc.
2305         (cxx_initialize_diagnostics): Use XNEW, not xmalloc.
2306         * class.c (init_class_processing): Use XNEWVEC, not xmalloc.
2307         * g++spec.c (lang_specific_driver): Likewise.
2308         * mangle.c (save_partially_mangled_name): Likewise.
2309         * parser.c (cp_lexer_new_main): Use GGC_NEWVEC, not ggc_alloc.
2310         (cp_parser_template_argument_list): Use XNEWVEC, nto xmalloc.
2311         (cp_parser_sizeof_operand): Likewise.
2312         * repo.c (open_repo_file, open_repo_file): Likewise.
2313
2314 2005-12-01  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2315
2316         * parser.c (cp_parser_make_typename_type): Call make_typename_type
2317         with tf_none instead of magic value 0.
2318         (cp_parser_explicit_instantiation): Call do_type_instantiation
2319         with tf_error instead of magic value 1.
2320         (cp_parser_elaborated_type_specifier): Call make_typename_type
2321         with tf_error instead of magic value 1.
2322         (cp_parser_class_name): Likewise.
2323         (cp_parser_lookup_name): Likewise.
2324
2325 2005-12-01  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2326
2327         * parser.c (cp_parser_declaration): Set token2.type to CPP_EOF,
2328         not RID_MAX.
2329
2330 2005-11-30  Jason Merrill  <jason@redhat.com>
2331
2332         PR c++/21123
2333         * cp-gimplify.c (cp_genericize_r): Don't dereference invisible reference
2334         parms in a thunk.
2335
2336 2005-11-30  Ben Elliston  <bje@au.ibm.com>
2337
2338         * typeck.c (build_x_unary_op): Correct spelling in error message.
2339
2340 2005-11-28  Nathan Sidwell  <nathan@codesourcery.com>
2341
2342         PR c++/21166
2343         * class.c (check_field_decls): Only set DECL_PACKED on a field
2344         when its natural alignment is > BITS_PER_UNIT.
2345
2346 2005-11-27  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
2347
2348         PR c++/24979
2349         * cp-tree.h (DECL_MAIN_P): Remove duplicate definition.
2350
2351 2005-11-26  Richard Henderson  <rth@redhat.com>
2352
2353         * lex.c: Update for pragma_lex rename.
2354         * parser.c: Likewise.
2355
2356 2005-11-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
2357
2358         PR c++/9278
2359         * decl.c (grokparms): Do not allow typedef-names in a '(void)'
2360         parmlist.
2361
2362 2005-11-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
2363
2364         * typeck2.c (process_init_constructor_union): Remove check for
2365         unnamed union members.
2366
2367 2005-11-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
2368
2369         * name-lookup.c (lookup_name_real): Merge two if's.
2370
2371 2005-11-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
2372
2373         * pt.c (instantiate_class_template): Clean-up.
2374
2375 2005-11-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
2376
2377         * pt.c (template_class_depth_real): Remove. Move functionality to ...
2378         (template_class_depth): ... here, replacing count_specializations
2379         with 0.  Adjust comment.
2380
2381 2005-11-24  Richard Guenther  <rguenther@suse.de>
2382         Dirk Mueller <dmueller@suse.de>
2383
2384         PR c++/14024
2385         * typeck.c (build_reinterpret_cast_1): Use
2386         strict_aliasing_warning.
2387
2388 2005-11-23  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2389
2390         PR c++/24235
2391         * pt.c (check_instantiated_args): Reword diagnostic message about
2392         template argument involving local types.
2393
2394 2005-11-23  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2395
2396         PR c++/21667
2397         * typeck.c (build_array_ref): Avoid code duplicate.  Use common
2398         C/C++ diagnostic function warn_array_subscript_with_type_char.
2399
2400 2005-11-21  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2401
2402         PR c++/22238
2403         * error.c (resolve_virtual_fun_from_obj_type_ref): New.
2404         (dump_expr): Use it in <case CALL_EXPR>.
2405
2406 2005-11-21  Richard Henderson  <rth@redhat.com>
2407
2408         * cp-objcp-common.h, name-lookup.c, name-lookup.h: Revert 11-18 patch.
2409
2410         * name-lookup.c (lookup_name): Remove prefer_type argument.
2411         (lookup_name_prefer_type): New.
2412         * decl.c (lookup_and_check_tag): Use them.
2413         * pt.c (tsubst_friend_class): Likewise.
2414         (lookup_template_class): Likewise.
2415         (tsubst_copy_and_build): Likewise.
2416         * name-lookup.h (lookup_name_prefer_type): New.
2417         (lookup_name): Remove declaration.
2418
2419 2005-11-18  Mark Mitchell  <mark@codesourcery.com>
2420
2421         PR c++/8355
2422         * decl.c (grokfndecl): Set up DECL_TEMPLATE_INFO before calling
2423         set_decl_namespace.
2424         * name-lookup.c (set_decl_namespace):
2425
2426 2005-11-18  Mike Stump  <mrs@apple.com>
2427
2428         * cp-objcp-common.h (LANG_HOOKS_LOOKUP_NAME): Add.
2429         * name-lookup.c (lookup_name_two): Remove.
2430         (lookup_name_one): Add.
2431         * name-lookup.h (lookup_name_two): Remove.
2432         (lookup_name_one): Add.
2433
2434 2005-11-15  Jason Merrill  <jason@redhat.com>
2435
2436         PR c++/24580
2437         * method.c (locate_copy): Also use skip_artificial_parms here.
2438         (synthesize_exception_spec): Use CLASS_TYPE_P rather than checking
2439         for RECORD_TYPE.
2440         (locate_ctor): Abort if we fail to find a default constructor.
2441
2442 2005-11-15  Mike Stump  <mrs@apple.com>
2443
2444         * name-lookup.c (lookup_name_two): Add.
2445         * name-lookup.h: Likewise.
2446
2447 2005-11-15  Mark Mitchell  <mark@codesourcery.com>
2448
2449         PR c++/24667
2450         * typeck.c (check_for_casting_away_constness): Use the diag_fn.
2451         (build_const_cast_1): Call it, for C-style casts.
2452
2453 2005-11-14  Mark Mitchell  <mark@codesourcery.com>
2454
2455         PR c++/24687
2456         * pt.c (check_explicit_specialization): Don't check for C linkage.
2457         (push_template_decl_real): Likewise.
2458         * parser.c (cp_parser_explicit_specialization): Check here.
2459         (cp_parser_template_declaration_after_export): And here.
2460
2461         * parser.c (cp_lexer_get_preprocessor_token): Initialize keyword
2462         field.
2463
2464 2005-11-14  Jason Merrill  <jason@redhat.com>
2465
2466         PR c++/24580
2467         * method.c (locate_ctor): Skip all artificial parms, not just
2468         'this'.
2469
2470 2005-11-14  Mark Mitchell  <mark@codesourcery.com>
2471
2472         * parser.c (eof_token): Add initializer for ambiguous_p.
2473
2474 2005-11-13  Mark Mitchell  <mark@codesourcery.com>
2475
2476         PR c++/24817
2477         * decl.c (check_redeclaration_exception_specification): New
2478         function.
2479         (duplicate_decls): Use it.
2480         * error.c (fndecl_to_string): Print the template parameter list.
2481
2482         PR c++/20293
2483         * cxx-pretty-print.c (pp_cxx_statement): Print qualifying scopes
2484         for namespaces.
2485         (pp_cxx_original_namespace_definition): Likewise.
2486         * name-lookup.c (ambiguous_decl): Don't issue error messages;
2487         instead return lists of ambiguous candidates.
2488         (select_decl): Handle ambiguous namespace lookups.
2489         * parser.c (cp_token): Add ambiguous_p.
2490         (cp_lexer_get_preprocessor_token): Set it.
2491         (cp_parser_diagnose_invalid_type_name): Avoid duplicate messages
2492         when a qualified name uses an invalid scope.
2493         (cp_parser_primary_expression): Print ambiguous candidates.
2494         (cp_parser_type_parameter): Adjust comment to reflect new
2495         parameter name for cp_parser_lookup_name.
2496         (cp_parser_template_argument): Likewise.
2497         (cp_parser_elaborated_type_specifier): Likewise.
2498         (cp_parser_namespace_name): Likewise.
2499         (cp_parser_class_name): Print ambiguous candidates.
2500         (cp_parser_lookup_name): Rename ambiguous_p parameter to
2501         ambiguous_decls.  Use it to return a list of ambiguous candiates
2502         when a lookup is ambiguous.
2503         (cp_parser_lookup_name_simple): Adjust comment to reflect new
2504         parameter name for cp_parser_lookup_name.
2505
2506 2005-11-12  Jakub Jelinek  <jakub@redhat.com>
2507
2508         PR c++/24780
2509         * typeck.c (complete_type): Set TYPE_NEEDS_CONSTRUCTING
2510         and TYPE_HAS_NONTRIVIAL_DESTRUCTOR flags for all variants
2511         of array type.
2512
2513         PR c++/24761
2514         * pt.c (tsubst_copy_asm_operands): New function.
2515         (tsubst_expr) <case ASM_EXPR>: Use it.
2516
2517 2005-11-08  Jakub Jelinek  <jakub@redhat.com>
2518
2519         PR c++/19450
2520         * decl.c (redeclaration_error_message): Issue diagnostics about
2521         olddecl and newdecl disagreement on __thread property.
2522         (grokdeclarator): Set DECL_TLS_MODEL on class static variables.
2523
2524 2005-11-08  Jason Merrill  <jason@redhat.com>
2525
2526         PR c++/21123
2527         * method.c (use_thunk): Use build_cplus_new instead of
2528         force_target_expr.
2529
2530 2005-11-06  Jason Merrill  <jason@redhat.com>
2531             James A. Morrison <phython@gcc.gnu.org>
2532
2533         PR c++/17256
2534         * decl2.c (cp_finish_file): Fix conditions for undefined warning.
2535         Set TREE_NO_WARNING instead of TREE_PUBLIC.
2536         * pt.c (instantiate_pending_templates): Set DECL_INITIAL to avoid
2537         a warning on a function we didn't instantiate because of excessive
2538         recursion.
2539
2540 2005-11-06  Mark Mitchell  <mark@codesourcery.com>
2541
2542         * class.c (record_subobject_offsets): Don't record offsets past
2543         biggest empty class for non-empty base classes.
2544         (layout_class_type): Use TYPE_SIZE_UNIT, not TYPE_SIZE, when
2545         keeping track of the size of emptyclasses.
2546
2547         PR c++/21308
2548         * class.c (sizeof_biggest_empty_class): New variable.
2549         (record_subobject_offsets): Don't record offsets past biggest
2550         empty class for data members.  Replace vbases_p parameter with
2551         is_data_member parameter.
2552         (build_base_field): Adjust call.
2553         (layout_class_type): Likewise.  Maintain
2554         sizeof_biggest_empty_class.
2555
2556 2005-11-05  Kazu Hirata  <kazu@codesourcery.com>
2557
2558         * decl2.c, init.c, typeck.c: Fix comment typos.
2559
2560 2005-11-04  Richard Guenther  <rguenther@suse.de>
2561
2562         PR c++/22487
2563         * init.c (build_vec_init): Build comparison of matching
2564         types.
2565
2566 2005-11-03  Josh Conner  <jconner@apple.com>
2567
2568         PR c++/19989
2569         pt.c (tsubst): Accept zero-length array if tf_error is set
2570         in complain flags.  Change error message for negative-
2571         length array.
2572
2573 2005-11-04  Joseph S. Myers  <joseph@codesourcery.com>
2574
2575         * cp-tree.h (cp_cpp_error), error.c (cp_cpp_error): Take va_list*
2576         parameter.
2577
2578 2005-11-03  Joseph S. Myers  <joseph@codesourcery.com>
2579
2580         PR c++/17964
2581         * error.c (cp_cpp_error): New function.
2582         * cp-tree.h (cp_cpp_error): Declare.
2583         * parser.c (cp_lexer_new_main): Set CPP option client_diagnostic
2584         and error callback after lexing.
2585
2586 2005-11-03  Mark Mitchell  <mark@codesourcery.com>
2587
2588         PR c++/21627
2589         * pt.c (register_specialization): Update inline flags on clones.y
2590
2591 2005-11-03  Andrew Pinski  <pinskia@physics.uc.edu>
2592
2593         PR c++/24582
2594         * decl.c (declare_local_label): Return 0 for variables
2595         with error_mark_node as their types.
2596
2597 2005-11-02  Mark Mitchell  <mark@codesourcery.com>
2598
2599         PR c++/22434
2600         * call.c (build_conditional_expr): Do bad conversions, if there's
2601         no other choice.
2602
2603         PR c++/24560
2604         * parser.c (cp_parser_postfix_dot_deref_expression): Improve error
2605         message for use of overloaded functions on LHS of "." operator.
2606
2607         PR c++/19253
2608         * parser.c (cp_parser_postfix_expression): Use
2609         cp_parser_elaborated_type_specifier to handle typename-types in
2610         functional casts.
2611         (cp_parser_enclosed_argument_list): Skip ahead to the end of the
2612         template argument list if the closing ">" is not found.
2613
2614         PR c++/24569
2615         * pt.c (instantiate_decl): Use cp_finish_decl, not
2616         finish_static_data_member_decl.
2617
2618 2005-10-28  Andrew Pinski  <pinskia@physics.uc.edu>
2619
2620         * decl.c (grokfndecl): Remove the setting
2621         of the return type of the function type
2622         of main after erroring about must returning
2623         int.
2624
2625 2005-10-28  Andrew Pinski  <pinskia@physics.uc.edu>
2626
2627         PR C++/23229
2628         * decl.c (grokfndecl): Create a new function type
2629         after erroring out about main not returning int.
2630
2631 2005-10-28  Josh Conner  <jconner@apple.com>
2632
2633         PR c++/22153
2634         * parser.c (cp_parser_member_declaration): Detect and handle
2635         a template specialization.
2636
2637 2005-10-28  Andrew Pinski  <pinskia@physics.uc.edu>
2638
2639         PR C++/23426
2640         * decl.c (start_decl): Check that the decl is an
2641         error_mark_node before getting the type.
2642         Remove the check for the decl's type being an
2643         error_mark_node.
2644
2645 2005-10-21  Mark Mitchell  <mark@codesourcery.com>
2646
2647         PR c++/24260
2648         * parser.c (cp_parser_init_declarator): Pass attributes to
2649         grokfield.
2650
2651 2005-10-20  Mark Mitchell  <mark@codesourcery.com>
2652
2653         PR c++/22618
2654         * search.c (accessible_p): Check access in the outermost set of
2655         template parameters.
2656
2657 2005-10-20  Richard Guenther  <rguenther@suse.de>
2658
2659         * decl.c (grokdeclarator): Fix ambiguous pedwarn message.
2660
2661 2005-10-18  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
2662
2663         PR c++/22293
2664         * decl.c (grokdeclarator): Reject unqualified destructors in
2665         friend declarations.
2666
2667 2005-10-18  Mark Mitchell  <mark@codesourcery.com>
2668
2669         PR c++/23293
2670         * pt.c (convert_template_argument): Use canonical type variants in
2671         template specializations.
2672
2673 2005-10-18  Nathan Sidwell  <nathan@codesourcery.com>
2674
2675         PR c++/21383
2676         * name-lookup.c (arg_assoc): Template args can be null in a
2677         template-id-expr.
2678
2679         PR c++/22604
2680         * class.c (update_vtable_entry_for_fn): Don't process invalid
2681         covariant overriders.
2682
2683         PR c++/23118
2684         * cp-tree.h (add_method): Add return value.
2685         * class.c (add_method): Return success indicator.
2686         * semantics.c (finish_member_declaration): Don't add an invalid
2687         method to the method list.
2688
2689 2005-10-17  Mark Mitchell  <mark@codesourcery.com>
2690
2691         PR c++/21908
2692         * call.c (build_new_method_call): Do not show VTT parameters to
2693         the user.
2694
2695 2005-10-17  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
2696
2697         PR c++/23440
2698         * parser.c (cp_parser_statement): If the parser reached CPP_EOF,
2699         only complain about missing statement.
2700
2701 2005-10-17  Nathan Sidwell  <nathan@codesourcery.com>
2702
2703         PR c++/24386
2704         * cp-tree.h (BASELINK_QUALIFIED_P): New.
2705         * pt.c (tsubst_copy_and_build): <CALL_EXPR case>: Use it.
2706         * typeck.c (finish_class_member_access_expr): Set it.
2707
2708         PR c++/21353
2709         * decl.c (check_default_argument): Don't check
2710         processing_template_decl or uses_template_parms here.
2711         (grokparms): Only call check_default_argument when not processing
2712         a template decl.
2713         * parser.c (cp_parser_late_parsing_default_arg): Call
2714         check_default_argument when not processing a template decl.
2715
2716 2005-10-16  Mark Mitchell  <mark@codesourcery.com>
2717
2718         PR c++/24389
2719         * decl2.c (mark_used): Use uses_template_parms instead of
2720         dependent_type_p.
2721         * init.c (constant_value_1): Handle uninstantiated templates
2722         specially.
2723         * pt.c (instantiate_decl): Add sanity check.
2724
2725 2005-10-16  Mark Mitchell  <mark@codesourcery.com>
2726
2727         PR c++/22173
2728         * typeck.c (check_template_keyword): Fix thinko.
2729
2730 2005-10-16  Andrew Pinski  <pinskia@physics.uc.edu>
2731
2732         PR c++/23959
2733         * decl.c (pop_switch): Only call c_do_switch_warnings
2734         when not processing templates.
2735
2736 2005-10-16  Mark Mitchell  <mark@codesourcery.com>
2737
2738         PR c++/22173
2739         * cp-tree.h (QUALIFIED_NAME_IS_TEMPLATE): New macro.
2740         (check_template_keyword): New function.
2741         (finish_id_expression): Change prototoype.
2742         (finish_qualified_id_expr): Change prototype.
2743         (build_qualified_name): New function.
2744         (finish_class_member_access_expr): Change prototype.
2745         * init.c (build_offset_ref): Use build_qualified_name.
2746         * mangle.c (write_expression): Likewise.
2747         * parser.c (cp_parser_primary_expression): Remove qualifying_class
2748         parameter.  Add address_p and template_arg_p.  Use
2749         build_qualified_name.
2750         (cp_parser_id_expression): Default *template_p to
2751         template_keyword_p.  Check for invalid uses of the template
2752         keyword.
2753         (cp_parser_postfix_expression): Eliminate special handling for
2754         qualified names.  Adjust call to cp_parser_primary_expression.
2755         (cp_parser_postfix_dot_deref_expression): Adjust call to
2756         cp_parser_id_expression and finish_class_member_access_expr.
2757         (cp_parser_template_argument_list): Add comment.
2758         (cp_parser_template_argument): Adjust use of
2759         cp_parser_primary_expression.  Remove call to
2760         finish_qualified_id_expr.
2761         (cp_parser_lookup_name): Use build_qualified_name.
2762         * pt.c (tsubst): Use build_qualified_name.
2763         (tsubst_qualified_id): Likewise.  Adjust call to
2764         finish_qualified_id_expr.
2765         (tsubst_copy): Use build_qualified_name.
2766         (tsubst_copy_and_build): Adjusts call to finish_id_expression and
2767         finish_class_member_access_expr.
2768         * semantics.c (finish_non_static_data_member): Use
2769         build_qualified_name.
2770         (finish_qualified_id_expr): Add template_p and template_arg_p
2771         parameters.
2772         (finish_id_expression): Remove qualifiying_class parameter.  Add
2773         template_p, done, address_p, and template_arg_p.  Use
2774         build_qualified_name.  Adjust calls to
2775         finish_class_member_acess_expr.
2776         * tree.c (build_qualified_name): New function.
2777         * typeck.c (check_template_keyword): New function.
2778         (finish_class_member_access_expr): Add template_p argument.  Check
2779         for invalid uses of the template keyword.
2780
2781 2005-10-15  Mark Mitchell  <mark@codesourcery.com>
2782
2783         PR c++/21347
2784         * class.c (maybe_warn_about_overly_private_class): Lazy
2785         constructors are public.
2786
2787 2005-10-14  Mark Mitchell  <mark@codesourcery.com>
2788
2789         PR c++/19565
2790         * call.c (convert_like_real): Rely on convert_and_check to issue
2791         warnings about overflow and conversion to unsigned.
2792         * decl.c (finish_enum): Use the location of the enumerators, not
2793         the closing brace of the enumeration, when reporting warnings
2794         about conversions.
2795         (build_enumerator): Use error_mark_node for erroneous values.
2796         * typeck2.c (digest_init): Remove reference to "signature pointer"
2797         from comment.
2798
2799 2005-10-14  Nathan Sidwell  <nathan@codesourcery.com>
2800
2801         PR c++/17796
2802         * optimize.c (update_cloned_parm): Add FIRST parameter. Use it.
2803         (maybe_clone_body): Track the first clone.
2804
2805 2005-10-13  Nathan Sidwell  <nathan@codesourcery.com>
2806
2807         PR c++/23984
2808         * class.c (build_base_path): The vtable is always the first thing
2809         in the vtt.
2810
2811 2005-10-13  Mark Mitchell  <mark@codesourcery.com>
2812
2813         PR c++/20721
2814         * cp-tree.h (DECL_NONTRIVIALLY_INITIALIZED_P): New macro.
2815         * decl.c (duplicate_decls): Merge it into new declarations.
2816         (decl_jump_unsafe): Use it, rather than DECL_INITIAL.
2817         (cp_finish_decl): Set it, when appropriate.
2818
2819         PR c++/22180
2820         * call.c (build_new_method_call): Correct pretty-printing of
2821         destructor names.
2822         * pt.c (tsubst_qualified_id): Recognize invalid uses of "~T" as an
2823         identifier.
2824
2825         PR c++/23694
2826         * decl.c (start_method): Return error_mark_node for errors.
2827
2828         PR c++/23307
2829         * pt.c (push_template_decl_real): Complain about attempts to
2830         declare template variables.
2831
2832         PR c++/22352
2833         * pt.c (tsubst_template_parms): Set processing_template_decl while
2834         processing the parameters.
2835         (tsubst_decl): Set processing_template_decl when substituting into
2836         a TEMPLATE_DECL.
2837
2838         PR c++/22405
2839         * pt.c (most_specialized_instantiation): Robustify.
2840
2841         PR c++/22464
2842         * semantics.c (finish_id_expression): Issue errors about uses of
2843         local variables in containing functions even in templates.
2844
2845 2005-10-12  Danny Smith  <dannysmith@users.sourceforge.net>
2846
2847         PR target/21801
2848         PR target/23589
2849         * class.c (finish_struct_1): Call
2850         targetm.cxx.adjust_class_at_definition.
2851
2852
2853 2005-10-12  Nathan Sidwell  <nathan@codesourcery.com>
2854
2855         PR c++/21592
2856         * pt.c (build_non_dependent_expr): Don't wrap a COMPONENT_REF
2857         with already looked up member functions.  Assert we're not
2858         returning a NON_DEPENDENT_EXPR with unknown type.
2859         * typeck.c (finish_class_member_access_expr):  We can get
2860         non-template-id-expr baselinks.  If the lookup finds a baselink,
2861         remember it even inside templates.
2862
2863         PR c++/23797
2864         * parser.c (cp_parser_functional_cast): Cope when TYPE is not a
2865         TYPE_DECL.  Use dependent_type_p to check type.
2866         * pt.c (uses_template_parms_p): Use dependent_type_p for a
2867         TYPE_DECL.
2868         (type_dependent_expression_p): Assert we've not been given a
2869         TYPE_DECL.
2870
2871         PR c++/21117
2872         * decl.c (check_function_type): Correctly overwrite incomplete
2873         return type with void type.
2874         * typeck.c (check_return_expr): If the function's return type is
2875         void, don't try and convert a return expr.
2876
2877 2005-10-12  David Edelsohn  <edelsohn@gnu.org>
2878
2879         PR c++/23730
2880         * call.c (build_object_call): If BINFO is NULL, bypass
2881         lookup_fnfields and set fns to NULL_TREE.
2882
2883 2005-10-12  Paolo Bonzini  <bonzini@gnu.org>
2884
2885         PR c++/24052
2886         * error.c (dump_expr): Pass LABEL_DECL to dump_decl.  Print
2887         an ADDR_EXPR of a LABEL_DECL as &&.
2888
2889 2005-10-12  Nathan Sidwell  <nathan@codesourcery.com>
2890
2891         PR c++/19964
2892         * class.c (walk_subobject_offsets): Don't walk error_mark_node.
2893
2894 2005-10-11  Ian Lance Taylor  <ian@airs.com>
2895
2896         PR c++/8057
2897         * cvt.c (convert_to_void): Don't warn about unused values when
2898         processing a template declaration.
2899
2900 2005-10-11  Mark Mitchell  <mark@codesourcery.com>
2901
2902         PR c++/21089
2903         * call.c (convert_like_real): Use decl_constant_value, not
2904         integral_constant_value.
2905         * init.c (constant_value_1): New function.
2906         (integral_constant_value): Use it.
2907         (decl_constant_value): Likewise.
2908         * typeck.c (decay_conversion): Use decl_constant_value, not
2909         integral_constant_value.
2910
2911         PR c++/21369
2912         * parser.c (cp_parser_elaborated_type_specifier): Don't treat
2913         class types as templates if the type is not appearing as part of a
2914         type definition or declaration.
2915
2916 2005-10-10  Mark Mitchell  <mark@codesourcery.com>
2917
2918         PR c++/24277
2919         * pt.c (instantiate_decl): Call finish_static_data_member_decl for
2920         static data members.
2921
2922 2005-10-10  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
2923             Mark Mitchell  <mark@codesourcery.com>
2924
2925         PR c++/23437
2926         * parser.c (cp_parser_template_argument_list): Do not treat
2927         contents of argument list as part of a constant expression.
2928
2929 2005-10-10  Mark Mitchell  <mark@codesourcery.com>
2930
2931         PR c++/24139
2932         * decl.c (grokdeclarator): Do not require template parameter lists
2933         for explicitly specialized class.
2934         * error.c (dump_aggr_type): Do not dump template arguments for
2935         non-primary specializations.
2936         (dump_function_name): Likewise.
2937
2938         PR c++/24275
2939         * pt.c (instantiate_decl): Instantiate the initializer of
2940         a static data member in the namespace containing the class
2941         containing the static data member.
2942
2943 2005-10-08  James A. Morrison  <phython@gcc.gnu.org>
2944
2945         PR c++/22172
2946         * parser.c (cp_parser_postfix_expression) <RID_TYPENAME>: Treat nontype
2947         scopes as nondependent.
2948
2949 2005-10-06  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
2950
2951         * call.c (resolve_args): Remove redundant test.
2952
2953 2005-10-05  Paolo Bonzini  <bonzini@gnu.org>
2954
2955         PR tree-optimization/21419
2956         PR tree-optimization/24146
2957         PR tree-optimization/24151
2958
2959         * semantics.c (finish_asm_stmt): Call readonly_error if outputs are
2960         read-only.  Set ASM_VOLATILE_P for asms without outputs.
2961
2962 2005-10-05  Nathan Sidwell  <nathan@codesourcery.com>
2963
2964         PR c++/23513
2965         * call.c (joust): Adjust length count to more_specialized_fn.
2966         * pt.c (more_specialized_fn): Cope with non-static member vs
2967         non-member.
2968
2969 2005-10-04  Andrew Pinski  <pinskia@physics.uc.edu>
2970
2971         PR middle-end/23125
2972         * decl.c (make_rtl_for_nonlocal_decl): Use set_user_assembler_name
2973         instead of change_decl_assembler_name.
2974
2975 2005-10-03  Alexandre Oliva  <aoliva@redhat.com>
2976
2977         * error.c (dump_type) <UNKNOWN_TYPE>: Print reworded message.
2978
2979 2005-10-03  Mark Mitchell  <mark@codesourcery.com>
2980
2981         PR c++/17775
2982         * repo.c: Include flags.h.
2983         (finish_repo): Add -frandom-seed to the arguments.
2984
2985 2005-10-02  Mark Mitchell  <mark@codesourcery.com>
2986
2987         PR c++/22621
2988         * parser.c (cp_parser_template_argument): Don't turn "T::f" into
2989         "(*this).T::f".
2990         * pt.c (convert_nontype_argument): Remove ??? comment.
2991
2992         PR c++/23840
2993         * tree.c (lvalue_p_1): A VA_ARG_EXPR with class type is an lvalue,
2994         when class rvalues are lvalues.
2995
2996 2005-09-28  Mark Mitchell  <mark@codesourcery.com>
2997
2998         PR c++/16782
2999         * decl.c (grokdeclarator): Always pedwarn about overqualified
3000         member names.
3001
3002 2005-09-27  Mark Mitchell  <mark@codesourcery.com>
3003
3004         PR c++/22147
3005         * name-lookup.c (maybe_process_template_type_declaration): Don't
3006         treat forward declarations of classes as templates just because
3007         we're processing_template_decl.
3008         * pt.c (tsubst_decl): Clear DECL_TEMPLATE_INFO for friend
3009         functions.
3010
3011 2005-09-26  Jason Merrill  <jason@redhat.com>
3012
3013         PR c++/13764
3014         * cp-tree.h (FUNCTION_NEEDS_BODY_BLOCK): New macro.
3015         * name-lookup.c (pushdecl_maybe_friend): Check it.
3016         * decl.c (begin_function_body): Do nothing if it's false.
3017         (finish_function_body): Ditto.
3018         (outer_curly_brace_block): New fn.
3019         (finish_function): Use it.
3020
3021 2005-09-26  Richard Guenther  <rguenther@suse.de>
3022
3023         PR middle-end/15855
3024         * decl2.c (do_static_destruction): Remove.
3025         (finish_static_initialization_or_destruction): Likewise.
3026         (DECL_EFFECTIVE_INIT_PRIORITY): New macro.
3027         (NEEDS_GUARD_P): Likewise.
3028         (do_static_initialization): Rename to
3029         do_static_initialization_or_destruction.  Process all
3030         initializers/destructors and handle common conditionalizing.
3031         (start_static_initialization_or_destruction): Rename to
3032         one_static_initialization_or_destruction.  Handle only
3033         decl-specific conditionalizing.
3034         (cp_finish_file): Call do_static_initialization_or_destruction.
3035
3036 2005-09-22  Jakub Jelinek  <jakub@redhat.com>
3037
3038         PR c++/21983
3039         * class.c (find_final_overrider): Move diagnostic about no unique final
3040         overrider to...
3041         (update_vtable_entry_for_fn): ... here.
3042
3043 2005-09-21  Mark Mitchell  <mark@codesourcery.com>
3044
3045         PR c++/23993
3046         * init.c (integral_constant_value): Use DECL_INTEGRAL_CONSTANT_VAR_P.
3047
3048 2005-09-21  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
3049
3050         PR c++/23965
3051         * call.c (resolve_args): Return error_mark_node on arguments
3052         whose TREE_TYPE is error_mark_node.
3053
3054 2005-09-20  Jakub Jelinek  <jakub@redhat.com>
3055
3056         PR c++/23947
3057         * rtti.c (get_pseudo_ti_init): Recompute ti pointer after
3058         get_tinfo_ptr calls.
3059
3060 2005-09-16  Mark Mitchell  <mark@codesourcery.com>
3061
3062         PR c++/23914
3063         * parser.c (cp_parser_enclosed_template_argument_list): Make sure
3064         skip_evaluation is false when processing template arguments.
3065
3066         PR c++/21514
3067         * pt.c (check_instantiated_args): Treat uses of anonymous types as
3068         causing type-deduction failure.
3069
3070 2005-09-15  Jason Merrill  <jason@redhat.com>
3071
3072         PR c++/23357
3073         * cp-tree.def (SIZEOF_EXPR, ALIGNOF_EXPR): Change code class to
3074         tcc_expression.
3075
3076 2005-09-15  Mark Mitchell  <mark@codesourcery.com>
3077
3078         PR c++/23896
3079         * pt.c (tsubst_aggr_type): Make sure skip_evaluation is false when
3080         processing template arguments.
3081
3082         * pt.c (check_explicit_instantiation_namespace): Fix typo.
3083
3084         PR c++/13140
3085         * decl.c (check_class_member_definition_namespace): New function.
3086         (grokfndecl): Use it.
3087         (grokvardecl): Likewise.
3088         (grokdecl): Improve documentation.
3089         * pt.c (check_explicit_instantiation_namespace): New function.
3090         (register_specialization): Call check_specialization_namespace
3091         when replacing an implicitly instantiated function.
3092         (check_explicit_specialization): Ensure that DECL_CONTEXT is set
3093         correctly for namespace-scope specializations.
3094         (do_decl_instantiation): Use
3095         check_explicit_instantiation_namespace.
3096         (do_type_instantiation): Likewise.
3097
3098 2005-09-15  Nathan Sidwell  <nathan@codesourcery.com>
3099
3100         PR c++/23725
3101         * error.c (dump_decl): <USING_DECL case> Use USING_DECL_SCOPE.
3102
3103 2005-09-13  Bastian Blank <waldi@debian.org>
3104
3105         PR c++/16171
3106         * mangle.c (find_substitution): Do not use special substitutions
3107         for identifiers not in std::.
3108
3109 2005-09-13  Mark Mitchell  <mark@codesourcery.com>
3110
3111         PR c++/23839
3112         * typeck.c (cxx_mark_addressable): Only check DECL_HARD_REGISTER
3113         for VAR_DECLs.
3114
3115 2005-09-13  Mark Mitchell  <mark@codesourcery.com>
3116
3117         PR c++/23842
3118         * pt.c (tsubst_default_argument): Do treat default argument
3119         expressions as occurring in the context of the function called.
3120
3121 2005-09-12  Mark Mitchell  <mark@codesourcery.com>
3122
3123         PR c++/23841
3124         * parser.c (cp_parser_primary_expression): Recognize the closing
3125         ">" of a template-argument-list after a floating-point literal as
3126         the end of a cast expression.
3127
3128 2005-09-12  Mark Mitchell  <mark@codesourcery.com>
3129
3130         PR c++/23789
3131         * cvt.c (perform_qualification_conversions): Don't create
3132         unnecessary NOP_EXPRs.
3133         * pt.c (tsubst_template_arg): Use fold_non_dependent_expr.
3134
3135 2005-09-12  Ian Lance Taylor  <ian@airs.com>
3136
3137         PR g++/7874
3138         * cp-tree.h (struct lang_decl_flags): Add hidden_friend_p
3139         bitfield.  Make dummy bitfield one bit smaller.
3140         (DECL_HIDDEN_FRIEND_P): Define.
3141         (pushdecl_maybe_friend): Declare.
3142         (pushdecl_top_level_maybe_friend): Declare.
3143         * decl.c (duplicate_decls): Add newdecl_is_friend parameter.
3144         Change prototype and all callers.  Add assertion that a
3145         DECL_ARTIFICIAL FUNCTION_DECL is not DECL_HIDDEN_FRIEND_P.  Set
3146         DECL_ANTICIPATED and DECL_HIDDEN_FRIEND_P in duplicated decl if
3147         appropriate.
3148         * name-lookup.c (supplement_binding): Don't ignore a
3149         DECL_HIDDEN_FRIEND_P.
3150         (pushdecl_maybe_friend): Break out contents of pushdecl.  Add
3151         is_friend parameter.  Set DECL_ANTICIPATED and
3152         DECL_HIDDEN_FRIEND_P for a friend function.
3153         (pushdecl): Just call pushdecl_maybe_friend.
3154         (pushdecl_with_scope): Add is_friend parameter.  Change prototype
3155         and all callers.
3156         (pushdecl_namespace_level): Likewise.
3157         (push_overloaded_decl): Likewise.  Check DECL_HIDDEN_FRIEND_P as
3158         well as DECL_ANTICIPATED when checking for a builtin.
3159         (do_nonmember_using_decl): Check DECL_HIDDEN_FRIEND_P as well as
3160         DECL_ANTICIPATED when checking for a builtin.
3161         (do_nonmember_using_decl): Likewise.
3162         (pushdecl_top_level_1): Add is_friend parameter.  Change all
3163         callers.
3164         (pushdecl_top_level_maybe_friend): New function.
3165         (remove_hidden_names): New function.
3166         (struct arg_lookup): Add args field.
3167         (friend_of_associated_class_p): New static function.
3168         (arg_assoc_namespace): Ignore hidden functions which are not
3169         friends of an associated class of some argument.
3170         (lookup_arg_dependent): Remove hidden functions from list passed
3171         in.  Initialize k.args.
3172         * name-lookup.h (remove_hidden_names): Declare.
3173         * friend.c (do_friend): Call pushdecl_maybe_friend instead of
3174         pushdecl.
3175         * call.c (add_function_candidate): Change DECL_ANTICIPATED test to
3176         an assertion, with a check for DECL_HIDDEN_FRIEND_P.
3177         (build_new_function_call): Add koenig_p parameter.  Change
3178         prototype and callers.
3179         * pt.c (register_specialization): Add is_friend parameter.  Change
3180         all callers.
3181         (push_template_decl_real): Change is_friend parameter to bool.
3182         Change prototype and all callers.
3183         (tsubst_friend_class): Call pushdecl_top_level_maybe_friend
3184         instead of pushdecl_top_level.
3185
3186 2005-09-11  Richard Henderson  <rth@redhat.com>
3187
3188         * decl2.c (build_anon_union_vars): Copy attributes from the base addr.
3189         * pt.c (tsubst_decl): Substitute in DECL_VALUE_EXPR.
3190
3191 2005-09-09  Gabriel Dos Reis  <gdr@integrable-solutions.net>
3192
3193         * parser.c (cp_parser_translation_unit): Simplify.  The while-block
3194         was actually executed at most once.
3195
3196 2005-09-09  Richard Henderson  <rth@redhat.com>
3197
3198         PR debug/20998
3199         * cp-tree.def (ALIAS_DECL): Remove.
3200         * cp-lang.c (cp_init_ts): Remove support for it.
3201         * error.c (dump_decl): Likewise.
3202         * name-lookup.c (pushdecl): Likewise.
3203         * semantics.c (finish_id_expression): Likewise.
3204         * decl2.c (build_anon_union_vars): Use a VAR_DECL with
3205         DECL_VALUE_EXPR instead.
3206
3207 2005-09-09  Mark Mitchell  <mark@codesourcery.com>
3208
3209         PR c++/22252
3210         * decl.c (start_preparsed_function): Do not pay attention to
3211         #pragma interface for implicitly-defined methods.
3212         * decl2.c (cp_finish_file): Do not complain about uses of inline
3213         functions that have bodies, even if we decided not to emit the
3214         body in this translation unit.
3215         * semantics.c (note_decl_for_pch): Do not mess with linkage.
3216         (expand_or_defer_fn): Make inline, non-template functions COMDAT
3217         at this point.
3218
3219 2005-09-08  Richard Henderson  <rth@redhat.com>
3220
3221         PR debug/23190
3222         * decl.c (wrapup_globals_for_namespace): Call
3223         emit_debug_global_declarations.
3224         * decl2.c (cp_finish_file): Likewise.
3225
3226 2005-09-08  Mark Mitchell  <mark@codesourcery.com>
3227
3228         PR c++/23691
3229         * decl2.c (mark_used): Instantiate static data members initialized
3230         by constants, even in a template.
3231
3232 2005-09-08  Andrew Pinski  <pinskia@physics.uc.edu>
3233
3234         PR obj-c++/16816
3235         * parser.c (cp_parser_objc_selector_expression): Treat CPP_SCOPE as
3236         two CPP_COLON.
3237
3238 2005-09-07  Richard Guenther  <rguenther@suse.de>
3239
3240         * cp-gimplify.c (cp_gimplify_expr): Create empty CONSTRUCTOR
3241         for EMPTY_CLASS_EXPR.
3242
3243 2005-09-06  Jakub Jelinek  <jakub@redhat.com>
3244
3245         PR c/23075
3246         * typeck.c (check_return_expr): Add no_warning argument.  Set
3247         *no_warning to true if "return-statement with no value, in function
3248         returning" warning has been issued.
3249         * cp-tree.h (check_return_expr): Adjust prototype.
3250         * semantics.c (finish_return_stmt): Set TREE_NO_WARNING if
3251         check_return_expr set *no_warning to true.
3252
3253 2005-09-06  Mark Mitchell  <mark@codesourcery.com>
3254
3255         * cp-tree.h (rvalue): New function.
3256         * call.c (build_conditional_expr): Use it.
3257         * init.c (build_new_1): Likewise.
3258         * rtti.c (build_dynamic_cast_1): Likewise.
3259         * tree.c (rvalue): New function.
3260         * typeck.c (build_unary_op): Use it.
3261         (build_static_cast_1): Likewise.
3262
3263         PR c++/9782
3264         * init.c (build_new_1): Make sure the entire array type is
3265         complete, not just its element types.
3266
3267 2005-09-06  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
3268
3269         * decl.c (check_elaborated_type_specifier): Remove redundant check.
3270
3271 2005-09-06  Jakub Jelinek  <jakub@redhat.com>
3272
3273         PR c++/23056
3274         * typeck.c (ignore_overflows): New helper function.
3275         (build_static_cast_1): Use it.
3276
3277 2005-09-06  Kazu Hirata  <kazu@codesourcery.com>
3278
3279         * cp-tree.h, decl.c, decl2.c, semantics.c: Fix comment typos.
3280         Follow spelling conventions.
3281
3282 2005-09-05  Mark Mitchell  <mark@codesourcery.com>
3283
3284         PR c++/23667
3285         * pt.c (tsubst_decl): Clear DECL_TEMPLATE_INSTANTIATED when
3286         copying a VAR_DECL.
3287
3288 2005-09-05  Mark Mitchell  <mark@codesourcery.com>
3289
3290         PR c++/21440
3291         * semantics.c (finish_stmt_expr_expr): Add an explicit
3292         initialization to the last statement in the statement-expression.
3293         * (finish_stmt_expr): Adjust accordingly.
3294
3295 2005-09-03  Mark Mitchell  <mark@codesourcery.com>
3296
3297         PR c++/23699
3298         * decl2.c (mark_used): Always instantiate static data members
3299         initialized by constant expressions.
3300         * pt.c (instantiate_decl): Instantiate the initializers for static
3301         data members initialized by constant expressions.
3302
3303         PR c++/21687
3304         * semantics.c (expand_or_defer_fn): Do not call ggc_collect when
3305         finishing processing for a template function in a local class.
3306         Revert:
3307         2005-09-02  Mark Mitchell  <mark@codesourcery.com>
3308         * parser.c (cp_parser_class_specifier): Push/pop GC contexts
3309         around functions in local classes.
3310
3311 2005-09-02  Mark Mitchell  <mark@codesourcery.com>
3312
3313         PR c++/21687
3314         * parser.c (cp_parser_class_specifier): Push/pop GC contexts
3315         around functions in local classes.
3316
3317 2005-08-31  Andrew Pinski  <pinskia@physics.uc.edu>
3318
3319         PR obj-c++/23640
3320         * decl2.c (cp_finish_file): If this is obj-c++ and we need a static
3321         init, call generate_ctor_or_dtor_function.
3322
3323 2005-08-31  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
3324
3325         PR c++/13377
3326         * parser.c (cp_parser_lookup_name): Pass LOOKUP_COMPLAIN to
3327         lookup_name_real on final parse.
3328
3329 2005-08-31  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
3330
3331         PR c++/23639
3332         * semantics.c (qualified_name_lookup_error): Do not complain again
3333         on invalid scope.
3334
3335 2005-08-30  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
3336
3337         PR c++/23586
3338         * parser.c (cp_parser_namespace_name): Move diagnostic for
3339         invalid namespace-name to here from ...
3340         * name-lookup.c (do_namespace_alias): ... here and ...
3341         (do_using_directive): ... here.  Remove dead code.
3342
3343 2005-08-28  Mark Mitchell  <mark@codesourcery.com>
3344
3345         PR c++/23099
3346         * cp-tree.h (saved_scope): Add skip_evaluation.
3347         * decl.c (start_decl): Use DECL_INITIALIZED_IN_CLASS_P, not
3348         DECL_INITIAL, to determine whether or not a static data member was
3349         initialized in the class-specifier.
3350         (cp_finish_decl): Add comment.
3351         * init.c (integral_constant_value): Subtitute into the
3352         initializers for static data members in templates.
3353         * name-lookup.c (push_to_top_level): Save skip_evaluation.
3354         (pop_from_top_level): Restore it.
3355         * pt.c (instantiate_class_template): Do not substitute into the
3356         intializers of static data members when instantiating a class.
3357         (regenerate_decl_from_template): Simplify.
3358         (instantiate_decl): Tidy.  Substitute into the initializer for a
3359         static data member even when the definition of the data member is
3360         not available.
3361
3362 2005-08-26  Mark Mitchell  <mark@codesourcery.com>
3363
3364         PR c++/19004
3365         * pt.c (uses_template_parms): Handle IDENTIFIER_NODE.
3366         (type_dependent_expression_p): Allow BASELINKs whose associated
3367         functions are simply a FUNCTION_DECL.
3368
3369         PR c++/23491
3370         * cp-tree.h (build_vec_init): Adjust prototype.
3371         * init.c (perform_member_init): Adjust call to build_vec_init.
3372         (build_aggr_init): Likewise.
3373         (build_new_1): Do not call build_default_init for array types.
3374         (build_vec_init): Add explicit_default_init_p parameter.  Perform
3375         default initialization of vector elements when set.
3376         * typeck.c (build_modify_expr): Adjust call to build_vec_init.
3377
3378 2005-08-25  Nathan Sidwell  <nathan@codesourcery.com>
3379
3380         PR c++/20817
3381         * typeck.c (build_x_unary_op): Make sure OFFSET_REF is not for a
3382         ->*.
3383
3384 2005-08-24  Nathan Sidwell  <nathan@codesourcery.com>
3385
3386         PR c++/22454
3387         * parser.c (cp_lexer_peek_nth_token): Relax assert.
3388
3389 2005-08-23  Nathan Sidwell  <nathan@codesourcery.com>
3390
3391         PR c++/23044
3392         * pt.c (tsubst_qualified_id): A SCOPE_REF can still remain.
3393
3394 2005-08-22  James E Wilson  <wilson@specifix.com>
3395
3396         PR tree-optimization/23426
3397         * decl.c (grokdeclarator): Use TYPE_SIZE_UNIT not TYPE_SIZE for
3398         array size check.
3399
3400 2005-08-22  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
3401
3402         PR c++/22233
3403         * pt.c (push_template_decl_real): Return error_mark_node if the
3404         number of template parameters does not match previous definition.
3405
3406 2005-08-22  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
3407
3408         PR c++/23089
3409         * decl.c (require_complete_types_for_parms): Mark incomplete types
3410         as invalid.
3411
3412 2005-08-19  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
3413
3414         * parser.c (cp_parser_nth_token_starts_template_argument_list_p):
3415         Fix typo in leading comment.
3416
3417 2005-08-15  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3418
3419         * name-lookup.c, ptree.c: Delete HOST_PTR_PRINTF.
3420
3421 2005-08-15 Fariborz Jahanian <fjahanian@apple.com>
3422
3423         * cp-tree.h (can_convert_arg, fn_type_unification): New argument.
3424         * call.c (add_template_candidate_real): Pass down 'flags' to
3425         fn_type_unification.
3426         (can_convert_arg): New 'flags' argument. Pass it to call to
3427         implicit_conversion instead of LOOKUP_NORMAL.
3428         (can_convert): Add LOOKUP_NORMAL to call to can_convert_arg.
3429         * class.c (resolve_address_of_overloaded_function): Ditto.
3430         (resolve_address_of_overloaded_function): Ditto.
3431         * decl.c (reshape_init, check_default_argument): Ditto.
3432         * typeck.c (build_ptrmemfunc): Ditto.
3433         * pt.c (type_unification_real): Add 'flags' argument.
3434         (fn_type_unification): Pass 'flags' to type_unification_real.
3435         (type_unification_real): Pass new 'flags' argument to call to
3436         can_convert_arg.
3437
3438 2005-08-12  Giovanni Bajo  <giovannibajo@libero.it>
3439             Nathan Sidwell  <nathan@codesourcery.com>
3440
3441         PR c++/21799
3442         PR c++/8271
3443         * pt.c (unify) <METHOD_TYPE>: Check this-pointer cv-qualifiers
3444         explicitly.
3445
3446 2005-08-12  Nathan Sidwell  <nathan@codesourcery.com>
3447
3448         PR c++/21799
3449         Revert my 2005-07-08 patch
3450         * pt.c (type_unification_real): Remove is_method_argument and
3451         assoicated checks.
3452         (fn_type_unification, unify): Adjust type_unification_real calls.
3453
3454 2005-08-11  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
3455
3456         PR c++/23266
3457         * decl2.c (grokfield): Check that method is not static before
3458         marking it as pure.
3459
3460 2005-08-11  Nathan Sidwell  <nathan@codesourcery.com>
3461
3462         PR c++/23219
3463         * name-lookup.c (pushtag): Process the template type before
3464         altering the identifier lookup fields.  Remove unreachable code
3465         creating an empty stub decl.
3466
3467 2005-08-10  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
3468
3469         PR c++/20646
3470         * decl.c (grokdeclarator): Reset storage_class after error.
3471
3472 2005-08-08  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
3473
3474         PR c++/22508
3475         * init.c (build_new_1): Check for empty candidate list.
3476
3477 2005-08-06  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
3478
3479         PR c++/23191
3480         * pt.c (tsubst) <case METHOD_TYPE>: Check for error_mark_node
3481         before calling build_exception_variant.
3482
3483 2005-08-06  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
3484
3485         PR c++/19498
3486         * pt.c (tsubst_decl) <case TEMPLATE_DECL>: Return ERROR_MARK_NODE
3487         if substitution of template args did not succeed.
3488
3489 2005-08-06  Michael Matz  <matz@suse.de>
3490
3491         * method.c (use_thunk): Call init_insn_lengths.
3492
3493 2005-08-05  James A. Morrison  <phython@gcc.gnu.org>
3494
3495         PR c++/22514
3496         * name-lookup.c (cp_emit_debug_info_for_using): Do nothing if
3497         sorrycount or errorcount are nonzero.
3498
3499 2005-08-05  Mark Mitchell  <mark@codesourcery.com>
3500
3501         * name-lookup.c (pushtag): Remove accidental commit from:
3502         2004-12-21  Mark Mitchell  <mark@codesourcery.com>
3503         PR c++/19063
3504         * decl.c (grokdeclarator): Return error_mark_node, not
3505         void_type_node, to indicate errors.
3506         * parser.c (cp_parser_template_parameter_list): Robustify.
3507         (cp_parser_template_parameter): Likewise.
3508
3509 2005-08-01  Kazu Hirata  <kazu@codesourcery.com>
3510
3511         * class.c, decl.c, name-lookup.c, pt.c, typeck.c, typeck2.c:
3512         Fix comment typos.
3513
3514 2005-07-29  Kazu Hirata  <kazu@codesourcery.com>
3515
3516         * method.c: Fix a comment typo.
3517
3518 2005-07-28  Mark Mitchell  <mark@codesourcery.com>
3519
3520         PR c++/22545
3521         * call.c (add_builtin_candidate): Adjust for changes in
3522         representation of pointer-to-member types.
3523
3524 2005-07-28  Mike Stump  <mrs@apple.com>
3525
3526         * pt.c (check_explicit_specialization): Add visibility logic.
3527         (lookup_template_class): Likewise.
3528         (instantiate_class_template): Likewise.
3529
3530 2005-07-27  Devang Patel  <dpatel@apple.com>
3531
3532         * name-lookup.c (pushtag): Do no set DECL_IGNORED_P bit.
3533
3534 2005-07-25  Ian Lance Taylor  <ian@airs.com>
3535
3536         * ptree.c (cxx_print_identifier): Print a leading space if the
3537         indent level is 0.
3538
3539 2005-07-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3540
3541         * call.c (convert_for_arg_passing): Check function pointers when
3542         -Wmissing-format-attribute is activated.
3543         * typeck.c (convert_for_assignment): Likewise.
3544
3545 2005-07-22  Manfred Hollstein  <mh@suse.com>
3546
3547         * parser.c (cp_parser_declaration): Fix unitialised warnings.
3548
3549 2005-07-21  Andrew Pinski  <pinskia@physics.uc.edu>
3550
3551         * class.c (build_base_path): Fix typo.
3552
3553 2005-07-21  Andrew Pinski  <pinskia@physics.uc.edu>
3554
3555         PR C++/22358
3556         * class.c (build_base_path): Convert BINFO_OFFSET to the correct type.
3557
3558 2005-07-21  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
3559
3560         * call.c: Fix comment typo(s).
3561         * cxx-pretty-print.h: Likewise.
3562         * name-lookup.c: Likewise.
3563         * parser.c: Likewise.
3564
3565 2005-07-20  Douglas Gregor <doug.gregor@gmail.com>
3566
3567         PR c++/2922
3568         * semantics.c (perform_koenig_lookup): For dependent calls, just
3569         return the set of functions we've found so far. Later, it will be
3570         augmented by those found through argument-dependent lookup.
3571         * name-lookup.c (lookup_arg_dependent): Implement DR 164 by removing
3572         the optimization that skips namespaces where the functions were
3573         originally found.
3574
3575 2005-07-20  Giovanni Bajo  <giovannibajo@libero.it>
3576
3577         Make CONSTRUCTOR use VEC to store initializers.
3578         * call.c (convert_default_arg): Update call to digest_init.
3579         * class.c (dump_class_hierarchy, dump_array): Update to cope with
3580         VEC in CONSTRUCTOR_ELTS.
3581         * cp-tree.h (EMPTY_CONSTRUCTOR_P): Likewise.
3582         (finish_compound_literal, digest_init): Update declaration.
3583         * decl.c (struct reshape_iter): New data type.
3584         (reshape_init_array): Rename to...
3585         (reshape_init_array_1): Update to cope with VEC in CONSTRUCTOR_ELTS.
3586         (reshape_init): Rewrite from scratch. Split parts into...
3587         (reshape_init_array, reshape_init_vector, reshape_init_class,
3588         reshape_init_r): New functions.
3589         (check_initializer): Update call to reshape_init. Remove obsolete
3590         code.
3591         (initialize_artificial_var, cp_complete_array_type): Update to cope
3592         with VEC in CONSTRUCTOR_ELTS.
3593         * decl2.c (grokfield): Update calls to digest_init.
3594         (mark_vtable_entries): Update to cope with VEC in CONSTRUCTOR_ELTS.
3595         * error.c (dump_expr_init_vec): New function.
3596         (dump_expr): Use dump_expr_init_vec.
3597         * init.c (build_zero_init, build_vec_init): Update to cope with VEC
3598         in CONSTRUCTOR_ELTS.
3599         (expand_default_init): Update call to digest_init.
3600         * parser.c  (cp_parser_postfix_expression): Use a VEC for the
3601         initializers.
3602         (cp_parser_initializer_list): Build a VEC of initializers.
3603         * pt.c (tsubst_copy, tsubst_copy_and_build): Update to cope with VEC
3604         in CONSTRUCTOR_ELTS.
3605         * rtti.c (tinfo_base_init, generic_initializer, ptr_initializer,
3606         ptm_initializer, class_initializer, get_pseudo_ti_init): Use
3607         build_constructor_from_list instead of build_constructor.
3608         * semantics.c (finish_compound_literal): Update call to digest_init.
3609         * tree.c (stabilize_init): Update to cope with VEC in
3610         CONSTRUCTOR_ELTS.
3611         * typeck.c (build_ptrmemfunc1): Likewise.
3612         * typeck2.c: (cxx_incomplete_type_error, split_nonconstant_init_1):
3613         Likewise.
3614         (store_init_value): Use build_constructor_from_list and update call
3615         to digest_init.
3616         (digest_init): Rewrite.
3617         (process_init_constructor): Rewrite from scratch. Split into...
3618         (process_init_constructor_array, picflag_from_initializer,
3619         process_init_constructor_record, process_init_constructor_union):
3620         New functions.
3621         (PICFLAG_ERRONEOUS, PICFLAG_NOT_ALL_CONSTANT, PICFLAG_NOT_ALL_SIMPLE):
3622         New macros.
3623         (build_functional_cast): Use build_constructor_from_list instead of
3624         build_constructor.
3625
3626 2005-07-18  Mark Mitchell  <mark@codesourcery.com>
3627
3628         PR c++/22263
3629         * cp-tree.h (instantiate_decl): Change prototype.
3630         * decl2.c (mark_used): Adjust accordingly.
3631         * pt.c (do_decl_instantiation): Likewise.
3632         (instantiate_class_member): Likewise.
3633         (instantiate_decl): Rename undefined_ok as expl_inst_class_mem_p.
3634         Clear DECL_INTERFACE_KNOWN for an explicitly instantiated template
3635         that has no definition available.
3636         (instantiate_pending_templates): Adjust call to instantiate_decl.
3637
3638 2005-07-17  Mark Mitchell  <mark@codesourcery.com>
3639
3640         PR c++/22139
3641         * cp-tree.h (DECL_TEMPLATE_INFO): Improve documentation.
3642         * decl.c (duplicate_decls): Re-register template specializations
3643         for functions that have DECL_TEMLPLATE_INFO, even if they do not
3644         have DECL_TEMPLATE_INSTANTIATION set.
3645
3646 2005-07-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3647
3648         * call.c (diagnostic_fn_t): New.
3649         (build_temp, convert_like_real): Use diagnostic_fn_t.
3650
3651 2005-07-15  Mark Mitchell  <mark@codesourcery.com>
3652
3653         PR c++/22204
3654         * repo.c (repo_emit_p): Robustify.
3655
3656 2005-07-14  Daniel Berlin  <dberlin@dberlin.org>
3657
3658         Fix PR c++/22452
3659         * tree.c (decl_linkage): Don't check DECL_COMDAT on CONST_DECL.
3660
3661 2005-07-15  Mark Mitchell  <mark@codesourcery.com>
3662
3663         PR c++/22132
3664         * call.c (implicit_conversion): Add c_cast_p parameter.
3665         (standard_conversion): Likewise.  Allow conversions between
3666         differently-qualified pointer types when performing a C-style
3667         cast.
3668         (add_function_candidate): Adjust callee.
3669         (build_builtin_candidate): Likewise.
3670         (build_user_type_conversion_1): Likewise.
3671         (conditional_conversion): Likewise.
3672         (can_convert_arg): Likewise.
3673         (can_convert_arg_bad): Likewise.
3674         (perform_implicit_conversion): Likewise.
3675         * cp-tree.h (comp_ptr_ttypes_const): Declare.
3676         * typeck.c (comp_ptr_ttypes_const): Give it external linkage.
3677         Return bool.
3678
3679 2005-07-12  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
3680             Nathan Sidwell  <nathan@codesourcery.com>
3681
3682         PR c++/20172
3683         * pt.c (tsubst_template_parms): Check for invalid non-type
3684         parameters.
3685
3686 2005-07-09  Andrew Pinski  <pinskia@physics.uc.edu>
3687
3688         * cp-lang.c (shadowed_var_for_decl, decl_shadowed_for_var_lookup,
3689         decl_shadowed_for_var_insert): Move over to cp-objcp-common.c.
3690         (cp_init_ts): Call init_shadowed_var_for_decl.
3691         Remove include of gt-cp-cp-lang.h.
3692         * cp-objcp-common.c (shadowed_var_for_decl,
3693         decl_shadowed_for_var_lookup, decl_shadowed_for_var_insert): Moved from
3694         cp-lang.c.
3695         (init_shadowed_var_for_decl): New function to initialize
3696         shadowed_var_for_decl.
3697         Include gt-cp-cp-objcp-common.h.
3698         * Make-lang.in (gt-cp-lang.h): Remove.
3699         (gt-cp-cp-objcp-common.h): Add.
3700         (cp/cp-lang.o): Remove dependancy on gt-cp-lang.h.
3701         (cp/cp-objcp-common.o): Add dependancy on gt-cp-cp-objcp-common.h.
3702         * config-lang.in (gtfiles): Remove cp-lang.c and Add cp-objcp-common.c.
3703         * cp-tree (init_shadowed_var_for_decl): Add prototype.
3704
3705 2005-07-08  Daniel Berlin  <dberlin@dberlin.org>
3706
3707         * Make-lang.in: Add gt-cp-lang.h.
3708         (cp-lang.o): Ditto.
3709         * class.c (create_vtable_ptr): Stop setting DECL_ASSEMBLER_NAME on
3710         the field.
3711         * config-lang.in: Add cp-lang.c to gtfiles.
3712         * cp-lang.c: Include hashtab.h.
3713         (cp_init_ts): New function.
3714         (LANG_HOOK_INIT_TS): Use macro.
3715         (decl_shadowed_for_var_lookup): New function.
3716         (decl_shadowed_for_var_insert): Ditto.
3717         * cp-tree.h (THUNK_FUNCTION_CHECK): Use decl_common.
3718         (NON_THUNK_FUNCTION_CHECK): Ditto.
3719         (DECL_NAMESPACE_ASSOCIATIONS): Use decl_non_common.
3720         (DECL_INIT_PRIORITY): Ditto.
3721         (DECL_HAS_SHADOWED_FOR_VAR_P): Ditto.
3722         (DECL_SHADOWED_FOR_VAR): Use hashtable.
3723         (SET_DECL_SHADOWED_FOR_VAR): Ditto.
3724         * decl.c (duplicate_decls): Update for new/updated structures.
3725         (poplevel): Use SET_DECL_SHADOWED_FOR_VAR.
3726         * decl2.c (start_static_initialization_or_destruction): Deal with
3727         priority.
3728         * pt.c (tsubst_decl): Check TS_DECL_WRTL before doing
3729         SET_DECL_RTL.
3730         * tree.c (handle_init_priority_attribute): Handle priority.
3731
3732 2005-07-08  Nathan Sidwell  <nathan@codesourcery.com>
3733
3734         PR c++/21799
3735         * pt.c (type_unification_real): Add is_method argument.  Use it
3736         for this pointer unification.
3737         (fn_type_unification): Adjust type_unification_real call.
3738         (unify): Likewise.
3739
3740 2005-07-07  Nathan Sidwell  <nathan@codesourcery.com>
3741
3742         * pt.c (type_unification_real): Remove allow_incomplete argument.
3743         Remove unreachable code.
3744         (fn_type_unification): Adjust call to type_unification_real.
3745         (unify): Likewise.
3746
3747 2005-07-05  Paolo Bonzini  <bonzini@gnu.org>
3748
3749         * Makefile.in (class.o, decl2.o): Adjust dependencies.
3750         * class.c: Include tree-dump.h.
3751         * decl2.c: Include tree-dump.h.
3752
3753 2005-07-02  Gabriel Dos Reis  <gdr@integrable-solutions.net>
3754
3755         * dump.c: Use dump_string_field.
3756
3757 2005-07-03  Joseph S. Myers  <joseph@codesourcery.com>
3758
3759         * cp-tree.h (GCC_DIAG_STYLE): #undef before defining.  Change
3760         minimum GCC version for format checking to 4.1.
3761
3762 2005-07-02  Kazu Hirata  <kazu@codesourcery.com>
3763
3764         * Make-lang.in (cc1plus-checksum.c): Use
3765         build/genchecksum$(build_exeext), not build/genchecksum$(exeext).
3766
3767 2005-07-02  Joseph S. Myers  <joseph@codesourcery.com>
3768
3769         * name-lookup.c, parser.c: Use %q, %< and %> to quote in
3770         diagnostics.
3771
3772 2005-07-02  Zack Weinberg  <zack@codesourcery.com>
3773             Joseph S. Myers  <joseph@codesourcery.com>
3774
3775         * error.c (location_of): Add comment.
3776         (locate_error, cp_error_at, cp_warning_at, cp_pedwarn_at): Remove.
3777         * cp-tree.h (cp_error_at, cp_warning_at, cp_pedwarn_at): Remove.
3778         * call.c, class.c, decl.c, decl2.c, friend.c, init.c,
3779         name-lookup.c, parser.c, pt.c, search.c, semantics.c, typeck.c,
3780         typeck2.c: Use '+' flag instead of %J, cp_error_at, cp_warning_at
3781         or cp_pedwarn_at.  Mark up some diagnostic strings with N_.
3782
3783 2005-06-30  Daniel Berlin  <dberlin@dberlin.org>
3784
3785         * decl.c (require_complete_types_for_parms): Call relayout_decl
3786         instead of layout_decl.
3787
3788 2005-06-30  Zack Weinberg  <zack@codesourcery.com>
3789             Jakub Jelinek  <jakub@redhat.com>
3790
3791         * cp-lang.c: No need to include cxx-pretty-print.h.
3792         * error.c (cp_printer): Update signature.  No need to process
3793         flags.
3794         (print_instantiation_partial_context): Output last newline
3795         with pp_base_newline.
3796         * Make-lang.in: Update dependencies.
3797
3798 2005-06-30  Steven Bosscher  <stevenb@suse.de>
3799
3800         * decl.c (start_decl): Replace DECL_THREAD_LOCAL with
3801         DECL_THREAD_LOCAL_P.
3802         (cp_finish_decl): Likewise.
3803         (grokvardecl): Set the default DECL_TLS_MODEL here.
3804
3805 2005-06-28  Joseph S. Myers  <joseph@codesourcery.com>
3806
3807         * cvt.c (ocp_convert): Use invalid_conversion hook.
3808         * typeck.c (build_binary_op): Use invalid_binary_op hook.
3809         (build_unary_op): Use invalid_unary_op hook.
3810
3811 2005-06-28  Paul Brook  <paul@codesourcery.com>
3812
3813         * Make-lang.in (cp/except.o): Depend on $(TARGET_H)
3814         * except.c: Include target.h.
3815         (init_exception_processing): Initialize unwind_resume_libfunc.
3816         * doc/tm.texi: Document TARGET_ASM_TTYPE
3817
3818 2005-06-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3819
3820         * call.c (build_over_call): Pass in named argument list to
3821         `check_function_arguments'.
3822         * typeck.c (build_function_call): Likewise.
3823
3824 2005-06-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3825
3826         * cp-tree.h (lang_check_failed): Add noreturn attribute.
3827
3828 2005-06-25  Kelley Cook  <kcook@gcc.gnu.org>
3829
3830         * all files: Update FSF address in copyright headers.
3831
3832 2005-06-23  Jason Merrill  <jason@redhat.com>
3833
3834         PR c++/19317
3835         * semantics.c (simplify_aggr_init_expr): Use
3836         CALL_EXPR_RETURN_SLOT_OPT, not CALL_EXPR_HAS_RETURN_SLOT_ADDR.
3837
3838 2005-06-23  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
3839
3840         * pt.c (register_specialization): Remove superfluous assertion.
3841
3842 2005-06-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3843
3844         * call.c (convert_like_real): Add format attribute.
3845         * typeck.c (check_for_casting_away_constness,
3846         build_static_cast_1): Likewise.
3847         * typeck2.c (readonly_error, cxx_incomplete_type_diagnostic):
3848         Likewise.
3849
3850 2005-06-17  Geoffrey Keating  <geoffk@apple.com>
3851
3852         PR c++/17413
3853         * pt.c (type_unification_real): Apply template type deduction even
3854         to procedure parameters that are not dependent on a template
3855         parameter.
3856
3857 2005-06-16  Nathan Sidwell  <nathan@codesourcery.com>
3858
3859         * rtti.c (get_tinfo_decl): Avoid caching tinfo_descs when it might
3860         change.
3861         (create_pseudo_type_info): First parameter is an int.
3862
3863 2005-06-15  Nathan Sidwell  <nathan@codesourcery.com>
3864
3865         PR c++/20678
3866         * error.c (dump_expr) <COMPONENT_REF case>: Check DECL_NAME is not
3867         null.
3868
3869         * Make-lang.in: Reformat some long lines.
3870         (gt-cp-rtti.h): New target.
3871         (cp/rtti.o): Add dependency.
3872         * config-lang.in (gtfiles): Add cp/rtti.c.
3873         * cp-tree.h (CPTI_TI_DESC_TYPE, CPTI_BLTN_DESC_TYPE,
3874         CPTI_PTR_DESC_TYPE, CPTI_ARY_DESC_TYPE, CPTI_FUNC_DESC_TYPE,
3875         CPTI_ENUM_DESC_TYPE, CPTI_CLASS_DESC_TYPE,
3876         CPTI_SI_CLASS_DESC_TYPE, CPTI_VMI_CLASS_DESC_TYPE,
3877         CPTI_PTM_DESC_TYPE, CPTI_BASE_DESC_TYPE): Remove.
3878         (ti_desc_type_node, bltn_desc_type_node, ptr_desc_type_node,
3879         ary_desc_type_node, func_desc_type_node, enum_desc_type_node,
3880         class_desc_type_node, si_class_desc_type_node,
3881         vmi_class_desc_type_node, ptm_desc_type_node,
3882         base_desc_type_node): Remove.
3883         * decl.c: Adjust documentation of global trees.
3884         * rtti.c (TINFO_PSEUDO_TYPE, TINFO_VTABLE_DECL,
3885         TINFO_REAL_NAME): Remove.
3886         (struct tinfo_s): New.
3887         (enum tinfo_kind): New.
3888         (tinfo_descs): New.
3889         (get_tinfo_decl): Adjust use of tinfo descriptor.
3890         (tinfo_base_init, generic_initializer, ptr_initializer,
3891         ptm_initializer, class_initializer): Likewise.
3892         (get_pseudo_ti_init): Take descriptor index. Adjust.
3893         (create_pseudo_type_info): Likewise.
3894         (get_pseudo_ti_desc): Return descriptor index. Adjust.
3895         (create_tinfo_types): Adjust use of create_pseudo_type_info.
3896         (emit_tinfo_decl): Adjust use of tinfo descriptor.
3897
3898 2005-06-14  Roger Sayle  <roger@eyesopen.com>
3899
3900         * decl.c (grokdeclarator): Only check TREE_OVERFLOW on INTEGER_CST.
3901
3902 2005-06-13  Geoffrey Keating  <geoffk@apple.com>
3903
3904         * Make-lang.in (c++.install-man): Doesn't really depend on installdirs.
3905         (rule for installing g++.1 manpage): Does depend on installdirs.
3906
3907 2005-06-13  Nathan Sidwell  <nathan@codesourcery.com>
3908
3909         PR c++/20789
3910         * decl.c (cp_finish_decl): Clear runtime runtime initialization if
3911         in-class decl's initializer is bad.
3912
3913         PR c++/21929
3914         * parser.c (struct cp_parser): Document that scope could be
3915         error_mark.
3916         (cp_parser_diagnose_invalid_type_name): Cope with error_mark for
3917         scope.
3918         (cp_parser_nested_name_specifier): Return NULL_TREE on error.
3919         (cp_parser_postfix_expression): Deal with null or error_mark
3920         scope.
3921         (cp_parser_elaborated_type_specifier): Adjust
3922         cp_parser_nested_name_specifier call.
3923
3924         * parser (cp_parser_skip_to_end_of_block_or_statement): Cleanup.
3925
3926 2005-06-12  Roger Sayle  <roger@eyesopen.com>
3927
3928         PR c++/21930
3929         * error.c (dump_expr): UNARY_PLUS_EXPR need not handle void types.
3930         Treat CONVERT_EXPR identically to NOP_EXPR.
3931
3932 2005-06-10  Aldy Hernandez  <aldyh@redhat.com>
3933
3934         PR c++/10611
3935         * cvt.c (build_expr_type_conversion): Same.
3936         * typeck.c (build_binary_op): Handle vectors.
3937         (common_type): Same.
3938         (type_after_usual_arithmetic_conversions): Same.
3939
3940 2005-06-08  Nathan Sidwell  <nathan@codesourcery.com>
3941
3942         PR c++/19497
3943         * cp-tree.def (USING_DECL): Update documentation.
3944         * cp-tree.h (DECL_DEPENDENT_P): New.
3945         (USING_DECL_DECLS, USING_DECL_SCOPE): New.
3946         * class.c (handle_using_decl): Move most of the processing to ...
3947         * name-lookup.c (do_class_using_decl): ... here.  Make stricter.
3948         (push_using_decl): Use USING_DECL_SCOPE.
3949         (cp_emit_debug_info_for_using): Make extern.
3950         * cxx-pretty-print.c (pp_cxx_statement) <USING_DECL case>: Adjust.
3951         * name-lookup.h (cp_emit_debug_info_for_using): Declare.
3952         * pt.c (tsubst_decl) <USING_DECL case>: Use do_class_using_decl
3953         when tsubsting.
3954         (tsubst_expr): Use USING_DECL_SCOPE.
3955         * search.c (lookup_field_1): Use DECL_DEPENDENT_P.
3956         * semantics.c (finish_member_declaration): Likewise.
3957
3958 2005-06-08  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
3959
3960         PR c++/19894
3961         * pt.c (tsubst): Reject pointer-to-member of type void.
3962
3963         PR c++/20563
3964         * parser.c (cp_parser_label_declaration): Deal with invalid/missing
3965         identifiers.
3966
3967 2005-06-07  Nathan Sidwell  <nathan@codesourcery.com>
3968
3969         * cp-tree.def (DEFAULT_ARG): Adjust documentation.
3970         * cp-tree.h (DEFARG_INSTANTIATIONS): New.
3971         (struct tree_default_arg): Add instantiations member.
3972         * parser.c (cp_parser_late_parsing_default_args): Adjust to use a
3973         VEC.
3974         * pt.c (tsubst_arg_types): Likewise.
3975
3976         * parser.c (cp_parser_late_parsing_default_args): Fix overeager
3977         assert in previous patch.
3978
3979 2005-06-06  Jakub Jelinek  <jakub@redhat.com>
3980
3981         * error.c (locate_error): Use gmsgid instead of msgid for argument
3982         name.
3983         (cp_error_at, cp_warning_at, cp_pedwarn_at): Likewise.
3984
3985 2005-06-06  Nathan Sidwell  <nathan@codesourcery.com>
3986
3987         PR 21903
3988         * cp-tree.def (DEFAULT_ARG): Document TREE_CHAIN use.
3989         * parser.c (cp_parser_late_parsing_default_args): Propagate parsed
3990         argument to any early instantiations.
3991         * pt.c (tsubst_arg_types): Chain early instantiation of default arg.
3992
3993         PR c++/20637
3994         * cp-tree.h (add_method): Add using_decl parameter.
3995         * class.c (add_method): Add using_decl parameter.  Adjust error
3996         messages.
3997         (handle_using_decl): Pass the using decl to add_method.
3998         (clone_function_decl): Adjust add_member calls.
3999         * decl2.c (check_classfn): Likewise.
4000         * method.c (lazily_declare_fn): Likewise.
4001         * semantics.c (finish_member_declaration): Likewise.
4002
4003         * method.c (synthesize_method): Use inform, not warning.
4004
4005 2005-06-06  Hans-Peter Nilsson  <hp@axis.se>
4006
4007         * config-lang.in (target_libs): Remove target-gperf.
4008
4009 2005-06-05  Mark Mitchell  <mark@codesourcery.com>
4010
4011         PR c++/21619
4012         * cp-tree.h (DECL_IS_BUILTIN_CONSTANT_P): New macro.
4013         * parser.c (cp_parser_postfix_expression): Allow non-constant
4014         expressions as arguments to __builtin_constant_p.
4015         * tree.c (builtin_valid_in_constant_expr_p): Use
4016         DECL_IS_BUILTIN_CONSTANT_P.
4017
4018 2005-06-03  Mark Mitchell  <mark@codesourcery.com>
4019
4020         PR c++/21853
4021         * typeck.c (casts_away_constness_r): Do not drop cv-qualifiers on
4022         the pointed-to type for a pointer-to-member.
4023
4024         PR c++/21336
4025         * cp-tree.h (grok_op_properties): Remove friendp parameter.
4026         * decl.c (grokfndecl): Adjust call.
4027         (grok_op_properties): Determine the class of which the function is
4028         a member by looking at its DECL_CONTEXT, not current_class_type.
4029         * pt.c (tsubst_decl): Adjust call to grok_op_properties.
4030
4031 2005-06-02  Nathan Sidwell  <nathan@codesourcery.com>
4032
4033         * method.c (synthesize_method): Add addtional arg to warning call.
4034
4035         PR c++/21280
4036         * Make-lang.in (method.o): Add diagnostic.h
4037         * decl.c (start_preparsed_function): Use decl's location for file
4038         info.
4039         * decl2.c (cp_finish_file): Set input_location before synthesizing
4040         a function.
4041         (mark_used): When deferring a synthesized function, save current
4042         location.  Do not set function's location when actually
4043         synthesizing it.
4044         * method.c: #include diagnostic.h.
4045         (synthesize_method): Set the functions source location.  Show
4046         needed location if errors are emitted.
4047
4048         * decl.c (start_decl): Simplify specialization handling. Remove
4049         unneeded CLASSTYPE_TEMPLATE_INSTANTIATION check.
4050         * mangle.c (discriminator_for_local_entity): Use VEC_index.
4051
4052         PR c++/20350
4053         * decl.c (duplicate_decls): Copy all of DECL_USE_TEMPLATE.
4054
4055         PR c++/21151
4056         * name-lookup.c (pushtag): Push local class even in a template.
4057
4058 2005-05-31  Nathan Sidwell  <nathan@codesourcery.com>
4059
4060         PR c++/21165
4061         * init.c (integral_constant_value): Check the type of the
4062         initializer, not the decl.
4063
4064 2005-05-30  Mark Mitchell  <mark@codesourcery.com>
4065
4066         PR c++/21784
4067         * name-lookup.c (do_nonmember_using_decl): Ignore builtin
4068         functions, even when the used name is not a function.
4069
4070 2005-05-30  Kazu Hirata  <kazu@cs.umass.edu>
4071
4072         * operators.def, optimize.c: Update copyright.
4073
4074 2005-05-28  Mark Mitchell  <mark@codesourcery.com>
4075
4076         PR c++/21210
4077         * call.c (standard_conversion): Permit conversions to complex
4078         types if conversion to the corresponding scalar type would be
4079         permitted.
4080
4081         PR c++/21340
4082         * method.c (implicitly_declare_fn): Clear processing_template_decl
4083         when generating implicit declaration.
4084
4085 2005-05-27  Mark Mitchell  <mark@codesourcery.com>
4086
4087         PR c++/21614
4088         * typeck.c (get_member_function_from_ptrfunc): Do not attempt
4089         conversions to base classes of incomplete types.
4090
4091 2005-05-27  Ian Lance Taylor  <ian@airs.com>
4092
4093         * semantics.c (add_stmt): Add C++ frontend specific version.
4094         * cp-tree.h (STMT_IS_FULL_EXPR_P): Define.
4095         (stmts_are_full_exprs_p): Declare.
4096
4097 2005-05-27  Roger Sayle  <roger@eyesopen.com>
4098             Giovanni Bajo  <giovannibajo@gcc.gnu.org>
4099
4100         * cp-tree.def (UNARY_PLUS_EXPR): New C++ unary tree code.
4101         * parser.c (cp_parser_unary_expression): Use UNARY_PLUS_EXPR instead
4102         of CONVERT_EXPR.
4103         (cp_parser_unary_expression): Likewise.
4104         * typeck.c (build_unary_op): Likewise.
4105         * call.c (add_builtin_candidate, build_new_op): Likewise.
4106         * error.c (dump_expr): Likewise.
4107         * pt.c (tsubst_copy, tsubst_copy_and_build): Likewise.
4108         * decl.c (ambi_op_p, grok_op_properties): Likewise.
4109         * dump.c (dump_op): Likewise.
4110         * lex.c (init_operators): Likewise.
4111         * operators.def ("+"): Likewise.
4112         * cp-gimplify.c (cp_gimplify_expr): Handle UNARY_PLUS_EXPR like a
4113         conversion, if the result and argument types differ.
4114         * tree.c (fold_if_not_in_template): Fold UNARY_PLUS_EXPR much
4115         like a NOP_EXPR when !processing_template_decl.
4116
4117         * cxx-pretty-print.c (pp_cxx_cast_expression): Prototype.
4118         (pp_cxx_unary_expression): Handle new UNARY_PLUS_EXPR tree code.
4119
4120 2005-05-27  Nathan Sidwell  <nathan@codesourcery.com>
4121
4122         PR c++/21455
4123         * typeck.c (get_delta_difference): Cope with incomplete but equal
4124         classes.  Reorder if.
4125
4126         PR c++/21681
4127         * parser.c (cp_parser_late_parsing_for_member): Disable access
4128         checking for template functions.
4129
4130 2005-05-26  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
4131
4132         PR c++/21768
4133         * pt.c (redeclare_class_template): Change error message according
4134         to coding conventions.
4135
4136 2005-05-26  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
4137
4138         * call.c (build_op_delete_call): Fix quoting in error message.
4139
4140 2005-05-25  Richard Henderson  <rth@redhat.com>
4141
4142         PR libgcj/21692
4143         * cp-tree.h (make_alias_for): Declare.
4144         * decl2.c (build_java_method_aliases): New.
4145         (cp_finish_file): Call it.
4146         * method.c (make_alias_for): Split out from ...
4147         (make_alias_for_thunk): ... here.
4148
4149 2005-05-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
4150
4151         PR c++/21686
4152         * semantics.c (finish_id_expression): Fix quoting in error message.
4153
4154 2005-05-25  DJ Delorie  <dj@redhat.com>
4155
4156         * decl.c (duplicate_decls): Move warning control from if() to
4157         warning(OPT_*).
4158         * name-lookup.c (parse_using_directive): Likewise.
4159         * parser.c (cp_parser_elaborated_type_specifier): Likewise.
4160         (cp_parser_init_declarator): Likewise.
4161         * tree.c (handle_com_interface_attribute): Likewise.
4162
4163 2005-05-24  Ziemowit Laski  <zlaski@apple.com>
4164
4165         * class.c (layout_class_type): Do not issue C++ ABI warnings
4166         for ObjC structs.
4167         * decl.c (objc_mark_locals_volatile): Streamline by calling
4168         objc_volatilize_decl().
4169         * parser.c (cp_parser_objc_message_expression): Allow simple
4170         type specifiers (instead of merely type names) as message
4171         receivers.
4172         * pt.c (template_args_equal): Do not call objc_comptypes().
4173         * typeck.c (composite_pointer_type): If both pointers are
4174         ObjC-esque, arbitrarily choose the first; do not call
4175         objc_comptypes().
4176         (comptypes): Do not call objc_comptypes().
4177         (convert_for_assignment): Call objc_compare_types().
4178         (comp_ptr_ttypes_real): Call objc_type_quals_match() before
4179         concluding that types do not match.
4180
4181 2005-05-24  Andrew Pinski  <pinskia@physics.uc.edu>
4182
4183         PR C++/21645
4184         * optimize.c (update_cloned_parm): Copy the TYPE also from the
4185         original one.
4186
4187 2005-05-19  Jakub Jelinek  <jakub@redhat.com>
4188
4189         PR c++/21495
4190         * decl.c (grokdeclarator): Fix "storage class specified for"
4191         error reporting.
4192
4193 2005-05-19  Kazu Hirata  <kazu@cs.umass.edu>
4194
4195         * parser.c: Fix comment typos.
4196
4197 2005-05-18  Geoffrey Keating  <geoffk@apple.com>
4198
4199         * Make-lang.in (cc1plus-dummy): New.
4200         (cc1plus-checksum.c): New.
4201         (cc1plus-checksum.o): New.
4202         (cc1plus): Add cc1plus-checksum.o.
4203
4204 2005-05-17  H.J. Lu  <hongjiu.lu@intel.com>
4205
4206         PR C++/19664
4207         * decl2.c (determine_visibility): Don't set visibility to
4208         hidden if it has been set explicitly by user.
4209
4210 2005-05-17  Ziemowit Laski  <zlaski@apple.com>
4211             Mike Stump  <mrs@apple.com>
4212
4213         Yet more Objective-C++...
4214
4215         * cp-objcp-common.h (cxx_get_alias_set): Move from
4216         here...
4217         (cxx_warn_unused_global_decl): Likewise.
4218         (cp_expr_size): Likewise.
4219         (cp_tree_size): Likewise.
4220         (cp_var_mod_type_p): Likewise.
4221         (cxx_initialize_diagnostics): Likewise.
4222         (cxx_types_compatible_p): Likewise.
4223         * cp-tree.h: to here.
4224         (do_poplevel): Add.
4225         * lex.c (D_OBJC): Add.
4226         (init_reswords): Add.
4227         * Make-lang.in (cp/pt.o): Add cp/cp-objcp-common.h.
4228         * parser.c: Add c-common.h include.
4229         * pt.c: Add c-common.h and cp-objcp-common.h includes.
4230         (template_args_equal): Use objc_comptypes as well.
4231         (tsubst_copy_and_build): Use objcp_tsubst_copy_and_build as well.
4232         * semantics.c (do_poplevel): Remove static.
4233
4234         * decl.c (objc_mark_locals_volatile): Don't change decls that are
4235         already ok.
4236         * decl2.c (generate_ctor_or_dtor_function): Add code to initialize
4237         Objective C++ early enough.
4238         * lex.c (struct resword reswords): Add Objective-C++ support.
4239         * parser.c (cp_lexer_get_preprocessor_token): Add Objective-C++.
4240         (cp_parser_objc_message_receiver): Add.
4241         (cp_parser_objc_message_args): Likewise.
4242         (cp_parser_objc_message_expression): Likewise.
4243         (cp_parser_objc_encode_expression): Likewise.
4244         (cp_parser_objc_defs_expression): Likewise.
4245         (cp_parser_objc_protocol_expression): Likewise.
4246         (cp_parser_objc_selector_expression): Likewise.
4247         (cp_parser_objc_expression): Likewise.
4248         (cp_parser_objc_visibility_spec): Likewise.
4249         (cp_parser_objc_method_type): Likewise.
4250         (cp_parser_objc_protocol_qualifiers): Likewise.
4251         (cp_parser_objc_typename): Likewise.
4252         (cp_parser_objc_selector_p): Likewise.
4253         (cp_parser_objc_selector): Likewise.
4254         (cp_parser_objc_method_keyword_params): Likewise.
4255         (cp_parser_objc_method_tail_params_opt): Likewise.
4256         (cp_parser_objc_interstitial_code): Likewise.
4257         (cp_parser_objc_method_signature): Likewise.
4258         (cp_parser_objc_method_prototype_list): Likewise.
4259         (cp_parser_objc_method_definition_list): Likewise.
4260         (cp_parser_objc_class_ivars): Likewise.
4261         (cp_parser_objc_identifier_list): Likewise.
4262         (cp_parser_objc_alias_declaration): Likewise.
4263         (cp_parser_objc_class_declaration): Likewise.
4264         (cp_parser_objc_protocol_declaration): Likewise.
4265         (cp_parser_objc_protocol_refs_opt): Likewise.
4266         (cp_parser_objc_superclass_or_category): Likewise.
4267         (cp_parser_objc_class_interface): Likewise.
4268         (cp_parser_objc_class_implementation): Likewise.
4269         (cp_parser_objc_end_implementation): Likewise.
4270         (cp_parser_objc_declaration): Likewise.
4271         (cp_parser_objc_try_catch_finally_statement): Likewise.
4272         (cp_parser_objc_synchronized_statement): Likewise.
4273         (cp_parser_objc_throw_statement): Likewise.
4274         (cp_parser_objc_statement): Likewise.
4275         (cp_parser_primary_expression): Add Objective-C++.
4276         (cp_parser_statement): Likewise.
4277         (cp_parser_declaration): Likewise.
4278         (cp_parser_simple_type_specifier): Likewise.
4279         (cp_parser_type_name): Likewise.
4280         (cp_parser_parameter_declaration_list): Likewise.
4281         (cp_parser_member_declaration) Likewise.
4282         * tree.c: Include debug.h.
4283         * typeck.c (composite_pointer_type): Add Objective-C++ support.
4284         (finish_class_member_access_expr): Likewise.
4285         (build_function_call): Allow objc to rewrite FUNCTION_DECLs.
4286         (build_modify_expr): Allow objc to generate write barriers.
4287
4288         * Make-lang.in (cp/tree.o): Add debug.h.
4289         * tree.c (lvalue_p_1, case CONST_DECL): Add.
4290
4291 2005-05-18  Jan Hubicka  <jh@suse.cz>
4292
4293         * method.c: Include tree-pass.h
4294         (use_thunk): Lower body before expanding.
4295
4296 2005-05-17  Jakub Jelinek  <jakub@redhat.com>
4297
4298         PR c++/21454
4299         * decl.c (maybe_deduce_size_from_array_init): Call
4300         cp_apply_type_quals_to_decl after completing array type.
4301
4302 2005-05-16  Richard Henderson  <rth@redhat.com>
4303
4304         * decl.c (build_library_fn_1): Move setting TREE_NOTHROW ...
4305         (build_library_fn): ... here.
4306
4307 2005-05-12  Ian Lance Taylor  <ian@airs.com>
4308
4309         * cp-tree.h (cp_stmt_codes): Don't define.
4310         (statement_code_p): Declare.
4311         (STATEMENT_CODE_P): Define.
4312         * lex.c (statement_code_p): Define.
4313         (cxx_init): Use actual codes in stmt_codes initializer, not
4314         cp_stmt_codes macro.  Initialize statement_code_p directly, rather
4315         than using INIT_STATEMENT_CODES.
4316
4317 2005-05-09  Mark Mitchell  <mark@codesourcery.com>
4318
4319         * typeck.c (build_unary_op): Do not resort to address arithmetic
4320         when taking the address of a COMPONENT_REF.
4321
4322 2005-05-08  Kazu Hirata  <kazu@cs.umass.edu>
4323
4324         * class.c (vtbl_init_data_s): Change the type of fns to
4325         VEC(tree,gc)*.
4326         (build_vtbl_initializer, add_vcall_offset, add_vcall_offset):
4327         Use VEC instead of VARRAY.
4328
4329 2005-05-07  Richard Sandiford  <rsandifo@redhat.com>
4330
4331         * mangle.c: Remove a reference to the MIPS -mint64 option.
4332
4333 2005-05-07  Kazu Hirata  <kazu@cs.umass.edu>
4334
4335         * decl.c (wrapup_globals_for_namespace): Use VEC instead of
4336         VARRAY.
4337         * name-lookup.c (add_decl_to_level, begin_scope): Likewise.
4338         * name-lookup.h (cp_binding_level): Change the type of
4339         static_decls to VEC(tree,gc)*.
4340
4341         * mangle.c (globals): Change the type of substitutions to
4342         VEC(tree,gc)*.
4343         (dump_substitution_candidates, add_substitution,
4344         find_substitution, finish_mangling, init_mangle): Use VEC
4345         instead of VARRAY.
4346
4347 2005-05-06  Kazu Hirata  <kazu@cs.umass.edu>
4348
4349         * decl2.c (spew_debug): Remove.
4350
4351         * decl2.c (ssdf_decls, start_static_storage_duration_function,
4352         generate_ctor_or_dtor_function): Use VEC instead of VARRAY.
4353
4354         * decl2.c (pending_statics, note_vague_linkage_var,
4355         cp_finish_file): Use VEC instead of VARRAY.
4356         (pending_statics_used): Remove.
4357
4358 2005-05-05  Kazu Hirata  <kazu@cs.umass.edu>
4359
4360         * decl2.c (deferred_fns, note_vague_linkage_fn,
4361         cp_finish_file): Use VEC instead of VARRAY.
4362
4363 2005-05-05  Mark Mitchell  <mark@codesourcery.com>
4364
4365         PR c++/21352
4366         * pt.c (build_non_dependent_expr): Use is_overloaded_fn.
4367
4368 2005-05-05  Kazu Hirata  <kazu@cs.umass.edu>
4369
4370         * pt.c: Fix a comment typo.
4371
4372 2005-05-04  Kazu Hirata  <kazu@cs.umass.edu>
4373
4374         * cp-tree.h (language_function): Change the type of
4375         x_local_names to VEC.
4376         * decl.c (push_local_name): Adjust uses of local_names.
4377
4378 2005-05-03  Kazu Hirata  <kazu@cs.umass.edu>
4379
4380         * friend.c, lex.c, mangle.c, repo.c: Update copyright.
4381
4382 2005-05-02  Kazu Hirata  <kazu@cs.umass.edu>
4383
4384         * class.c (local_classes, init_class_processing): Use VEC
4385         instead of VARRAY.
4386         * cp-tree.h (local_classes): Likewise.
4387         * mangle.c (discriminator_for_local_entity): Likewise.
4388         * name-lookup.c (pushtag): Likewise.
4389
4390         * class.c (current_lang_depth, push_lang_context,
4391         pop_lang_context): Use VEC instead of VARRAY.
4392         * cp-tree.h (saved_scope): Use VEC for lang_base instead of
4393         VARRAY.
4394         * name-lookup.c (push_to_top_level): Use VEC instead of
4395         VARRAY.
4396
4397 2005-05-02  Paolo Bonzini  <bonzini@gnu.org>
4398
4399         * semantics.c (finish_call_expr): Call resolve_overloaded_builtin
4400         for BUILT_IN_MD built-ins.
4401
4402 2005-05-02  Michael Matz  <matz@suse.de>
4403
4404         PR c++/19542
4405         * cp-tree.h (cp_tree_index): Remove CPTI_NULL, to be defined in C
4406         common frontend.
4407         (null_node): Remove.
4408         * lex.c (cxx_init): Move null_node initialisation to C common frontend.
4409
4410 2005-04-25  Ian Lance Taylor  <ian@airs.com>
4411
4412         * cp-tree.def: Add EXPR_STMT.
4413         * cp-tree.h (cp_stmt_codes): Add EXPR_STMT.
4414         (EXPR_STMT_EXPR): Define.
4415         * cp-gimplify.c: Include "flags.h".
4416         (gimplify_expr_stmt): New static function.
4417         (cp_gimplify_expr): Handle EXPR_STMT.
4418         * cxx-pretty-print.c (pp_cxx_statement): Use pp_cxx_expression
4419         rather than pp_expression.
4420         (pp_cxx_statement): Handle EXPR_STMT.
4421         * dump.c (cp_dump_tree): Handle EXPR_STMT.
4422         * lex.c (cxx_init): Don't use c_common_stmt_codes in stmt_codes
4423         initializer.
4424
4425 2005-04-25  Andrew Pinski  <pinskia@physics.uc.edu>
4426
4427         PR C++/21188
4428         * rtti.c (ifnonnull): Cast the zero comparison operand
4429         to the correct type.
4430
4431 2005-04-24  Jakub Jelinek  <jakub@redhat.com>
4432
4433         PR middle-end/20991
4434         * class.c: Include cgraph.h.
4435         (cp_fold_obj_type_ref): Set node->local.vtable_method.
4436         * Make-lang.in (cgraph.o): Depend on $(CGRAPH_H).
4437
4438 2005-04-12  Markus F.X.J. Oberhumer  <markus@oberhumer.com>
4439
4440         * mangle.c (write_builtin_type): Handle integer types which are
4441         not one of the shared integer type nodes and emit a "vendor
4442         extended builtin type" with an encoding in the form of "u5int96".
4443
4444 2005-04-24  Ian Lance Taylor  <ian@airs.com>
4445
4446         * cp-tree.def (USING_STMT): Change class to tcc_statement.
4447         (TRY_BLOCK, EH_SPEC_BLOCK, HANDLER, CLEANUP_STMT): Likewise.
4448         (IF_STMT, FOR_STMT, WHILE_STMT, DO_STMT): Likewise.
4449         (BREAK_STMT, CONTINUE_STMT, SWITCH_STMT): Likewise.
4450
4451 2005-04-23  DJ Delorie  <dj@redhat.com>
4452
4453         * call.c, class.c, cvt.c, decl.c, decl2.c, except.c, friend.c,
4454         init.c, lex.c, mangle.c, method.c, name-lookup.c, parser.c,
4455         repo.c, rtti.c, tree.c, typeck.c, typeck2.c: Adjust warning()
4456         callers.
4457
4458 2005-04-22  Per Bothner  <per@bothner.com>
4459
4460         * decl.c (make_rtl_for_nonlocal_decl): Don't try get_fileinfo if
4461         input_filename is NULL, as it is for (say) __PRETTY_FUNCTION__.
4462
4463 2005-04-22  Alexandre Oliva  <aoliva@redhat.com>
4464
4465         PR c++/21087
4466         * name-lookup.c (push_overloaded_decl): Do not overload with
4467         non-duplicate anticipated built-in.
4468
4469 2005-04-21  Kazu Hirata  <kazu@cs.umass.edu>
4470
4471         * cp-tree.h (THROW_NAME, AUTO_VTABLE_NAME, AUTO_TEMP_FORMAT,
4472         VTABLE_BASE, VTABLE_NAME_PREFIX, STATIC_NAME_FORMAT): Remove.
4473
4474 2005-04-21  Nathan Sidwell  <nathan@codesourcery.com>
4475
4476         * cp-tree.h: Adjust for new VEC API.
4477         Define VEC(tree_pair_s,gc).
4478         (struct save_scope): Adjust.
4479         (struct lang_type_class): Adjust.
4480         (unemitted_tinfo_decls): Adjust.
4481         * class.c (add_method, resort_type_method_vec,
4482         finish_struct_methods, struct find_final_overrider_data,
4483         dfs_find_final_overrider_pre, find_final_overrider,
4484         get_vcall_index, warn_hidden, walk_subobject_offsets,
4485         check_methods, fixup_inline_methods, end_of_class,
4486         warn_about_ambiguous_bases, finish_struct, build_vtbl_initializer,
4487         add_vcall_offset): Adjust.
4488         * decl.c (xref_basetypes, finish_method): Adjust.
4489         * decl2.c (check_classfn): Adjust.
4490         * init.c (sort_mem_initializers, push_base_cleanups): Adjust.
4491         * method.c (do_build_copy_constructor): Adjust.
4492         * name-lookup.c (new_class_binding, store_binding,
4493         store_bindings, store_class_bindings): Adjust.
4494         * name-lookup.h: Define VEC(cxx_saved_binding,gc),
4495         VEC(cp_class_binding,gc).
4496         (struct cp_binding_level): Adjust.
4497         * parser.c: Define VEC(cp_token_position,heap).
4498         (struct cp_lexer): Adjust.
4499         (cp_lexer_new_main, cp_lexer_new_from_tokens, cp_lexer_destroy,
4500         cp_lexer_save_tokens): Adjust.
4501         * pt.c (retrieve_specialization,
4502         check_explicit_specialization): Adjust.
4503         * rtti.c (unemitted_tinfo_decls): Adjust.
4504         (init_rtti_processing, get_tinfo_decl, get_pseudo_ti_init,
4505         get_pseudo_ti_desc): Adjust.
4506         * search.c (dfs_access_in_type, lookup_conversion_operator,
4507         lookup_fnfields_1, dfs_walk_once, dfs_walk_once_accessible,
4508         dfs_get_pure_virtuals, lookup_conversions_r, binfo_for_vbase): Adjust.
4509         * semantics.c: Define VEC(deferred_access,gc).
4510         (push_deferring_access_checks): Adjust.
4511         * typeck2.c (abstract_virtuals_error): Adjust.
4512
4513 2005-04-20  Ian Lance Taylor  <ian@airs.com>
4514
4515         * cp-tree.def: Add STMT_EXPR.
4516         * cp-tree.h (STMT_EXPR_NO_SCOPE): Define.
4517         (STMT_EXPR_STMT): Define.
4518         * cxx-pretty-print.c (pp_cxx_primary_expression): Handle
4519         STMT_EXPR.
4520         (pp_cxx_expression): Likewise.
4521         (pp_cxx_statement): Call pp_cxx_statement, not pp_statement.
4522         * dump.c (cp_dump_tree): Handle STMT_EXPR.
4523
4524 2005-04-18  Kazu Hirata  <kazu@cs.umass.edu>
4525
4526         * decl.c (expand_static_init): Call build2 and build3 instead
4527         of build.
4528
4529         * cp-tree.h (VPTR_NAME, VPTR_NAME_P): Remove.
4530
4531 2005-04-17  Ian Lance Taylor  <ian@airs.com>
4532
4533         * cp-tree.def: Add SIZEOF_EXPR, ARROW_EXPR and ALIGNOF_EXPR.
4534         * cxx-pretty-print.c (pp_cxx_postfix_expression): Handle
4535         ARROW_EXPR.
4536         (pp_cxx_unary_expression): Handle SIZEOF_EXPR and ALIGNOF_EXPR.
4537         (pp_cxx_expression): Handle ARROW_EXPR, SIZEOF_EXPR, and
4538         ALIGNOF_EXPR.
4539         * typeck.c (cxx_sizeof_or_alignof_type): Update call to
4540         c_sizeof_or_alignof_type for change in parameter type.
4541
4542 2005-04-16  Mark Mitchell  <mark@codesourcery.com>
4543
4544         PR c++/21025
4545         * typeck.c (cxx_sizeof_or_alignof_type): Check whether the type to
4546         which sizeof/alignof is dependent, rather than just whether we are
4547         processing_template_decl.
4548
4549 2005-04-17  Kazu Hirata  <kazu@cs.umass.edu>
4550
4551         * cp-tree.h (LOOKUP_GLOBAL): Remove.
4552         (LOOKUP_ONLYCONVERTING, DIRECT_BIND, LOOKUP_NO_CONVERSION,
4553         LOOKUP_DESTRUCTOR, LOOKUP_NO_TEMP_BIND, LOOKUP_PREFER_TYPES,
4554         LOOKUP_PREFER_NAMESPACES, LOOKUP_CONSTRUCTOR_CALLABLE): Adjust
4555         their values.
4556
4557 2005-04-15  Richard Henderson  <rth@redhat.com>
4558
4559         PR middle-end/14311
4560         * semantics.c (finish_call_expr): Call resolve_overloaded_builtin.
4561
4562 2005-04-15  Kazu Hirata  <kazu@cs.umass.edu>
4563
4564         * cp-tree.h (lang_type_class): Remove redefined.  Move
4565         java_interface into where redefined was.  Increment the width
4566         of dummy.
4567         (TYPE_REDEFINED): Remove.
4568
4569 2005-04-14  Kazu Hirata  <kazu@cs.umass.edu>
4570
4571         * cp-tree.h (SET_TMPL_ARG, ENUM_TI_TEMPLATE, ENUM_TI_ARGS,
4572         CLASSTYPE_TEMPLATE_LEVEL): Remove.
4573
4574 2005-04-11  Mark Mitchell  <mark@codesourcery.com>
4575
4576         * decl2.c (determine_visibility): Don't use export_class_data.
4577         (import_export_decl): Honor TARGET_CXX_CLASS_DATA_ALWAYS_WEAK and
4578         TARGET_CXX_DETERMINE_CLASS_DATA_VISIBILITY.
4579
4580 2005-04-09  Kazu Hirata  <kazu@cs.umass.edu>
4581
4582         * cp-tree.h (cxx_alignof): Remove.
4583
4584         * cp-tree.h (DECL_ARRAY_DELETE_OPERATOR_P): Remove.
4585
4586         * cp-tree.h (EXCEPTION_CLEANUP_NAME, B_SET, B_CLR, B_TST,
4587         CONV_STATIC_CAST): Remove.
4588
4589         * pt.c (UNIFY_ALLOW_MAX_CORRECTION): Remove.
4590
4591         * cp-tree.h (VF_BINFO_VALUE, VF_BASETYPE_VALUE): Remove.
4592
4593         * cp-tree.h (cp_deprecated): Remove.
4594
4595 2005-04-08  Ian Lance Taylor  <ian@airs.com>
4596
4597         * cp-tree.def: Define FOR_STMT, WHILE_STMT, DO_STMT, BREAK_STMT,
4598         CONTINUE_STMT, SWITCH_STMT.
4599         * cp-tree.h (cp_stmt_codes): Add FOR_STMT, WHILE_STMT, DO_STMT,
4600         BREAK_STMT, CONTINUE_STMT, SWITCH_STMT.
4601         (WHILE_COND, WHILE_BODY): Define.
4602         (DO_COND, DO_BODY): Define.
4603         (FOR_INIT_STMT, FOR_COND, FOR_EXPR, FOR_BODY): Define.
4604         (SWITCH_STMT_COND, SWITCH_STMT_BODY, SWITCH_STMT_TYPE): Define.
4605         * cp-gimplify.c (enum bc_t): Define.
4606         (struct cp_gimplify_ctx, ctxp): Define.
4607         (push_context, pop_context): New static functions.
4608         (begin_bc_block, finish_bc_block): New static functions.
4609         (build_bc_goto): New static function.
4610         (gimplify_cp_loop, gimplify_for_stmt): New static functions.
4611         (gimplify_while_stmt, gimplify_do_stmt): Likewise.
4612         (gimplify_switch_stmt): Likewise.
4613         (cp_gimplify_expr): Handle FOR_STMT, WHILE_STMT, DO_STMT,
4614         SWITCH_STMT, CONTINUE_STMT, BREAK_STMT.
4615         (cp_genericize): Call push_context and pop_context.
4616         * semantics.c (finish_break_stmt): Just call build_stmt
4617         (BREAK_STMT) rather than build_break_stmt.
4618         (finish_continue_stmt): Corresponding change.
4619         * decl.c (pop_switch): Update call to c_do_switch_warnings for new
4620         parameters.
4621         * cxx-pretty-print.c (pp_cxx_statement): Handle SWITCH_STMT,
4622         WHILE_STMT, DO_STMT, FOR_STMT, BREAK_STMT, CONTINUE_STMT.
4623         * dump.c (cp_dump_tree): Likewise.
4624
4625 2005-04-08  Mark Mitchell  <mark@codesourcery.com>
4626
4627         PR c++/20905
4628         * parser.c (cp_parser_type_specifier_seq): Add is_condition
4629         parameter.
4630         (cp_parser_new_type_id): Pass it.
4631         (cp_parser_condition): Likewise.
4632         (cp_parser_conversion_type_id): Likewise.
4633         (cp_parser_type_id): Likewise.
4634         (cp_parser_type_specifier_seq): In a condition, do not allow
4635         invalid type-specifier combinations.
4636         (cp_parser_exception_declaration): Adjust call to
4637         cp_parser_type_specifier_seq.
4638
4639         * cp-tree.def (TINST_LEVEL): Document TINST_IN_SYSTEM_HEADER_P.
4640         * cp-tree.h (struct tinst_level): Add in_system_header_p.
4641         (TINST_IN_SYSTEM_HEADER_P): New macro.
4642         (make_tinst_level): Remove.
4643         * pt.c (lookup_template_class): Preserve DECL_IN_SYSTEM_HEADER on
4644         the instantiated class.
4645         (push_tinst_level): Do not use make_tinst_level.  Set
4646         TINST_IN_SYSTEM_HEADER_P.
4647         (pop_tinst_level): Likewise.
4648         (instantiate_class_template): Set in_system_header.
4649         (instantiate_pending_templates): Likewise.
4650         * tree.c (make_tinst_level): Remove.
4651
4652 2005-04-06  Joseph S. Myers  <joseph@codesourcery.com>
4653
4654         * decl.c (start_decl): Apply pending #pragma weak regardless of
4655         scope.
4656
4657 2005-04-06  Mark Mitchell  <mark@codesourcery.com>
4658
4659         PR c++/20212
4660         * pt.c (regenerate_decl_from_template): Copy attributes for
4661         parameters from the pattern to the instantiation.
4662
4663 2005-04-05  Mark Mitchell  <mark@codesourcery.com>
4664
4665         PR c++/20734
4666         * cp-tree.def (OFFSET_REF): Correct comments.
4667         * init.c (build_offset_ref): Remove misleading comment.
4668         * typeck.c (build_unary_op): Handle pointer-to-member creation
4669         here, rather than ...
4670         (unary_complex_lvalue): ... here.
4671
4672 2005-04-06  Jason Merrill  <jason@redhat.com>
4673
4674         PR c++/19312
4675         * tree.c (stabilize_init): Don't bother trying to stabilize
4676         something with no side-effects.
4677
4678 2005-04-05  Mark Mitchell  <mark@codesourcery.com>
4679
4680         PR c++/20763
4681         * decl.c (grokdeclarator): Correct attribute handling.
4682
4683 2005-04-05  Mark Mitchell  <mark@codesourcery.com>
4684
4685         PR c++/19159
4686         * decl2.c (import_export_decl): Use non-COMDAT external linkage
4687         for virtual tables, typeinfo, etc. that will be emitted in only
4688         one translation unit on systems without weak symbols.
4689
4690 2005-04-04  Mark Mitchell  <mark@codesourcery.com>
4691
4692         PR c++/20679
4693         * parser.c (cp_parser_template_name): Fix thinko.
4694
4695 2005-04-04  Nathan Sidwell  <nathan@codesourcery.com>
4696
4697         PR c++/20746
4698         * method.c (use_thunk): Protect covariant pointer return
4699         adjustments from NULL pointers.
4700
4701 2005-04-04  Jan Hubicka  <jh@suse.cz>
4702
4703         * decl2.c (finish_objects): Revert my previous patch.
4704         (cp_finish_file): Likewise.
4705
4706 2005-04-03  Kazu Hirata  <kazu@cs.umass.edu>
4707
4708         * pt.c: Fix comment typos.
4709
4710 2005-04-03  Nathan Sidwell  <nathan@codesourcery.com>
4711
4712         PR c++/20723
4713         * pt.c (more_specialized_fn): Member functions are unordered wrt
4714         non-members.  Conversion operators are unordered wrt other
4715         functions.
4716
4717 2005-04-01  Nathan Sidwell  <nathan@codesourcery.com>
4718
4719         * call.c (add_template_candidates_real): Remove length parameter
4720         from fn_type_unification call.
4721         * class.c (resolve_address_of_overloaded_function): Likewise
4722         * cp-tree.h (fn_type_unification): Remove length parameter.
4723         * pt.c (get_bindings_overload): Remove.
4724         (get_bindings_real): Rename to ...
4725         (get_bindings): ... here.  Remove length and strict
4726         parameters. Change return type flag to boolean.  Remove original
4727         forwarding function.
4728         (determine_specialization): Adjust get_bindings call.
4729         (fn_type_unification): Remove length parameter.  Adjust.
4730         (type_unification_real): Remove length parameter.  Adjust.
4731         (resolve_overloaded_unification): Adjust get_bindings call.
4732         (try_one_overload): Simplify confusing cascaded if control flow.
4733         (unify): Remove length paramter from type_unification_real call.
4734         (most_specialized_instantiation): Adjust get_bindings calls.
4735         (most_specialized): Likewise.
4736
4737 2005-03-31  Nathan Sidwell  <nathan@codesourcery.com>
4738
4739         PR c++/19203, implement DR 214
4740         * call.c (joust): Use more_specialized_fn.
4741         * cp-tree.h (DEDUCE_ORDER): Remove.
4742         (more_specialized): Replace with ...
4743         (more_specialized_fn): ... this.
4744         * pt.c (maybe_adjust_types_for_deduction): Remove DEDUCE_ORDER
4745         case.
4746         (type_unification_real): Remove DEDUCE_ORDER case.
4747         (more_specialized): Replace with ...
4748         (more_specialized_fn): ... this.  Implement DR 214.
4749         (most_specialized_instantiation): Use get_bindings_real directly.
4750
4751 2005-03-31  Gabriel Dos Reis  <gdr@integrable-solutions.net>
4752
4753         PR c++/18644
4754         * call.c (build_new_op): Remove check for -Wsynth.
4755
4756 2005-03-31  Jan Hubicka  <jh@suse.cz>
4757
4758         * decl2.c (finish_objects): Mark ctor as needed.
4759         (cp_finish_file): Output variables only in nonunit-at-a-time.
4760
4761 2005-03-29  Richard Henderson  <rth@redhat.com>
4762
4763         PR c/20519
4764         * decl.c (cp_complete_array_type): Rename from complete_array_type.
4765         Use the new complete_array_type in c-common.c.  Update all callers.
4766         * cp-tree.h (cp_complete_array_type): Update to match.
4767
4768 2005-03-24  Geoffrey Keating  <geoffk@apple.com>
4769
4770         * typeck.c (build_static_cast_1): Allow scalar_cast between
4771         any integral, floating, or enumeration type.
4772
4773 2005-03-24  Steven Bosscher  <stevenb@suse.de>
4774
4775         * typeck.c (comptypes): First determine if the types are compatible
4776         from a target-independent point of view.  Check target attributes
4777         last.
4778
4779         * class.c (build_base_path):
4780         (build_vbase_offset_vtbl_entries):
4781         (add_vcall_offset): Replace fold (buildN (...)) with fold_buildN.
4782         * error.c (dump_expr): Likewise.
4783         * init.c (build_zero_init, expand_cleanup_for_base,
4784         build_vec_delete_1): Likewise.
4785         * mangle.c (write_integer_cst): Likewise.
4786         * method.c (thunk_adjust): Likewise.
4787         * pt.c (convert_nontype_argument, tsubst, unify): Likewise.
4788         * tree.c (cxx_print_statistics, array_type_nelts_total): Likewise.
4789         * typeck.c (build_ptrmemfunc_access_expr,
4790         (get_member_function_from_ptrfunc): Likewise.
4791
4792 2005-03-23  Joseph S. Myers  <joseph@codesourcery.com>
4793
4794         * cp-objcp-common.h (LANG_HOOKS_TRUTHVALUE_CONVERSION): Remove.
4795
4796 2005-03-23  Joseph S. Myers  <joseph@codesourcery.com>
4797
4798         * cp-tree.h (perform_integral_promotions): Remove.
4799         (default_conversion): Add.
4800
4801 2005-03-22  Mark Mitchell  <mark@codesourcery.com>
4802
4803         * parser.c (cp_parser_warn_min_max): New function.
4804         (cp_parser_binary_expression): Use it.
4805         (cp_parser_assignment_operator_opt): Likewise.
4806         (cp_parser_operator): Likewise.
4807
4808 2005-03-22  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
4809
4810         PR c++/19980
4811         * decl.c (start_preparsed_function): Robustify.
4812
4813 2005-03-22  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
4814
4815         PR c++/20499
4816         * parser.c (cp_parser_class_head): Return NULL_TREE when
4817         encountering a redefinition.
4818
4819 2005-03-22  Nathan Sidwell  <nathan@codesourcery.com>
4820
4821         PR c++/20465
4822         PR c++/20381
4823         * typeck.c (build_ptrmemfunc): Allow OFFSET_REF when processing a
4824         template.
4825
4826 2005-03-21  Paolo Carlini  <pcarlini@suse.de>
4827
4828         PR c++/20461
4829         PR c++/20536
4830         * init.c (emit_mem_initializers): Don't crash on undefined
4831         types.
4832
4833 2005-03-21  Paolo Carlini  <pcarlini@suse.de>
4834
4835         PR c++/20147
4836         * semantics.c (finish_stmt_expr_expr): Return immediately
4837         if error_operand_p (expr).
4838
4839 2005-03-21  Joseph S. Myers  <joseph@codesourcery.com>
4840
4841         * cp-tree.h (lvalue_or_else, lvalue_p): New.
4842         * typeck.c (lvalue_or_else): New.  Call lvalue_error.
4843
4844 2005-03-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4845
4846         PR c++/20240
4847         * decl.c (decls_match): Compare context of VAR_DECL.
4848
4849 2005-03-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4850
4851         PR c++/20333
4852         * parser.c (cp_parser_postfix_expression) <case RID_TYPENAME>:
4853         Check the return value of cp_parser_nested_name_specifier.
4854
4855 2005-03-18  Dale Johannesen <dalej@apple.com>
4856
4857         * cp/tree.c (cp_tree_equal):  Handle SSA_NAME.
4858
4859 2005-03-18  Paolo Carlini  <pcarlini@suse.de>
4860
4861         PR c++/20463
4862         * parser.c (cp_parser_diagnose_invalid_type_name):
4863         Check TYPE_BINFO (current_class_type) before attempting
4864         to emit inform messages.
4865
4866 2005-03-17  Paolo Carlini  <pcarlini@suse.de>
4867
4868         PR c++/19966
4869         * cp-tree.h (grok_op_properties): Change return type to void.
4870         * decl.c (grok_op_properties): Return early - don't check the
4871         arity - in case of a static member or an operator that cannot
4872         be non-member; tidy a bit.
4873
4874 2005-03-17  Nathan Sidwell  <nathan@codesourcery.com>
4875
4876         PR c++/20186
4877         * pt.c (contains_dependent_cast_p): Remove.
4878         (fold_non_dependent_expr): Don't use it.
4879         (value_dependent_expression_p): Use a switch statement.
4880         reference_exprs can be dependent.
4881
4882 2005-03-14  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4883
4884         PR c++/4403
4885         PR c++/9783, DR433
4886         * name-lookup.c (pushtag): Skip template parameter scope when
4887         scope is ts_global.  Don't push tag into template parameter
4888         scope.
4889         * pt.c (instantiate_class_template): Reorder friend class
4890         template substitution to handle non-dependent friend class
4891         that hasn't been previously declared.
4892
4893 2005-03-14  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4894
4895         Friend class name lookup 5/n
4896         PR c++/1016
4897         * cp-tree.h (pushtag): Adjust declaration.
4898         * decl.c (lookup_and_check_tag): Call lookup_type_scope if
4899         lookup_name fails.
4900         (xref_tag): Adjust call to pushtag.  Make hidden class visible.
4901         (start_enum): Adjust call to pushtag.
4902         * name-lookup.c (ambiguous_decl): Ignore hidden names.
4903         (qualify_lookup): Change return type to bool.
4904         (hidden_name_p): New function.
4905         (lookup_namespace_name, unqualified_namespace_lookup,
4906         lookup_name_real): Use it.
4907         (lookup_type_scope): Update comments.
4908         (maybe_process_template_type_declaration): Change parameter name
4909         from globalize to is_friend.
4910         (pushtag): Change globalize parameter of type int to tag_scope.
4911         Hide name if introduced by friend declaration.
4912         * name-lookup.h (hidden_name_p): Add declaration.
4913         * parser.c (cp_parser_lookup_name): Don't deal with hidden name
4914         here.
4915         * pt.c (push_template_decl_real): Make hidden class template
4916         visible.
4917         (lookup_template_class, instantiate_class_template): Adjust call
4918         to pushtag.
4919         * semantics.c (begin_class_definition): Likewise.
4920         * rtti.c (init_rtti_processing, build_dynamic_cast_1,
4921         tinfo_base_init, emit_support_tinfos): Use ts_current instead of
4922         ts_global.
4923
4924 2005-03-13  Mark Mitchell  <mark@codesourcery.com>
4925
4926         PR c++/20157
4927         * pt.c (determine_specialization): Reject non-specializations.
4928
4929 2005-03-11  Per Bothner  <per@bothner.com>
4930
4931         * cp-tree.h (struct cp_declarator): New id_loc field.
4932         * cp/parser.c (cp_lexer_get_preprocessor_token): Set cp_token's
4933         location using c_lex_with_flags, instead of input_location.
4934         (cp_parser_direct_declarator): Set declarator's id_loc from
4935         cp_token's id_loc.
4936
4937 2005-03-10  Jakub Jelinek  <jakub@redhat.com>
4938
4939         PR c++/18384, c++/18327
4940         * decl.c (reshape_init_array): Use UHWI type for max_index_cst
4941         and index.  Convert max_index to size_type_node if it isn't
4942         host_integerp (, 1).
4943
4944 2005-03-09  Mark Mitchell  <mark@codesourcery.com>
4945
4946         PR c++/20208
4947         * pt.c (tsubst_decl): Apply array-to-pointer and
4948         function-to-pointer conversions to function arguments.
4949         (regenerate_decl_from_template): Likewise.
4950
4951 2005-03-09  Paolo Carlini  <pcarlini@suse.de>
4952
4953         PR c++/16859
4954         * decl.c (complete_array_type): In pedantic mode, return
4955         3 for an empty initializer list as the initializer for an
4956         array of unknown bound (8.5.1/4).
4957         (maybe_deduce_size_from_array_init): Fix final test to use
4958         the above.
4959
4960 2005-03-08  Nathan Sidwell  <nathan@codesourcery.com>
4961
4962         PR c++/20186
4963         * pt.c (contains_dependent_cast_p): New.
4964         (fold_non_dependent_expr): Call it.
4965
4966 2005-03-08  Mark Mitchell  <mark@codesourcery.com>
4967
4968         PR c++/20142
4969         * cp-tree.h (target_type): Remove.
4970         * decl.c (layout_var_decl): Remove #if 0'd code.
4971         (cp_finish_decl): Remove dead code.
4972         * init.c (build_vec_init): When determining whether or not the
4973         element type has an asignment operator, look through all array
4974         dimensions.
4975         * typeck.c (target_type): Remove.
4976
4977 2005-03-07  Mark Mitchell  <mark@codesourcery.com>
4978
4979         * class.c (finish_struct_1): Do not warn about non-virtual
4980         destructors in Java classes.
4981
4982 2005-03-05  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4983
4984         PR c++/19311
4985         * init.c (build_offset_ref): Don't build non-dependent SCOPE_REF.
4986         * pt.c (build_non_dependent_expr): Don't build NON_DEPENDENT_EXPR
4987         for OFFSET_TYPE.
4988         * typeck.c (build_x_unary_op): Don't build non-dependent SCOPE_REF.
4989         Also set PTRMEM_OK_P for NON_DEPENDENT_EXPR.
4990         (build_unary_op): Handle building ADDR_EXPR of OFFSET_REF inside
4991         template.
4992
4993 2005-03-02  Alexandre Oliva  <aoliva@redhat.com>
4994
4995         * name-lookup.c (push_overloaded_decl): Don't error if the new
4996         decl matches the old one.
4997         * decl.c (redeclaration_error_message): Likewise.
4998
4999 2005-03-01  Per Bothner  <per@bothner.com>
5000
5001         * decl.c (finish_function): Use SET_EXPR_LOCATION instead of
5002         unavailable annotate_with_file_line, if USE_MAPPED_LOCATION.
5003
5004 2005-03-01  Nathan Sidwell  <nathan@codesourcery.com>
5005
5006         PR c++/20232
5007         * class.c (update_vtable_entry_for_fn): Don't crash on invalid
5008         covariancy.
5009
5010         * cp-tree.g (THUNK_TARGET): Expand comment.
5011         * method.c (use_thunk): Make sure we also use the target, if that
5012         is a thunk.
5013
5014 2005-02-27  Jakub Jelinek  <jakub@redhat.com>
5015
5016         PR c++/20206
5017         * decl.c (cxx_comdat_group): Put thunks for
5018         TARGET_USE_LOCAL_THUNK_ALIAS_P (function) functions into the same
5019         comdat group as the thunk target.
5020
5021 2005-02-24  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
5022
5023         * call.c, class.c, cp-tree.h, decl2.c, error.c, init.c, mangle.c,
5024         parser.c: Fix comment typo(s).
5025
5026 2005-02-24  Jakub Jelinek  <jakub@redhat.com>
5027
5028         PR c++/20175
5029         * decl.c (reshape_init): Don't warn about missing braces if STRING_CST
5030         initializes a char/wchar_t array.
5031
5032 2005-02-23  Mark Mitchell  <mark@codesourcery.com>
5033
5034         PR c++/19878
5035         * decl.c (grokvardecl): Set DECL_INTERFACE_KNOWN for declarations
5036         with internal linkage.
5037
5038 2005-02-23  Alexandre Oliva  <aoliva@redhat.com>
5039
5040         * decl.c (grokvardecl): Don't exempt anonymous types from having
5041         linkage for variables that have linkage other than "C".
5042
5043 2005-02-23  Kazu Hirata  <kazu@cs.umass.edu>
5044
5045         * cp-objcp-common.h, error.c: Update copyright.
5046
5047 2005-02-22  Mark Mitchell  <mark@codesourcery.com>
5048
5049         PR c++/20073
5050         * decl.c (start_decl_1): Don't clear TREE_READONLY.
5051         (cp_finish_decl): Likewise.
5052         (complete_vars): Call cp_apply_type_quals_to_decl.
5053         * typeck.c (cp_apply_type_quals): Avoid setting TREE_READONLY in
5054         cases where that's not valid.
5055
5056         PR c++/19991
5057         * init.c (integral_constant_value): Iterate if the value of a decl
5058         is itself a constant.
5059
5060         PR c++/20152
5061         * parser.c (cp_parser_class_head): Check for redefintions here.
5062         * semantics.c (begin_class_definition): Not here.
5063
5064         PR c++/20153
5065         * decl2.c (build_anon_union_vars): Add type parameter.
5066         (finish_anon_union): Pass it.
5067
5068         PR c++/20148
5069         * error.c (dump_expr): Do not print the body of a BIND_EXPR.
5070         Handle STATEMENT_LIST.
5071
5072         PR c++/19883
5073         * parser.c (cp_parser_direct_declarator): Always complain about
5074         non-constant array bounds when in a function scope.
5075         * semantics.c (finish_id_expression): Do not mark dependent names
5076         as non-constant.
5077
5078 2005-02-21  Douglas Gregor  <dgregor@cs.indiana.edu>
5079
5080         PR c++/19076
5081         PR c++/6628
5082         * cp-tree.h (cp_apply_type_quals_to_decl): Declared.
5083         * decl.c (grokdeclarator): Pedwarn about qualifying a function
5084         type.
5085         Add qualifiers when declaring a typedef of a function type.
5086         Member function pointers pick up the qualifiers of the typedef
5087         used to declare them.
5088         Don't complain about creating cv-qualified function types.
5089         Complain about qualified function typedefs that are used to
5090         declare non-static member functions or free functions.
5091         Use cp_apply_type_quals_to_decl.
5092         (start_preparsed_function): Use cp_apply_type_quals_to_decl.
5093         (grokclassfn): Use cp_apply_type_quals_to_decl.
5094         * error.c (dump_type_suffix): Print qualifiers for function
5095         types.
5096         * pt.c (tsubst_decl): Use cp_apply_type_quals_to_decl.
5097         (tsubst): When substituting a function type into a member
5098         pointer type, pass along the qualifiers.
5099         (unify): Unify member pointers to member function pointers.
5100         * tree.c (cp_build_qualified_type_real): Function types may be
5101         qualified. This includes restrict qualifiers.
5102         * typeck.c (cp_apply_type_quals_to_decl): New function to replace
5103         use of c_apply_type_quals_to_decl. Drops qualifiers that are being
5104         added to function types.
5105
5106 2005-02-20  Zack Weinberg  <zack@codesourcery.com>
5107
5108         PR 18785
5109         * cp-objcp-common.h (LANG_HOOKS_TO_TARGET_CHARSET): Set to
5110         c_common_to_target_charset.  Delete bogus comment.
5111
5112 2005-02-18  Richard Henderson  <rth@redhat.com>
5113
5114         PR libstdc++/10606
5115         * except.c (do_get_exception_ptr): New.
5116         (expand_start_catch_block): Use it.
5117
5118 2005-02-19  Jakub Jelinek  <jakub@redhat.com>
5119
5120         * decl.c (start_decl_1): Only check TYPE_NEEDS_CONSTRUCTING
5121         if type is not error_mark_node.
5122
5123 2005-01-20  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
5124
5125         PR c++/19508
5126         * decl2.c (grokfield): Do not apply attributes to template parameters
5127         as they are ignored by tsubst anyway.
5128
5129 2005-02-18  Jakub Jelinek  <jakub@redhat.com>
5130
5131         PR c++/19813
5132         * decl.c (start_decl_1): Clear TREE_READONLY flag if
5133         its type has TYPE_NEEDS_CONSTRUCTING.
5134         (complete_vars): Likewise.
5135
5136 2005-02-17  Alexandre Oliva  <aoliva@redhat.com>
5137
5138         PR c++/20028
5139         * class.c (finish_struct): Initialize TYPE_SIZE_UNIT of a
5140         template along with TYPE_SIZE.
5141
5142         PR c++/20022
5143         * semantics.c (perform_deferred_access_checks): Use
5144         get_deferred_access_checks to get the top of the stack.
5145
5146 2005-02-15  Alexandre Oliva  <aoliva@redhat.com>
5147
5148         PR c++/17788
5149         * class.c (add_implicitly_declared_members, check_field_decl)
5150         (check_field_decls, check_bases): Remove arguments, tests and
5151         assignments of cant_have_default_ctor-related variables.
5152
5153 2005-02-15  Alexandre Oliva  <aoliva@redhat.com>
5154
5155         * decl2.c (mark_used): Set the source location of the used decl to
5156         the current input location here...
5157         * method.c (synthesize_method): ... not here.  Set input_location
5158         from the decl instead.
5159
5160 2005-02-14  Nathan Sidwell  <nathan@codesourcery.com>
5161
5162         PR c++/19608
5163         * parser.c (cp_parser_late_parsing_for_member): Use
5164         current_function_decl as scope to push to and from.
5165
5166         PR c++/19884
5167         * pt.c (check_explicit_specialization): Make sure namespace
5168         binding lookup found an overloaded function.
5169         (lookup_template_function): Just assert FNS is an overloaded
5170         function.
5171
5172         PR c++/19895
5173         * decl.c (grokdeclarator): Check for error mark node in ptrmem
5174         construction.
5175
5176 2005-02-14  Alexandre Oliva  <aoliva@redhat.com>
5177
5178         PR c++/17816
5179         * decl.c (redeclaration_error_message): Report redefinition of
5180         pure virtual function.
5181
5182 2005-02-14  Nathan Sidwell  <nathan@codesourcery.com>
5183
5184         PR c++/19891
5185         * class.c (build_simple_base_path): Build the component_ref
5186         directly.
5187         (update_vtable_entry_for_fn): Walk the covariant's binfo chain
5188         rather than using lookup_base.
5189         * search.c (dfs_walk_once): Add non-recursive assert check.
5190         * typeck.c (build_class_member_access_expr): It is possible for
5191         the member type to be both const and volatile.
5192
5193 2005-02-12  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
5194
5195         PR c++/14479
5196         PR c++/19487
5197         * pt.c (maybe_check_template_type): Remove.
5198         * cp-tree.h (maybe_check_template_type): Remove prototype.
5199         * name-lookup.c (maybe_process_template_type_declaration): Don't
5200         use maybe_check_template_type.
5201
5202 2005-02-11  Richard Henderson  <rth@redhat.com>
5203
5204         PR c++/19632
5205         * pt.c (get_mostly_instantiated_function_type): Save and restore
5206         flag_access_control instead of push/pop_access_scope.
5207
5208 2005-02-10  Mark Mitchell  <mark@codesourcery.com>
5209
5210         PR c++/19755
5211         * decl.c (reshape_init): Issue warnings about missing braces.
5212
5213 2005-02-11  Kazu Hirata  <kazu@cs.umass.edu>
5214
5215         * cp-tree.def, except.c, ptree.c: Update copyright.
5216
5217 2005-02-09  Mark Mitchell  <mark@codesourcery.com>
5218
5219         PR c++/19811
5220         * call.c (build_op_delete_call): Check COMPLETE_TYPE_P before
5221         attempting name lookup.
5222
5223         * parser.c (cp_parser_unqualified_id): Initialize type_decl.
5224
5225         PR c++/19787
5226         * call.c (initialize_reference): Robustify.
5227
5228         PR ++/19732
5229         * decl.c (grokdeclarator): Check for invalid use of destructor
5230         names.
5231
5232         PR c++/19762
5233         * parser.c (cp_parser_unqualified_id): Avoid creating destructor
5234         names with invalid types.
5235
5236         PR c++/19826
5237         * parser.c (cp_parser_direct_declarator): Allow type-dependent
5238         expressions as array bounds.
5239
5240         PR c++/19739
5241         * parser.c (cp_parser_attributes_list): Allow empty lists.
5242
5243 2005-02-08  Mark Mitchell  <mark@codesourcery.com>
5244
5245         PR c++/19733
5246         * class.c (add_method): Don't set TYPE_HAS_DESTRUCTOR.
5247         (check_bases): Give warnings about a base class with a
5248         non-virtual destructor, even if it is implicit.
5249         (finish_struct_bits): Don't copy TYPE_HAS_DESTRUCTOR.
5250         (maybe_warn_about_overly_private_class): Don't use
5251         TYPE_HAS_DESTRUCTOR.
5252         (finish_struct_methods): Don't set TYPE_HAS_DESTRUCTOR.
5253         (check_for_override): Give it external linkage.
5254         (add_implicitly_declared_members): Generate destructors lazily.
5255         (check_field_decls): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR, not
5256         TYPE_HAS_DESTRUCTOR.
5257         (check_bases_and_members): Call check_methods before
5258         check_field_decls.
5259         (check_bases_and_members): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR, not
5260         TYPE_HAS_DESTRUCTOR.
5261         (finish_struct_1): Do not use TYPE_HAS_DESTRUCTOR.
5262         * cp-tree.def (PSEUDO_DTOR_EXPR): Document.
5263         * cp-tree.h (TYPE_HAS_DESTRUCTOR): Remove.
5264         (lang_type_class): Add lazy_destructor.
5265         (CLASSTYPE_LAZY_DESTRUCTOR): New macro.
5266         (CLASSTYPE_DESTRUCTORS): Robustify.
5267         (TYPE_HAS_DESTRUCTOR): Remove.
5268         (check_for_override): Declare.
5269         (build_vbase_delete): Remove.
5270         * cvt.c (convert_to_void): Issue errors about pseudo-destructor
5271         expressions.
5272         * decl.c (cxx_maybe_build_cleanup): Remove dead code.
5273         * except.c (dtor_nothrow): Lazily create destructors if necessary.
5274         (build_throw): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
5275         * init.c (build_delete): Lazily create destructors, if necessary.
5276         (build_vbase_delete): Remove.
5277         * method.c (locate_dtor): Simplify.
5278         (implicitly_declare_fn): Add support for destructors.
5279         * parser.c (cp_parser_lookup_name): Lazily create destructors, if
5280         necessary.
5281         * pt.c (check_explicit_specialization): Don't use
5282         TYPE_HAS_DESTRUCTOR.
5283         (instantiate_class_template): Likewise.
5284         * ptree.c (cxx_print_type): Don't print TYPE_HAS_DESTRUCTOR.
5285         * rtti.c (emit_support_tinfos): Robustify.
5286         * search.c (lookup_fnfields_1): Lazily create destructors.
5287         * typeck.c (build_class_member_access_expr): Remove
5288         PSEUDO_DTOR_EXPR handling.
5289         (lookup_destructor): Likewise.
5290
5291 2005-02-08  Kazu Hirata  <kazu@cs.umass.edu>
5292
5293         * cxx-pretty-print.c, cxx-pretty-print.h, decl.h: Update
5294         copyright.
5295
5296 2005-02-07  Mark Mitchell  <mark@codesourcery.com>
5297
5298         * parser.c (cp_lexer_start_debugging): Avoid arithmetic operations
5299         on boolean variables.
5300         (cp_lexer_stop_debugging): Likewise.
5301
5302 2005-02-03  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
5303
5304         PR c++/17401
5305         * parser.c (cp_parser_pure_specifier): Emit a specific error
5306         message with an invalid pure specifier.
5307         * decl2.c (grok_function_init): Remove.
5308         (grokfield): An initializer for a method is a always a pure
5309         specifier.
5310
5311 2005-02-02  Matt Austern  <austern@apple.com>
5312
5313         PR c++/19628
5314         * cp-tree.h (builtin_valid_in_constant_expr_p): Declare.
5315         * parser.c (cp_parser_postfix_expression): Accept function call in
5316         constant expression if builtin_valid_in_constant_expr_p is true
5317         for that function.
5318         * pt.c (value_dependent_expression_p): Handle CALL_EXPRs properly.
5319         * semantics.c (finish_id_expression): Accept function call in constant
5320         expression if builtin_valid_in_constant_expr_p is true for that
5321         function.
5322         * tree.c (builtin_valid_in_constant_expr_p): New.
5323
5324 2005-02-02  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
5325
5326         PR c++/17413
5327         * pt.c (check_instantiated_args): Improve error message.
5328         Fix logic when to print its second part.
5329
5330 2005-02-02  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
5331
5332         * cp-tree.h (complete_type_or_else): Remove macro.
5333         (complete_type_or_diagnostic): Rename to complete_type_or_else
5334         and remove last argument.
5335         * typeck.c (complete_type_or_diagnostic): Rename to
5336         complete_type_or_else and remove last argument.
5337
5338 2005-02-02  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
5339
5340         * cp-tree.h (commonparms): Remove prototype.
5341         (convert_arguments): Likewise.
5342         (PFN_FROM_PTRMEMFUNC): Remove.
5343         * typeck.c (commonparms): Make static.
5344         (convert_arguments): Add prototype. Make static.
5345         (PFN_FROM_PTRMEMFUNC): Replace by pfn_from_ptrmemfunc.
5346
5347 2005-01-31  Mark Mitchell  <mark@codesourcery.com>
5348
5349         * parser.c (cp_parser_primary_expression): Don't complain about
5350         floating-point literals in integral constant expressions when
5351         !pedantic.
5352
5353 2005-02-01  Alexandre Oliva  <aoliva@redhat.com>
5354
5355         * parser.c (cp_parser_template_id): Revert comment patch too.
5356
5357         PR c++/18757
5358         PR c++/19366
5359         PR c++/19499
5360         * parser.c (cp_parser_template_id): Revert 2004-12-09's patch.
5361         Issue an error when creating the template id.
5362         * pt.c (fn_type_unification): Return early if the explicit
5363         template arg list is an error_mark_node.
5364
5365 2005-01-31  Mark Mitchell  <mark@codesourcery.com>
5366
5367         * decl.c (build_enumerator): Do not issue duplicate error messages
5368         about invalid enumeration constants.
5369         * parser.c (cp_parser_non_integral_constant_expression): Always
5370         set parser->non_integral_constant_expression_p.
5371         (cp_parser_primary_expression): Add cast_p parameter.  Issue
5372         errors about invalid uses of floating-point literals in
5373         cast-expressions.
5374         (cp_parser_postfix_expression): Add cast_p parameter.
5375         (cp_parser_open_square_expression): Pass it.
5376         (cp_parser_parenthesized_expression_list): Add cast_p parameter.
5377         (cp_parser_unary_expression): Likewise.
5378         (cp_parser_new_placement): Pass it.
5379         (cp_parser_direct_new_declarator): Likewise.
5380         (cp_parser_new_initializer): Likewise.
5381         (cp_parser_cast_expression): Add cast_p parameter.
5382         (cp_parser_binary_expression): Likewise.
5383         (cp_parser_question_colon_clause): Likewise.
5384         (cp_parser_assignment_expression): Likewise.
5385         (cp_parser_expression): Likewise.
5386         (cp_parser_constant_expression): If an integral constant
5387         expression is invalid, return error_mark_node.
5388         (cp_parser_expression_statement): Pass cast_p.
5389         (cp_parser_condition): Likewise.
5390         (cp_parser_iteration_statement): Likewise.
5391         (cp_parser_jump_statement): Likewise.
5392         (cp_parser_mem_initializer): Likewise.
5393         (cp_parser_template_argument): Likewise.
5394         (cp_parser_parameter_declaration): Likewise.
5395         (cp_parser_initializer): Likewise.
5396         (cp_parser_throw_expression): Likewise.
5397         (cp_parser_attribute_list): Likewise.
5398         (cp_parser_simple_cast_expression): Likewise.
5399         (cp_parser_functional_cast): Likewise.
5400         (cp_parser_late_parsing_default_args): Likewise.
5401         (cp_parser_sizeof_operand): Save/restore
5402         non_integral_constant_expression_p.
5403
5404 2005-01-31  Mike Stump  <mrs@apple.com>
5405
5406         * parser.c (cp_lexer_new_main): Get the first token, first, before
5407         doing anything.
5408
5409 2005-01-31  Mark Mitchell  <mark@codesourcery.com>
5410
5411         * decl.c (start_decl): Add missing parentheses.
5412
5413 2005-01-30  Mark Mitchell  <mark@codesourcery.com>
5414
5415         PR c++/19555
5416         * cp-tree.h (DECL_USE_TEMPLATE): Expand documentation.
5417         * decl.c (duplicate_decls): Do not discard
5418         DECL_IMPLICIT_INSTANTIATION when merging declarations.
5419         (start_decl): Do not SET_DECL_TEMPLATE_SPECIALIZATION for
5420         variables that do not have DECL_USE_TEMPLATE.
5421
5422         PR c++/19395
5423         * decl.c (grokdeclarator): Refactor code so that qualified names
5424         are never allowed as the declarator in a typedef.
5425
5426         PR c++/19367
5427         * name-lookup.c (do_nonmember_using_decl): Avoid overloading
5428         builtin declarations.
5429
5430         PR c++/19457
5431         * call.c (convert_like_real): Inline call to
5432         dubious_conversion_warnings here.
5433         * cp-tree.h (dubious_conversion_warnings): Remove.
5434         * semantics.c (finish_unary_op_expr): Copy INTEGER_CSTs before
5435         setting TREE_NEGATED_INT.
5436         * typeck.c (dubious_conversion_warnings): Remove.
5437
5438         PR c++/19349
5439         * name-lookup.c (pushdecl_namespace_level): Avoid accessing free'd
5440         memory.
5441
5442 2005-01-28  Mark Mitchell  <mark@codesourcery.com>
5443
5444         PR c++/19253
5445         * parser.c (cp_parser_diagnose_invalid_type_name): Commit to
5446         tentative parses.
5447
5448         PR c++/19667
5449         * pt.c (redeclare_class_template): Robustify.
5450
5451 2005-01-27  Steven Bosscher  <stevenb@suse.de>
5452
5453         * decl.c (finish_case_label): Use SWITCH_STMT accessor macros
5454         instead of SWITCH_EXPR ones.
5455         * pt.c (tsubst_expr): Likewise.
5456         * semantics.c (begin_switch_stmt, finish_switch_cond,
5457         finish_switch_stmt): Likewise.
5458
5459 2005-01-26  J"orn Rennecke <joern.rennecke@st.com>
5460
5461         PR c++/18370
5462         * parser.c (cp_parser_initializer_clause): Initialize *non_constant_p.
5463
5464 2005-01-25  Andrew Pinski  <pinskia@physics.uc.edu>
5465
5466         * class.c (abort_fndecl_addr): New variable.
5467         (build_vtbl_initializer): If we have a pure virtual function
5468         share the abort function's address.
5469         Include gt-cp-class.h at the end.
5470         * config-lang.in (gtfiles): Add cp/class.c.
5471
5472 2005-01-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
5473
5474         * cxx-pretty-print.c (pp_cxx_statement): Add prototype. Make static.
5475         (pp_cxx_function_definition): Make static.
5476         * cxx-pretty-print.h (pp_cxx_statement): Remove prototype.
5477         (pp_cxx_function_definition): Likewise.
5478
5479 2005-01-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
5480
5481         * name-lookup.c (print_binding_level): Make static.
5482         (constructor_name_full): Make static inline.
5483         (current_decl_namespace): Make static.
5484         * name-lookup.h (constructor_name_full): Remove prototype.
5485         (print_binding_level): Likewise.
5486         (current_decl_namespace): Likewise.
5487
5488 2005-01-25  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
5489
5490         * decl.h (debug_bindings_indentation): Remove.
5491
5492 2005-01-23  Kazu Hirata  <kazu@cs.umass.edu>
5493
5494         * typeck.c: Fix a comment typo.
5495
5496 2005-01-21  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
5497
5498         PR c++/19208
5499         * pt.c (fold_decl_constant_value): Always call fold_non_dependent_expr
5500         at least once.
5501         (tsubst): Use fold_decl_constant_value in place of a bare call to
5502         integral_constant_value.
5503
5504 2005-01-20  Kazu Hirata  <kazu@cs.umass.edu>
5505
5506         * typeck.c (more_qualified_p): Remove.
5507         * cp-tree.h: Remove the corresponding prototype.
5508
5509 2005-01-19  Matt Austern  <austern@apple.com>
5510
5511         * typeck.c (comptypes): Handle return code from objc_comptypes
5512         correctly.
5513
5514 2005-01-19  Kazu Hirata  <kazu@cs.umass.edu>
5515
5516         * cp-tree.h, name-lookup.h: Remove unused prototypes.
5517
5518 2005-01-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
5519
5520         PR c++/19375
5521         * semantics.c (finish_id_expression): Disable access checking for
5522         already lookuped FIELD_DECL.
5523
5524 2005-01-18  Kazu Hirata  <kazu@cs.umass.edu>
5525
5526         * decl.c (delete_block): Remove.
5527         * cp-tree.h: Remove the corresponding prototype.
5528
5529         * decl.c (vtable_decl_p, vtype_decl_p, walk_globals_data,
5530         walk_vtables_r, walk_vtables, walk_globals_r, walk_globals):
5531         Remove.
5532         * cp-tree.h: Remove the corresponding prototypes.
5533
5534         * tree.c (count_functions, bound_pmf_p, cp_is_overload_p,
5535         cp_update_decl_after_saving, name_p): Remove.
5536         * cp-tree.h: Remove the corresponding prototypes.
5537
5538 2005-01-18  Andrew Pinski  <pinskia@physics.uc.edu>
5539
5540         PR c/19472
5541         * semantics.c (finish_asm_stmt): Strip nops off
5542         input memory operands.
5543
5544 2005-01-18  Kazu Hirata  <kazu@cs.umass.edu>
5545
5546         * Make-lang.in, call.c, cvt.c, init.c, rtti.c, tree.c,
5547         typeck2.c: Update copyright.
5548
5549 2005-01-16  Kazu Hirata  <kazu@cs.umass.edu>
5550
5551         * class.c (get_enclosing_class): Remove.
5552         * cp-tree.h: Remove the corresponding prototypes.
5553
5554         * cvt.c (convert_lvalue): Remove.
5555         * cp-tree.h: Remove the corresponding prototype.
5556
5557         * pt.c (tinst_for_decl): Remove.
5558         * cp-tree.h: Remove the corresponding prototypes.
5559
5560         * tree.c (hash_chainon): Remove.
5561         * cp-tree.h: Remove the corresponding prototypes.
5562
5563 2005-01-15  Jakub Jelinek  <jakub@redhat.com>
5564
5565         PR c++/19263
5566         * typeck2.c (split_nonconstant_init_1) <case VECTOR_TYPE>: Put a copy
5567         of CONSTRUCTOR's node into MODIFY_EXPR, as the original is modified.
5568
5569 2005-01-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5570
5571         * Make-lang.in (cp-warn): Don't append $(WERROR).
5572
5573 2005-01-10  Kazu Hirata  <kazu@cs.umass.edu>
5574
5575         * cp-tree.h: Fix a comment typo.
5576
5577 2005-01-07  Nathan Sidwell  <nathan@codesourcery.com>
5578
5579         PR c++/19298
5580         * pt.c (tsubst_qualified_id): Call convert_from_reference.
5581
5582 2005-01-06  Mark Mitchell  <mark@codesourcery.com>
5583
5584         PR c++/19244
5585         * class.c (add_implicitly_declared_members): Remove dead code.
5586         * decl.c (grokfndecl): Add sfk parameter.  Use it do set
5587         DECL_CONSTRUCTOR_P.
5588         (grokdeclarator): Adjust calls to grokfndecl.
5589         * method.c (implicitly_declare_fn): Improve documentation.
5590         * parser.c (cp_parser_direct_declarator): Do not consider a
5591         function to be a constructor if the containing class was
5592         originally anonymous.
5593
5594 2005-01-06  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
5595
5596         PR c++/17154
5597         * search.c (lookup_field_1): Handle using declaration in
5598         class template partial specialization.
5599
5600 2005-01-06  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
5601
5602         PR c++/19258
5603         * pt.c (push_access_scope): Handle friend defined in class.
5604         (pop_access_scope): Likewise.
5605
5606 2005-01-06  Nathan Sidwell  <nathan@codesourcery.com>
5607
5608         PR c++/19270
5609         * pt.c (tsubst_copy) <ARRAY_REF case>: Handle separately.
5610         (tsubst_copy_and_build) <ARRAY_REF case>: Remove obsolete
5611         array-new handling code.  Use build_x_binary_op.
5612
5613 2005-01-05  Nathan Sidwell  <nathan@codesourcery.com>
5614
5615         PR c++/19030
5616         * cp-tree.h (start_decl): Take pointer to pushed scope, not bool.
5617         * name-lookup.h (push_scope): Return pushed scope, not flag.
5618         * name-lookup.c (push_scope): Return scope that should be popped,
5619         not a flag.
5620         * decl.c (start_decl): Adjust.
5621         (grokfndecl): Adjust scope push and pop.
5622         * decl2.c (check_classfn): Likewise.
5623         * parser.c (cp_parser_condition, cp_parser_conversion_function_id,
5624         cp_parser_init_declarator, cp_parser_direct_declarator,
5625         cp_parser_class_specifier, cp_parser_class_head,
5626         cp_parser_lookup_name,
5627         cp_parser_constructor_declarator_p): Likewise.
5628         * pt.c (instantiate_class_template,
5629         resolve_typename_type): Likewise.
5630
5631 2005-01-03  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
5632
5633         PR c++/14136
5634         * parser.c (cp_parser_unqualified_id): Do not issue error message
5635         for typedef-name as destructor declarator when performing an
5636         uncommitted tentative parse.
5637
5638 2005-01-01  Steven Bosscher  <stevenb@suse.de>
5639
5640         PR middle-end/17544
5641         * decl.c (finish_function): Fix comment.  Annotate the compiler
5642         generated return with the current file name and line 0.