OSDN Git Service

ee732365d923305387f11fab943616042d6fcaf2
[pf3gnuchains/gcc-fork.git] / gcc / cp / ChangeLog
1 2007-12-10  Jakub Jelinek  <jakub@redhat.com>
2
3         PR c++/34394
4         * error.c (dump_expr): Handle ABS_EXPR.
5
6 2007-12-09  Jakub Jelinek  <jakub@redhat.com>
7
8         PR c++/34178
9         PR c++/34340
10         * repo.c (repo_emit_p): Return 2 for DECL_INTEGRAL_CONSTANT_VAR_P
11         in class scope rather than DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P.
12         Return 2 also if DECL_EXPLICIT_INSTANTIATION.
13         * decl2.c (import_export_decl): Don't make VAR_DECLs import_p when
14         flag_use_repository and repo_emit_p returned 2.
15
16 2007-12-06  Jakub Jelinek  <jakub@redhat.com>
17
18         PR c++/34336
19         * tree.c (stabilize_call, stabilize_init): Do nothing if
20         processing_template_decl.
21
22 2007-12-05  Jakub Jelinek  <jakub@redhat.com>
23
24         PR c++/34271
25         * semantics.c (finish_decltype_type): For SCOPE_REF issue an
26         error instead of assertion failure.
27         * parser.c (cp_parser_decltype): If closing paren is not found,
28         return error_mark_node.
29
30 2007-12-04  Douglas Gregor  <doug.gregor@gmail.com>
31
32        PR c++/34101
33        * name-lookup.c (arg_assoc_template_arg): Recurse on argument
34        packs.
35        (arg_assoc_type): We don't need to handle TYPE_ARGUMENT_PACK here,
36        since arg_assoc_template_arg will deal with them (better).
37
38 2007-12-04  Douglas Gregor  <doug.gregor@gmail.com>
39
40        PR c++/33509
41        * pt.c (tsubst_exception_specification): Handle substitutions into
42        member templates, where tsubst_pack_expansion returns a
43        TYPE_PACK_EXPANSION.
44
45 2007-12-04  Douglas Gregor  <doug.gregor@gmail.com>
46
47        PR c++/33091
48        * pt.c (unify_pack_expansion): If we didn't deduce any actual
49        bindings for the template parameter pack, don't try to keep the
50        empty deduced arguments.
51        (unify): If a parameter is a template-id whose template argument
52        list contains a pack expansion that is not at the end, then we
53        cannot unify against that template-id.
54
55 2007-12-02  Paolo Carlini  <pcarlini@suse.de>
56
57         PR c++/34061
58         * pt.c (current_template_args): Use error_operand_p.
59
60 2007-12-02  Paolo Carlini  <pcarlini@suse.de>
61
62         PR c++/34273
63         * error.c (dump_decl): Handle TREE_BINFO.
64
65 2007-12-01  Ollie Wild  <aaw@google.com>
66
67         PR c++/8171
68         * typeck.c (build_binary_op): Add conversion of pointers to function
69         members appearing as operands to the equality operators.
70
71 2007-11-30  Jakub Jelinek  <jakub@redhat.com>
72
73         PR c++/34275
74         * error.c (dump_expr): Handle OBJ_TYPE_REF.
75
76 2007-11-29  Jakub Jelinek  <jakub@redhat.com>
77
78         PR c++/34270
79         * tree.c (lvalue_p_1) <case COND_EXPR>: Handle x ?: y
80         in templates.
81         * typeck.c (is_bitfield_expr_with_lowered_type) <case COND_EXPR>:
82         Likewise.
83
84         PR c++/34267
85         PR c++/34268
86         * parser.c (cp_parser_decltype): Don't call finish_id_expression
87         on ~type.
88         * semantics.c (finish_decltype_type): Issue error on types, TYPE_DECLs
89         and ~type early.
90
91 2007-11-27  Jakub Jelinek  <jakub@redhat.com>
92
93         PR tree-optimization/34181
94         * method.c (use_thunk): Don't inline the call in the thunk.
95
96         PR c++/34213
97         * tree.c (decl_linkage): Static data members and static member
98         functions in anonymous ns classes are lk_external.
99
100 2007-11-26  Andreas Krebbel  <krebbel1@de.ibm.com>
101
102         PR c++/34081
103         * decl.c (start_preparsed_function): Pass 
104         processing_template_decl for the new allocate_struct_function
105         parameter.
106
107 2007-11-25  Richard Guenther  <rguenther@suse.de>
108
109         * decl.c (poplevel): Use BLOCK_CHAIN.
110
111 2007-11-24  Ollie Wild  <aaw@google.com>
112
113         * typeck.c (delta_from_ptrmemfunc): New function.
114         (get_member_function_from_ptrfunc): Call delta_from_ptrmemfunc.
115         (build_binary_op): Call delta_from_ptrmemfunc.
116
117 2007-11-23  Jakub Jelinek  <jakub@redhat.com>
118
119         PR c++/30293
120         PR c++/30294
121         * decl.c (cp_finish_decl): Disallow variable or field
122         definitions if extern "Java" aggregates.
123         (grokparms): Disallow parameters with extern "Java"
124         aggregates.
125         (check_function_type): Disallow function return values
126         with extern "Java" aggregates.
127         * init.c (build_new_1): Disallow placement new with
128         extern "Java" aggregates.
129
130 2007-11-23  Mark Mitchell  <mark@codesourcery.com>
131             Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
132         
133         PR c++/5310
134         * call.c (convert_like_real): Build a zero constant when __null is
135         converted to an integer type.
136         
137 2007-11-22  Jakub Jelinek  <jakub@redhat.com>
138
139         PR c++/34094
140         * decl2.c (cp_write_global_declarations): Issue error about static
141         data members in anonymous namespace which are declared and used,
142         but not defined.
143
144 2007-11-20  Jakub Jelinek  <jakub@redhat.com>
145
146         PR c++/34089
147         * parser.c (cp_parser_class_head): Reject function template ids.
148
149         PR c++/28879
150         * tree.c (build_cplus_array_type_1): Don't pass any VLA types
151         when processing_template_decl to build_array_type.
152
153         PR c++/33962
154         * pt.c (more_specialized_fn): Don't segfault if one or
155         both argument list end with ellipsis.
156
157 2007-11-18  Jakub Jelinek  <jakub@redhat.com>
158
159         PR c++/30988
160         * semantics.c (finish_call_expr): Set
161         current_function_returns_abnormally if fn is noreturn FUNCTION_DECL
162         or OVERLOAD with all noreturn functions.
163
164 2007-11-16  Jakub Jelinek  <jakub@redhat.com>
165
166         PR c++/34100
167         * pt.c (apply_late_template_attributes): Do nothing if decl's type is
168         error_mark_node.
169
170 2007-11-13  Jakub Jelinek  <jakub@redhat.com>
171
172         PR c++/34054
173         PR c++/34056
174         PR c++/34057
175         PR c++/34058
176         PR c++/34060
177         * pt.c (find_parameter_packs_r): If ppd->set_packs_to_error,
178         set to error_mark_node the outermost POINTER_TYPE to the pack if
179         it is seen in a POINTER_TYPE.
180         (push_template_decl_real): If check_for_bare_parameter_packs
181         fails for function return type, set the return type to
182         integer_type_node.  If check_for_bare_parameter_packs failed
183         for non-function, return error_mark_node.
184
185         PR c++/29225
186         * call.c (build_new_op): Call resolve_args before calling
187         build_over_call.
188
189 2007-11-11  Tom Tromey  <tromey@redhat.com>
190
191         PR c++/17577:
192         * lex.c (handle_pragma_implementation): Use cpp_included_before.
193
194 2007-11-12  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
195
196         PR c++/8570
197         * pt.c (redeclare_class_template): Update error message. Use a
198         note to show the previous declaration.
199         (tsubst_friend_class): Use the location of the friend template as
200         the input location before calling redeclare_class_template.
201
202 2007-11-11  Jakub Jelinek  <jakub@redhat.com>
203
204         PR c++/34068
205         * semantics.c (finish_pseudo_destructor_expr): Handle
206         object == error_mark_node.
207
208 2007-11-10  Jakub Jelinek  <jakub@redhat.com>
209
210         PR c++/32241
211         * pt.c (tsubst_copy_and_build) <case COMPONENT_REF>: If object_type
212         is not scalar type, let finish_class_member_access_expr handle
213         diagnostics.  Pass BIT_NOT_EXPR argument to
214         finish_pseudo_destructor_expr.  Handle SCOPE_REF properly.
215
216 2007-11-09  Douglas Gregor  <doug.gregor@gmail.com>
217
218         PR c++/33510
219         * decl.c (cp_complete_array_type): If any of the initializer
220         elements are pack expansions, don't compute the array size yet.
221
222 2007-11-08  Andrew Pinski  <pinskia@gmail.com>
223
224         PR c++/30297:
225         * tree.c (decl_linkage): Fields have no linkage.
226
227 2007-11-08  Daniel Jacobowitz  <dan@codesourcery.com>
228
229         * class.c (build_ctor_vtbl_group): Lay out the new type and decl.
230
231 2007-11-07  Douglas Gregor  <doug.gregor@gmail.com>
232
233         PR c++/33045
234         PR c++/33837
235         PR c++/33838
236         * semantics.c (finish_decltype_type): See through INDIRECT_REFs.
237         Be careful with ERROR_MARK_NODEs.
238         * parser.c (cp_parser_check_access_in_redeclaration): Handle NULL
239         argument.
240
241 2007-11-07  Jakub Jelinek  <jakub@redhat.com>
242
243         PR c++/33501
244         * call.c (build_over_call): Don't check TREE_ADDRESSABLE
245         on incomplete type.
246
247 2007-11-06  Douglas Gregor  <doug.gregor@gmail.com>
248
249         PR c++/33977
250         PR c++/33886
251         * tree.c (c_build_qualified_type): Define bridge to
252         cp_build_qualified_type.
253
254 2007-11-06  Douglas Gregor  <doug.gregor@gmail.com>
255
256         PR c++/31439
257         PR c++/32114
258         PR c++/32115
259         PR c++/32125
260         PR c++/32126
261         PR c++/32127
262         PR c++/32128
263         PR c++/32253
264         PR c++/32566
265         * typeck.c (check_return_expr): Pass address of retval to
266         check_for_bare_parameter_packs.
267         * class.c (build_base_field): Tolerate bases that have no layout
268         due to errors.
269         (end_of_base): Ditto.
270         * tree.c (canonical_type_variant): Be careful with
271         ERROR_MARK_NODE.
272         * cp-tree.h (check_for_bare_parameter_packs): Now accepts a
273         tree*.
274         * pt.c (find_parameter_pack_data): Add set_packs_to_error field,
275         which states whether parameter packs should be replaced with
276         ERROR_MARK_NODE.
277         (find_parameter_packs_r): Pass addresses to cp_walk_tree wherever
278         possible. If set_packs_to_error is set true, replace the parameter
279         pack with ERROR_MARK_NODE. Manage our own pointer sets.
280         (uses_parameter_packs): Don't set parameter packs to
281         ERROR_MARK_NODE.
282         (check_for_bare_parameter_packs): Now takes a pointer to a tree,
283         which may be modified (if it is a parameter pack). Instructs
284         find_parameter_packs_r to replace parameter packs with
285         ERROR_MARK_NODE (so that they won't cause errors later on).
286         (process_template_parm): Pass pointer to
287         check_for_bare_parameter_packs.
288         (process_partial_specialization): Replace pack expansions before
289         the end of the template argument list with ERROR_MARK_NODE.
290         (push_template_decl_real): Pass pointer to
291         check_for_bare_parameter_packs. Replace parameter packs not at the
292         end of the template parameter list with ERROR_MARK_NODE.
293         (convert_template_argument): Be more careful about using DECL_NAME
294         on only declarations.
295         (unify): Can't unify against ERROR_MARK_NODE.
296         * semantics.c (finish_cond): Pass pointer to
297         check_for_bare_parameter_packs.
298         (finish_expr_stmt): Ditto.
299         (finish_for_expr): Ditto.
300         (finish_switch_cond): Pass pointer to
301         check_for_bare_parameter_packs, and call it before we put the
302         condition into the statement.
303         (finish_mem_initializers): Pass pointer to
304         check_for_bare_parameter_packs.
305         (finish_member_declaration): Ditto.
306         * parser.c (cp_parser_base_clause): Ditto.
307         
308 2007-11-06  Jakub Jelinek  <jakub@redhat.com>
309
310         PR target/33168
311         * decl.c (cp_finish_decl): Call make_rtl_for_nonlocal_decl already
312         with the final TREE_READONLY flag in place.  processing_template_decl
313         is known to be 0 in this part of function.
314
315         PR c++/33894
316         * cp-tree.h: Update comment - TYPE_LANG_FLAG_0 is not
317         OMP_ATOMIC_DEPENDENT_P in OMP_ATOMIC.
318         * pt.c (tsubst_expr): Assert OMP_ATOMIC_DEPENDENT_P.
319         * semantics.c (finish_omp_atomic): Revert most of the
320         2007-02-05 changes, just keep the new representation of
321         OMP_ATOMIC_DEPENDENT_P OMP_ATOMIC.
322
323 2007-11-05  H.J. Lu  <hongjiu.lu@intel.com>
324
325         PR c++/33871
326         * decl2.c (constrain_visibility): Clear DECL_ONE_ONLY if marked
327         local.
328
329 2007-11-05  Douglas Gregor  <doug.gregor@gmail.com>
330
331         PR c++/33996
332         PR c++/33235
333         PR c++/33930
334         * typeck.c (merge_types): Don't lose rvalue references when
335         merging types.
336         * call.c (build_over_call): Don't elide move constructors just
337         because the copy constructor is trivial (!).
338         (compare_ics): If comparing cv-qualifiers fails, we can still order
339         based on binding lvalues vs. rvalues.
340
341 2007-11-05  Douglas Gregor  <doug.gregor@gmail.com>
342
343         PR c++/33939
344         * pt.c (unify_pack_expansion): bring handling of function call
345         arguments into line with type_unification_real. 
346
347 2007-11-05  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
348
349         * typeck.c (build_binary_op): Use pedwarn instead of error for
350         consistency.
351
352 2007-11-05  Jakub Jelinek  <jakub@redhat.com>
353
354         PR c++/33836
355         * parser.c (cp_parser_unary_expression): For &&label call
356         cp_parser_non_integral_constant_expression and return error_mark_node
357         if it returned true.
358
359         PR c++/33969
360         * decl.c (grokdeclarator): Don't call build_memfn_type if type
361         is neither FUNCTION_TYPE nor METHOD_TYPE.
362
363 2007-11-02  Jakub Jelinek  <jakub@redhat.com>
364
365         PR c++/33516
366         * parser.c (cp_parser_nested_name_specifier_opt): Use
367         TYPE_MAIN_VARIANT (new_scope) as scope if new_scope is an incomplete
368         typedef of currently open class.
369
370 2007-11-02  Paolo Carlini  <pcarlini@suse.de>
371
372         PR c++/33495
373         * error.c (dump_expr): Deal specially with statements.
374
375 2007-11-01  Jason Merrill  <jason@redhat.com>
376
377         PR c++/30897
378         * pt.c (push_template_decl_real): Set DECL_CONTEXT on template
379         template parms.
380         (lookup_template_class): Use it to get the outer template args
381         for instantiating one.
382
383         PR c++/29236
384         * pt.c (reduce_template_parm_level): tsubst the parameters
385         of a template template parm.
386
387 2007-11-01  Douglas Gregor  <doug.gregor@gmail.com>
388
389         PR c++/33955
390         * pt.c (find_parameter_packs_r): Handle TYPENAME_TYPE.
391
392 2007-11-01  Jakub Jelinek  <jakub@redhat.com>
393
394         PR c++/32384
395         * parser.c (cp_parser_postfix_dot_deref_expression): If
396         POSTFIX_EXPRESSION is type dependent, try to parse it as pseudo dtor
397         first and if that succeeds and type is SCALAR_TYPE_P, create
398         PSEUDO_DTOR_EXPR.
399
400         PR c++/32260
401         * rtti.c (enum_tinfo_kind): Fix TK_TYPE_INFO_TYPE comment.
402         (typeid_ok_p): Use the same alias set for abi::__type_info_pseudo
403         as for std::type_info.
404
405 2007-10-31  Paolo Carlini  <pcarlini@suse.de>
406
407         PR c++/33494
408         * cxx-pretty-print.c (pp_cxx_typeid_expression,
409         pp_cxx_delete_expression): Change to static linkage.
410         * cxx-pretty-print.h: Adjust declarations.
411         * error.c (dump_expr, case EXPR_PACK_EXPANSION, TYPEID_EXPR,
412         MEMBER_REF, DOTSTAR_EXPR, DELETE_EXPR, VEC_DELETE_EXPR,
413         MODOP_EXPR): Forward to pp_expression.
414
415         * cxx-pretty-print.c (pp_cxx_expression, case NON_DEPENDENT_EXPR):
416         Fix typo.
417
418 2007-10-31 Christian Bruel  <christian.bruel@st.com>
419            Mark Mitchell  <mark@codesourcery.com>
420
421         PR c++/19531
422         * typeck.c (check_return_expr): Don't set named_return_value_okay_p
423         if retval is volatile. 
424         
425 2007-10-30  Jakub Jelinek  <jakub@redhat.com>
426
427         PR c++/33616
428         * decl2.c (build_offset_ref_call_from_tree): Call
429         build_non_dependent_expr on object prior to building ADDR_EXPR from it
430         if FN is DOTSTAR_EXPR.
431
432 2007-10-30  Douglas Gregor  <doug.gregor@gmail.com>
433
434         PR c++/31993
435         PR c++/32252
436         * pt.c (find_parameter_packs_r): Fix typo in comment.
437         (convert_template_argument): Look at the pattern of a pack
438         expansion to determine what kind of entity we're converting.
439         (coerce_template_parameter_pack): When we have coerced a non-type
440         template parameter pack, substitute into the type of that pack.
441         (tsubst_pack_expansion): When our substitution of a parameter pack
442         is a "trivial" substitution of itself, just substitute into the
443         pack expansion rather than actually expanding.
444
445 2007-10-29  Jakub Jelinek  <jakub@redhat.com>
446
447         PR c++/33841
448         * class.c (check_bitfield_decl): Don't set field's type to error_mark_node
449         for non-integral type bitfields.  Return true if bitfield is correct, false
450         error has been diagnosed.
451         (check_field_decls): If check_bitfield_decl returned false, call also
452         check_field_decl.
453
454 2007-10-28  Paolo Carlini  <pcarlini@suse.de>
455             Mark Mitchell  <mark@codesourcery.com>
456
457         PR c++/30659
458         * pt.c (do_decl_instantiation): If the VAR_DECL is not a
459         class member error out and return.
460
461 2007-10-27  Jakub Jelinek  <jakub@redhat.com>
462
463         * error.c (reinit_cxx_pp): Initialize cxx_pp->enclosing_scope
464         to current_function_decl rather than 0.
465
466         PR c++/33844
467         * cxx-pretty-print.c (pp_cxx_pm_expression) <case MEMBER_REF>: Print
468         ->* rather than .*.
469         * error.c (dump_expr): Handle MEMBER_REF and DOTSTAR_EXPR.
470
471 2007-10-27  Jason Merrill  <jason@redhat.com>
472
473         PR c++/5247
474         * call.c (convert_default_arg): Detect recursion.
475
476 2007-10-27  Jakub Jelinek  <jakub@redhat.com>
477
478         PR c++/33842
479         * cxx-pretty-print.h (pp_cxx_offsetof_expression): New prototype.
480         * cxx-pretty-print.c (pp_cxx_primary_expression): Handle
481         OFFSETOF_EXPR.
482         (pp_cxx_offsetof_expression_1, pp_cxx_offsetof_expression): New
483         functions.
484         * error.c (dump_expr): Handle OFFSETOF_EXPR.
485
486 2007-10-26  Jason Merrill  <jason@redhat.com>
487
488         PR c++/24791
489         * pt.c (get_template_info): New fn.
490         (template_class_depth): Use it.
491         (push_template_decl_real): Check that the template args of the 
492         definition match the args of the previous declaration.
493
494 2007-10-26  Paolo Carlini  <pcarlini@suse.de>
495
496         PR c++/31988
497         * decl2.c (coerce_new_type): Do not allow a default argument for
498         the first parameter.
499
500 2007-10-26  Douglas Gregor  <doug.gregor@gmail.com>
501
502         PR c++/33839
503         * parser.c (cp_parser_decltype): Return ERROR_MARK_NODE if we
504         don't see the leading '('. Only lookup names if we get an
505         IDENTIFIER_NODE.
506
507 2007-10-26  Jakub Jelinek  <jakub@redhat.com>
508
509         PR c++/33744
510         * parser.c (cp_parser_parenthesized_expression_list): Set
511         greater_than_is_operator_p to true in between the parens.
512
513 2007-10-26  Paolo Carlini  <pcarlini@suse.de>
514
515         PR c++/31747
516         * decl.c (grokdeclarator): In case of conflicting specifiers
517         just return error_mark_node.
518
519 2007-10-26  Ollie Wild  <aaw@google.com>
520
521         * expr.c (cxx_expand_expr): Removed.
522         * cp-tree.h (exx_expand_expr): Removed.
523         * cp-objcp-common.h (LANK_HOOKS_EXPAND_EXPR): Replace cxx_expand_expr
524         with c_expand_expr.
525
526 2007-10-25  Paolo Carlini  <pcarlini@suse.de>
527
528         PR c++/33843
529         * cxx-pretty-print.c (pp_cxx_unqualified_id): Deal with BIT_NOT_EXPR.
530
531 2007-10-23  Jason Merrill  <jason@redhat.com>
532
533         PR c++/25950 (DR 391)
534         * call.c (struct conversion): Remove check_copy_constructor_p.
535         (reference_binding): Always bind a reference directly to a 
536         compatible class rvalue.  Pass down LOOKUP_NO_TEMP_BIND during 
537         temporary creation.
538         (check_constructor_callable): Remove.
539         (convert_like_real): Don't call it.
540         (initialize_reference): Don't call check_constructor_callable.
541         (standard_conversion): Check LOOKUP_NO_CONVERSION instead of
542         LOOKUP_CONSTRUCTOR_CALLABLE.  Don't require a temporary for base
543         conversions if LOOKUP_NO_TEMP_BIND.
544         (implicit_conversion): Pass through LOOKUP_NO_TEMP_BIND.
545         (build_user_type_conversion_1): Pass through LOOKUP_NO_TEMP_BIND for
546         second conversion.
547         * cp-tree.h (LOOKUP_CONSTRUCTOR_CALLABLE): Remove.
548
549 2007-10-22  Jakub Jelinek  <jakub@redhat.com>
550
551         PR c++/33372
552         * semantics.c (finish_omp_clauses): Check !type_dependent_expression_p
553         before checking if its type is integral.
554
555 2007-10-22  Jason Merrill  <jason@redhat.com>
556
557         PR c++/33620
558         * class.c (finish_struct_bits): Copy TYPE_ATTRIBUTES.
559         * pt.c (apply_late_template_attributes): Splice out dependent
560         attributes from DECL_ATTRIBUTES.
561
562         * decl.c (cxx_maybe_build_cleanup): Use build_address.
563
564 2007-10-17  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
565
566         * typeck.c (build_binary_op) : Use appropriate warning option
567         instead of unnamed warning.
568
569 2007-10-16  Paolo Carlini  <pcarlini@suse.de>
570
571         PR c++/31446
572         * pt.c (current_template_args): Do not change TREE_LIST elements
573         with a TREE_VALUE of error_mark_node.
574
575 2007-10-16  Mark Mitchell  <mark@codesourcery.com>
576
577         * typeck.c (cp_apply_type_quals_to_decl): Expand documentation.
578         * decl.c (start_decl): Tidy.
579         (start_decl_1): Call cp_apply_type_quals_to_decl after completing
580         the type.
581         (grokdeclarator): Clarify comment.
582
583 2007-10-14  Andrew Pinski  <pinskia@gmail.com>
584
585         PR c++/30303
586         * decl.c (grokfndecl): Return NULL after the "definition of
587         implicitly-declared" error happened.
588
589 2007-10-12  Simon Martin  <simartin@users.sourceforge.net>
590
591         PR c++/26698
592         * call.c (build_user_type_conversion_1): Do not consider conversion
593         functions to convert a (possibly cv-qualified) object to the (possibly
594         cv-qualified) same object type (or a reference to it), to a (possibly
595         cv-qualified) base class of that type (or a reference to it).
596
597 2007-10-12  Paolo Carlini  <pcarlini@suse.de>
598
599         * pt.c (tsubst): Use template_parm_level_and_index.
600
601 2007-10-12  Jakub Jelinek  <jakub@redhat.com>
602
603         PR c++/32121
604         * parser.c (cp_parser_compound_statement): Handle label-declarations
605         at the beginning of the compound statement.
606         (cp_parser_block_declaration): Issue diagnostics about __label__
607         not at the beginning of a block.
608
609 2007-10-11  Paolo Carlini  <pcarlini@suse.de>
610
611         PR c++/33461
612         * pt.c (coerce_template_parameter_pack): Do not pass error_mark_node
613         to convert_template_argument.
614         (coerce_template_parms): Return error_mark_node after fixed-length
615         error.
616         (tsubst_decl): Check for error_mark_node the return value of the
617         first tsubst in 'case VAR_DECL'.
618
619 2007-10-08  Ollie Wild  <aaw@google.com>
620
621         * typeck2.c (digest_init): Call cplus_expand_constant after
622         convert_for_initialization.
623         * cp-objcp-common.h (LANG_HOOKS_EXPAND_CONSTANT): Removed.
624         * expr.c (cplus_expand_constant): Updated function description.
625
626 2007-10-04  Jason Merrill  <jason@redhat.com>
627
628         PR c++/20416
629         * call.c (initialize_reference): Handle local static reference
630         temps properly.
631
632 2007-10-03  Jason Merrill  <jason@redhat.com>
633
634         PR c++/32470
635         * name-lookup.c (push_namespace_with_attrs): Fold back into...
636         (push_namespace): Here.
637         (handle_namespace_attrs): New fn for the attr code.
638         (leave_scope): Don't pop_visibility.
639         * name-lookup.h (struct cp_binding_level): Remove has_visibility.
640         * parser.c (cp_parser_namespace_definition): Call
641         handle_namespace_attrs and pop_visibility as appropriate. 
642
643         PR c++/11756
644         * mangle.c (write_type) [TYPEOF_TYPE]: Just sorry.
645
646 2007-10-03  Alexandre Oliva  <aoliva@redhat.com>
647
648         * decl.c (duplicate_decls): Preserve linkage flags for mere
649         redeclarations of gnu_inline definitions.
650
651 2007-10-03  Jason Merrill  <jason@redhat.com>
652
653         PR c++/15764
654         * decl.c (wrap_cleanups_r): New fn.
655         (wrap_temporary_cleanups): New fn.
656         (initialize_local_var): Call it.
657
658 2007-09-29  Jason Merrill  <jason@redhat.com>
659
660         PR c++/33094
661         * decl.c (make_rtl_for_nonlocal_decl): It's ok for a member 
662         constant to not have DECL_EXTERNAL if it's file-local.
663
664 2007-09-28  Ollie Wild  <aaw@google.com>
665
666         Revert
667         2007-09-27  Ollie Wild  <aaw@google.com>
668
669         * typeck2.c (digest_init): Call cplus_expand_constant after
670         convert_for_initialization.
671         * cp-objcp-common.h (LANG_HOOKS_EXPAND_CONSTANT): Removed.
672         * expr.c (cplus_expand_constant): Updated function description.
673
674 2007-09-28  Jason Merrill  <jason@redhat.com>
675
676         PR c++/10179
677         * class.c (layout_empty_base): Take rli parameter, update
678         rli->record_align if empty base has user-specified alignment.
679         (build_base_field): Pass rli to it.
680
681 2007-09-28  Paolo Carlini  <pcarlini@suse.de>
682
683         PR c++/33213
684         * error.c (dump_decl): Deal with TYPE_PACK_EXPANSION.
685
686 2007-09-28  Paolo Carlini  <pcarlini@suse.de>
687
688         PR c++/33118
689         * error.c (dump_expr): Deal with ARGUMENT_PACK_SELECT.
690         (dump_type): Use dump_template_argument for TYPE_ARGUMENT_PACK.
691         (dump_parameters): Just call dump_type for argument packs too.
692
693 2007-09-28  Jakub Jelinek  <jakub@redhat.com>
694
695         PR c++/31434
696         * tree.c (cp_build_qualified_type_real): Handle TYPE_PACK_EXPANSION
697         qualification by creating qualified PACK_EXPANSION_PATTERN and
698         then calling make_pack_expansion on it.
699
700 2007-09-27  Ollie Wild  <aaw@google.com>
701
702         * typeck2.c (digest_init): Call cplus_expand_constant after
703         convert_for_initialization.
704         * cp-objcp-common.h (LANG_HOOKS_EXPAND_CONSTANT): Removed.
705         * expr.c (cplus_expand_constant): Updated function description.
706
707 2007-09-27  Jason Merrill  <jason@redhat.com>
708
709         PR c++/33571
710         * decl2.c (is_late_template_attribute): Don't crash on unknown
711         attribute.
712
713 2007-09-27  Paolo Carlini  <pcarlini@suse.de>
714
715         PR c++/33493
716         * error.c (dump_expr): Deal with DELETE_EXPR and VEC_DELETE_EXPR.
717         * cxx-pretty-print.c (pp_cxx_delete_expression): Add missing
718         spaces in the formatting.
719         * cxx-pretty-print.h (pp_cxx_delete_expression): Declare.
720
721 2007-09-27  Jakub Jelinek  <jakub@redhat.com>
722
723         * error.c (cxx_print_error_function): Add third argument, pass
724         it over to lhd_print_error_function.
725         (cp_print_error_function): If diagnostic->abstract_origin, print
726         virtual backtrace.
727         * cp-tree.h (struct diagnostic_info): New forward decl.
728         (cxx_print_error_function): Add third argument.
729
730 2007-09-25  Simon Martin  <simartin@users.sourceforge.net>
731
732         PR c++/33207
733         * name-lookup.c (pushtag): Do not create an implicit typedef before
734         the associated type declaration is known to be valid.
735
736 2007-09-25  Jakub Jelinek  <jakub@redhat.com>
737
738         * tree.c (cxx_printable_name): Compare FUNCTION_DECL uids
739         rather than pointers.
740
741 2007-09-24  Danny Smith  <dannysmith@user.sourceforge.net>
742
743         PR c++/14688
744         * search.c (check_final_overrider): Fail if
745         targetm.comp_type_attributes returns 0.
746
747 2007-09-24  Jason Merrill  <jason@redhat.com>
748
749         PR c++/33239
750         * pt.c (resolve_typename_type): Don't look things up in the original
751         template if it would mean losing template arguments.    
752
753 2007-09-24  Jakub Jelinek  <jakub@redhat.com>
754
755         PR c++/33506
756         * cp-tree.h (cxx_type_hash_eq): New prototype.
757         * cp-objcp-common.h (LANG_HOOKS_TYPE_HASH_EQ): Redefine.
758         * tree.c (cxx_type_hash_eq): New function.
759
760 2007-09-24  Douglas Gregor  <doug.gregor@gmail.com>
761
762         PR c++/33185    
763         * tree.c (cp_build_qualified_type_real): Build a canonical
764         ARRAY_TYPE if the original ARRAY_TYPE was not a canonical type.
765         
766 2007-09-24  Douglas Gregor  <doug.gregor@gmail.com>
767
768         PR c++/33112
769         PR c++/33185    
770         * tree.c (cplus_array_compare): Compare pointers, not types.
771         (build_cplus_array_type_1): Store new array type into the hash
772         table before building the canonical type; build the canonical type
773         correctly.
774         (cp_build_qualified_type_real): Put all of the array types with
775         cv-qualified element types into the C++ array hash table, built as 
776         variants of the unqualified versions.
777         
778 2007-09-23  Jason Merrill  <jason@redhat.com>
779
780         PR c++/16370
781         * decl.c (grokdeclarator): Look through implicit TYPE_DECLs
782         for deprecation warnings.
783
784 2007-09-22  Jason Merrill  <jason@redhat.com>
785
786         PR c++/15269
787         * call.c (build_over_call): Warn about deprecated virtuals.
788
789         PR c++/19407
790         * cp-tree.h (ATTR_IS_DEPENDENT): New macro.
791         (MAYBE_TAGGED_TYPE_P): Remove.
792         * pt.c (apply_late_template_attributes): Check ATTR_IS_DEPENDENT
793         instead of calling is_late_template_attribute again.
794         (tsubst_decl) [TYPE_DECL]: Just check if the name is the tag.
795         (tsubst): A typedef is a TYPE_NAME != TYPE_MAIN_DECL.
796         Don't crash on typedefs from non-template classes.
797         * decl2.c (grokfield): Don't sorry about attrs on template parms.
798         (is_late_template_attribute): All attributes applied to template
799         parms or typename types are dependent.  Static.
800         (splice_template_attributes): Pass decl through.
801         (save_template_attributes): Likewise.
802
803 2007-09-20  Jakub Jelinek  <jakub@redhat.com>
804
805         PR c++/33496
806         * pt.c (tsubst_copy) <case SIZEOF_EXPR>: Handle error_mark_node
807         returned from tsubst_pack_expansion.
808         (tsubst_copy_and_build) <case SIZEOF_EXPR>: Likewise.
809         (tsubst_copy_and_build) <case CONSTRUCTOR>: Likewise.
810
811 2007-09-20  Paolo Carlini  <pcarlini@suse.de>
812
813         PR c++/33460
814         * semantics.c (finish_id_expression): Use consistently
815         context_for_name_lookup.
816         * decl.c (fixup_anonymous_aggr): Fix error message for
817         anonymous struct (vs union).
818
819 2007-09-19  Jason Merrill  <jason@redhat.com>
820
821         PR c++/7586
822         * pt.c (tsubst): Handle typedefs by looking for the specialization.
823         (retrieve_specialization): Only tagged types use 
824         DECL_TEMPLATE_INSTANTIATIONS.
825         (instantiate_class_template): Push nested classes too.
826         (tsubst_decl) [TYPE_DECL]: Only check for canonical decl for
827         tagged types.
828         * cp-tree.h (MAYBE_TAGGED_TYPE_P): New macro.
829         * init.c (is_aggr_type): Remove redundant tests.
830         * class.c (push_nested_class): Use CLASS_TYPE_P.
831
832 2007-09-20  Paolo Carlini  <pcarlini@suse.de>
833
834         PR c++/33459
835         * init.c (build_zero_init): If, recursively, build_zero_init
836         returns a NULL_TREE, do not append it to the VEC of constructors.
837
838 2007-09-18  Jason Merrill  <jason@redhat.com>
839
840         PR c++/17743
841         * pt.c (apply_late_template_attributes): Set processing_template_decl.
842         (tsubst_decl) [TYPE_DECL]: Preserve naming typedef, pass
843         ATTR_FLAG_TYPE_IN_PLACE.
844         (tsubst): Do unqualified lookup to find typedefs from current class.
845         [ARRAY_TYPE]: Propagate alignment info.
846         * decl2.c (is_late_template_attribute): Only defer handling of
847         attribute aligned if the expression is dependent.
848         (save_template_attributes): If we're deferring any attributes,
849         make this a naming typedef.
850
851 2007-09-18  Paolo Carlini  <pcarlini@suse.de>
852
853         PR c++/33462 (again)
854         * cxx-pretty-print.c (pp_cxx_va_arg_expression): Print
855         va_arg instead of __builtin_va_arg.
856
857 2007-09-18  Paolo Carlini  <pcarlini@suse.de>
858
859         PR c++/33462
860         * cxx-pretty-print.c (pp_cxx_va_arg_expression): Add.
861         (pp_cxx_primary_expression): Use it.
862         * cxx-pretty-print.h (pp_cxx_va_arg_expression): Declare.
863         * error.c (dump_expr): Use it.
864
865 2007-09-18  Paolo Carlini  <pcarlini@suse.de>
866
867         PR c++/33463
868         * cxx-pretty-print.c (pp_cxx_postfix_expression): Split
869         out case TYPEID_EXPR to...
870         (pp_cxx_typeid_expression): ... here; use pp_cxx_left_paren
871         and pp_cxx_right_paren.
872         * cxx-pretty-print.h (pp_cxx_typeid_expression): Declare.
873         * error.c (dump_expr): Use it.
874
875 2007-09-18  Paolo Carlini  <pcarlini@suse.de>
876
877         PR c++/33464
878         * cxx-pretty-print.c (pp_cxx_trait_expression): Add.
879         (pp_cxx_primary_expression): Use it.
880         * cxx-pretty-print.h (pp_cxx_trait_expression): Declare.
881         * error.c (dump_expr): Use it.
882
883 2007-09-16  Paolo Carlini  <pcarlini@suse.de>
884
885         PR c++/33124
886         * init.c (build_new): Remove warning for zero-element
887         allocations.
888
889 2007-09-16  Nathan Sidwell  <nathan@codesourcery.com>
890
891         PR c++/32756
892         * call.c (maybe_handle_implicit_object): Set this_p, clear
893         rvaluedness_matches_p.
894         (compare_ics): Do not compare rvaluedness matching when one of the
895         operands is an implicit object.
896
897 2007-09-14  Jason Merrill  <jason@redhat.com>
898
899         PR c++/17743, c++/19163
900         * decl2.c (is_late_template_attribute): New fn.
901         (splice_template_attributes, save_template_attributes): New fns.
902         (cplus_decl_attributes): Call save_template_attributes.
903         * pt.c (apply_late_template_attributes): New fn.
904         (instantiate_class_template, tsubst_decl): Use it.
905         * cp-tree.h: Declare is_late_template_attribute.
906
907 2007-09-13  Tom Tromey  <tromey@redhat.com>
908
909         * parser.c (cp_lexer_new_main): Don't use
910         c_lex_return_raw_strings.
911         (cp_lexer_get_preprocessor_token): Update.  Add special case when
912         lexer is NULL.
913
914 2007-09-11  Jan Hubicka <jh@suse.cz>
915
916         * method.c (use_thunk): Use tree_rest_of_compilation
917         * cp-objecp-common.h (LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION): Kill.
918         (LANG_HOOKS_CALLGRAPH_EMIT_ASSOCIATED_THUNKS): Define.
919         * cp-tree.h (expand_body): Kill.
920         (emit_associated_thunks): Declare.
921         * semantics.c (emit_associated_thunks): Export.
922         (expand_body): Kill.
923
924 2007-09-09  David Daney  <ddaney@avtrex.com>
925
926         PR c++/33324
927         * init.c (build_new_1):  Use POINTER_PLUS_EXPR instead of MINUS_EXPR
928         to calculate cookie_ptr.
929
930 2007-09-08  Jason Merrill  <jason@redhat.com>
931
932         PR c++/33342
933         * pt.c (most_specialized_class): Set processing_template_decl
934         while tsubsting partial spec args.
935
936 2007-09-06  Jason Merrill  <jason@redhat.com>
937
938         * decl2.c (get_guard): Copy visibility from the guarded variable.
939
940 2007-09-06  Jan Hubicka  <jh@suse.cz>
941
942         * semantics.c (expand_body): Do not mark arguments of clones used.
943
944 2007-09-06  Paolo Carlini  <pcarlini@suse.de>
945
946         PR c++/32674
947         * decl.c (cp_finish_decl): When processing_template_decl,
948         deal correctly with init as TREE_LIST.
949
950 2007-09-06  Tom Tromey  <tromey@redhat.com>
951
952         * decl.c (finish_function): Put return's location on line zero of
953         file.
954
955 2007-09-05  Jason Merrill  <jason@redhat.com>
956
957         PR c++/15745
958         * except.c (prepare_eh_type): Use type_decays_to.
959
960         PR c++/15097
961         * init.c (build_delete): Use build_headof to get the address of the
962         complete object if we aren't using the deleting destructor.
963         * rtti.c (build_headof): No longer static.
964         * cp-tree.h: Declare it.
965
966 2007-09-06  Jakub Jelinek  <jakub@redhat.com>
967
968         * decl.c (duplicate_decls): Set TREE_NOTHROW on __builtin_XX
969         decl if a prototype for XX is provided with throw().
970
971         PR c++/33289
972         * decl.c (builtin_function_1): Set DECL_ANTICIPATED also
973         on __*_chk non-__builtin_* decls.
974
975 2007-09-05  Paolo Carlini  <pcarlini@suse.de>
976
977         PR c++/30302
978         * semantics.c (finish_id_expression): Use context_for_name_lookup
979         insted of DECL_CONTEXT, to see through anonymous structs and unions.
980         * class.c (finish_struct_anon): Deal correctly with anonymous
981         structs (vs unions, as GNU extension) in error messages.
982
983 2007-09-05  Jan Hubicka  <jh@suse.cz>
984
985         * cp/sematics.c (expand_body): Remove unnecesary import_export_decl
986         call, DECL_EXTERNAL checks and current_function_decl saving.
987
988 2007-09-05  Paolo Carlini  <pcarlini@suse.de>
989
990         PR c++/29731 (again)
991         * parser.c (cp_parser_primary_expression): Return error_mark_node
992         when a statement-expression is found in a template-argument list.
993
994 2007-09-04  Jason Merrill  <jason@redhat.com>
995
996         * except.c (initialize_handler_parm): Use
997         fold_build_cleanup_point_expr.
998
999         PR c++/31419
1000         * call.c (reference_binding): Don't look for user-defined conversions
1001         to the same type.
1002
1003         PR c++/31411
1004         * except.c (initialize_handler_parm): Put a CLEANUP_POINT_EXPR inside
1005         the MUST_NOT_THROW_EXPR.
1006
1007 2007-09-04  Richard Sandiford  <richard@codesourcery.com>
1008
1009         * decl.c (cp_finish_decl): Call determine_visibility before
1010         make_rtl_for_nonlocal_decl.
1011
1012 2007-09-04  Jason Merrill  <jason@redhat.com>
1013
1014         PR c++/14032
1015         * pt.c (most_specialized_class): Substitute outer template
1016         arguments into the arguments of a member template partial
1017         specialization.
1018         (strip_innermost_template_args): New fn.
1019
1020 2007-09-03  Daniel Jacobowitz  <dan@codesourcery.com>
1021
1022         * Make-lang.in (g++spec.o): Remove SHLIB_MULTILIB.
1023
1024 2007-09-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1025
1026         * call.c (name_as_c_string): Supply a TYPE for CONST_CAST.
1027         * decl.c (cp_make_fname_decl): Likewise,
1028         * parser.c (cp_parser_string_literal): Likewise,
1029         * tree.c (pod_type_p, zero_init_p): Use CONST_CAST_TREE.
1030         * typeck.c (cp_type_quals, cp_type_readonly, cp_has_mutable_p):
1031         Likewise,
1032
1033 2007-09-02  Paolo Carlini  <pcarlini@suse.de>
1034
1035         PR c++/33208
1036         * typeck.c (build_unary_op): Fix error message for
1037         Boolean expression as operand to operator--.
1038
1039 2007-09-01  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1040
1041         * tree.c (pod_type_p, zero_init_p): Use strip_array_types.
1042         * typeck.c (cp_type_quals, cp_type_readonly, cp_has_mutable_p):
1043         Likewise.
1044
1045 2007-08-31 Douglas Gregor <doug.gregor@gmail.com>
1046
1047         PR c++/32597
1048         * init.c (build_default_init): Make extern.
1049         * cp-tree.h (build_default_init): Declare here.
1050         * pt.c (tsubst_expr): When the instantiation of the initializer of
1051         a variable results in an empty list, default-initialize the
1052         variable.
1053         (tsubst_copy_and_build): When the instantiation of the initializer
1054         in a new expression results in an empty initializer list,
1055         default-initialize it.
1056
1057 2007-08-31  Douglas Gregor  <doug.gregor@gmail.com>
1058
1059         * mangle.c (write_type): Change mangling of rvalue reference from
1060         `RR' to `O'. 
1061
1062 2007-08-31  Jakub Jelinek  <jakub@redhat.com>
1063
1064         * decl.c (duplicate_decls): Remove duplicated line.
1065
1066 2007-08-31  Paolo Carlini  <pcarlini@suse.de>
1067
1068         PR c++/33210
1069         * cxx-pretty-print.c (pp_cxx_unqualified_id): Deal with
1070         BOUND_TEMPLATE_TEMPLATE_PARM.
1071
1072 2007-08-31  Paolo Carlini  <pcarlini@suse.de>
1073
1074         PR c++/32113
1075         * search.c (lookup_member): Check the name argument for
1076         error_mark_node.
1077
1078 2007-08-31  Paolo Carlini  <pcarlini@suse.de>
1079
1080         PR c++/33212
1081         * parser.c (cp_parser_trait_expr): Check rerurn value of
1082         cp_parser_type_id.
1083
1084 2007-08-30  Ollie Wild  <aaw@google.com>
1085
1086         * cvt.c (cp_convert_to_pointer): Remove force parameter. Call
1087         convert_ptrmem for pointer to member conversions.
1088         (convert_to_pointer_force): Update cp_convert_to_pointer call.
1089         (ocp_convert): Update cp_convert_to_pointer call.
1090         * typeck.c (convert_ptrmem): Add conditional for null pointers to
1091         members.
1092         (build_static_cast_1): Check can_convert for conversions in either
1093         direction.
1094         (get_delta_difference_1): New function.
1095         (get_delta_difference): Refactor to call get_delta_difference_1.
1096
1097 2007-08-30  Jakub Jelinek  <jakub@redhat.com>
1098
1099         * decl.c (start_preparsed_function): Set
1100         DECL_DISREGARD_INLINE_LIMITS for GNU_INLINE_P functions.
1101
1102 2007-08-28  Paolo Carlini  <pcarlini@suse.de>
1103
1104         PR c++/33209
1105         * error.c (dump_expr): Deal with TEMPLATE_TYPE_PARM and
1106         BOUND_TEMPLATE_TEMPLATE_PARM.
1107
1108 2007-08-28  Jakub Jelinek  <jakub@redhat.com>
1109
1110         PR c++/32596
1111         PR c++/32400
1112         * pt.c (check_explicit_specialization): Set DECL_INTERFACE_KNOWN
1113         and DECL_NOT_REALLY_EXTERN if tmpl_func is not public.
1114
1115 2007-08-27  Jason Merrill  <jason@redhat.com>
1116
1117         PR c++/29000
1118         * pt.c (build_non_dependent_expr, type_dependent_expression_p): 
1119         Look inside STMT_EXPR.
1120         * semantics.c (stmt_expr_value_expr): New fn.
1121         * cp-tree.h: Declare it.
1122
1123         PR c++/28558
1124         * decl.c (groktypename): Ignore attributes applied to class type.
1125
1126 2007-08-28  Richard Guenther  <rguenther@suse.de>
1127
1128         * decl.c (duplicate_decls): Merge DECL_DISREGARD_INLINE_LIMITS.
1129
1130 2007-08-28  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1131         
1132         * error.c (dump_expr): Handle COMPLEX_CST.
1133         * cxx-pretty-print.c (pp_cxx_primary_expression): Likewise.
1134         (pp_cxx_expression): Likewise.
1135
1136 2007-08-27  Alexandre Oliva  <aoliva@redhat.com>
1137
1138         * decl.c (GNU_INLINE_P): New.
1139         (duplicate_decls): Handle gnu_inline.  Merge attributes and
1140         some flags in overriding definitions.
1141         (redeclaration_error_message): Handle gnu_inline.
1142         (start_preparsed_function): Likewise.
1143
1144 2007-08-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1145
1146         * call.c (sufficient_parms_p): Constify.
1147         * class.c (same_signature_p): Likewise.
1148         * cp-gimplify.c (is_invisiref_parm,
1149         cxx_omp_privatize_by_reference): Likewise.
1150         * cp-objcp-common.c (has_c_linkage): Likewise.
1151         * cp-tree.h (NON_THUNK_FUNCTION_CHECK, THUNK_FUNCTION_CHECK,
1152         sufficient_parms_p, same_signature_p, copy_fn_p, move_fn_p,
1153         grok_ctor_properties, nothrow_libfn_p, skip_artificial_parms_for,
1154         num_artificial_parms_for, comp_template_parms,
1155         template_parameter_pack_p, any_dependent_template_arguments_p,
1156         any_type_dependent_arguments_p, any_value_dependent_elements_p,
1157         repo_export_class_p, cxx_omp_privatize_by_reference, pod_type_p,
1158         zero_init_p, member_p, cp_lvalue_kind,
1159         builtin_valid_in_constant_expr_p, decl_anon_ns_mem_p,
1160         varargs_function_p, is_dummy_object, special_function_kind,
1161         string_conv_p, type_unknown_p, comp_except_specs, compparms,
1162         comp_cv_qualification, is_bitfield_expr_with_lowered_type,
1163         unlowered_expr_type, ptr_reasonably_similar, cp_type_readonly,
1164         cp_has_mutable_p, at_least_as_qualified_p,
1165         invalid_nonstatic_memfn_p, lvalue_or_else, lvalue_p): Likewise.
1166         * decl.c (copy_fn_p, move_fn_p, grok_ctor_properties): Likewise.
1167         * except.c (nothrow_libfn_p): Likewise.
1168         * method.c (skip_artificial_parms_for, num_artificial_parms_for):
1169         Likewise.
1170         * pt.c (comp_template_parms, template_parameter_pack_p,
1171         any_type_dependent_arguments_p, any_value_dependent_elements_p,
1172         any_dependent_template_arguments_p): Likewise.
1173         * repo.c (repo_export_class_p): Likewise.
1174         * semantics.c (anon_aggr_type_p): Likewise.
1175         * tree.c (lvalue_p_1, real_lvalue_p, lvalue_p,
1176         builtin_valid_in_constant_expr_p, decl_anon_ns_mem_p,
1177         varargs_function_p, member_p, is_dummy_object, pod_type_p,
1178         zero_init_p, special_function_p): Likewise.
1179         * typeck.c (comp_array_types, type_unknown_p, comp_except_specs,
1180         comp_array_types, at_least_as_qualified_p, comp_cv_qualification,
1181         compparms, invalid_nonstatic_memfn_p,
1182         is_bitfield_expr_with_lowered_type, unlowered_expr_type,
1183         string_conv_p, ptr_reasonably_similar, cp_type_readonly,
1184         cp_has_mutable_p, lvalue_or_else): Likewise.
1185
1186 2007-08-25  Paolo Bonzini  <bonzini@gnu.org>
1187
1188         * decl.c (cp_tree_node_structure): Kill TINST_LEVEL case.
1189         * cp-objcp-common.c (cp_tree_size): Ditto.
1190         * tree.c (cp_walk_subtrees): Ditto
1191         * cp-tree.def (TINST_LEVEL): Go away.
1192         * cp-tree.h (struct tinst_level_s): Rename to struct tinst_level,
1193         move together with other non-tree structs.
1194         (enum cp_tree_node_structure_enum): Nuke TS_CP_TINST_LEVEL.
1195         (union lang_tree_node): Eliminate tinst_level field.
1196         (TINST_DECL, TINST_LOCATION, TINST_IN_SYSTEM_HEADER_P): Annihilate.
1197         (current_instantiation, outermost_tinst_level): Return
1198         a "struct tinst_level *".
1199
1200         * error.c (print_instantiation_partial_context): Change second
1201         parameter to a "struct tinst_level *".  Replace accessor macros
1202         with field access.
1203         (print_instantiation_full_context): Likewise.
1204         * lex.c (in_main_input_context): Likewise.
1205
1206         * pt.c (struct pending_templates): New.
1207         (pending_templates, last_pending_template): Use it as a type.
1208         (current_tinst_level): Change typo to "struct tinst_level *"
1209         (reopen_tinst_level): Accept "struct tinst_level *", return decl.
1210         (add_pending_template): Construct a "struct pending_template".
1211         Replace TINST_LEVEL accessor macros with field access.
1212         (push_tinst_level): Likewise, using GGC_NEW instead of make_node.
1213         (pop_tinst_level): Likewise.
1214         (instantiate_pending_templates): Likewise.  Factor common code used
1215         when an instantiation has been done.
1216         (outermost_tinst_level): Replace tree_last with loop.
1217         (current_instantiation): Return a "struct tinst_level *".
1218
1219 2007-08-24  Ollie Wild  <aaw@google.com>
1220
1221         * name-lookup.c (add_decl_to_level): Remove addition to vtables chain.
1222         * name-lookup.h (cp_binding_level): Remove vtables member.
1223
1224 2007-08-24  Richard Guenther  <rguenther@suse.de>
1225
1226         * tree.c (cp_cannot_inline_tree_fn): Remove.
1227         * cp-tree.h (cp_cannot_inline_tree_fn): Likewise.
1228         * cp-objcp-common.h (LANG_HOOKS_TREE_INLINING_CANNOT_INLINE_TREE_FN):
1229         Remove define.
1230
1231 2007-08-24  Jakub Jelinek  <jakub@redhat.com>
1232
1233         PR c++/32567
1234         * typeck.c (build_unary_op) <case PREINCREMENT_EXPR>: Return
1235         error_mark_node right away if build_expr_type_conversion
1236         returned it.
1237
1238         PR c++/32898
1239         * name-lookup.c (set_decl_namespace): lookup_qualified_name failure
1240         is error_mark_node rather than NULL_TREE.
1241         * pt.c (check_explicit_specialization): Likewise.
1242
1243         PR c++/31941
1244         * error.c (resolve_virtual_fun_from_obj_type_ref): Handle
1245         TARGET_VTABLE_USES_DESCRIPTORS targets properly.
1246
1247 2007-08-22  Jason Merrill  <jason@redhat.com>
1248
1249         PR c++/29365
1250         * pt.c (outermost_tinst_level): New function.
1251         * lex.c (in_main_input_context): New function.
1252         * cp-tree.h: Declare it.
1253         * decl2.c (constrain_class_visibility): Use it to avoid warning
1254         about uses of the anonymous namespace in the main input file.
1255
1256 2007-08-21  Jakub Jelinek  <jakub@redhat.com>
1257
1258         * init.c (build_new_1): Use get_target_expr instead of save_expr.
1259
1260 2007-08-20  Pawel Sikora  <pluto@pld-linux.org>
1261
1262         PR c++/7302
1263         * class.c (finish_struct_1): Warn when a class has virtual
1264         functions and accessible non-virtual destructor.
1265
1266 2007-08-20  Richard Guenther  <rguenther@suse.de>
1267
1268         PR c++/22369
1269         PR c++/22451
1270         * call.c (build_new_method_call): Convert initializer to
1271         the basetype.
1272         * init.c (build_aggr_init): Do not fiddle with types.
1273         (build_vec_delete_1): Use correct type for POINTER_PLUS_EXPR.
1274         * except.c (build_throw): Do not drop qualifiers for the
1275         pointer type.
1276         * typeck.c (get_member_function_from_ptrfunc): Do not
1277         fiddle with types, instead convert.
1278         (build_ptrmemfunc1): Convert to the target type for
1279         initialization.
1280         (gfc_trans_allocate): Convert result to target type.
1281         * cp-objcp-common.c (cxx_get_alias_set): Pointers to
1282         pointer-to-member structures shall have alias set zero as well.
1283
1284 2007-08-20  Richard Guenther  <rguenther@suse.de>
1285
1286         * cp-objcp-common.h (LANG_HOOKS_TREE_INLINING_AUTO_VAR_IN_FN_P):
1287         Remove.
1288         * cp-tree.h (cp_auto_var_in_fn_p): Remove.
1289         (nonstatic_local_decl_p): Likewise.
1290         * tree.c (cp_auto_var_in_fn_p): Remove.
1291         * decl.c (nonstatic_local_decl_p): Remove.
1292
1293 2007-08-20  Richard Guenther  <rguenther@suse.de>
1294
1295         * cp-objcp-common.h (LANG_HOOKS_TREE_INLINING_WALK_SUBTREES):
1296         Remove define.
1297         * tree.h (cp_walk_tree): New define to walk_tree_1 with
1298         cp_walk_subtrees lh parameter.
1299         (cp_walk_tree_without_duplicates): New define to
1300         walk_tree_without_duplicates_1 with cp_walk_subtrees lh parameter.
1301         * tree.c (count_trees): Call
1302         cp_walk_tree_without_duplicates.
1303         (verify_stmt_tree): Call cp_walk_tree.
1304         (break_out_target_exprs): Likewise.
1305         (WALK_SUBTREE): Likewise.
1306         * cp-gimplify.c (cp_genericize): Likewise.
1307         * cp-pt.c (find_parameter_packs_r): Likewise.
1308         (uses_parameter_packs): Likewise.
1309         (make_pack_expansion): Likewise.
1310         (check_for_bare_parameter_packs): Likewise.
1311         (for_each_template_parm): Likewise.
1312         * decl.c (check_default_argument): Call
1313         cp_walk_tree_without_duplicates.
1314         * except.c (build_throw): Likewise.
1315         * decl2.c (type_visibility): Likewise.
1316         * semantics.c (expand_or_defer_fn): Likewise.
1317         (finalize_nrv): Call cp_walk_tree.
1318
1319 2007-08-20  Jakub Jelinek  <jakub@redhat.com>
1320
1321         PR c++/33025
1322         * init.c (build_new_1): Rename placement_var variable to placement_expr.
1323         Initialize it with save_expr rather than get_temp_regvar.
1324
1325 2007-08-17  Andrew Pinski  <andrew_pinski@playstation.sony.com>
1326
1327         PR c++/28989
1328         * tree.c (lvalue_p_1 <case SAVE_EXPR>): SAVE_EXPRs are never
1329         lvalues.
1330
1331 2007-08-17  Ollie Wild  <aaw@google.com>
1332
1333         PR c++/31749
1334         * name-lookup.c (do_nonmember_using_decl): Shift implicit type
1335         declarations into appropriate slots for comparison.  Fix type
1336         comparison.
1337
1338 2007-08-17  Paolo Carlini  <pcarlini@suse.de>
1339
1340         PR c++/32112
1341         * error.c (dump_decl): Deal with UNBOUND_CLASS_TEMPLATE.
1342         * cxx-pretty-print.c (pp_cxx_unqualified_id): Likewise.
1343
1344 2007-08-17  Paolo Carlini  <pcarlini@suse.de>
1345
1346         PR c++/32870
1347         * parser.c (cp_parser_class_head): Improve error message.
1348
1349 2007-08-16  Seongbae Park  <seongbae.park@gmail.com>
1350
1351         * pt.c (instantiate_decl): Set input_location
1352         for the function end.
1353
1354 2007-08-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1355
1356         * cp-objcp-common.c (cxx_warn_unused_global_decl, cp_expr_size):
1357         Constify.
1358         * cp-tree.h (local_variable_p, nonstatic_local_decl_p,
1359         class_tmpl_impl_spec_p, cp_auto_var_in_fn_p, cp_type_quals,
1360         cxx_incomplete_type_diagnostic, cxx_incomplete_type_error,
1361         cxx_warn_unused_global_decl, cp_expr_size): Likewise.
1362         * decl.c (local_variable_p, nonstatic_local_decl_p): Likewise.
1363         * tree.c (class_tmpl_impl_spec_p, cp_auto_var_in_fn_p): Likewise.
1364         * typeck.c (cp_type_quals): Likewise.
1365         * typeck2.c (cxx_incomplete_type_diagnostic,
1366         cxx_incomplete_type_error): Likewise.
1367
1368 2007-08-16  Paolo Carlini  <pcarlini@suse.de>
1369
1370         PR c++/31132
1371         * pt.c (tsubst_friend_function): When check_classfn
1372         returns error_mark_node likewise return it.
1373
1374 2007-08-15  Jakub Jelinek  <jakub@redhat.com>
1375
1376         PR c++/32992
1377         * typeck.c (check_return_expr): Don't NRV optimize vars in
1378         anonymous unions.
1379         * decl.c (finish_function): Comment fix.
1380
1381 2007-08-15  Paolo Carlini  <pcarlini@suse.de>
1382
1383         PR c++/33035
1384         * pt.c (push_template_decl_real): Depending on TYPE_P
1385         use either TYPE_CONTEXT or DECL_CONTEXT.
1386
1387 2007-08-14  Mark Mitchell  <mark@codesourcery.com>
1388
1389         * semantics.c (finish_omp_clauses): Strip a NOP_EXPR if
1390         constructors and destructors return this.
1391
1392 2007-08-14  Paolo Carlini  <pcarlini@suse.de>
1393
1394         PR c++/27211
1395         * decl2.c (check_classfn): Return error_mark_node in case of error;
1396         in that case, do not call add_method.
1397         * decl.c (start_decl): Deal with check_classfn returning
1398         error_mark_node.
1399         (grokfndecl): Likewise.
1400         * pt.c (tsubst_friend_function): Likewise.
1401
1402 2007-08-14  Andrew Pinski  <pinskia@gmail.com>
1403
1404         PR c++/30428
1405         * typeck.c (build_binary_op): Disallow vector float types with
1406         BIT_IOR_EXPR, BIT_AND_EXPR, and BIT_XOR_EXPR.
1407
1408 2007-08-11  Ian Lance Taylor  <iant@google.com>
1409
1410         * cp-objcp-common.c (cxx_get_alias_set): Change return type to
1411         alias_set_type.
1412         * cp/cp-tree.h (cxx_get_alias_set): Update declaration.
1413
1414 2007-08-10  Ollie Wild  <aaw@google.com>
1415
1416         * name-lookup.c (do_nonmember_using_decl): Print an error for ambiguous
1417         type lookups.
1418         (ambiguous_decl): Construct tree of ambiguous types.  Remove extaneous
1419         function parameter.
1420         (unqualified_namespace_lookup): Fix ambiguous_decl call.
1421         (lookup_using_namespace): Fix ambiguous_decl call.
1422         (qualified_lookup_using_namespace): Fix ambiguous_decl call.
1423
1424 2007-08-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1425
1426         * call.c (name_as_c_string): Use CONST_CAST.
1427         * decl.c (build_decl): Likewise.
1428         * parser.c (cp_parser_string_literal): Likewise.
1429
1430 2007-08-10  Paolo Carlini  <pcarlini@suse.de>
1431
1432         PR c++/17763
1433         * error.c (dump_expr): Consistently use the *_cxx_*
1434         variants of the pretty-print functions.
1435
1436 2007-08-10  Paolo Carlini  <pcarlini@suse.de>
1437
1438         PR c++/22256
1439         * decl.c (check_special_function_return_type): Just error
1440         on return type specified for conversion operator.
1441
1442 2007-08-09  Daniel Berlin  <dberlin@dberlin.org>
1443
1444         * typeck2.c (readonly_error): Handle general expressions.
1445         * error.c (dump_expr): Handle POINTER_PLUS_EXPR
1446
1447 2007-08-06  Dan Hipschman  <dsh@google.com>
1448
1449         * method.c (use_thunk): Use DECL_NAME instead of DECL_RTL to
1450         access function name.
1451
1452 2007-08-04  Alfred Minarik  <a.minarik@aon.at>
1453
1454         PR pch/13676
1455         * lang-specs.h: Add .hp, .hxx, .hpp, .h, .HPP, .tcc as c++ header.
1456         * g++spec.c (lang_specific_driver): Check them.
1457
1458 2007-08-06  Paolo Carlini  <pcarlini@suse.de>
1459
1460         PR c++/19532
1461         * pt.c (inline_needs_template_parms): Fix comment; change return type
1462         to bool.
1463
1464 2007-08-05  Volker Reichelt  <v.reichelt@netcologne.de>
1465
1466         Revert:
1467         2007-03-26  Dirk Mueller  <dmueller@suse.de>
1468
1469         * parser.c (cp_parser_member_declaration): Pedwarn
1470         about stray semicolons after member declarations.
1471
1472 2007-08-02  Lee Millward  <lee.millward@gmail.com>
1473
1474         PR c++/30849
1475         PR c++/30850
1476         PR c++/30851
1477         * parser.c (cp_parser_asm_definition): Detect and discard asm
1478         statements with invalid inputs or outputs.
1479         (cp_parser_asm_operand_list): Return error mark node if any
1480         of the operands are invalid. Adjust documentation.
1481         
1482 2007-08-02  Nick Clifton  <nickc@redhat.com>
1483
1484         * typeck.c: Change copyright header to refer to version 3 of the
1485         GNU General Public License and to point readers at the COPYING3
1486         file and the FSF's license web page.
1487         * optimize.c, lang-specs.h, init.c, class.c, repo.c, decl.c,
1488         config-lang.in, cp-tree.def, call.c, decl.h, ptree.c,
1489         Make-lang.in, method.c, rtti.c, cp-objcp-common.c, g++spec.c,
1490         cp-objcp-common.h, except.c, error.c, operators.def, cvt.c,
1491         tree.c, mangle.c, cp-tree.h, dump.c, search.c, friend.c, expr.c,
1492         cp-gimplify.c, cxx-pretty-print.c, cp-lang.c, typeck2.c, pt.c,
1493         cxx-pretty-print.h, semantics.c, name-lookup.c, lex.c, decl2.c,
1494         name-lookup.h, parser.c: Likewise.
1495
1496 2007-08-01  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1497
1498         PR middle-end/32668
1499         * call.c (magic_varargs_p): Honor the "type generic" attribute.
1500
1501 2007-07-30  Paolo Carlini  <pcarlini@suse.de>
1502
1503         PR c++/32108
1504         * semantics.c (finish_label_stmt): Reject the __label__
1505         extension outside function scopes.
1506
1507 2007-07-29  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1508
1509         * parser.c (eof_token): Un-constify.
1510         (cp_lexer_new_main, cp_lexer_new_from_tokens, VEC_alloc,
1511         cp_lexer_consume_token, cp_lexer_purge_token): Remove spurious
1512         casts.
1513
1514 2007-07-28  Kazu Hirata  <kazu@codesourcery.com>
1515
1516         * pt.c, tree.c, typeck2.c: Fix comment typos.
1517
1518 2007-07-28  Simon Martin  <simartin@users.sourceforge.net>
1519             Mark Mitchell  <mark@codesourcery.com>
1520
1521         PR c++/30917
1522         * name-lookup.c (lookup_name_real): Non namespace-scope bindings can be
1523         hidden due to friend declarations in local classes.
1524
1525 2007-07-27  Douglas Gregor  <doug.gregor@gmail.com>
1526
1527         * typeck.c (structural_comptypes): Compare DECLTYPE_TYPE nodes.
1528         * cp-tree.def (DECLTYPE_TYPE): New.
1529         * error.c (dump_type): Dump DECLTYPE_TYPE nodes.
1530         (dump_type_prefix): Ditto.
1531         (dump_type_suffix): Ditto.
1532         * tree.c (DECLTYPE_TYPE): Walk DECLTYPE_TYPE nodes.
1533         * mangle.c (write_type): Handle DECLTYPE_TYPE.
1534         * cp-tree.h (IS_AGGR_TYPE): DECLTYPE_TYPE nodes can be aggregate
1535         types.
1536         (DECLTYPE_TYPE_EXPR): New.
1537         (DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P): New.
1538         (finish_declared_type): Declare.
1539         * cxx-pretty-print.c (pp_cxx_type_specifier_seq): Print
1540         DECLTYPE_TYPE nodes.
1541         (pp_cxx_type_id): Ditto.
1542         * pt.c (for_each_template_parm_r): Walk DECLTYPE_TYPE children.
1543         (tsubst): Substitute into a DECLTYPE_TYPE node.
1544         (tsubst_copy): Ditto.
1545         (unify): Cannot deduce anything from TYPEOF_TYPE or DECLTYPE_TYPE
1546         nodes.
1547         (dependent_type_p_r): DECLTYPE_TYPE types are always dependent.
1548         * semantics.c (finish_typeof): TYPEOF_TYPE types need to use
1549         structural equality (because we can't hash the expressions).
1550         (finish_declared_type): New.
1551         * lex.c (reswords): Add "decltype" keyword.
1552         * parser.c cp_lexer_next_token_is_decl_specifier_keyword
1553         (cp_parser_postfix_expression): Add member_access_only_p to
1554         restrict postfix expression to member access expressions.
1555         (cp_parser_unary_expression): Update call to
1556         cp_parser_postfix_expression to reflect new parameter.
1557         (cp_parser_declared_type): New.
1558         (cp_parser_simple_type_specifier): Parse decltype types.
1559
1560 2007-07-27  Mark Mitchell  <mark@codesourcery.com>
1561
1562         PR c++/32346
1563         * call.c (convert_for_arg_passing): Only widen bitfields to their
1564         declared types if necessary.
1565
1566 2007-07-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1567
1568         * parser.c (cp_parser_string_literal, cp_parser_sizeof_operand):
1569         Constify.
1570
1571 2007-07-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1572
1573         * decl.c (typename_hash, typename_compare): Constify.
1574         * mangle.c (hash_type, compare_type): Likewise.
1575         * pt.c (eq_local_specializations, hash_local_specialization):
1576         Likewise.
1577         * tree.c (cplus_array_hash, cplus_array_compare, list_hash_eq,
1578         list_hash): Likewise.
1579         * typeck2.c (pat_compare): Likewise.
1580
1581 2007-07-24  Nathan Sidwell  <nathan@codesourcery.com>
1582
1583         * method.c (implicitly_declare_fn): Increase alignment if member
1584         function pointer format requires it.
1585
1586 2007-07-24  Paolo Carlini  <pcarlini@suse.de>
1587
1588         PR c++/29001
1589         * typeck.c (check_return_expr): Do not pass a null argument
1590         to null_ptr_cst_p.
1591
1592 2007-07-24  Paolo Carlini  <pcarlini@suse.de>
1593
1594         PR c++/32561
1595         * decl.c (redeclaration_error_message): Call DECL_ANON_UNION_VAR_P
1596         only on VAR_DECL.
1597
1598 2007-07-22  Nathan Sidwell  <nathan@codesourcery.com>
1599
1600         PR c++/32839
1601         * typeck.c (convert_arguments): Only use default args if we have
1602         a function decl.
1603
1604         PR c++/30818
1605         * typeck.c (structural_comptypes): No need to check
1606         resolve_typename_type return value here.
1607         * cp-tree.h (TYPENAME_IS_RESOLVING_P): New.
1608         * pt.c (resolve_typename_type): Follow typename typedefs.  Return
1609         original type rather than error_mark_node in case of failure.
1610         * parser.c (cp_parser_nested_name_specifier_opt): Adjust
1611         resolve_typename_type result check.
1612         (cp_parser_direct_declarator, cp_parser_head,
1613         cp_parser_constructor_declarator_p): Likewise.
1614
1615 2007-07-12  Kazu Hirata  <kazu@codesourcery.com>
1616
1617         * pt.c (template_parms_variadic_p): Remove.
1618         * cp-tree.h: Remove the prototype for template_parms_variadic_p.
1619
1620 2007-07-12  Jakub Jelinek  <jakub@redhat.com>
1621
1622         PR c++/30854
1623         * error.c (dump_expr) <case AGGR_INIT_EXPR>: Pass true as last
1624         argument to dump_aggr_init_expr_args instead of false.
1625
1626 2007-07-11  Douglas Gregor  <doug.gregor@gmail.com>
1627
1628         * typeck.c (comptypes): When USE_CANONICAL_TYPES, use the
1629         canonical types; otherwise, fall back to structural type
1630         comparisons. If ENABLE_CHECKING and USE_CANONICAL_TYPES, give an
1631         internal compiler error if the canonical types are wrong.
1632         
1633 2007-07-11  Paolo Carlini  <pcarlini@suse.de>
1634
1635         PR c++/32560
1636         * parser.c (cp_parser_make_indirect_declarator): When the
1637         the code argument is ERROR_MARK return cp_error_declarator.
1638
1639 2007-07-09  Geoffrey Keating  <geoffk@apple.com>
1640
1641         PR 32617
1642         * decl.c (cxx_init_decl_processing): Don't set
1643         force_align_functions_log.
1644         (grokfndecl): Honour ptrmemfunc_vbit_in_pfn.
1645         * typeck.c (cxx_alignof_expr): When alignof is used on a plain
1646         FUNCTION_DECL, return its alignment.
1647
1648 2007-07-09  Richard Guenther  <rguenther@suse.de>
1649
1650         * decl.c (start_preparsed_function): Do not promote return type.
1651
1652 2007-07-08  Paolo Carlini  <pcarlini@suse.de>
1653
1654         PR c++/30535
1655         * pt.c (unify): Never pass error_mark_node to template_decl_level.
1656
1657 2007-07-07  Mark Mitchell  <mark@codesourcery.com>
1658
1659         PR c++/32232
1660         * pt.c (resolve_overloaded_unification): Robustify.  Return a
1661         bool, not an int.
1662         (type_unification_real): Adjust accordingly.
1663
1664 2007-07-06  Richard Guenther  <rguenther@suse.de>
1665
1666         * init.c (build_new_1): Use the correct pointer type.
1667         * typeck2.c (build_m_component_ref): Likewise.
1668
1669 2007-07-05  Mark Mitchell  <mark@codesourcery.com>
1670
1671         PR c++/32245
1672         * init.c (build_zero_init): Always build an initializer for
1673         non-static storage.
1674         * typeck2.c (build_functional_cast): Use build_zero_init.
1675
1676         PR c++/32251
1677         * init.c (build_new_1): Always pass the allocation function to
1678         build_op_delete_call.
1679         * call.c (build_op_delete_call): Handle operator delete with a
1680         variable-argument list.  Do not issue an error when no matching
1681         deallocation function is available for a new operator.
1682
1683         PR c++/31992
1684         * cp-tree.h (any_value_dependent_elements_p): Declare it.
1685         * decl.c (value_dependent_init_p): New function.
1686         (cp_finish_decl): Use it.
1687         * pt.c (value_dependent_expression_p): Use
1688         any_value_dependent_elements_p.
1689         * parser.c (cp_parser_primary_expression): Add comment about
1690         treating dependent qualified names as integral
1691         constant-expressions.
1692
1693 2007-07-04  Douglas Gregor  <doug.gregor@gmail.com>
1694
1695         * decl.c (build_ptrmemfunc_type): Always use structural equality
1696         tests when comparing pointer-to-member-function types, because the
1697         handling of TYPE_GET_PTRMEMFUNC_TYPE currently defeats canonical
1698         types.
1699         
1700 2007-07-03  Mark Mitchell  <mark@codesourcery.com>
1701
1702         * init.c (build_new): Tweak comment.
1703
1704 2007-06-29  Dave Brolley  <brolley@redhat.com>
1705
1706         PR c++/31743
1707         * parser.c (cp_parser_new_type_id): Don't reduce a named array
1708         type to its base type and number of elements here.
1709         * init.c (build_new): Call complete_type_or_else to ensure that the
1710         type is complete and to issue a diagnostic if it is not.
1711         (build_new_1): Don't call complete_type_or_else here.
1712
1713 2007-07-03  Richard Guenther  <rguenther@suse.de>
1714
1715         PR c++/32609
1716         * class.c (fixed_type_or_null): Re-lookup the hashtable slot
1717         after recursing.
1718
1719 2007-07-02  Simon Baldwin  <simonb@google.com>
1720
1721         * parser.c (cp_parser_elaborated_type_specifier): Added a warning
1722         for inner-style nested forward declarations that don't declare
1723         anything useful.
1724
1725 2007-07-02  Jakub Jelinek  <jakub@redhat.com>
1726
1727         PR c++/31748
1728         * semantics.c (finish_omp_clauses): Use %qD instead of %qE for
1729         DECL_P in not a variable and appears more than once error messages.
1730
1731 2007-07-01  Ollie Wild  <aaw@google.com>
1732
1733         * name-lookup.c (ambiguous_decl): Fix case when new->value is hidden.
1734         (select_decl): Remove function.
1735         (unqualified_namespace_lookup): Populate binding by calling
1736         ambiguous_decl.  Remove select_decl call.
1737         (lookup_qualified_name): Remove select_decl call.
1738         * decl.c (lookup_and_check_tag): Check for ambiguous references.
1739         * parser.c (cp_parser_elaborated_type_specifier): Skip redundant error
1740         generation when name lookup is ambiguous.
1741
1742 2007-06-29  Douglas Gregor  <doug.gregor@gmail.com>
1743
1744         PR c++/31724
1745         * init.c (build_new_1): Use structural equality on the copy of the
1746         array type.
1747
1748 2007-06-28  Geoffrey Keating  <geoffk@apple.com>
1749
1750         * decl2.c (determine_visibility): Implement
1751         flag_visibility_ms_compat effect on type info.
1752         * decl.c (cxx_init_decl_processing): Implement
1753         global effect of flag_visibility_ms_compat.
1754
1755 2007-06-28  Geoffrey Keating  <geoffk@apple.com>
1756
1757         * decl2.c (start_objects): Mark constructor-running function
1758         as artificial.
1759
1760 2007-06-26  Simon Martin  <simartin@users.sourceforge.net>
1761
1762         PR c++/32111
1763         * decl.c (grokdeclarator): Reset friendp for member functions declared
1764         friend of their own class.
1765
1766 2007-06-23  Mark Mitchell  <mark@codesourcery.com>
1767
1768         * decl2.c (determine_visibility): Don't look for dllexport here.
1769         (determine_visibility_from_class): Tidy.
1770
1771 2007-06-18  Simon Baldwin <simonb@google.com>
1772
1773         PR c++/31923
1774         * parser.c (cp_parser_single_declaration): Added check for storage
1775         class other than sc_none in parsed declaration, and a flag to indicate
1776         if the call is part of an explicit template specialization parse.
1777         * (cp_parser_explicit_specialization): Specialization check flag added
1778         to call to cp_parser_single_declaration(), set true.
1779         * (cp_parser_template_declaration_after_export): Specialization check
1780         flag added to call to cp_parser_single_declaration(), set false.
1781         * pt.c (check_explicit_specialization): Added code to copy visiblity
1782         and linkage from the templated function to the explicit specialization.
1783
1784 2007-06-15  Andrew Pinski  <andrew_pinski@playstation.sony.com>
1785
1786         * typeck.c (build_binary_op): For templates build the
1787         expression in pieces to avoid the assert in build2_stat.
1788         (get_member_function_from_ptrfunc):
1789         Change over to using POINTER_PLUS_EXPR and convert
1790         the second operand to sizetype.
1791         * typeck2.c (build_m_component_ref):  Likewise.
1792         * init.c (expand_virtual_init): Create a POINTER_PLUS_EXPR
1793         instead of PLUS_EXPR for pointers.
1794         (build_new_1): Likewise.
1795         (build_vec_delete_1): Likewise.
1796         (build_vec_delete): Likewise.
1797         * class.c (build_base_path): Likewise.
1798         (build_base_path): Likewise.
1799         (convert_to_base_statically): Likewise.
1800         (fixed_type_or_null): Handle POINTER_PLUS_EXPR.
1801         (get_vtbl_decl_for_binfo): Handle POINTER_PLUS_EXPR
1802         instead of PLUS_EXPR.
1803         (dfs_accumulate_vtbl_inits): Create a POINTER_PLUS_EXPR
1804         instead of PLUS_EXPR for pointers.
1805         * call.c (build_special_member_call): Likewise.
1806         * rtti.c (build_headof): Likewise.
1807         Use sizetype instead of ptrdiff_type_node.
1808         (tinfo_base_init): Create a POINTER_PLUS_EXPR
1809         instead of PLUS_EXPR for pointers.
1810         * except.c (expand_start_catch_block):  Do a
1811         NEGATIVE and then a POINTER_PLUS_EXPR instead
1812         of a MINUS_EXPR.
1813         * cp-gimplify.c (cxx_omp_clause_apply_fn): Convert
1814         PLUS_EXPR on pointer types over to use
1815         POINTER_PLUS_EXPR and remove the conversion
1816         to the pointer types.
1817         * method.c (thunk_adjust): Use POINTER_PLUS_EXPR for
1818         adding to a pointer type. Use size_int instead of
1819         ssize_int. Convert the index to sizetype before
1820         adding it to the pointer.
1821
1822 2007-06-15  Mark Mitchell  <mark@codesourcery.com>
1823
1824         * cp-tree.h (DECL_VAR_MARKED_P): Remove.
1825         (DECL_ANON_UNION_VAR_P): New macro.
1826         * class.c (fixed_type_or_null): Tidy.  Use a hash table, rather
1827         than DECL_VAR_MARKED_P, to keep track of which variables we have
1828         seen.
1829         * decl.c (redeclaration_error_message): Complain about redeclaring
1830         anonymous union members at namespace scope.
1831         * decl2.c (build_anon_union_vars): Set DECL_ANON_UNION_VAR_P.
1832
1833 2007-06-14  Geoff Keating  <geoffk@apple.com>
1834
1835         * decl2.c (determine_visibility): Ensure that functions with
1836         hidden types as parameters are hidden.
1837
1838         PR 31093
1839         * decl2.c (determine_visibility): Remove duplicate code for
1840         handling type info.
1841
1842 2007-06-12  Ian Lance Taylor  <iant@google.com>
1843
1844         PR libstdc++/29286
1845         * init.c (avoid_placement_new_aliasing): New static function.
1846         (build_new_1): Call it.
1847
1848 2007-06-11  Rafael Avila de Espindola  <espindola@google.com>
1849
1850         * cp-objcp-common.h (LANG_HOOKS_SIGNED_TYPE): Remove.
1851         (LANG_HOOKS_SIGNED_OR_UNSIGNED_TYPE): Remove.
1852
1853 2007-06-08  Jakub Jelinek  <jakub@redhat.com>
1854
1855         PR c++/32177
1856         * semantics.c (finish_omp_for): Call fold_build_cleanup_point_expr
1857         on init, the non-decl cond operand and increment value.
1858
1859 2007-06-07  Simon Martin  <simartin@users.sourceforge.net>
1860
1861         PR c++/30759
1862         * decl.c (check_initializer): Report an error when a brace enclosed
1863         initializer is used for a non-aggregate type in C++98.
1864         (redeclaration_error_message): Rewrote flag_cpp0x in terms of
1865         cxx_dialect.
1866         (grokdeclarator): Likewise.
1867         (move_fn_p): Likewise.
1868         * typeck.c (check_return_expr): Likewise.
1869         * call.c (reference_binding): Likewise.
1870         * error.c (cp_cpp_error): Likewise.
1871         * pt.c (check_default_tmpl_args): Likewise.
1872         (tsubst): Likewise.
1873         * lex.c (init_reswords): Likewise.
1874         * parser.c (p_parser_primary_expression): Likewise.
1875         (TOKEN_PRECEDENCE): Likewise.
1876         (cp_parser_init_declarator): Likewise.
1877         (cp_parser_ptr_operator): Likewise.
1878         (cp_parser_parameter_declaration): Likewise.
1879         (cp_parser_enclosed_template_argument_list): Likewise.
1880         (cp_parser_skip_to_end_of_template_parameter_list): Likewise.
1881         (cp_parser_next_token_ends_template_argument_p): Likewise.
1882
1883 2007-06-04  Simon Baldwin  <simonb@google.com>
1884
1885         * decl.c (grokdeclarator): Readability change.  Moved case labels
1886         into direct switch statement scope.
1887
1888 2007-06-04  Paolo Carlini  <pcarlini@suse.de>
1889
1890         * call.c (convert_like_real): Remove pointless code.
1891
1892 2007-05-31  Mark Mitchell  <mark@codesourcery.com>
1893
1894         * decl.c (get_atexit_fn_ptr_type): New function.
1895         (get_atexit_node): Use it.
1896         (start_cleanup_fn): Likewise.
1897         (register_dtor_fn): Use the object's destructor, instead of a
1898         separate cleanup function, where possible.
1899         * cp-tree.h (CPTI_ATEXIT_FN_PTR_TYPE): New enumerator.
1900         (atexit_fn_ptr_type_node): New macro.
1901         * decl2.c (build_cleanup): Use build_address.
1902
1903 2007-05-31  Daniel Berlin  <dberlin@dberlin.org>
1904
1905         * typeck.c (build_binary_op): Include types in error.
1906
1907 2007-05-31  Jakub Jelinek  <jakub@redhat.com>
1908
1909         PR c++/31806
1910         * decl.c (cp_finish_decl): Also clear was_readonly if a static var
1911         needs runtime initialization.
1912
1913 2007-05-31  Paolo Carlini  <pcarlini@suse.de>
1914
1915         PR c++/32158
1916         * semantics.c (finish_trait_expr): Complete the types.
1917
1918 2007-05-30  Russell Yanofsky <russ@yanofsky.org>
1919             Douglas Gregor <doug.gregor@gmail.com>
1920             Pedro Lamarao <pedro.lamarao@mndfck.org>
1921             Howard Hinnant <howard.hinnant@gmail.com>
1922
1923         PR c++/7412
1924         PR c++/29939
1925         * typeck.c (comptypes): Don't consider rvalue and lvalue
1926         reference types to be equivalent.
1927         (check_return_expr): Move from certain lvalues when returning
1928         them.
1929         * decl.c (grokdeclarator): Implement reference collapsing.
1930         (copy_fn_p): Don't consider constructors taking rvalue references
1931         to be copy constructors.
1932         (move_fn_p): New.
1933         * call.c (conversion): New "rvaluedness_matches_p" member.
1934         (convert_class_to_reference): Require reference type as first
1935         parameter instead of base type.
1936         (reference_binding): Add logic to handle rvalue references.
1937         (implicit_conversion): Update inaccurate comment.
1938         (convert_like_real): Disable creation of temporaries that are
1939         impossible to initialize for types with move constructors.
1940         (build_over_call): Elide move constructors when possible.
1941         (maybe_handle_implicit_object): Set "rvaluedness_matches_p".
1942         (maybe_handle_ref_bind): Return conversion instead of type node.
1943         (compare_ics): Add logic to use "rvaluedness_matches_p" values to
1944         determine preferred conversion sequences.
1945         * cp-tree.h (TYPE_REF_IS_RVALUE): New.
1946         (LOOKUP_PREFER_RVALUE): New.
1947         (DECL_MOVE_CONSTRUCTOR_P): New.
1948         (struct cp_declarator): Add "reference" member for reference
1949         types, with new "rvalue_ref" flag.
1950         (cp_build_reference_type): Declare.
1951         (move_fn_p): Declare.
1952         * error.c (dump_type_prefix): Format rvalue reference types
1953         correctly in error messages.
1954         * except.c (build_throw): Move from certain lvalues when
1955         throwing.
1956         * mangle.c (write_type): Mangle rvalue references differently
1957         than regular references.
1958         * parser.c (make_reference_declarator): Add boolean parameter for
1959         rvalue references.
1960         (cp_parser_make_indirect_declarator): New.
1961         (cp_parser_new_declarator_opt): Call
1962         cp_parser_make_indirect_declarator. 
1963         (cp_parser_conversion_declarator_opt): Ditto.
1964         (cp_parser_declarator): Ditto.
1965         (cp_parser_ptr_operator): Parse "&&" tokens into rvalue reference
1966         declarators.
1967         * pt.c (tsubst): Implement reference collapsing.
1968         (maybe_adjust_types_for_deduction): Implement special template
1969         parameter deduction rule for rvalue references.
1970         (type_unification_real): Update calls to
1971         maybe_adjust_types_for_deduction.
1972         (try_one_overload): Ditto.
1973         (unify_pack_expansion): Ditto.
1974         * tree.c (lvalue_p_1): Handle rvalue reference types.
1975         (cp_build_reference_type): New.
1976
1977 2007-05-30  Jakub Jelinek  <jakub@redhat.com>
1978
1979         PR c++/31809
1980         * decl.c (cp_finish_decl): Clear TREE_READONLY flag on TREE_STATIC
1981         variables that need runtime initialization.
1982
1983 2007-05-28  Andrew Pinski  <Andrew_pinski@playstation.sony.com>
1984
1985         PR c++/31339
1986         * typeck.c (build_unary_op <case PREINCREMENT_EXPR,
1987         case POSTINCREMENT_EXPR, case PREDECREMENT_EXPR,
1988         case POSTDECREMENT_EXPR>): Return the error_mark_node
1989         if either the real or imaginary parts would an
1990         error_mark_node.
1991         
1992 2007-05-25  Simon Martin  <simartin@users.sourceforge.net>
1993             Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
1994
1995         PR c++/31745
1996         * parser.c (cp_parser_skip_to_closing_brace): Return true if the next
1997         token is a closing brace, false if there are no tokens left.
1998         (cp_parser_namespace_alias_definition): Only consume the next token if
1999         it is a closing brace.
2000
2001         * parser.c (cp_parser_class_specifier): Likewise.
2002
2003 2007-05-25  H.J. Lu  <hongjiu.lu@intel.com>
2004
2005         * semantics.c (finish_member_declaration): Fix a typo in the
2006         last checkin.
2007
2008 2007-05-25  Douglas Gregor <doug.gregor@gmail.com>
2009
2010         PR c++/31431
2011         PR c++/31432
2012         PR c++/31434
2013         PR c++/31435
2014         PR c++/31437
2015         PR c++/31438
2016         PR c++/31442
2017         PR c++/31443
2018         PR c++/31444
2019         PR c++/31445
2020         * error.c (dump_type): Dump TYPE_ARGUMENT_PACK nodes.
2021         * cp-tree.h (check_for_bare_parameter_packs): Returns bool.
2022         * pt.c (check_for_bare_parameter_packs): Return bool indicated
2023         whether everything was okay. Fix indentation.
2024         (push_template_decl_real): Check for bare parameter packs in
2025         function parameters; where errors occur, mark the parameter types
2026         with ERROR_MARK_NODEs to avert ICEs.
2027         (coerce_template_parameter_pack): New.
2028         (coerce_template_parms): Moved parameter pack coercion into
2029         coerce_template_parameter_pack, and permit it anywhere in the
2030         template parameter list (not just at the end). Parameter and
2031         argument indices can vary (somewhat) separately now, so add
2032         PARM_IDX and ARG_IDX.
2033         (fn_type_unification): Don't set an argument pack as incomplete if
2034         no argument pack was deduced.
2035         (type_unification_real): If a type parameter is a parameter pack
2036         and has not otherwise been deduced, it will be deduced to an empty
2037         parameter pack.
2038         (more_specialized_fn): Use the actual lengths of the argument
2039         lists when comparing against expansions.
2040         * semantics.c (finish_member_declaration): If a field's type has
2041         bare parameter packs, error and set its type to ERROR_MARK_NODE.
2042
2043 2007-05-24  Danny Smith  <dannysmith@users.sourceforge.net>
2044
2045         PR target/27067
2046         * mangle.c (mangle_decl): Call targetm.mangle_decl_assembler_name.
2047
2048 2007-05-22  Ollie Wild  <aaw@google.com>
2049
2050         * name-lookup.c (ambiguous_decl): Adds check for hidden types.
2051         (unqualified_namespace_lookup): Adds check for hidden types.
2052
2053 2007-05-22  Ollie Wild  <aaw@google.com>
2054
2055         * decl.c (duplicate_decls): Verify namespace names are unique.
2056
2057 2007-05-21  Mark Mitchell  <mark@codesourcery.com>
2058
2059         * decl.c (cxx_maybe_build_cleanup): Handle
2060         __attribute__((cleanup)).
2061
2062 2007-05-19  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2063
2064         * cvt.c (cp_convert_and_check): Don't check warnings if the
2065         conversion failed.
2066
2067 2007-05-18  Geoffrey Keating  <geoffk@apple.com>
2068
2069         * mangle.c (write_real_cst): Use 'unsigned long' for %lx.
2070
2071 2007-05-14  Paolo Carlini  <pcarlini@suse.de>
2072
2073         PR c++/29928
2074         * rtti.c (get_tinfo_decl_dynamic, get_typeid): Try to complete the
2075         type only if is a class type (5.2.8/4).
2076
2077 2007-05-14  Rafael Avila de Espindola  <espindola@google.com>
2078
2079         * cp-objcp-common.h (LANG_HOOKS_UNSIGNED_TYPE): Remove.
2080         * decl.c (grokdeclarator): Use unsigned_type_for instead of
2081         c_common_unsigned_type.
2082
2083 2007-05-11  Silvius Rus  <rus@google.com>
2084
2085         * cp/typeck.c (build_indirect_ref): Add call to
2086         strict_aliasing_warning.
2087         (build_reinterpret_cast_1): Condition call to
2088         strict_aliasing_warning. 
2089
2090 2007-05-11  Jan Hubicka  <jh@suse.cz>
2091
2092         * semantics.c (expand_or_defer_fn): Do not call c_record_cdtor_fn.
2093         * decl2.c (start_objects): ctors and dtors are no longer public.
2094         (cp_write_global_declarations): Do not call c_build_cdtor_fns.
2095         
2096 2007-05-07  Andrew Pinski  <andrew_pinski@playstation.sony.com>
2097
2098         * typeck.c (build_unary_op): Remove code that used to
2099         handle non lvalue increments/decrements.
2100
2101 2007-05-07  Mike Stump  <mrs@apple.com>
2102
2103         * parser.c (check_empty_body): Add.
2104         (cp_parser_iteration_statement): Add call to check_empty_body.
2105
2106 2007-05-05  Geoffrey Keating  <geoffk@apple.com>
2107
2108         PR 31775
2109         * mangle.c (write_mangled_name): Mangle static variable names.
2110         (write_unqualified_name): Use local-source-name for
2111         namespace-scope static variables.
2112
2113 2007-05-04  Dirk Mueller  <dmueller@suse.de>
2114
2115         * cp-tree.h (DECL_MAIN_P): only if -ffreestanding is
2116         not in effect.
2117
2118 2007-05-02  Seongbae Park  <seongbae.park@gmail.com>
2119
2120         PR c++/31663
2121         * decl2.c (constrain_class_visibility): 
2122         Use strip_pointer_or_array_types instead of strip_array_types.
2123
2124 2007-04-28  Andrew Pinski  <andrew_pinski@playstation.sony.com>
2125
2126         PR C++/30221
2127         * decl.c (reshape_init_r): Don't reshape the first element if it
2128         is a pointer to member function.
2129
2130 2007-04-27  Simon Baldwin  <simonb@google.com>
2131
2132         * decl.c (grokparms): Changed message format from %qD to %qE.
2133
2134 2007-04-27  Douglas Gregor  <doug.gregor@gmail.com>
2135
2136         * error.c (maybe_warn_variadic_templates): Variadic templates are
2137        now in C++0x, so only warn about them in C++98 mode.
2138         
2139 2007-04-26  Andrew Pinski  <andrew_pinski@playstation.sony.com>
2140
2141         PR C++/30016
2142         * typeck.c (build_reinterpret_cast_1): Only allow conversion to
2143         integeral types from vectors types.
2144
2145 2007-04-26  Jakub Jelinek  <jakub@redhat.com>
2146
2147         PR c++/31598
2148         * semantics.c (finish_omp_clauses): Don't create CP_OMP_CLAUSE_INFO
2149         for type dependent OMP_CLAUSE_DECLs.
2150
2151 2007-04-24  Mark Mitchell  <mark@codesourcery.com>
2152
2153         PR c++/31338
2154         * cp-tree.h (ARITHMETIC_TYPE): Include COMPLEX_TYPE.
2155         * typeck.c (type_after_usual_arithmetic_conversions): Adjust, as
2156         COMPLEX_TYPE is now an ARITHMETIC_TYPE.
2157         * init.c (build_zero_init): Adjust, as
2158         COMPLEX_TYPE is now a SCALAR_TYPE.
2159         * typeck2.c (digest_init): Allow brace-enclosed initializers for
2160         COMPLEX_TYPE, even though that is now a SCALAR_TYPE.
2161
2162 2007-04-25  Paolo Carlini  <pcarlini@suse.de>
2163
2164         * semantics.c (classtype_has_nothrow_copy_or_assign_p): Adjust
2165         per N2255; rename as classtype_has_nothrow_assign_or_copy_p.
2166         (trait_expr_value): Adjust.
2167
2168 2007-04-23  Simon Baldwin  <simonb@google.com>
2169
2170         * decl.c (grokparms): Added new error for duplicate function
2171         parameters names in function prototypes, to match gcc behavior.
2172
2173 2007-04-23  Jan Hubicka  <jh@suse.cz>
2174
2175         * cp/decl2.c (finish_objects): Do not call target constructor/destructor
2176         bits dirrectly.
2177
2178 2007-04-21  Andrew Pinski  <andrew_pinski@playstation.sony.com>
2179
2180         * cp-tree.h (lang_tree_node): Use GENERIC_NEXT
2181         instead of checking GIMPLE_STMT_P in chain_next.
2182
2183 2007-04-17  Mark Mitchell  <mark@codesourcery.com>
2184
2185         PR c++/31513
2186         * call.c (convert_for_arg_passing): Convert bitfields to their
2187         declared types.
2188
2189 2007-04-17  Simon Martin  <simartin@users.sourceforge.net>
2190
2191         PR c++/31517
2192         * pt.c (value_dependent_expression_p): Handle MODOP_EXPRs.
2193
2194 2007-04-16  Seongbae Park <seongbae.park@gmail.com>
2195
2196         PR c++/29365
2197         * cp/decl2.c (constrain_class_visibility):
2198         Do not warn about the use of anonymous namespace in the main input file.
2199
2200 2007-04-15  Mark Mitchell  <mark@codesourcery.com>
2201
2202         * cp-tree.h (current_template_parms): Fix typo in comment.
2203
2204 2007-04-15  Kazu Hirata  <kazu@codesourcery.com>
2205
2206         * cp-tree.h, error.c: Fix comment typos.
2207
2208 2007-04-13  Jason Merrill  <jason@redhat.com>
2209
2210         PR c++/31074
2211         * call.c (reference_binding): Add c_cast_p parm.  If true,
2212         add quals to TO as needed to make it reference-compatible.
2213
2214 2007-04-11  Jan Hubicka  <jh@suse.cz>
2215
2216         * cp/class.c (convert_to_base_statically): Fold produced tree; verify
2217         that we are not processing template_decl.
2218
2219 2007-04-09  Mark Mitchell  <mark@codesourcery.com>
2220
2221         PR c++/31449
2222         * class.c (build_base_path): Ensure that the converted pointer has
2223         the same cv-qualification as the input.
2224
2225 2007-04-09  Paolo Carlini  <pcarlini@suse.de>
2226
2227         * tree.c (cp_tree_equal): Deal with TRAIT_EXPR.
2228
2229 2007-04-08  Steven Bosscher  <steven@gcc.gnu.org>
2230
2231         * cp-objcp-common.h (LANG_HOOKS_TREE_INLINING_ADD_PENDING_FN_DECLS):
2232         Do not set it.
2233         (LANG_HOOKS_TREE_INLINING_ANON_AGGR_TYPE_P): Do not set it.
2234         * tree.c (cp_add_pending_fn_decls): Remove.
2235         * cp-tree.h (cp_add_pending_fn_decls): Remove prototype.
2236
2237 2007-04-07  Daniel Berlin  <dberlin@dberlin.org>
2238
2239         Revert change removing staticp.
2240
2241 2007-04-06  Daniel Berlin  <dberlin@dberlin.org>
2242
2243         * cp-objcp-common.c (cxx_staticp): Remove.
2244         * cp-objcp-common.h (LANG_HOOKS_STATICP): Remove.
2245         * cp-tree.h (cxx_staticp):      
2246
2247 2007-04-04  Danny Smith  <dannysmith.users.sourceforge.net>
2248
2249         * class.c (check_for_override): Don't remove dllmport attribute
2250         of virtual methods.
2251
2252 2007-04-03  Jakub Jelinek  <jakub@redhat.com>
2253
2254         PR c++/30847
2255         * typeck.c (build_modify_expr): For COND_EXPR on LHS, if RHS has void
2256         type issue error and return early.
2257
2258 2007-03-30  Jason Merrill  <jason@redhat.com>
2259
2260         PR c++/31187
2261         * typeck.c (cp_type_readonly): New fn.
2262         * cp-tree.h: Declare it.
2263         * decl.c (start_decl): Set implicit DECL_THIS_STATIC here.
2264         (cp_finish_decl): Not here.
2265
2266 2007-03-31  Richard Guenther  <rguenther@suse.de>
2267
2268         * optimize.c (maybe_clone_body): Replace splay-tree usage by
2269         pointer-map.
2270
2271 2007-03-31  Douglas Gregor  <doug.gregor@gmail.com>
2272
2273         PR c++/31138
2274         PR c++/31140
2275         PR c++/31141
2276         * parser.c (declarator_can_be_parameter_pack): New.
2277         (cp_parser_template_parameter): Only parse the `...' if the
2278         declarator can be a parameter pack.
2279         (cp_parser_parameter_declaration): Ditto. Also, handle when TYPE
2280         is NULL.
2281         * pt.c (find_parameter_packs_r): Look into the bounds on integer
2282         types (they could be used as array bounds). 
2283         (check_for_bare_parameter_packs): Deal with TEMPLATE_PARM_INDEX.
2284         (tsubst_pack_expansion): Handle failure to expand parameter
2285         packs.
2286         
2287 2007-03-30  Paolo Carlini  <pcarlini@suse.de>
2288
2289         PR c++/26099
2290         * cp-tree.h (enum cp_trait_kind, struct tree_trait_expr,
2291         TRAIT_EXPR_TYPE1, TRAIT_EXPR_TYPE2, TRAIT_EXPR_KIND): Add.
2292         (enum cp_tree_node_structure_enum, union lang_tree_node): Update.
2293         (CLASS_TYPE_NON_UNION_P): Add.
2294         (struct lang_type_class): Add has_complex_dflt.
2295         (TYPE_HAS_COMPLEX_DFLT, TYPE_HAS_TRIVIAL_DFLT): Add.
2296         (locate_copy, locate_ctor, locate_dtor, finish_trait_expr): Declare.
2297         * cp-tree.def: Add TRAIT_EXPR.
2298         * cp-objcp-common.c (cp_tree_size): Add TRAIT_EXPR case.
2299         * lex.c (struct resword): Add __has_nothrow_assign,
2300         __has_nothrow_constructor, __has_nothrow_copy, __has_trivial_assign,
2301         __has_trivial_constructor, __has_trivial_copy,
2302         __has_trivial_destructor, __has_virtual_destructor, __is_abstract,
2303         __is_base_of, __is_class, __is_convertible_to, __is_empty, __is_enum,
2304         __is_pod, __is_polymorphic, __is_union.
2305         * parser.c (cp_parser_primary_expression): Deal with the new RIDs.
2306         (cp_parser_trait_expr): New.
2307         * semantics.c (finish_trait_expr, trait_expr_value
2308         classtype_has_nothrow_copy_or_assign_p): New.
2309         * method.c (locate_copy, locate_ctor, locate_dtor): Do not define
2310         as static.
2311         * decl.c (cp_tree_node_structure): Add TRAIT_EXPR.
2312         * class.c (check_bases, check_field_decl, check_bases_and_members):
2313         Deal with TYPE_HAS_COMPLEX_DFLT (t) too.
2314         * pt.c (uses_template_parms, tsubst_copy_and_build,
2315         value_dependent_expression_p, type_dependent_expression_p): Deal with
2316         TRAIT_EXPR.
2317         * tree.c (cp_walk_subtrees): Deal with TRAIT_EXPR.
2318
2319 2007-03-29  Richard Guenther  <rguenther@suse.de>
2320
2321         * tree.c (cp_walk_subtrees): Do not set input_location.
2322
2323 2007-03-28  Simon Martin  <simartin@users.sourceforge.net>
2324
2325         PR c++/29077
2326         * decl.c (grokfndecl): Properly setup decl if it is a constructor or a
2327         destructor.
2328
2329 2007-03-28 Douglas Gregor <doug.gregor@gmail.com>
2330
2331         * parser.c (struct cp_parser): Update comment for
2332         greater_than_is_operator_p.
2333         (cp_parser_primary_expression): In C++0x mode, a cast operator can
2334         be terminated with a `>>' token when !GREATER_THAN_IS_OPERATOR_P.
2335         (TOKEN_PRECEDENCE): In C++0x mode, `>>' is treated like `>' when
2336         !GREATER_THAN_IS_OPERATOR_P.
2337         (cp_parser_binary_expression): When -Wc++0x-compat, warn about
2338         `>>' operators that will become two `>' tokens in C++0x.
2339         (cp_parser_parameter_declaration): Treat `>>' like `>' in C++0x
2340         mode, allowing it to terminate default arguments.
2341         (cp_parser_enclosed_template_argument_list): In C++0x mode, treat
2342         `>>' like two consecutive `>' tokens.
2343         (cp_parser_skip_to_end_of_template_parameter_list): Ditto.
2344         (cp_parser_next_token_ends_template_argument_p): In C++0x, `>>'
2345         ends a template argument.
2346
2347 2007-03-28  Douglas Gregor  <doug.gregor@gmail.com>
2348
2349         * decl.c (redeclaration_error_message): Complain when redeclaring
2350         a friend function with default template arguments (C++0x mode only).
2351         * cp-tree.h (check_default_tmpl_args): Declare.
2352         * pt.c (check_default_tmpl_args): In C++0x mode, permit default
2353         template arguments in function templates. Add support for checking
2354         the default template arguments of friend templates.
2355         (push_template_decl_real): Fix call to check_default_tmpl_args.
2356         (type_unification_real): If a template parameter has not been
2357         deduced but provides a default template argument, substitute into
2358         that default template argument.
2359         * parser.c (cp_parser_init_declarator): When declaring (but not
2360         defining!) a function template in C++0x mode, check for default
2361         template arguments.
2362
2363 2007-03-28 Douglas Gregor <doug.gregor@gmail.com>
2364
2365         PR c++/29993
2366         * decl.c (grokdeclarator): Deal with cv-qualified function type
2367         typedefs in the same way for member and non-member functions.
2368
2369 2007-03-26  Dirk Mueller  <dmueller@suse.de>
2370
2371         * parser.c (cp_parser_member_declaration): Pedwarn
2372         about stray semicolons after member declarations.
2373
2374 2007-03-26  Paolo Carlini  <pcarlini@suse.de>
2375
2376         PR c++/30500
2377         * pt.c (instantiate_decl): Set in_system_header.
2378
2379 2007-03-22  Mark Mitchell  <mark@codesourcery.com>
2380
2381         * cp-tree.h (current_tempalte_parms): Improve documentation.
2382         * pt.c (current_template_args): Likewise.
2383
2384         PR c++/30863
2385         * parser.c (cp_parser_parse_and_diagnose_invalid_type_name): Do
2386         not consume tokens when failing.
2387
2388 2007-03-22  Jim Wilson  <wilson@specifix.com>
2389             Mark Mitchell  <mark@codesourcery.com>
2390
2391         PR c++/31273
2392         * call.c (standard_conversion): Use type_decays_to.  Keep FCODE
2393         consistent with FROM.
2394
2395 2007-03-22  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2396
2397         * error.c (dump_expr): Handle dependent names that designate types.
2398         * cxx-pretty-print.c (pp_cxx_unqualified_id): Handle TYPENAME_TYPE.
2399
2400 2007-03-17  Kazu Hirata  <kazu@codesourcery.com>
2401
2402         * cp-tree.def, parser.c, pt.c: Fix comment typos.
2403
2404 2007-03-16  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2405
2406         * cvt.c (cp_convert_and_check) : Define.
2407         * cp-tree.h (cp_convert_and_check): Declare.
2408         * call.c (convert_conversion_warnings): Rename to
2409         conversion_null_warnings.  The warning for floating-point to
2410         integer is handled by convert_and_check in convert_like_real.
2411         (convert_like_real): convert_conversion_warnings was renamed as
2412         conversion_null_warnings.
2413         * typeck.c (build_binary_op): Use cp_convert_and_check to warn for
2414         overflow and changes of value during conversion.
2415
2416 2007-03-15  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2417
2418         PR c++/30891
2419         * parser.c (cp_parser_statement): If 'namespace' is found, this
2420         only can be a namespace alias definition, so parse it now.
2421         (cp_parser_namespace_alias_definition): if we find an open brace
2422         instead of '=', then this is actually a misplaced namespace
2423         definition.
2424         
2425 2007-03-15  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2426
2427         PR c++/24924
2428         * decl.c (cxx_init_decl_processing): Move command-line options
2429         processing to c-opts.c.
2430         
2431 2007-03-15  Douglas Gregor  <doug.gregor@gmail.com>
2432
2433         * ptree.c (cxx_print_type): Use formatting markup for integers
2434         when printing template parameter index/level/orig level.
2435         (cxx_print_xnode): Ditto.
2436         * cp-tree.h (TEMPLATE_PARM_PARAMETER_PACK): Use TREE_LANG_FLAG_0.
2437         (struct template_parm_index_s): Remove the PARAMETER_PACK member.
2438         Make INDEX, LEVEL, and ORIG_LEVEL integers instead of
2439         HOST_WIDE_INTs.
2440         (struct saved_scope): Make X_PROCESSING_TEMPLATE_DECL an int,
2441         rather than a HOST_WIDE_INT.
2442         Turn X_PROCESSING_EXPLICIT_INSTANTIATION, SKIP_EVALUATION, and
2443         NEED_POP_FUNCTION_CONTEXT into bool bitfields; reorder fields for
2444         better bit-packing.
2445         (struct language_function): Make RETURNS_VALUE, RETURNS_NULL,
2446         RETURNS_ABNORMALLY, IN_FUNCTION_TRY_HANDLER, and
2447         IN_BASE_INITIALIZER bool bitfields.
2448         (struct cp_declarator): Make KIND a 4-bit field. Make
2449         PARAMETER_PACK_P a bool bitfield just after KIND.
2450         * pt.c (uses_parameter_packs): Destroy the pointer set.
2451         (make_pack_expansion): Ditto.
2452         (check_for_bare_parameter_packs): Ditto.
2453         * name-lookup.c (push_to_top_level): Make need_pop a bool value.
2454         
2455 2007-03-14  Andrew Pinski  <andrew_pinski@playstation.sony.com>
2456
2457         PR c++/31165
2458         * call.c  (convert_default_arg): Instead of copying the node,
2459         unshare it.
2460
2461 2007-03-15  Dirk Mueller  <dmueller@suse.de>
2462
2463         PR c++/30860
2464         * call.c (convert_conversion_warnings): New..
2465         (convert_like_real): .. factored out from here.
2466         (convert_conversion_warnings): Add warning about
2467         false being converted to NULL in argument passing.
2468
2469 2007-03-14  Dirk Mueller  <dmueller@suse.de>
2470
2471         * cp/semantics.c (c_finish_if_stmt): Call empty_if_body_warning.
2472         (finish_do_body): Warn about empty body in do/while statement.
2473
2474 2007-03-14  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2475
2476         * class.c (warn_hidden): Add OPT_Woverloaded_virtual to warning.
2477         
2478 2007-03-14  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2479
2480         PR c/21438
2481         * typeck.c (build_binary_op): Call warn_for_div_zero instead of
2482         warning.
2483         
2484 2007-03-13  Alexandre Oliva  <aoliva@redhat.com>
2485
2486         * cp/repo.c (init_repo): Initialize random_seed saved options.
2487         (finish_repo): Adjust.
2488
2489 2007-03-13  Mark Mitchell  <mark@codesourcery.com>
2490
2491         PR bootstrap/30899
2492         * Make-lang.in (doc/g++.1): Use $< to specify the location from
2493         which to copy.
2494
2495 2007-03-12  Seongbae Park <seongbae.park@gmail.com>
2496
2497         * decl.c (compute_array_index_type): New warning flag warn_vla.
2498
2499 2007-03-12  Mark Mitchell  <mark@codesourcery.com>
2500
2501         PR c++/30108
2502         * call.c (convert_default_arg): Copy non-constant arguments.
2503
2504 2007-03-11  Mark Mitchell  <mark@codesourcery.com>
2505
2506         PR c++/31038
2507         * parser.c (cp_parser_postfix_expression): Disallow compound
2508         literals in constant expressions.
2509
2510         PR c++/30328
2511         * semantics.c (finish_typeof): Use unlowered_expr_type.
2512         
2513 2007-03-10  Mark Mitchell  <mark@codesourcery.com>
2514
2515         PR c++/30274
2516         * cp-tree.h (unlowered_expr_type): New function.
2517         * typeck.c (is_bitfield_expr_with_lowered_type): Handle
2518         COMPOUND_EXPR, MODIFY_EXPR, and SAVE_EXPR.
2519         (unlowered_expr_type): New function.
2520         (build_unary_op): Disallow predecrements of bool bitfields.
2521         * call.c (build_conditional_expr): Use unlowered_expr_type.
2522         * pt.c (type_unification_real): Likewise.
2523
2524 2007-03-09  Douglas Gregor  <doug.gregor@gmail.com>
2525
2526         PR c++/20599
2527         * typeck.c (check_return_expr): Check for bare parameter packs.
2528         (comptypes): Compare template parameter packs and
2529         type pack expansions.
2530         * decl.c (grokdeclarator): Deal with the declaration of function
2531         parameter packs.
2532         (grokparms): Verify that the (optional) function parameter pack is
2533         at the end of the parameter list.
2534         (xref_basetypes): Handle pack expansions in the base class.
2535         (cp_tree_node_structure): Handle ARGUMENT_PACK_SELECT.
2536         * cp-tree.def (TYPE_ARGUMENT_PACK): New.
2537         (NONTYPE_ARGUMENT_PACK): New.
2538         (TYPE_PACK_EXPANSION): New.
2539         (EXPR_PACK_EXPANSION): New.
2540         (ARGUMENT_PACK_SELECT): New.
2541         * cp-objcp-common.c (cp_tree_size): Compute size of
2542         (NON)TYPE_ARGUMENT_PACK, (TYPE|EXPR)_PACK_EXPANSION, and
2543         ARGUMENT_PACK_SELECT.
2544         * error.c (dump_template_argument): Print template argument packs.
2545         (dump_template_argument_list): Ditto.
2546         (dump_template_parameter): Dump `...' for template type parameter
2547         packs.
2548         (dump_type): Dump TYPE_PACK_EXPANSION nodes.
2549         (dump_parameters): Print function parameter packs.
2550         (dump_template_parms): Print template argument packs.
2551         (dump_expr): Dump EXPR_PACK_EXPANSION nodes.
2552         (maybe_warn_variadic_templates): New.
2553         * operators.def: Add ellipsis operator for EXPR_PACK_EXPANSION.
2554         * tree.c (cp_walk_subtrees): Walk BASELINK, TYPE_ARGUMENT_PACK,
2555         NONTYPE_ARGUMENT_PACK, TYPE_PACK_EXPANSION, EXPR_PACK_EXPANSION,
2556         CAST_EXPR. 
2557         * mangle.c (write_type): Mangle TYPE_PACK_EXPANSION.
2558         (write_template_arg): Write argument packs as separate arguments.
2559         * cp-tree.h (struct template_parm_index_s): Add flag that
2560         indicates that the template parameter is actually a parameter
2561         pack.
2562         (struct tree_argument_pack_select): New.
2563         (enum cp_tree_node_structure_enum): Add TS_CP_ARGUMENT_PACK_SELECT.
2564         (union lang_tree_node): Add argument_pack_select.
2565         (FUNCTION_PARAMETER_PACK_P): New.
2566         (PACK_EXPANSION_P): New.
2567         (PACK_EXPANSION_PATTERN): New.
2568         (SET_PACK_EXPANSION_PATTERN): New.
2569         (PACK_EXPANSION_PARAMETER_PACKS): New.
2570         (ARGUMENT_PACK_P): New.
2571         (ARGUMENT_PACK_ARGS): New.
2572         (SET_ARGUMENT_PACK_ARGS): New.
2573         (ARGUMENT_PACK_INCOMPLETE_P): New.
2574         (ARGUMENT_PACK_EXPLICIT_ARGS): New.
2575         (TEMPLATE_PARM_PARAMETER_PACK): New.
2576         (TEMPLATE_TYPE_PARAMETER_PACK): New.
2577         (ARGUMENT_PACK_SELECT_FROM_PACK): New.
2578         (ARGUMENT_PACK_SELECT_INDEX): New.
2579         (ARGUMENT_PACK_SELECT_ARG): New.
2580         (struct cp_declarator): Add parameter_pack_p flag.
2581         (maybe_warn_variadic_templates): Declare.
2582         (process_template_parm): Add bool parameter IS_PARAMETER_PACK, to
2583         indicate a template parameter pack. 
2584         (uses_parameter_packs): Declare.
2585         (template_parameter_pack_p): Declare.
2586         (template_parms_variadic_p): Declare.
2587         (make_pack_expansion): Declare.
2588         (check_for_bare_parameter_packs): Declare.
2589         * cxx-pretty-print.c (pp_cxx_unary_expression): Print
2590         sizeof... expressions. 
2591         (pp_cxx_expression): Print pack expansions and non-type argument
2592         packs.
2593         (pp_cxx_exception_specification): Print pack expansions. 
2594         (pp_cxx_direct_declarator): Print ellipsis for parameter packs.
2595         (pp_cxx_ctor_initializer): Print pack expansions.
2596         (pp_cxx_type_id): Print pack expansions.
2597         (pp_cxx_template_argument_list): Print argument packs.
2598         (pp_cxx_template_parameter): Print ellipsis for template parameter
2599         packs.
2600         * pt.c (comp_template_parms): Compare template parameter packs.
2601         (template_parameter_pack_p): New.
2602         (template_parms_variadic_p): New.
2603         (template_args_variadic_p): New.
2604         (make_ith_pack_parameter_name): New.
2605         (struct find_parameter_pack_data): New.
2606         (find_parameter_packs_r): New.
2607         (uses_parameter_packs): New.
2608         (make_pack_expansion): New.
2609         (check_for_bare_parameter_packs): New.
2610         (expand_template_argument_pack): New.
2611         (reduce_template_parm_level): Propagate parameter pack flag.
2612         (process_template_parm): Add is_parameter_pack parameter to state
2613         when the parameter is actually a parameter pack. Create template
2614         parameter packs when is_parameter_pack is true.
2615         (current_template_args): The argument for a template parameter
2616         pack is an argument pack containing a single pack expansion.
2617         (process_partial_specialization): When checking that non-type
2618         argument expressions do not involve template parameters, loop over
2619         the arguments in argument packs separately.
2620         (push_template_decl_real): Check that the type of the declaration
2621         does not have any bare parameter packs. Check that primary
2622         templates have no more than one parameter pack, and that it comes
2623         at the end of the template parameter list.
2624         (convert_template_argument): Handle coercions for pack expansion
2625         expressions by coercing the pattern then rebuilding the expansion.
2626         (coerce_template_parms): When coercing the arguments for a
2627         variadic template, pack "extra" arguments into an argument pack.
2628         (coerce_template_template_parms): Cannot coerce between parameter
2629         packs and non-pack parameters.
2630         (template_args_equal): Compare PACK_EXPANSION_P expressions.
2631         (comp_template_args): Expand all template arguments packs before
2632         comparing template argument lists.
2633         (mangle_class_name_for_template): Make argument packs as separate
2634         template arguments.
2635         (for_each_template_parm_r): No need to handle BASELINK. 
2636         (instantiate_class_template): Handle pack expansions in the base
2637         class list.
2638         (tsubst_pack_expansion): New.
2639         (tsubst_template_args): Handle substitutions of argument packs and
2640         pack expansion into template argument lists.
2641         (tsubst_decl): Expand function parameter packs into separate
2642         function parameters.
2643         (tsubst_arg_types): Expand a type pack expansion into separate
2644         argument types.
2645         (tsubst_exception_specification): Handle pack expansions in
2646         exception specifiers.
2647         (tsubst): See through ARGUMENT_PACK_SELECT arguments when 
2648         replacing a template parameter with its argument. If we encounter
2649         a substitution for an argument pack, just return the parameter
2650         itself. 
2651         (tsubst_copy): sizeof(X...) returns the number of elements in
2652         parameter pack X.  See through ARGUMENT_PACK_SELECT when the
2653         PARM_DECL is a parameter pack.
2654         (tsubst_expr): Expression pack expansions and argument packs
2655         cannot show up here; they will all be handled through function
2656         calls, sizeof, and template argument lists.
2657         (tsubst_copy_and_build): sizeof(X...) returns the number of
2658         elements in parameter pack X.  Handle pack expansions in TREE_LIST
2659         and CONSTRUCTOR nodes.
2660         (fn_type_unification): Handle "incomplete" explicit template
2661         argument lists that specify some of the arguments for a template
2662         parameter pack.
2663         (type_unification_real): Unify arguments against pack expansions.
2664         (template_parm_level_and_index): New, helper function.
2665         (unify_pack_expansion): New.
2666         (unify): Unify argument packs on an argument-by-argument basis,
2667         handling variadic argument packs as well.
2668         (more_specialized_fn): Handle unification of function parameter
2669         packs. All things being equal, prefer non-variadic function
2670         templates to variadic function templates.
2671         (more_specialized_class): Prefer the variadic class template
2672         partial specialization that binds fewer arguments to a parameter
2673         pack.
2674         (regenerate_decl_from_template): Expand function parameter packs
2675         into separate parameters.
2676         (instantiate_decl): Ditto.
2677         (tsubst_initializer_list): Handle pack expansions for base-class
2678         initializers.
2679         (dependent_type_p_r): Determine dependent types in argument packs
2680         and pack expansions.
2681         (value_dependent_expression_p): Determine value-dependence of
2682         non-type argument packs.
2683         (dependent_template_arg_p): Handle argument packs.
2684         * semantics.c (finish_cond): Check for bare parameter packs.
2685         (finish_expr_stmt): Ditto.
2686         (finish_for_expr): Ditto.
2687         (finish_switch_cond): Ditto.
2688         (finish_mem_initializers): Ditto.
2689         * name-lookup.c (arg_assoc_type): Handle pack expansions and
2690         argument packs.
2691         * decl2.c (cp_build_parm_decl): Mark function parameter packs.
2692         * parser.c (make_declarator): Declarator is not an expansion.
2693         (make_pointer_declarator): Transfer parameter pack flag to outer
2694         declarator.
2695         (make_reference_declarator): Ditto.
2696         (make_ptrmem_declarator): Ditto.
2697         (make_call_declarator): Ditto.
2698         (make_array_declarator): Ditto.
2699         (cp_parser_postfix_expression): Allow pack expansion expressions
2700         in the argument list for a call expression.
2701         (cp_parser_parenthesized_expression_list): Add new parameter
2702         ALLOW_EXPANSION_P. When true, parse the ellipsis to mean "expand
2703         into separate arguments."
2704         (cp_parser_new_placement): Allow pack expansion expressions.
2705         (cp_parser_new_initializer): Ditto.
2706         (cp_parser_mem_initializer_list): Allow ellipsis to create a
2707         base-class initializer expansion.
2708         (cp_parser_mem_initializer): Ditto.
2709         (cp_parser_template_parameter_list): Keep track of whether the
2710         template parameter is a template parameter pack.
2711         (cp_parser_template_parameter): Parse the ellipsis to indicate a
2712         template parameter pack.
2713         (cp_parser_type_parameter): Ditto.
2714         (cp_parser_template_argument_list): Parse the ellipsis to indicate
2715         a pack expansion.
2716         (cp_parser_direct_declarator): Parse the ellipsis to indicate that
2717         this declarator is a parameter pack.
2718         (cp_parser_parameter_declaration): The ellipsis does not end the
2719         parameter declaration, because it might be a parameter pack. Parse
2720         the ellipsis to indicate a parameter pack.
2721         (cp_parser_initializer): Allow pack expansions.
2722         (cp_parser_initializer_list): Allow ellipsis to create an
2723         initializer expansion.
2724         (cp_parser_base_clause): Allow ellipsis to create a base specifier
2725         expansion.
2726         (cp_parser_type_id_list): Allow ellipsis to create an exception
2727         specifier expansion.
2728         (cp_parser_attribute_list): Don't allow pack expansions.
2729         (cp_parser_functional_cast): Allow pack expansions.
2730         (cp_parser_sizeof_operand): Allow ellipsis following "sizeof" to
2731         compute the length of a parameter pack.
2732         (cp_parser_next_token_ends_template_argument_p): An ellipsis can
2733         end a template argument.
2734         * tree.c (cp_walk_subtrees): Walk BASELINK, TYPE_ARGUMENT_PACK,
2735         NONTYPE_ARGUMENT_PACK, TYPE_PACK_EXPANSION, EXPR_PACK_EXPANSION,
2736         CAST_EXPR. 
2737
2738 2007-03-09  Dirk Mueller  <dmueller@suse.de>
2739
2740         * cp/call.c (build_new_op): Call warn_logical_operator.
2741
2742 2007-03-08  Volker Reichelt  <reichelt@netcologne.de>
2743
2744         PR c++/30852
2745         * semantics.c (finish_offsetof): Handle COMPOUND_EXPR.
2746
2747         PR c++/30534
2748         * pt.c (any_template_arguments_need_structural_equality_p):
2749         Robustify.
2750
2751 2007-03-08  Alexandre Oliva  <aoliva@redhat.com>
2752
2753         * decl.c (grokdeclarator): Disable warnings for anonymous
2754         bitfields.
2755
2756 2007-03-05  Volker Reichelt  <reichelt@netcologne.de>
2757
2758         * typeck2.c (readonly_error): Always emit a hard error.
2759         Remove last argument.
2760         * cp-tree.h (readonly_error): Adjust prototype.
2761         * semantics.c (finish_asm_stmt): Adjust call to readonly_error.
2762         * typeck.c (build_unary_op): Likewise.
2763         (build_modify_expr): Likewise.
2764
2765 2007-03-04  Simon Martin  <simartin@users.sourceforge.net>
2766
2767         PR c++/30895
2768         * tree.c (cp_tree_equal): Properly handle COMPLEX_CST trees.
2769
2770 2007-03-03  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2771
2772         PR c++/15787
2773         * parser.c (struct cp_parser): New IN_IF_STMT.
2774         (cp_parser_statement_seq_opt): Handle an unexpected 'else',
2775         returning if parsing the body of an 'if' statement or issuing an
2776         error and continuing.
2777         (cp_parser_selection_statement): Set IN_IF_STMT bit when parsing
2778         body of 'if'.
2779         (cp_parser_jump_statement): Mask new IN_IF_STMT bit.
2780         
2781 2007-03-02  Simon Martin  <simartin@users.sourceforge.net>
2782
2783         PR c++/28253
2784         * class.c (update_vtable_entry_for_fn): Properly handle invalid overriders
2785         for thunks.
2786
2787 2007-03-02  Geoffrey Keating  <geoffk@apple.com>
2788
2789         * g++spec.c (lang_specific_driver): Add -lstdc++ when compiling
2790         Objective-C++.  Don't exit early if -shared-libgcc needs to be
2791         added.
2792
2793 2007-03-02  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2794
2795         * typeck.c (common_base_type): Delete unused function.
2796         
2797 2007-03-01  Brooks Moses  <brooks.moses@codesourcery.com>
2798
2799         * Make-lang.in: Add dummy lang.install-pdf target.
2800
2801 2007-03-01  Simon Baldwin <simonb@google.com>
2802
2803         PR c++/23689
2804         * decl.c (check_tag_decl): Added new warning for typedef ignored
2805         when it precedes an otherwise valid non-typedef declaration.
2806
2807 2007-02-28  Sandra Loosemore  <sandra@codesourcery.com>
2808
2809         * typeck.c (build_function_call): Store converted arguments
2810         in a stack-allocated array instead of building a list.
2811         (convert_arguments): Store arguments in the array passed in as an
2812         argument, and return the actual number of arguments.
2813         * call.c (build_call): Delete, and replace with...
2814         (build_call_n, build_call_a): New.
2815         (build_op_delete_call): Rewrite to avoid constructing argument lists.
2816         (build_over_call): Store converted arguments in a stack-allocated
2817         array instead of building a list.
2818         (build_cxx_call): Pass arguments in an array instead of as a list.
2819         (build_java_interface_fn_ref): Rewrite to avoid constructing
2820         argument lists.
2821         * tree.h: Update declarations to reflect above changes.
2822         * method.c (use_thunk): Use a stack-allocated array to hold
2823         the arguments instead of a list.
2824         * rtti.c (throw_bad_cast): Update call to cxx_call.
2825         (throw_bad_typeid): Likewise.
2826         (build_dynamic_cast_1): Likewise.
2827         * init.c (build_builtin_delete_call): Use build_call_n.
2828         * decl.c (expand_static_init): Likewise.
2829         * except.c (cp_protect_cleanup_actions): Likewise.
2830         * cp-gimplify.c (genericize_eh_spec_block): Likewise.
2831         (gimplify_must_not_throw_expr): Likewise.
2832         (cxx_omp_apply_fn): Use build_call_a.
2833
2834 2007-02-26  Mark Mitchell  <mark@codesourcery.com>
2835
2836         * semantics.c (expand_or_defer_fn): Call c_record_cdtor_fn.
2837         * decl2.c (cp_write_gloabl_declarations): Call c_build_cdtor_fns.
2838
2839 2007-02-25  Mark Mitchell  <mark@codesourcery.com>
2840
2841         * cp-tree.h (static_ctors): Remove.
2842         * cp-tree.h (static_dtors): Likewise.
2843         * cp-objcp-common.c (decl_shadowed_for_var_lookup): Adjust for
2844         refactoring of tree_map hierarchy.
2845         (decl_shadowed_for_var_insert): Likewise.
2846         * semantics.c (expand_body): Use c_expand_body.
2847         (expand_or_defer_fn): Don't update static_ctors or static_dtors.
2848         * decl2.c (static_ctors): Remove.
2849         (static_dtors): Likewise.
2850         (generate_ctor_or_dtor_function): Pass NULL_TREE to
2851         objc_generate_static_init_call.  Do not call static_[cd]tors.
2852         (generate_ctor_and_dtor_functions_for_priority): Do not check for
2853         static_[cd]tors.
2854         (cp_write_global_declarations): Likewise.
2855
2856 2007-02-23  Richard Guenther  <rguenther@suse.de>
2857
2858         * class.c (note_name_declared_in_class): Make declaration
2859         changes meaning a pedwarn.
2860
2861 2007-02-22  Michael Matz  <matz@suse.de>
2862
2863         PR c++/29433
2864         * cp-tree.h (TFF_UNQUALIFIED_NAME): New formatting flag.
2865         * error.c (dump_aggr_type, dump_simple_decl, dump_decl,
2866         dump_function_decl): Guard emitting outer scopes by new flag.
2867         * cp-lang.c (cxx_dwarf_name): New function.
2868         (LANG_HOOKS_DWARF_NAME): Define to cxx_dwarf_name.
2869         * pt.c (classtype_mangled_name, mangle_class_name_for_template):
2870         Remove functions.
2871         (push_template_decl_real, lookup_template_class): Remove calls
2872         to above functions.
2873
2874 2007-02-19  Mark Mitchell  <mark@codesourcery.com>
2875
2876         * call.c (build_new_method_call): Ensure that explicit calls of
2877         destructors have type "void".
2878
2879 2007-02-19  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2880
2881         * typeck.c (build_binary_op): Replace -Wstring-literal-comparison
2882         and -Walways-true with -Waddress.
2883         * cvt.c (convert_to_void): Replace unconditional warning with
2884         -Waddress.
2885
2886 2007-02-18  Kazu Hirata  <kazu@codesourcery.com>
2887
2888         * decl.c, tree.c: Fix comment typos.
2889
2890 2007-02-15  Andrew Pinski  <andrew_pinski@playstation.sony.com>
2891
2892         PR C++/30158
2893         * semantics.c (finish_stmt_expr_expr): Set TREE_TYPE of the 
2894         statement expression if we had an error mark node.
2895
2896 2007-02-15  Sandra Loosemore  <sandra@codesourcery.com>
2897             Brooks Moses  <brooks.moses@codesourcery.com>
2898             Lee Millward  <lee.millward@codesourcery.com>
2899
2900         * cp-tree.def (AGGR_INIT_EXPR): Adjust documentation.
2901         Change class to tcc_vl_exp.
2902
2903         * call.c (build_call): Use build_call_list instead 
2904         of build3. 
2905         (build_over_call): Likewise.
2906         (build_new_method_call): Use build_min_non_dep_call_list 
2907         instead of build_min_non_dep.
2908
2909         * error.c (dump_call_expr_args): New function.
2910         (dump_aggr_init_expr_args): New function.
2911         (dump_expr) <AGGR_INIT_EXPR, CALL_EXPR, INDIRECT_REF>: Use them. 
2912         Update to use new CALL_EXPR and AGGR_INIT_EXPR accessor macros.
2913
2914         * cvt.c (convert_to_void): Use build_call_array instead
2915         of build3; use new AGGR_INIT_EXPR accessor macros.
2916
2917         * mangle.c (write_expression): Use TREE_OPERAND_LENGTH
2918         instead of TREE_CODE_LENGTH.
2919
2920         * dump.c (cp_dump_tree) <AGGR_INIT_EXPR>: Update to use new
2921         AGGR_INIT_EXPR accessor macros.
2922
2923         * cp-gimplify.c (cp_gimplify_init_expr): Use 
2924         AGGR_INIT_EXPR_SLOT to set the slot operand.
2925
2926         * cp-tree.h (AGGR_INIT_EXPR_FN): New macro.
2927         (AGGR_INIT_EXPR_SLOT): New macro.
2928         (AGGR_INIT_EXPR_ARG): New macro.
2929         (aggr_init_expr_nargs): New macro.
2930         (AGGR_INIT_EXPR_ARGP): New macro.
2931         (aggr_init_expr_arg_iterator): New.
2932         (init_aggr_init_expr_arg_iterator): New.
2933         (next_aggr_init_expr_arg): New.
2934         (first_aggr_init_expr_arg): New.
2935         (more_aggr_init_expr_args_p): New.
2936         (FOR_EACH_AGGR_INIT_EXPR_ARG): New.
2937         (stabilize_aggr_init): New declaration.
2938         (build_min_non_dep_call_list): Likewise.
2939
2940         * tree.c (process_aggr_init_operands): New function.
2941         (build_aggr_init_array) New function.
2942         (build_cplus_new): Update to use new CALL_EXPR and
2943         AGGR_INIT_EXPR accessor macros. Replace use of build3 with
2944         build_aggr_init_array.
2945         (build_min_non_dep_call_list) New function.
2946         (build_min_nt): Assert input code parameter is not a variable
2947         length expression class.
2948         (build_min, build_min_non_dep): Likewise.
2949         (cp_tree_equal) <CALL_EXPR>: Iterate through the arguments
2950         to check for equality instead of recursing. Handle tcc_vl_exp
2951         tree code classes.
2952         (stabilize_call): Update to only handle CALL_EXPRs, not 
2953         AGGR_INIT_EXPRs; use new CALL_EXPR accessor macros.
2954         (stabilize_aggr_init): New function.
2955         (stabilize_init): Use it.
2956
2957         * cxx-pretty-print.c (pp_cxx_postfix_expression)
2958         <AGGR_INIT_EXPR, CALL_EXPR>: Update to use new CALL_EXPR and
2959         AGGR_INIT_EXPR accessor macros and argument iterators.
2960         
2961         * pt.c (tsubst_copy) <CALL_EXPR>: Replace build_nt with
2962         build_vl_exp. Iterate through the operands, recursively 
2963         processing each one.
2964         (tsubst_copy_and_build) <CALL_EXPR>: Update to use new
2965         CALL_EXPR accessor macros.
2966         (value_dependent_expression_p) <default>: Handle tcc_vl_exp
2967         tree code classes. Use TREE_OPERAND_LENGTH instead of 
2968         TREE_CODE_LENGTH.
2969
2970         * semantics.c (finish_call_expr): Use build_nt_call_list
2971         instead of build_nt.
2972         (simplify_aggr_init_expr): Update to use new AGGR_INIT_EXPR 
2973         accessor macros. Use build_call_array to construct the 
2974         CALL_EXPR node instead of build3
2975         
2976         * decl2.c (build_offset_ref_call_from_tree): Use 
2977         build_nt_call_list and build_min_non_dep_call_list instead
2978         of build_min_nt and build_min_non_dep.
2979
2980         * parser.c (cp_parser_postfix_expression) <CPP_OPEN_PAREN>:
2981         Use build_nt_call_list instead of build_min_nt.
2982
2983 2007-02-15  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2984
2985         PR c++/28943
2986         * call.c (build_conditional_expr): Improve error message.
2987         
2988 2007-02-13  Dirk Mueller  <dmueller@suse.de>
2989
2990         * friend.c (do_friend): Annotate warning about friend
2991         declarations in templates with OPT_Wnon_template_friend.
2992         Convert informal message from warning() to inform().
2993
2994 2007-02-12  Simon Martin  <simartin@users.sourceforge.net>
2995             Mark Mitchell  <mark@codesourcery.com>
2996
2997         PR c++/14622
2998         * pt.c (do_decl_instantiation): Detect type mismatches in explicit
2999         instantiations for variables.
3000
3001 2007-02-12  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
3002
3003         PR middle-end/7651
3004         * cp-gimplify.c (gimplify_expr_stmt): Don't check extra_warnings.
3005         Check warn_unused_value just once.
3006
3007 2007-02-11  Mark Mitchell  <mark@codesourcery.com>
3008
3009         PR c++/26988
3010         * pt.c (determine_specialization): Use skip_artificial_parms_for.
3011         (fn_type_unificiation): Likewise.
3012         (get_bindings): Likewise.
3013
3014 o2007-02-06  Mark Mitchell  <mark@codesourcery.com>
3015
3016         PR target/29487
3017         * decl.c (finish_function): Use DECL_REPLACEABLE.
3018         * tree.c (cp_cannot_inline_tree_fn): Likewise.
3019
3020 2007-02-10  Gabriel Dos Reis  <gdr@integrable-solutions.net>
3021
3022         * parser.c (cp_parser_primary_expression): Reformat overly long lines.
3023
3024 2007-02-10  Richard Henderson  <rth@redhat.com>, Jakub Jelinek  <jakub@redhat.com>
3025
3026         * decl.c (grokvardecl): Don't error if !have_tls.
3027         (grokdeclarator): Likewise.
3028         * parser.c (cp_parser_omp_threadprivate): Likewise.
3029
3030 2007-02-07  Jakub Jelinek  <jakub@redhat.com>
3031
3032         PR c++/30703
3033         * cp-gimplify.c (cp_genericize_r): Don't dereference invisiref
3034         parameters and result decls in omp clauses.
3035         (cxx_omp_privatize_by_reference): Pass also invisiref PARM_DECLs
3036         by reference.
3037
3038 2007-02-05  Dirk Mueller  <dmueller@suse.de>
3039
3040         PR bootstrap/30510
3041         * parser.c (cp_parser_class_specifier): Always initialize bases.
3042
3043 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
3044
3045         * cp-tree.h (OMP_ATOMIC_CODE): Delete.
3046         (OMP_ATOMIC_DEPENDENT_P): Rewrite.
3047         * pt.c (tsubst_expr): Adjust for new format of dependent OMP_ATOMIC
3048         expressions.
3049         * semantics.c (finish_omp_atomic): Store a whole expression node
3050         in operand 1, and integer_zero_node in operand 0, for dependent
3051         OMP_ATOMIC.  Rewrite to make flow easier to understand.
3052
3053 2007-02-03  Gabriel Dos Reis  <gdr@integrable-solutions.net>
3054
3055         * decl.c (grokdeclarator): Use OPT_Wreturn_type instead of 0.
3056
3057 2007-02-04  Kazu Hirata  <kazu@codesourcery.com>
3058
3059         * class.c, cp-tree.h, decl.c, decl2.c, g++spec.c, init.c,
3060         parser.c, pt.c, tree.c, typeck.c: Follow spelling conventions.
3061
3062 2007-02-03  Douglas Gregor  <doug.gregor@gmail.com>
3063
3064        * parser.c (cp_lexer_get_preprocessor_token): Attach the C++0x
3065        keyword warning to -Wc++0x-compat.
3066         
3067 2007-02-03  Gabriel Dos Reis  <gdr@integrable-solutions.net>
3068
3069         * decl.c (grokdeclarator): Update documentation.
3070
3071 2007-02-02  Jakub Jelinek  <jakub@redhat.com>
3072
3073         PR c++/30536
3074         * decl.c (grokdeclarator): If __thread is used together with
3075         a storage class other than extern and static, clear thread_p
3076         after issuing diagnostics and fall through to checking the
3077         storage class.
3078
3079 2007-01-30  Roger Sayle  <roger@eyesopen.com>
3080
3081         * error.c (dump_type_suffix): Avoid use of cp_build_binary_op when
3082         calculating the size of an array (to avoid recursive errors).
3083
3084 2007-01-30  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
3085
3086         PR c++/24745
3087         * typeck.c (build_binary_op): Fix logic for warning. Move warning
3088         to -Wpointer-arith.
3089         * call.c (convert_like_real): Don't warn when converting to
3090         boolean type.
3091         
3092 2007-01-29  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
3093
3094         * decl.c (pop_label): Replace warning with call to
3095         warn_for_unused_label.
3096
3097 2007-01-28  Andrew Pinski  <pinskia@gmail.com>
3098
3099         PR C++/28988
3100         * semantics.c (finish_pseudo_destructor_expr): Check the
3101         destrutor name by calling check_dtor_name.
3102
3103 2007-01-24  Douglas Gregor  <dgregor@osl.iu.edu>
3104
3105         * lex.c (D_CPP0X): Rename.
3106         (D_CXX0X): To this.
3107         (reswords): D_CPP0X -> D_CXX0X.
3108         (init_reswords): Ditto.
3109         * parser.c (cp_lexer_get_preprocessor_token): Warn about the use
3110         of C++0x keywords as identifiers.
3111
3112 2007-01-23  Simon Martin  <simartin@users.sourceforge.net>
3113
3114         PR c++/27492
3115         * decl.c (duplicate_decls): Don't reset DECL_INVALID_OVERRIDER_P for
3116         function decls.
3117
3118 2007-01-23  Ian Lance Taylor  <iant@google.com>
3119
3120         * typeck.c (convert_for_assignment): Only warn about a = b = c
3121         when converting to bool.
3122
3123 2007-01-23  Roger Sayle  <roger@eyesopen.com>
3124
3125         * call.c (null_ptr_cst_p): Replace use of TREE_CONSTANT_OVERFLOW with
3126         TREE_OVERFLOW.
3127         * typeck.c (ignore_overflows): Remove the remaining uses of
3128         TREE_CONSTANT_OVERFLOW.
3129
3130 2007-01-20  Jan Hubicka  <jh@suse.cz>
3131
3132         * decl2.c (start_objects, start_static_storage_duration_function):
3133         Do not make the functions uninlinable.
3134
3135 2007-01-17  Ian Lance Taylor  <iant@google.com>
3136
3137         * class.c (add_method): Call VEC_reserve_exact rather than passing
3138         a negative size to VEC_reserve.
3139
3140 2007-01-11  Simon Martin  <simartin@users.sourceforge.net>
3141
3142         PR c++/29573
3143         * tree.c (cp_tree_equal): Properly handle MODOP_EXPR trees.
3144
3145 2007-01-10  Mark Mitchell  <mark@codesourcery.com>
3146
3147         PR c++/28999
3148         * decl.c (make_typename_type): If the qualified name is not a
3149         type, issue an error.
3150         * parser.c (cp_parser_elaborated_type_specifier): Fix comment
3151         formatting.
3152
3153 2007-01-08  Geoffrey Keating  <geoffk@apple.com>
3154
3155         * rtti.c: Include target.h.
3156         (emit_support_tinfos): If ! targetm.cxx.library_rtti_comdat (),
3157         don't emit typeinfo for fundamental types as weak.
3158         * Make-lang.in (cp/rtti.o): Update and correct dependencies.
3159
3160 2007-01-08  Richard Guenther  <rguenther@suse.de>
3161
3162         * cvt.c (cp_convert_to_pointer): Use build_int_cst_type.
3163
3164 2007-01-08  Mark Shinwell  <shinwell@codesourcery.com>
3165
3166         * call.c (standard_conversion): Pass flag to
3167         vector_types_convertible_p to disallow emission of note.
3168         * typeck.c (convert_for_assignment): Pass flag to
3169         vector_types_convertible_p to allow emission of note.
3170         (ptr_reasonably_similar): Pass flag to vector_types_convertible_p
3171         to disallow emission of note.
3172
3173 2007-01-07  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
3174
3175         PR c++/28986
3176         * typeck.c (build_binary_op): Call overflow_warning if
3177         TREE_OVERFLOW_P is true for the result and not for any of the
3178         operands.
3179         
3180 2007-01-06  Lee Millward  <lee.millward@codesourcery.com>
3181
3182        PR c++/19439
3183        * class.c (add_method): Don't wait until template
3184        instantiation time to complain about duplicate methods.
3185         
3186 2007-01-05  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
3187
3188         PR c/19978
3189         * semantics.c (finish_unary_op_expr): Warn only if result
3190         overflowed and operands did not.
3191
3192 2007-01-05  Ian Lance Taylor  <iant@google.com>
3193
3194         * typeck.c (build_binary_op): Warn about comparing a non-weak
3195         address to NULL.
3196
3197 2007-01-05  Douglas Gregor  <doug.gregor@gmail.com>
3198
3199         * pt.c (tsubst): Propagate the need for structural equality checks
3200         when reducing the level of template parameters.
3201
3202 2007-01-03  Kazu Hirata  <kazu@codesourcery.com>
3203
3204         * pt.c: Fix a comment typo.
3205
3206 2007-01-02  Ian Lance Taylor  <iant@google.com>
3207
3208         * semantics.c (maybe_convert_cond): Optionally warn when using an
3209         assignment as a condition.
3210         * typeck.c (convert_for_assignment): Optionally warn about
3211         assigning the result of an assignment to a bool.
3212
3213 2007-01-02  Douglas Gregor  <doug.gregor@gmail.com>
3214
3215         * pt.c (canonical_template_parms): Correct typo in comment.
3216         
3217 2007-01-02  Douglas Gregor  <doug.gregor@gmail.com>
3218
3219         * typeck.c (structural_comptypes): Renamed from "comptypes".
3220         (comptypes): Use canonical type information to perform fast type
3221         comparison. When VERIFY_CANONICAL_TYPES, verify that the
3222         canonical type comparison returns the same results as we would see
3223         from the current, structural check. Support COMPARE_STRUCTURAL
3224         when we need structural checks.
3225         * decl.c (typename_compare): Fix comment.
3226         (build_typename_type): TYPENAME_TYPE nodes require structural
3227         equality checks, because they resolve different based on the
3228         current class type.
3229         (make_unbound_class_template): UNBOUND_CLASS_TEMPLATE nodes
3230         require structural equality checks (for now).
3231         (build_ptrmemfunc_type): Build the canonical pointer to member
3232         function type.
3233         (compute_array_index_type): Whenever we build a new index type
3234         to represent the size of an array in a template, we need to mark
3235         this index type as requiring structural equality. This goes for
3236         arrays with value-dependent sizes with the current ABI, or all
3237         arrays with ABI-1.
3238         * tree.c (cplus_array_hash): New.
3239         (struct cplus_array_info): New.
3240         (cplus_array_compare): New.
3241         (cplus_array_htab): New.
3242         (build_cplus_array_type_1): Use a hash table to cache the array
3243         types we build. Build the canonical array type for each array
3244         type.
3245         (cp_build_qualified_type_real): When building a cv-qualified array
3246         type, use the hash table of array types and build canonical array
3247         types as necessary.
3248         (bind_template_template_parm): BOUND_TEMPLATE_TEMPLATE_PARM nodes
3249         use structural equality (for now).
3250         * cp-tree.h (COMPARE_STRUCTURAL): New.
3251         * pt.c (canonical_template_parms): New.
3252         (canonical_type_parameter): New.
3253         (process_template_parm): Find the canonical type parameter.
3254         (lookup_template_class): When we have named the primary template
3255         type, set the canonical type for our template class to the primary
3256         template type. If any of the template arguments need structural
3257         equality checks, the template class needs structural equality
3258         checks.
3259         (tsubst): When reducing the level of a template template
3260         parameter, we require structural equality tests for the resulting
3261         parameter because its template parameters have not had their types
3262         canonicalized. When reducing a template type parameter, find the
3263         canonical reduced type parameter.
3264         (any_template_arguments_need_structural_equality_p): New.
3265