OSDN Git Service

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