OSDN Git Service

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