OSDN Git Service

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