OSDN Git Service

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