OSDN Git Service

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