OSDN Git Service

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