OSDN Git Service

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