OSDN Git Service

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