OSDN Git Service

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