OSDN Git Service

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