OSDN Git Service

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