OSDN Git Service

PR c++/42387
[pf3gnuchains/gcc-fork.git] / gcc / cp / ChangeLog
1 2009-12-16  Jason Merrill  <jason@redhat.com>
2
3         PR c++/42387
4         * decl.c (compute_array_index_type): Mark a VLA as dependent.
5
6 2009-12-15  Jason Merrill  <jason@redhat.com>
7
8         PR c++/42358
9         * pt.c (iterative_hash_template_arg): Completely ignore
10         ARGUMENT_PACK_SELECT.
11
12 2009-12-15  Jakub Jelinek  <jakub@redhat.com>
13
14         PR c++/41183
15         * cp-tree.h (current_class_ptr): Give NULL even when cfun
16         has NULL cfun->language.
17
18 2009-12-14  Jason Merrill  <jason@redhat.com>
19
20         PR c++/42364
21         * pt.c (function_parameter_expanded_from_pack_p): Don't require
22         a pack to have a name.
23         (tsubst_decl): Do typedef magic after applying attributes.
24
25 2009-12-15  Paolo Bonzini  <bonzini@gnu.org>
26             Shujing Zhao  <pearly.zhao@oracle.com>
27
28         * Makefile.in (cp/pt.o): Depend on intl.h
29         * call.c (print_z_candidates): Make loop more compact,
30         choose head string depending on number of candidates,
31         extract creation of spaces string to intl.c.
32         * pt.c (print_overloaded_functions): Replace with...
33         (print_candidates_1): ... this rewrite.
34         (print_candidates): Rewrite to call print_candidates_1.
35         (most_specialized_class): Make loop more compact,
36         choose head string depending on number of candidates,
37         and size indents depending on translations.
38
39 2009-12-11  Jason Merrill  <jason@redhat.com>
40
41         PR c++/42219
42         * typeck.c (error_type_p): New.
43         (ptr_reasonably_similar): Use it.
44         * cp-tree.h: Declare it.
45
46 2009-12-11  Dodji Seketeli  <dodji@redhat.com>
47
48         PR c++/42225
49         * typeck.c (incompatible_dependent_typedefs_p): New function.
50         (structural_comptypes): Use it.
51         * cp-tree.h (cp_set_underlying_type): Declare ...
52         * tree.c (cp_set_underlying_type): ... new function.
53         * class.c (build_self_reference): Use cp_set_underlying_type
54         instead of set_underlying_type.
55         * decl2.c (grokfield): Likewise.
56         * name-lookup.c (pushdecl_maybe_friend): Likewise.
57
58 2009-12-11  Dodji Seketeli  <dodji@redhat.com>
59
60         PR c++/42251
61         * pt.c (convert_template_argument): Avoid missing folding of SCOPE_REFs.
62
63 2009-12-10  Jakub Jelinek  <jakub@redhat.com>
64
65         PR c++/42317
66         * decl2.c (cp_write_global_declarations): Clear DECL_EXTERNAL
67         also on all other functions in the same comdat group.
68         * optimize.c (maybe_clone_body): Also optimize virtual implicit
69         dtors.  For virtual comdat dtors tell cgraph that base and deleting
70         dtor are in the same comdat group.
71
72 2009-12-04  Jason Merrill  <jason@redhat.com>
73
74         PR c++/42010
75         * cp-tree.h (DECL_DISCRIMINATOR_SET_P): New.
76         * mangle.c (discriminator_for_local_entity): Check it.
77
78         PR c++/42277
79         * semantics.c (finish_decltype_type): Defer handling of decltype
80         of a non-dependent COMPONENT_REF in a template.
81
82 2009-12-04  Dodji Seketeli  <dodji@redhat.com>
83
84         PR c++/42218
85         * cxx-pretty-print.c (pp_cxx_unqualified_id): Print only innermost
86         template arguments.
87
88 2009-12-03  Jason Merrill  <jason@redhat.com>
89
90         PR c++/41611
91         * decl2.c (get_guard): Don't use the same comdat group as the decl.
92
93         PR c++/42266
94         * cvt.c (convert_from_reference): Do nothing if TREE_TYPE is null.
95
96 2009-12-03  Dodji Seketeli  <dodji@redhat.com>
97
98         PR c++/42217
99         * class.c (remove_zero_width_bit_fields): The width of the bit field is
100         in DECL_SIZE, not in DECL_INITIAL.
101
102 2009-12-03  Jakub Jelinek  <jakub@redhat.com>
103
104         PR c++/42256
105         * optimize.c (maybe_clone_body): Call emit_associated_thunks
106         after expand_or_defer_fn_1.
107
108 2009-12-02  Taras Glek  <taras@mozilla.com>
109
110         * parser.c (cp_parser_class_specifier): Back out my previous change.
111         * semantics.c (begin_class_definition): Back out my previous change.
112
113 2009-12-02  Paolo Bonzini  <bonzini@gnu.org>
114             Shujing Zhao  <pearly.zhao@oracle.com>
115
116         PR c++/29917
117         * call.c (op_error): Accept a boolean to indicate no match/ambiguous
118         match, instead of a string. Callers adjusted.
119
120         PR c++/34836
121         * cp-tree.h (readonly_error_kind): New type.
122         (readonly_error): Adjust prototype with new argument.
123         * typeck2.c (readonly_error): Accept readonly_error_kind as argument
124         and add macro ERROR_FOR_ASSIGNMENT to emit diagnostics.
125         * semantics.c (finish_asm_stmt): Adjust readonly_error call.
126         * typeck.c (cp_build_unary_op, cp_build_modify_expr): Likewise.
127
128         * decl.c (grokparms, grok_op_properties): Put the diagnostics in full
129         sentences for easy translation and wrap the diagnostics into G_() when
130         needed.
131         (create_array_type_for_decl): Likewise.
132         * pt.c (tsubst): Likewise.
133         * typeck2.c (cp_build_unary_op): Wrap diagnostic into _().
134         * rtti.c (build_dynamic_cast_1): Likewise.
135         * Make-lang.in: Adjust.
136
137 2009-12-02  Jakub Jelinek  <jakub@redhat.com>
138
139         * g++spec.c (lang_specific_driver): Remove unused saw_verbose_flag
140         variable.
141         * pt.c (tsubst_pack_expansion): Remove unused first_arg_pack variable.
142         * init.c (build_vec_init): Remove unused size variable.
143         * typeck2.c (check_narrowing): Remove unused was_decl variable.
144         * decl.c (poplevel): Remove unused tmp and real_functionbody
145         variables.
146         (decls_match): Remove unused tree_name variable.
147         (start_decl): Remove unused type variable.
148         * parser.c (cp_parser_type_parameter): Remove unused parameter_list
149         variable.
150         (cp_parser_template_id, cp_parser_explicit_instantiation,
151         cp_parser_declarator): Remove unused token variable.
152         (cp_parser_simple_type_specifier): Remove unused id variable.
153         (cp_parser_parameter_declaration): Remove unused
154         greater_than_is_operator_p variable.
155         (cp_parser_check_declarator_template_parameters): Remove unused
156         member variable.
157         (c_parse_file): Remove unused error_occurred variable.
158         * cp-gimplify.c (cp_gimplify_init_expr): Remove unused slot variable.
159         * typeck.c (cp_build_function_call_vec): Remove unused name variable.
160         * class.c (resolve_address_of_overloaded_function): Remove unused
161         is_reference variable.
162         (build_rtti_vtbl_entries): Remove unused basetype variable.
163         * mangle.c (write_template_param): Remove unused parm_level and
164         parm_type variables.
165
166 2009-12-01  Taras Glek  <taras@mozilla.com>
167
168         * parser.c (cp_parser_class_specifier): Set class location to that
169         of IDENTIFIER_NODE instead of '{' when possible.
170
171 2009-12-01  Taras Glek  <taras@mozilla.com>
172
173         * semantics.c (begin_class_definition): Do not overide locations with less precise ones.
174
175 2009-12-01  Jason Merrill  <jason@redhat.com>
176
177         PR c++/41611
178         * decl2.c (get_guard): Copy DECL_COMDAT.
179         (comdat_linkage): Set DECL_COMDAT unconditionally.
180
181 2009-12-01  Jakub Jelinek  <jakub@redhat.com>
182
183         PR c++/3187
184         * optimize.c (cdtor_comdat_group): New function.
185         (maybe_clone_body): Also optimize DECL_COMDAT base/complete cdtors
186         and in that case put also the deleting dtor in the same comdat group
187         as base and complete dtor if dtor is virtual.
188
189 2009-11-30  Paolo Carlini  <paolo.carlini@oracle.com>
190
191         PR c++/40371
192         * call.c (add_template_candidate_real): Early return NULL if
193         the arglist length is smaller than skip_without_in_chrg; tidy.
194
195 2009-11-30  Dodji Seketeli  <dodji@redhat.com>
196
197         PR c++/42069
198         * pt.c (convert_template_argument): Strip typedefs from SCOPE_REFs.
199
200 2009-11-29  Dodji Seketeli  <dodji@redhat.com>
201
202         PR c++/36408
203         * semantics.c (empty_expr_stmt_p): Handle void_zero_node and fix
204         bad indentation.
205         * pt.c (tsubst_copy_and_build): Fix typo.
206
207 2009-11-29  Jan Hubicka  <jh@suse.cz>
208
209         * optimize.c (maybe_clone_body): Emit thunks associated to alias.
210         * Make-lang.in (method.o): Add dependency on gimple.h.
211         * method.c: Include gimple.h
212         (make_alias_for_thunk): Use same body alias instead of assemble_alias.
213         (use_thunk): Drop codegen; use cgraph_add_thunk; gimplify
214         generic thunks.
215         * semantics.c (expand_or_defer_fn): Emit associated thunks.
216
217 2009-11-28  Dodji Seketeli  <dodji@redhat.com>
218
219         PR c++/36408
220         * cp-tree.h (empty_expr_stmt_p): Declare ...
221         * semantics.c (empty_expr_stmt_p): ... this.
222         * pt.c (tsubst_copy_and_build) <STMT_EXPR>: Use it.
223
224 2009-11-27  Paolo Carlini  <paolo.carlini@oracle.com>
225
226         PR c++/38656
227         * cxx-pretty-print.c (pp_cxx_expression): Handle TEMPLATE_ID_EXPR.
228
229 2009-11-27  Paolo Carlini  <paolo.carlini@oracle.com>
230
231         PR c++/35112
232         * pt.c (print_overloaded_functions): New.
233         (print_candidates): Call the latter.
234         * parser.c (cp_parser_class_name): Do not duplicate the diagnostics
235         after the cp_parser_lookup_name call.
236
237 2009-11-26  Jason Merrill  <jason@redhat.com>
238
239         PR c++/42026, DR 239
240         * parser.c (cp_parser_postfix_expression): A local extern also
241         prevents arg-dependent lookup.
242
243 2009-11-26  Gabriel Dos Reis  <gdr@cs.tamu.edu>
244
245         * decl.c (grokdeclarator): Remove period at end of diagnosic message.
246
247 2009-11-25  Jason Merrill  <jason@redhat.com>
248
249         PR c++/10690
250         * rtti.c (get_tinfo_decl_dynamic): Call resolve_nondeduced_context.
251
252 2009-11-24  Jason Merrill  <jason@redhat.com>
253
254         PR c++/42137
255         * parser.c (cp_parser_mem_initializer_id): Pass typename_type to
256         cp_parser_class_name.
257         (cp_parser_unqualified_id): Same, rather than class_type.
258
259         PR c++/11764
260         * parser.c (cp_parser_expression_statement): Give helpful error
261         for constructor name used as type.
262
263         * pt.c (determine_specialization): Give helpful error about missing
264         "template<>".
265
266 2009-11-23  Jakub Jelinek  <jakub@redhat.com>
267
268         PR middle-end/42095
269         * tree.c: Include cgraph.h.
270         (cp_fix_function_decl_p): Don't return true for same_body aliases.
271         * Make-lang.in (cp/tree.o): Depend on $(CGRAPH_H).
272
273 2009-11-23  Dodji Seketeli  <dodji@redhat.com>
274
275         PR c++/14777
276         * cp-tree.def <TEMPLATE_INFO>: Declare new kind of tree
277         node.
278         * cp-tree.h (struct tree_template_info,
279         struct qualified_typedef_usage_s): New.
280         (cp_tree_node_structure_enum): add TS_CP_TEMPLATE_INFO.
281         (union lang_tree_node): Add template_info.
282         (TI_TEMPLATE, TI_ARGS, TI_TYPEDEFS_NEEDING_ACCESS_CHECKING):
283         Adjust.
284         (build_template_info): Declare.
285         (get_types_needing_access_check): Adjust return type.
286         (add_typedef_to_current_template_for_access_check): Declare.
287         * cp-objcp-common.c (cp_tree_size): Handle TEMPLATE_INFO.
288         * semantics.c (add_typedef_to_current_template_for_access_check):
289         Split from ...
290         (check_accessibility_of_qualified_id): ... here.
291         * decl.c (make_typename_type): Use it.
292         * pt.c (build_template_info): Define.
293         (check_explicit_specialization, find_parameter_packs_r,
294         push_template_decl_real, lookup_template_class,
295         for_each_template_parm_r, tsubst_decl, tsubst): Use
296         build_template_info.
297         (get_types_needing_access_check): Adjust return type.
298         (append_type_to_template_for_access_check_1): Record the
299         location of the usage point of the typedef. Adjust to TEMPLATE_INFO.
300         (append_type_to_template_for_access_check): Add new location
301         parameter. Pass it to append_type_to_template_for_access_check_1.
302         Adjust to TEMPLATE_INFO.
303         (perform_typedefs_access_check): Temporarily set input_location to
304         the usage point of the typedef we are checking access for. Adjust
305         to new TEMPLATE_INFO tree node.
306         * tree.c (bind_template_template_parm): Use build_template_info.
307         * call.c (add_template_candidate_real): Likewise.
308         * decl.c (grokfndecl): Likewise.
309         (cp_tree_node_structure): Handle TEMPLATE_INFO.
310
311 2009-11-20  Jason Merrill  <jason@redhat.com>
312
313         PR c++/9050, DR 147, DR 318
314         * parser.c (cp_parser_lookup_name): If the name matches the explicit
315         class scope, we're naming the constructor.
316         (cp_parser_constructor_declarator_p): Just use cp_parser_unqualified_id
317         if we have a nested-name-specifier.
318         (cp_parser_direct_declarator): Handle getting an overload set as a
319         constructor declarator.
320         (cp_parser_unqualified_id): Avoid looking up the constructor when
321         naming the destructor.
322         (cp_parser_diagnose_invalid_type_name): Give good
323         diagnostic for improper use of constructor as template.
324         * typeck.c (finish_class_member_access_expr): Give good diagnostic
325         about calling constructor.
326
327         * error.c (dump_aggr_type): Don't print A::A for injected-class-name.
328
329 2009-11-20  Simon Martin  <simartin@users.sourceforge.net>
330
331         PR c++/38646
332         * pt.c (process_partial_specialization): Do not turn wrongly located
333         parameter pack arguments into error_mark_node.
334         Split too long lines into two.
335
336 2009-11-20  Paolo Carlini  <paolo.carlini@oracle.com>
337
338         PR c++/42060
339         * except.c (build_throw): Check the tree returned by
340         decay_conversion for error_mark_node.
341
342 2009-11-20  Shujing Zhao  <pearly.zhao@oracle.com>
343
344         PR c++/29017
345         * cp-tree.h (composite_pointer_operation): New type.
346         (composite_pointer_type): Adjust prototype with new argument.
347         * typeck.c (composite_pointer_type): Accept
348         composite_pointer_operation as argument and emit diagnostic to be
349         visible to gettext and checked at compile time.
350         (composite_pointer_type_r): Likewise.
351         (common_pointer_type): Update call to composite_pointer_type.
352         (cp_build_binary_op): Likewise.
353         * call.c (build_conditional_expr): Likewise.
354
355 2009-11-19  Jason Merrill  <jason@redhat.com>
356
357         PR c++/42115
358         * call.c (build_op_delete_call): Don't complain about using
359         op delete (void *, size_t) for placement delete if there's an
360         op delete (void *).
361
362         DR 176 permissiveness
363         * class.c (build_self_reference): Call set_underlying_type.
364         * decl.c (check_elaborated_type_specifier): Don't complain about
365         injected-class-name.
366         (type_is_deprecated): Use TYPE_MAIN_VARIANT.
367         * pt.c (convert_template_argument): Handle injected-class-name used
368         as template template argument.
369         * typeck2.c (abstract_virtuals_error): Use TYPE_MAIN_VARIANT.
370
371         PR c++/561
372         * decl.c (static_fn_type): Split out...
373         (revert_static_member_fn): ...from here.
374         * cp-tree.h: Declare it.
375         * class.c (resolve_address_of_overloaded_function): Use it to compare
376         pointers to member functions.
377         * typeck.c (build_static_cast_1): Call instantiate_type.
378
379 2009-11-18  Shujing Zhao  <pearly.zhao@oracle.com>
380
381         PR c++/40892
382         * error.c (maybe_warn_cpp0x): Accept enum cpp0x_warn_str as argument.
383         (maybe_warn_variadic_templates): Update the maybe_warn_cpp0x calls to
384         match the new declaration.
385         * cp-tree.h (cpp0x_warn_str): New type.
386         (maybe_warn_cpp0x): Adjust prototype with new argument.
387         * call.c (reference_binding): Update the maybe_warn_cpp0x calls.
388         * decl.c (reshape_init_r, check_initializer, grokdeclarator):
389         Likewise.
390         * parser.c (cp_parser_primary_expression)
391         (cp_parser_parenthesized_expression_list, cp_parser_new_initializer)
392         (cp_parser_assignment_expression, cp_parser_condition)
393         (cp_parser_jump_statement, cp_parser_mem_initializer)
394         (cp_parser_simple_type_specifier, cp_parser_elaborated_type_specifier)
395         (cp_parser_enum_specifier, cp_parser_initializer)
396         (cp_parser_pure_specifier, cp_parser_functional_cast): Likewise.
397
398 2009-11-18  Jakub Jelinek  <jakub@redhat.com>
399
400         PR c++/3187
401         * cp-tree.h (expand_or_defer_fn_1): New prototype.
402         * decl2.c (cp_write_global_declarations): Mark as !DECL_EXTERNAL
403         also all same_body aliases.
404         * semantics.c (expand_or_defer_fn): Move most of the function
405         except registering with cgraph to ...
406         (expand_or_defer_fn_1): ... here.  New function.
407         * optimize.c: Include cgraph.h.
408         (maybe_clone_body): If in charge parm is not used and both base
409         and complete clones are created and are not comdat, tell cgraph
410         they have the same body.
411         * Make-lang.in (cp/optimize.o): Depend on $(CGRAPH_H).
412
413 2009-11-17  Paolo Carlini  <paolo.carlini@oracle.com>
414
415         PR c++/42058
416         * typeck2.c (digest_init_r): Check init for error_operand_p.
417         * decl.c (reshape_init_class): Check return value of reshape_init_r
418         for error_mark_node.
419
420 2009-11-17  Jakub Jelinek  <jakub@redhat.com>
421
422         PR c++/42061
423         * call.c (reference_binding): Return NULL for initializer list with
424         error operand inside of it.
425
426         PR c++/42059
427         * typeck.c (cp_build_modify_expr): For initializer list call
428         check_array_initializer to make sure lhs isn't a VLA.
429
430 2009-11-16  Jason Merrill  <jason@redhat.com>
431
432         PR c++/189, c++/9937, c++/13950, DR 176
433         * search.c (lookup_field_r): Allow lookup to find the
434         injected-class-name from a template base.
435         (template_self_reference_p): Remove.
436         * decl.c (make_typename_type): Diagnose ambiguity.  Use
437         maybe_get_template_decl_from_type_decl.
438         * parser.c (cp_parser_template_name): Pass true to is_template
439         rather than use maybe_get_template_decl_from_type_decl.
440         (cp_parser_lookup_name): Use maybe_get_template_decl_from_type_decl.
441         * pt.c (maybe_get_template_decl_from_type_decl): Handle ambiguity.
442         Use DECL_SELF_REFERENCE_P.
443
444         * parser.c (cp_parser_parse_and_diagnose_invalid_type_name):
445         Avoid duplicate ambiguity error.
446         * error.c (dump_decl): Don't say "typedef" for injected-class-name.
447         * pt.c (convert_template_argument): Tweak logic.
448
449 2009-11-16  Paolo Carlini  <paolo.carlini@oracle.com>
450
451         PR c++/42055
452         * pt.c (determine_specialization): Assign to candidates the return
453         value of the chainon called before print_candidates.
454
455 2009-11-16  Paolo Carlini  <paolo.carlini@oracle.com>
456
457         PR c++/32056
458         * decl.h (enum decl_context): Add TPARM enumerator.
459         * decl.c (grokdeclarator): Per 14.1/2, error out if a storage class
460         is specified in a template parameter declaration.
461         * parser.c (cp_parser_template_parameter): Call grokdeclarator with
462         TPARM as third argument.
463
464 2009-11-13  Jason Merrill  <jason@redhat.com>
465
466         PR c++/27425
467         PR c++/34274
468         * pt.c (expand_template_argument_pack): Handle null arg gracefully.
469         (convert_template_argument): Use %T for type.
470
471         PR c++/29363
472         * decl.c (create_implicit_typedef): Set TYPE_STUB_DECL here.
473         (cxx_init_decl_processing): Not here.
474         * name-lookup.c (pushtag): Or here.
475         * pt.c (lookup_template_class): Or here.
476
477         PR c++/35075
478         * pt.c (convert_nontype_argument): Give helpful error about
479         reference variable argument to reference template parameter.
480
481         PR c++/21008, DR 515
482         * semantics.c (finish_non_static_data_member): Don't check
483         derivation in a template.
484
485         PR c++/11987
486         * parser.c (cp_parser_direct_declarator): Give helpful error about
487         trying to define member of a dependent typedef.
488         * pt.c (resolve_typename_type): Don't resolve a typedef typename.
489         * tree.c (typedef_variant_p): New.
490         * cp-tree.h: Declare it.
491
492 2009-11-12  Jason Merrill  <jason@redhat.com>
493
494         PR c++/27078
495         * parser.c (cp_parser_primary_expression): Don't give a duplicate
496         ambiguity error.
497
498         PR c++/39560
499         * decl2.c (build_anon_union_vars): Set DECL_ARTIFICIAL.
500
501         PR c++/37037
502         * decl.c (grokdeclarator): Don't generate a void PARM_DECL.
503
504         PR c++/42013
505         * call.c (build_conditional_expr): Check specifically for folding
506         to CALL_EXPR rather than TREE_SIDE_EFFECTS.
507
508         * typeck.c (cv_qualified_p): New fn.
509         (decay_conversion): Use it.
510         * cp-tree.h: Declare it.
511         * tree.c (rvalue): Use it and cv_unqualified.
512         * init.c (build_aggr_init): Likewise.
513
514         PR c++/42013
515         * call.c (build_conditional_expr): Don't fold a TREE_SIDE_EFFECTS
516         COND_EXPR in unevaluated context.
517
518 2009-11-12  Jan Hubicka  <jh@suse.cz>
519
520         * decl2.c (constrain_visibility): Clear WEAK and COMMON flags.
521
522 2009-11-11  Jason Merrill  <jason@redhat.com>
523
524         PR c++/39131
525         * rtti.c (emit_support_tinfos): Add DFP types.
526
527         * call.c (build_op_delete_call): Downgrade error about
528         placement/non-placement confusion to permerror.
529
530 2009-11-10  Jason Merrill  <jason@redhat.com>
531
532         * call.c (build_op_delete_call): Tweak error.
533
534         PR c++/34158
535         PR c++/36406
536         * call.c (non_placement_deallocation_fn_p): Split out...
537         (build_op_delete_call): ...from here.  Use instantiate_type
538         for placement delete.  Simplify logic.
539         * pt.c (primary_template_instantiation_p): Non-static.
540         * cp-tree.h: Declare it.
541
542 2009-11-09  Jason Merrill  <jason@redhat.com>
543
544         PR c++/41972
545         * parser.c (cp_parser_template_argument): Accept SCOPE_REF around
546         VAR_DECL.
547
548         PR c++/41994
549         * pt.c (tsubst_baselink): tsubst the name.
550
551 2009-11-07  Jason Merrill  <jason@redhat.com>
552
553         PR c++/37920
554         * pt.c (tsubst) [TYPEOF_TYPE]: Set cp_unevaluated_operand.
555
556         PR c++/18451
557         PR c++/40738
558         * cp-tree.h (cp_decl_specifier_seq): Add any_type_specifiers_p.
559         * parser.c (cp_parser_single_declaration): Call
560         cp_parser_parse_and_diagnose_invalid_type_name here, too.
561         (cp_parser_parameter_declaration): And here.
562         (cp_parser_parse_and_diagnose_invalid_type_name): Be
563         less picky about declarator form.  Don't skip to
564         the end of the block if we're in a declarator.
565         (cp_parser_decl_specifier_seq): Set any_type_specifiers_p.
566         (cp_parser_simple_declaration): Check it.
567         (cp_parser_member_declaration): Likewise.
568         (cp_parser_diagnose_invalid_type_name): Tweak error message.
569         (cp_parser_expression_statement): Likewise.
570         * decl2.c (grokfield): Mention decltype instead of typeof.
571
572 2009-11-06  Jason Merrill  <jason@redhat.com>
573
574         PR c++/15946
575         * parser.c (cp_parser_check_template_parameters): Don't talk about
576         specialization at function scope.
577         (cp_parser_diagnose_invalid_type_name): Handle dependent scope.
578         (cp_parser_parse_and_diagnose_invalid_type_name): Likewise.
579         (cp_parser_expression_statement): Suggest typename.
580         * error.c (dump_decl) [SCOPE_REF]: Print the type here.
581         (dump_expr) [SCOPE_REF]: Call it.
582         (dump_type) [UNBOUND_CLASS_TEMPLATE]: Check TFF_UNQUALIFIED_NAME.
583         * cxx-pretty-print.c (pp_cxx_unqualified_id): Print class template
584         args.
585
586         PR c++/9381
587         * decl2.c (build_memfn_type): Preserve attributes.
588         (cp_reconstruct_complex_type): Likewise.
589         (maybe_retrofit_in_chrg): Likewise.
590         * class.c (adjust_clone_args): Likewise.
591         * call.c (standard_conversion): Use build_memfn_type.
592         * pt.c (tsubst): Likewise.
593         * decl.c (build_ptrmem_type): Likewise
594         (check_function_type): Preserve attributes.
595         * tree.c (cp_build_type_attribute_variant): Propagate exception
596         specs on METHOD_TYPE, too.
597         (strip_typedefs): Preserve exception specs and attributes.
598
599 2009-11-06  Andrew Pinski  <andrew_pinski@playstation.sony.com>
600
601         PR c++/41536
602         * optimize.c (maybe_clone_body): Copy DECL_ATTRIBUTES and
603         DECL_DISREGARD_INLINE_LIMITS also.
604
605 2009-11-06  Jakub Jelinek  <jakub@redhat.com>
606
607         PR c++/41967
608         * parser.c (cp_parser_omp_for_loop): After diagnosing not perfectly
609         nested loop and parsing statements, don't cp_parser_require }, instead
610         exit the loop if next token is CPP_EOF.
611
612 2009-11-05  Jason Merrill  <jason@redhat.com>
613
614         PR c++/34180
615         * method.c (do_build_copy_constructor): Don't drop cv-quals from
616         the field type.
617
618         PR c++/7046
619         * class.c (finish_struct): Store maximum_field_alignment in
620         TYPE_PRECISION.
621         * pt.c (instantiate_class_template): Set maximum_field_alignment.
622
623         PR c++/34870
624         * name-lookup.c (arg_assoc_class): Call complete_type.
625         * pt.c (instantiate_class_template): Call uses_template_parms
626         instead of dependent_type_p.
627
628         PR c++/41703
629         * pt.c (check_undeduced_parms): New subroutine of...
630         (more_specialized_fn): ...here.  Undeduced template parms can make
631         a template less specialized than another.
632
633 2009-11-04  Jason Merrill  <jason@redhat.com>
634
635         PR c++/39413
636         * search.c (lookup_base): Don't complete_type (base).
637
638         PR c++/35067
639         * method.c (use_thunk): Check DECL_WEAK as well as
640         DECL_ONE_ONLY.
641
642         PR c++/17365, DR 218
643         * name-lookup.c (add_function): Ignore non-functions.
644
645 2009-11-03  Jason Merrill  <jason@redhat.com>
646
647         PR c++/36959
648         * decl2.c (cxx_callgraph_analyze_expr): Don't reference a function
649         just because a static variable in it is needed unless -frepo.
650
651         PR c++/41876
652         * parser.c (cp_parser_type_specifier_seq): Rename is_condition to
653         is_declaration.
654         (cp_parser_exception_declaration): Pass true.
655         (cp_parser_omp_for_loop): Likewise.
656
657         PR c++/41927
658         * typeck.c (build_x_binary_op): Don't do warn_parentheses
659         if we're in a SFINAE context.
660
661         PR c++/41815
662         * call.c (build_call_a): Strip cv-quals from rvalue result.
663
664         PR c++/40944
665         * call.c (initialize_reference): Add complain parm.
666         * typeck.c (convert_for_initialization): Pass it.
667         * decl.c (grok_reference_init): Likewise.
668         * cp-tree.h: Declare it.
669
670         PR c++/40687
671         * pt.c (do_auto_deduction): Diagnose inconsistent deduction.
672
673 2009-11-02  Dodji Seketeli  <dodji@redhat.com>
674
675         PR c++/37093
676         * pt.c (check_valid_ptrmem_cst_expr): New function.
677         (convert_nontype_argument): Use it to output an error for
678         illegal pointer to member expressions used as template arguments.
679
680 2009-11-02  Jason Merrill  <jason@redhat.com>
681
682         Restrict DR 757 change to C++0x mode.
683         * decl2.c (mark_used): Check cxx_dialect.
684         * decl.c (grokfndecl): Do check type linkage in C++98 mode.
685         (grokvardecl): Likewise.
686         * pt.c (check_instantiated_arg): Likewise.
687
688 2009-11-02  Jakub Jelinek  <jakub@redhat.com>
689
690         PR c++/41774
691         * name-lookup.c (handle_namespace_attrs): Pass 1 as last argument to
692         push_visibility.
693         * parser.c (cp_parser_namespace_definition): Pass 1 as argument to
694         pop_visibility.
695         * rtti.c (push_abi_namespace): Pass 2 as last argument to
696         push_visibility.
697         (pop_abi_namespace): Pass 2 as argument to pop_visibility.
698
699 2009-10-31  Jason Merrill  <jason@redhat.com>
700
701         * tree.c (cv_unqualified): New fn.
702         * cp-tree.h: Declare it.
703         * typeck.c (decay_conversion): Use it instead of TYPE_MAIN_VARIANT.
704
705         * rtti.c (tinfo_name): Fix lengths for private case.
706
707 2009-10-31  Jason Merrill  <jason@redhat.com>
708
709         PR c++/41754
710         * call.c (compare_ics): Avoid bad union use when
711         comparing two ck_lists.
712
713 2009-10-30  Jerry Quinn  <jlquinn@optonline.net>
714
715         * mangle.c (mangle_type_string_for_rtti): Reapply 153734.
716         (needs_fake_anon): Likewise.
717         (write_name): Likewise.
718         (write_nested_name): Likewise.
719         * cp-tree.h (mangle_type_string_for_rtti): Likewise.
720         (get_anonymous_namespace): Likewise.
721         * name-lookup.c (get_anonymous_namespace_name): Likewise.
722         * rtti.c (tinfo_name): Likewise, with +1 in the second
723         build_string call fixed.
724         (tinfo_base_init): Likewise.
725
726 2009-10-30  Jason Merrill  <jason@redhat.com>
727
728         Revert:
729         * decl.c (cp_fname_init): Correct build_string argument.
730
731 2009-10-30  Jerry Quinn  <jlquinn@optonline.net>
732
733         * mangle.c (mangle_type_string_for_rtti): Revert 153734.
734         (needs_fake_anon): Likewise.
735         (write_name): Likewise.
736         (write_nested_name): Likewise.
737         * cp-tree.h (mangle_type_string_for_rtti): Likewise.
738         (get_anonymous_namespace): Likewise.
739         * name-lookup.c (get_anonymous_namespace_name): Likewise.
740         * rtti.c (tinfo_name): Likewise.
741         (tinfo_base_init): Likewise.
742
743 2009-10-30  Dodji Seketeli  <dodji@redhat.com>
744
745         PR c++/41863
746         * pt.c (iterative_hash_template_arg): articifial parms
747         don't have DECL_PARM_INDEX set. Do not hash it.
748
749 2009-10-28  Jerry Quinn  <jlquinn@optonline.net>
750
751         * mangle.c (mangle_type_string_for_rtti): Revert r149964.
752         (needs_fake_anon): Likewise.
753         (write_name): Likewise.
754         (write_nested_name): Likewise.
755         * cp-tree.h (mangle_type_string_for_rtti): Likewise.
756         (get_anonymous_namespace): Likewise.
757         * name-lookup.c (get_anonymous_namespace_name): Likewise.
758         * rtti.c (tinfo_name): Insert '*' in front of private names.
759         (tinfo_base_init): Use it.
760
761 2009-10-28  Jason Merrill  <jason@redhat.com>
762
763         Core issue 812, 861
764         * name-lookup.c (set_decl_namespace): Deal properly with inline
765         namespaces.
766         (qualified_lookup_using_namespace): Overhaul.
767         * pt.c (print_candidates): Handle getting an OVERLOAD.
768
769 2009-10-28  Jason Merrill  <jason@redhat.com>
770
771         * decl.c (cp_fname_init): Correct build_string argument.
772
773 2009-10-27  Jason Merrill  <jason@redhat.com>
774
775         Allow no-capture lambdas to convert to function pointer.
776         * semantics.c (maybe_add_lambda_conv_op): New.
777         * parser.c (cp_parser_lambda_expression): Call it.
778         (cp_parser_lambda_declarator_opt): Make op() static if
779         no captures.
780         * mangle.c (write_closure_type_name): Adjust.
781         * semantics.c (finish_this_expr): Adjust.
782         * decl.c (grok_op_properties): Allow it.
783         * call.c (build_user_type_conversion_1): Handle static conversion op.
784         (build_op_call): And op().
785
786 2009-10-26  Jakub Jelinek  <jakub@redhat.com>
787
788         PR debug/41828
789         * cp-lang.c (cxx_dwarf_name): Return NULL instead of
790         <anonymous ...> for anonymous aggregate names.
791
792 2009-10-26  Jason Merrill  <jason@redhat.com>
793
794         PR c++/38796, Core issue 906
795         * cp-tree.h (DECL_DEFAULTED_OUTSIDE_CLASS_P): New.
796         (DECL_DEFAULTED_IN_CLASS_P): New.
797         * class.c (user_provided_p): Non-static.
798         (check_methods): Use it.
799         (check_bases_and_members): Check defaulted fns.
800         (defaultable_fn_p): Move and rename to...
801         * method.c (defaultable_fn_check): ...this.
802         (defaulted_late_check): New.
803         * pt.c (tsubst_decl): Call it.
804         * decl2.c (grokfield): Adjust.
805         * decl.c (cp_finish_decl): Adjust.
806         (grok_special_member_properties): Use user_provided_p.
807
808 2009-10-26  Dodji Seketeli  <dodji@redhat.com>
809
810         PR c++/41785
811         * pt.c (template_args_equal): Handle comparison of
812         an ARGUMENT_PACK_SELECT node with the arguments node it selects into.
813         * cp-tree.def: Fix a typo in the description of TYPE_PACK_EXPANSION.
814
815 2009-10-26  Dodji Seketeli  <dodji@redhat.com>
816
817         PR c++/41020
818         * decl.c (decls_match): Use DECL_IS_BUILTIN instead of
819         DECL_BUILT_IN.
820
821 2009-10-23  Dodji Seketeli  <dodji@redhat.com>
822
823         PR c++/40808
824         * mangle.c (write_template_args): Allow mangling of empty template
825         argument list. Updated function comments.
826
827 2009-10-23  Jason Merrill  <jason@redhat.com>
828
829         * semantics.c (lambda_expr_this_capture): Use thisify_lambda_field.
830
831         * semantics.c (outer_lambda_capture_p): New fn.
832         (thisify_lambda_field): Factor out...
833         (add_default_capture): ...from here.
834         (finish_id_expression): Use them.
835
836         Core issue 899
837         * call.c (add_function_candidate): Only permit explicit conversion
838         ops if copy ctor was called with a single argument.
839
840         * call.c (initialize_reference): Tweak error message.
841
842 2009-10-21  Jakub Jelinek  <jakub@redhat.com>
843
844         * mangle.c (finish_mangling_get_identifier): Use
845         obstack_base (mangle_obstack) instead of name_base.
846
847 2009-10-19  Jakub Jelinek  <jakub@redhat.com>
848
849         * parser.c (cp_lexer_print_token, cp_parser_is_string_literal,
850         cp_parser_string_literal, cp_parser_primary_expression): Likewise.
851         (cp_lexer_get_preprocessor_token): Use C_LEX_STRING_JOIN instead
852         of C_LEX_RAW_STRINGS.
853
854 2009-10-15  Jason Merrill  <jason@redhat.com>
855
856         PR c++/38888
857         * error.c (dump_template_bindings): Wrap argument packs in {}.
858
859         PR c++/38798
860         * parser.c (CP_PARSER_FLAGS_NO_TYPE_DEFINITIONS): New.
861         (cp_parser_type_specifier): Don't try to parse a class-specifier
862         or enum-specifier in that case.
863         (cp_parser_trailing_type_id): New.
864         (cp_parser_late_return_type_opt): Call it.
865         (cp_parser_type_id_1): Add is_trailing_return parm.
866         (cp_parser_type_specifier_seq): Likewise.
867
868 2009-10-14  Jason Merrill  <jason@redhat.com>
869
870         PR c++/39866
871         * call.c (print_z_candidates): Don't print deleted candidates.
872         (print_z_candidate): Note deleted candidates.
873
874 2009-10-14  Larry Evans  <cppljevans@suddenlink.net>
875
876         PR c++/40092
877         * tree.c (cp_tree_equal): Add test for TEMPLATE_PARM_PARAMETER_PACK
878         equality.
879
880 2009-10-12  Jason Merrill  <jason@redhat.com>
881
882         PR c++/37875
883         * parser.c (cp_parser_decltype): Set greater_than_is_operator_p.
884
885         PR c++/37766
886         * pt.c (type_unification_real): Call convert_template_argument
887         for function default template arguments.
888         (check_default_tmpl_args): Suggest -std=c++0x when function default
889         template args seen in C++98 mode.
890
891 2009-10-11  Jason Merrill  <jason@redhat.com>
892
893         PR c++/37204
894         * typeck.c (build_reinterpret_cast_1): Handle rvalue refs
895         properly.
896
897 2009-10-11  Richard Guenther  <rguenther@suse.de>
898
899         * tree.c (cp_free_lang_data): Drop anonymous aggregate names.
900
901 2009-10-08  Jason Merrill  <jason@redhat.com>
902
903         PR c++/36816
904         * pt.c (maybe_adjust_types_for_deduction): Do rvalue ref adjustment
905         even when DEDUCE_EXACT.
906
907         PR c++/37177
908         * pt.c (resolve_nondeduced_context): New.
909         * cvt.c (convert_to_void): Call it.
910         * semantics.c (finish_decltype_type): Likewise.
911         * typeck.c (decay_conversion): Here too.
912         * pt.c (tsubst_decl): Don't clobber input_location.
913         Don't register a bad specialization.
914
915 2009-10-07  Gabriel Dos Reis  <gdr@cs.tamu.edu>
916
917         * cp-tree.h: Fix location of documentation for DECL_LANG_FLAG_7.
918
919 2009-10-07  Jason Merrill  <jason@redhat.com>
920
921         PR c++/39863
922         * pt.c (tsubst_pack_expansion): Don't do anything now if we
923         have incomplete packs of different lengths.
924
925         PR c++/41038
926         * tree.c (build_qualified_name): Call convert_from_reference.
927
928 2009-10-06  Jason Merrill  <jason@redhat.com>
929
930         Fix lookup of initialized captures in unevaluated context.
931         * cp-tree.h (DECL_NORMAL_CAPTURE_P): New.
932         * name-lookup.c (qualify_lookup): Check it.
933         * parser.c (cp_parser_lambda_introducer): Pass explicit_init_p
934         to add_capture.
935         * semantics.c (add_capture): Set DECL_NORMAL_CAPTURE_P
936         on captures without explicit init.
937         (add_default_capture): Pass explicit_init_p.
938
939         Fix capture by copy of types with explicit copy constructor.
940         * cp-tree.h (TARGET_EXPR_DIRECT_INIT_P): New.
941         (DIRECT_INIT_EXPR_P): New.
942         * typeck.c (convert_for_initialization): Just return if
943         DIRECT_INIT_EXPR_P.
944         * semantics.c (build_lambda_object): Use
945         TARGET_EXPR_DIRECT_INIT_P for normal captures.
946
947 2009-10-05  Jason Merrill  <jason@redhat.com>
948
949         * parser.c: Mark lambda_scope and lambda_count for PCH.
950
951 2009-10-03  Jason Merrill  <jason@redhat.com>
952
953         PR c++/41553
954         * parser.c (cp_parser_lambda_introducer): Avoid infinite loop on
955         parse error.
956
957 2009-10-02  Jason Merrill  <jason@redhat.com>
958
959         * mangle.c (write_unnamed_type_name): Implement.
960         (local_class_index): Split out from...
961         (discriminator_for_local_entity): ...here.
962         (nested_anon_class_index): New.
963         * cp-tree.h (TYPE_FUNCTION_SCOPE_P): New.
964
965 2009-10-02  Janis Johnson  <janis187@us.ibm.com>
966
967         * call.c (convert_arg_to_ellipsis): Avoid promoting decimal32
968         to double.
969
970 2009-10-01  Jason Merrill  <jason@redhat.com>
971
972         * parser.c (cp_parser_lambda_expression): Compute visibility.
973         (no_linkage_lambda_type_p): Remove.
974         * cp-tree.h: Remove declaration.
975         * tree.c (no_linkage_check): Don't call it.  Don't check template
976         args.  Don't check TREE_PUBLIC Types.
977
978 2009-10-01  Gabriel Dos Reis  <gdr@cse.tamu.edu>
979             Jason Merrill <jason@redhat.com>
980
981         * decl.c (grokdeclarator): Set constexprness before announcing
982         friendship.
983
984 2009-10-01  Gabriel Dos Reis  <gdr@cs.tamu.edu>
985
986         * decl.c (record_builtin_java_type): Undo unintended change.
987         (cxx_init_decl_processing): Likewise.
988
989 2009-10-01  Jason Merrill  <jason@redhat.com>
990
991         * pt.c (register_specialization): Push DECL_SOURCE_LOCATION to the
992         clones.
993
994         * decl.c (grok_special_member_properties): Only adjust
995         TYPE_HAS_COMPLEX_* if the function is defaulted in the class body.
996         (cp_finish_decl): Push DECL_DELETED_FN/DECL_DEFAULTED_FN to the
997         clones.
998
999 2009-09-30  Gabriel Dos Reis  <gdr@cs.tamu.edu>
1000
1001         * decl.c (check_for_uninitialized_const_var): Check constexpr
1002         variables too.
1003         (grokdeclarator): Handle `constexpr'.
1004         (check_tag_decl): Reject `constexpr'.
1005         (check_function_type): Check constexpr functions.
1006         * cp-tree.h (ds_constexpr): New cp_decl_spec enumerator.
1007         (CLASSTYPE_LITERAL_P): New.
1008         (lang_type_class::is_literal): New.
1009         (lang_type_class::dummy): Adjust width.
1010         (literal_type_p): Declare.
1011         * parser.c (cp_parser_check_decl_spec): Print it.
1012         (cp_parser_decl_specifier_seq): Accept "constexpr".
1013         * semantics.c (validate_constexpr_fundecl): Define.
1014         (literal_type_p): Define.
1015
1016 2009-09-30  Jason Merrill  <jason@redhat.com>
1017
1018         * semantics.c (lambda_expr_this_capture): Fix default capture
1019         of explicit capture of 'this'.
1020
1021 2009-09-30  Jason Merrill  <jason@redhat.com>
1022
1023         * parser.c (cp_parser_lambda_expression): Don't add __ to __this.
1024
1025 2009-09-30  Jason Merrill  <jason@redhat.com>
1026
1027         * cp-tree.h (LANG_DECL_U2_CHECK): Check LANG_DECL_HAS_MIN.
1028
1029 2009-09-29  John Freeman  <jfreeman08@gmail.com>
1030             Jason Merrill  <jason@redhat.com>
1031
1032         Add support for lambda-expressions as per N2927.
1033         * cp-tree.def (VEC_INIT_EXPR, LAMBDA_EXPR): New.
1034         * cp-tree.h (LAMBDA_TYPE_P, LAMBDA_FUNCTION_P): New.
1035         (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE): New.
1036         (LAMBDA_EXPR_DEFAULT_CAPTURE_LIST): New.
1037         (LAMBDA_EXPR_THIS_CAPTURE, LAMBDA_EXPR_CAPTURES_THIS_P): New.
1038         (LAMBDA_EXPR_MUTABLE_P, LAMBDA_EXPR_DEDUCE_RETURN_TYPE_P): New.
1039         (LAMBDA_EXPR_RETURN_TYPE, LAMBDA_EXPR_LOCATION): New.
1040         (LAMBDA_EXPR_EXTRA_SCOPE, LAMBDA_EXPR_DISCRIMINATOR): New.
1041         (struct tree_lambda_expr): New.
1042         (union lang_tree_node): Add lambda_expression.
1043         (struct lang_type_class): Add lazy_move_ctor flag, lambda_expr field.
1044         (CLASSTYPE_LAZY_MOVE_CTOR, CLASSTYPE_LAMBDA_EXPR): New.
1045         (LAMBDA_TYPE_EXTRA_SCOPE, VEC_INIT_EXPR_SLOT): New.
1046         (VEC_INIT_EXPR_INIT, DECLTYPE_FOR_LAMBDA_CAPTURE): New.
1047         (DECLTYPE_FOR_LAMBDA_RETURN): New.
1048         (enum special_function_kind): Add sfk_move_constructor.
1049         (LAMBDANAME_PREFIX, LAMBDANAME_FORMAT, LAMBDANAME_P): New.
1050         * parser.c (cp_parser_lambda_expression, cp_parser_lambda_introducer)
1051         (cp_parser_lambda_declarator_opt, cp_parser_lambda_body): New.
1052         (start_lambda_scope, record_lambda_scope, finish_lambda_scope): New.
1053         (no_linkage_lambda_type_p): New.
1054         (cp_parser_primary_expression): Recognize lambda expression.
1055         (cp_parser_init_declarator): Note lambda scope.
1056         (cp_parser_function_definition_after_declarator): Likewise.
1057         (cp_parser_late_parsing_default_args): Likewise.
1058         (cp_parser_skip_to_closing_parenthesis): Skip to end of lambda capture
1059         lists, too.
1060         (cp_parser_parameter_declaration): Don't defer lambda default args.
1061         * semantics.c (finish_non_static_data_member, finish_id_expression):
1062         Handle default capture for lambda expressions.
1063         (finish_this_expr): Handle 'this' keyword inside of lambda expressions.
1064         (outer_automatic_var_p): New.
1065         (finish_decltype_type): Handle decltypes within lambda expressions.
1066         (classtype_has_nothrow_assign_or_copy_p): Synthesized move constructor.
1067         (build_lambda_expr, build_lambda_object, begin_lambda_type)
1068         (lambda_return_type, lambda_capture_field_type, apply_lambda_return_type)
1069         (capture_decltype, add_capture, add_default_capture)
1070         (lambda_expr_this_capture): New.
1071         * mangle.c (write_unnamed_type_name): New. Incomplete.
1072         (write_closure_type_name): New.
1073         (write_unqualified_name): Recognize unnamed, closure types.
1074         (write_type): Do not write decltypes from lambda expressions.
1075         (decl_mangling_context): New.
1076         (write_name): Use it.  Handle PARM_DECL scope.
1077         (write_prefix): Likewise.  Handle VAR_DECL/FIELD_DECL scope.
1078         (write_compact_number): Factor out from...
1079         (write_expression, write_template_param): ...here.
1080         (discriminator_for_local_entity): Recognize lambdas.
1081         (write_local_name): Handle PARM_DECL scope.
1082         * typeck.c (structural_comptypes): Compare decltypes from lambda
1083         expressions.
1084         (check_return_expr): Deduce lambda return type from multiple return
1085         statements.
1086         * class.c (add_implicitly_declared_members): Add lazy move constructor
1087         for lambda types.
1088         (check_bases_and_members): Delete default constructor and assignment
1089         operator for lambda types.
1090         (maybe_note_name_used_in_class): Do not confuse lambda expression with
1091         defining a class.
1092         * decl.c (reshape_init_r): Array copy.
1093         (grokfndecl): Synthesized move constructor.
1094         (cp_tree_node_structure): Lambda expression.
1095         * method.c (use_thunk): Synthesized move constructor.
1096         (do_build_copy_constructor): Likewise.
1097         (locate_copy): Likewise.
1098         (implicitly_declare_fn): Likewise.
1099         * cp-objcp-common.c (cp_tree_size): Handle LAMBDA_EXPR.
1100         * error.c (dump_aggr_type): Recognize lambda type.
1101         (dump_function_decl): Recognize lambda function.
1102         (function_category): Likewise.
1103         (dump_function_name): Hide lambda name.
1104         * tree.c (build_array_copy, move): New.
1105         (special_function_p): Synthesized move constructor.
1106         (no_linkage_check): Handle lambdas.
1107         * search.c (lookup_fnfields_1): Synthesized move constructor.
1108         * cp-gimplify.c (cp_gimplify_init_expr, cp_gimplify_expr):
1109         Handle VEC_INIT_EXPR.
1110         * typeck2.c (digest_init_r): Array copy.
1111         * pt.c (get_template_info): Don't touch typedefs.
1112         (instantiate_decl): Don't resubstitute artificial decls.
1113         (tsubst_decl, tsubst, tsubst_copy_and_build): Handle lambdas.
1114         (lookup_template_class): Don't fall back on name lookup.
1115         * name-lookup.c (make_lambda_name): New.
1116         (pushdecl_class_level): Handle default capture for lambda expressions.
1117         (qualify_lookup): Handle decltypes within lambda expressions.
1118         (pushtag): Handle ts_within_enclosing_non_class in function scope.
1119
1120 2009-09-28  Janis Johnson  <janis187@us.ibm.com>
1121
1122         * mangle.c (write_builtin_type): Support decimal float types.
1123
1124 2009-09-28  Richard Henderson  <rth@redhat.com>
1125
1126         * cp-objcp-common.h (LANG_HOOKS_EH_USE_CXA_END_CLEANUP): New.
1127
1128 2009-09-24  Jakub Jelinek  <jakub@redhat.com>
1129
1130         * method.c (make_thunk, make_alias_for): Don't set
1131         DECL_NO_STATIC_CHAIN.
1132         * decl.c (builtin_function_1, grokfndecl): Likewise.
1133         * lex.c (build_lang_decl): Likewise.
1134
1135 2009-09-23  Dodji Seketeli  <dodji@redhat.com>
1136
1137         PR debug/41065
1138         * decl.c (cp_finish_decl): Record the types used by the global
1139         variable declaration we've just parsed.
1140
1141 2009-09-22  Dodji Seketeli  <dodji@redhat.com>
1142
1143         * cp-lang.c (LANG_HOOKS_FUNCTION_PARAMETER_PACK_P,
1144         LANG_HOOKS_FUNCTION_PARM_EXPANDED_FROM_PACK_P,
1145         LANG_HOOKS_GET_GENERIC_FUNCTION_DECL): Initialize these
1146         hooks for the c++ FE.
1147         * cp-tree.h (function_parameter_pack_p, get_function_template_decl,
1148         function_parameter_expanded_from_pack_p): Declare ...
1149         * pt.c (function_parameter_pack_p, get_function_template_decl,
1150         function_parameter_expanded_from_pack_p): ... new hooks.
1151         (get_template_info): Make this more robust.
1152         (template_args_variadic_p, make_ith_pack_parameter_name): Add a new
1153         line between comment and function.
1154         (get_template_argument_pack_elems): Fix comment.
1155         (tsubst_decl): Arguments of function parameter packs are not
1156         parameter packs themselves.
1157
1158 2009-09-21  Jason Merrill  <jason@redhat.com>
1159
1160         PR c++/41421
1161         * tree.c (trivial_type_p): Fix logic.
1162
1163 2009-09-21  Jason Merrill  <jason@redhat.com>
1164
1165         * name-lookup.c (push_class_level_binding): Sanity check.
1166
1167 2009-09-18  Jason Merrill  <jason@redhat.com>
1168
1169         * decl2.c (determine_visibility): Make anonymous types internal.
1170         (mark_used): Complain about types without linkage used in
1171         decls with internal linkage.
1172         (vague_linkage_fn_p): Split out from...
1173         * decl.c (maybe_commonize_var): ...here.
1174         (grokdeclarator): Adjust linkage when a typedef gives linkage name.
1175         * tree.c (no_linkage_check): Check the enclosing class and template
1176         arguments.
1177
1178         * cp-tree.h (TYPE_NAMESPACE_SCOPE_P): New.
1179
1180         * pt.c (get_pattern_parm): New.
1181         (listify): Split out from...
1182         (listify_autos): ...here.
1183         (unify): Deduce std::initializer_list for T.
1184         * call.c (build_over_call): Warn about it.
1185
1186 2009-09-17  Andrew Pinski  <pinskia@gcc.gnu.org>
1187
1188         PR c++/39365
1189         * typeck.c (cp_build_unary_op): Check TREE_CODE for bools instead of
1190         using same_type_p.
1191         (convert_for_assignment): Likewise.
1192         * cvt.c (type_promotes_to): Likewise.
1193
1194 2009-09-14  Richard Henderson  <rth@redhat.com>
1195             Jakub Jelinek  <jakub@redhat.com>
1196
1197         * cp-tree.h (finish_asm_stmt): Update decl.
1198         * parser.c (cp_parser_asm_definition): Parse asm goto.
1199         (cp_parser_asm_label_list): New.
1200         * pt.c (tsubst_copy_asm_operands): Don't recurse on labels.
1201         (tsubst_expr): Handle asm labels.
1202         * semantics.c (finish_asm_stmt): Add and use labels parameter.
1203
1204 2009-09-14  Richard Henderson  <rth@redhat.com>
1205
1206         * except.c (init_exception_processing): Don't call
1207         default_init_unwind_resume_libfunc.
1208         (cp_protect_cleanup_actions): Return the decl to call.
1209         (build_exc_ptr): Use __builtin_eh_pointer.
1210         * optimize.c (clone_body): Set eh_lp_nr, not eh_region.
1211
1212 2009-09-13  Richard Guenther  <rguenther@suse.de>
1213         Rafael Avila de Espindola  <espindola@google.com>
1214
1215         * except.c (init_exception_processing): Do not set
1216         lang_eh_runtime_type.
1217         (choose_personality_routine): Do not set eh_personality_decl,
1218         set pragma_java_exceptions.
1219         * cp-lang.c (LANG_HOOKS_EH_RUNTIME_TYPE): Define.
1220         (LANG_HOOKS_EH_PERSONALITY): Likewise.
1221         (cp_eh_personality_decl): New.
1222         (cp_eh_personality): Likewise.
1223         * Make-lang.in (cp-lang.o): Add $(EXPR_H) and $(EXCEPT_H)
1224         dependencies.
1225
1226 2009-09-13  Wei Guozhi  <carrot@google.com>
1227
1228         PR c++/3187
1229         * cp/optimize.c (build_delete_destructor_body): New function.
1230         (maybe_clone_body): Call build_delete_destructor_body for
1231         deleting destructor.
1232
1233 2009-09-10  Jason Merrill  <jason@redhat.com>
1234
1235         * repo.c (extract_string, get_base_filename, init_repo): constify.
1236
1237 2009-09-09  Jason Merrill  <jason@redhat.com>
1238
1239         * error.c (find_typenames_r): Also add decltypes.
1240
1241 2009-09-09  Paolo Carlini  <paolo.carlini@oracle.com>
1242
1243         PR c++/28293
1244         * decl2.c (grokfield): Check for explicit template argument lists.
1245
1246 2009-09-09  Jack Howarth  <howarth@bromo.med.uc.edu>
1247
1248         PR bootstrap/41180
1249         * Make-lang.in: Remove redundant code from linkage for darwin10.
1250
1251 2009-09-08  Paolo Carlini  <paolo.carlini@oracle.com>
1252
1253         PR c++/39923
1254         * decl.c (build_init_list_var_init): Check return value of
1255         perform_implicit_conversion.
1256
1257 2009-09-08  Jason Merrill  <jason@redhat.com>
1258
1259         * class.c (currently_open_class): Make sure we're dealing with the
1260         main variant.
1261
1262         * cp-tree.h (enum overload_flags): Remove OP_FLAG.
1263         * method.c (lazily_declare_fn): Check for dtorness in ABI warning.
1264
1265         * name-lookup.c (is_class_level): Remove.
1266         (push_binding_level, leave_scope, resume_scope): Adjust.
1267         (pushlevel_class): Adjust.
1268         (poplevel_class): Make sure we're on class_binding_level.
1269
1270         * decl.c (grokmethod): Rename from start_method.
1271         (finish_method): Remove.
1272         * cp-tree.h: Adjust.
1273         * parser.c (cp_parser_save_member_function_body): Adjust.
1274
1275 2009-09-03  Doug Kwan  <dougkwan@google.com>
1276
1277         * tree.c (cp_fix_function_decl_p): New.
1278         (cp_free_lang_data): New.
1279
1280 2009-09-03  Diego Novillo  <dnovillo@google.com>
1281
1282         * Make-lang.in (decl2.o): Add dependency on $(POINTER_SET_H).
1283         * decl2.c: Include pointer-set.h.
1284         (collect_candidates_for_java_method_aliases): New.
1285         (cp_write_global_declarations): Call it.
1286         Add local variable CANDIDATES.  If set, call
1287         build_java_method_aliases.
1288         (build_java_method_aliases): Add argument CANDIDATES.
1289         Use it to determine if FNDECL should get a hidden alias.
1290         * cp-objcp-common.h (LANG_HOOKS_FREE_LANG_DATA): Define.
1291         * cp-tree.h (cp_free_lang_data): Declare.
1292
1293 2009-09-03  Richard Guenther  <rguenther@suse.de>
1294
1295         * method.c (use_thunk): Use cgraph_finalize_function to hand
1296         off thunks to the cgraph.
1297         * semantics.c (emit_associated_thunks): Do not emit thunks
1298         for really extern functions.
1299
1300 2009-09-03  Diego Novillo  <dnovillo@google.com>
1301
1302         * cp-lang.c (lang_hooks): Remove const qualifier.
1303
1304 2009-09-02  Jason Merrill  <jason@redhat.com>
1305
1306         * semantics.c (describable_type): Don't pretend to be in a template.
1307
1308         * ptree.c (cxx_print_type) [DECLTYPE_TYPE]: Print the expression.
1309
1310 2009-09-01  Alexandre Oliva  <aoliva@redhat.com>
1311
1312         * cp-tree.h (TFF_NO_OMIT_DEFAULT_TEMPLATE_ARGUMENTS): New.
1313         * cp-lang.c (cxx_dwarf_name): Pass it.
1314         * error.c (count_non_default_template_args): Take flags as
1315         argument.  Adjust all callers.  Skip counting of default
1316         arguments if the new flag is given.
1317
1318 2009-09-01  Dodji Seketeli  <dodji@redhat.com>
1319
1320         PR bootstrap/41205
1321         * pt.c (make_ith_pack_parameter_name): Don't use strnlen that is a
1322         GNU extension.
1323
1324 2009-09-01  Richard Guenther  <rguenther@suse.de>
1325
1326         * cp-objcp-common.c (cp_expr_size): Use tree_expr_size.
1327         * cp-objcp-common.h (LANG_HOOKS_EXPR_SIZE): Do not define.
1328
1329 2009-09-01  Richard Guenther  <rguenther@suse.de>
1330
1331         * cp-objcp-common.h (LANG_HOOKS_MARK_ADDRESSABLE): Remove.
1332
1333 2009-08-31  Dodji Seketeli  <dodji@redhat.com>
1334
1335         PR debug/30161
1336         * cp-tree.h (get_template_info): Parameter should be const.
1337         (CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P): Fix typo.
1338         (get_template_argument_pack_elems,
1339         get_primary_template_innermost_parameters,
1340         get_template_innermost_arguments, template_template_parameter_p):
1341         Declare ...
1342         * pt.c (get_template_argument_pack_elems,
1343         get_template_innermost_parameters, get_template_innermost_arguments,
1344         template_template_parameter_p):
1345         ... New C++ front end implementation of new language hooks.
1346         (primary_template_instantiation_p): New private helper.
1347         (make_ith_pack_parameter_name): Use snprintf and strnlen instead of
1348         printf and strlen.
1349         (get_template_info): Const-ify parameter.
1350         * cp-lang.c (LANG_HOOKS_GET_INNERMOST_GENERIC_PARMS,
1351         LANG_HOOKS_GET_INNERMOST_GENERIC_ARGS,
1352         LANG_HOOKS_GET_ARGUMENT_PACK_ELEMS,
1353         LANG_HOOKS_GENERIC_TYPE_PARAMETER_DECL_P): Initialize these
1354         interfaces for the C++ front-end.
1355
1356 2009-08-31  Jason Merrill  <jason@redhat.com>
1357
1358         PR c++/41127
1359         * parser.c (cp_parser_enum_specifier): Make sure the : is followed by a
1360         type-specifier-seq before we commit.
1361
1362 2009-08-28  Richard Guenther  <rguenther@suse.de>
1363
1364         PR lto/41058
1365         * cp-gimplify.c (cp_genericize_r): Do not leak zero-sized stores
1366         into the generic IL.
1367
1368 2009-08-27  Richard Guenther  <rguenther@suse.de>
1369
1370         * class.c (build_vtbl_ref_1): Remove excess vertical space.
1371         * Make-lang.in (CXX_TREE_H): Remove c-common.def dependency
1372         tracked by $(TREE_H).
1373         * semantics.c (expand_or_defer_fn): Zero DECL_SAVED_TREE.
1374
1375 2009-08-26  Jason Merrill  <jason@redhat.com>
1376
1377         * call.c (build_builtin_candidate): Don't set LOOKUP_ONLYCONVERTING
1378         if we're contextually converting to bool.
1379         (build_conditional_expr): Likewise.
1380         * typeck.c (condition_conversion): Likewise.
1381
1382         * call.c (build_conditional_expr): Fix logic errors.
1383         (build_new_op): Remove dead COND_EXPR handling.
1384
1385 2009-08-24  Jason Merrill  <jason@redhat.com>
1386
1387         * cp-tree.h (DECL_DEFERRED_FN): Remove.
1388         (struct lang_decl_fn): Remove deferred flag.
1389         * class.c (build_clone): Don't set it.
1390         * decl2.c (note_vague_linkage_fn): Don't check or set it.
1391         (mark_used): Don't check it.
1392         * method.c (make_thunk, make_alias_for): Don't set it.
1393
1394         * decl2.c (mark_used): Streamline logic.
1395
1396         PR c++/41109
1397         PR c++/41110
1398         PR c++/41134
1399         * cp-tree.h (DECL_ODR_USED): New macro.
1400         (struct lang_decl_base): Add odr_used flag.
1401         * decl.c (duplicate_decls): Propagate it.  Use it for error.
1402         * pt.c (register_specialization): Use it for error.
1403         * decl2.c (mark_used): Use it as gating flag rather than TREE_USED.
1404         (cp_write_global_declarations): Use it for error.
1405         (tree_used_ok): Remove.
1406         * cp-tree.h: Remove tree_used_ok.
1407         * call.c (build_call_a): Don't call it.
1408         * init.c (build_offset_ref): Likewise.
1409
1410 2009-08-21  Jakub Jelinek  <jakub@redhat.com>
1411
1412         PR c++/41131
1413         * tree.c (lvalue_p_1) <case CONST_DECL>: Return clk_none if
1414         not TREE_STATIC.
1415
1416 2009-08-19  Jason Merrill  <jason@redhat.com>
1417
1418         PR c++/41119
1419         PR c++/41120
1420         * decl2.c (mark_used): Increment function_depth during synthesis.
1421         * parser.c (cp_parser_default_argument): Not here.
1422
1423 2009-08-19  Jakub Jelinek  <jakub@redhat.com>
1424
1425         * method.c (use_thunk): Call free_after_compilation after
1426         assemble_end_function.
1427
1428 2009-08-17  Richard Guenther  <rguenther@suse.de>
1429
1430         * decl.c (build_ptrmemfunc_type): Keep variant chain intact.
1431         Avoid useless copy.
1432         (finish_enum): Keep variant chain intact.
1433         * tree.c (cp_build_reference_type): Likewise.
1434
1435 2009-08-16  Jason Merrill  <jason@redhat.com>
1436
1437         Make TREE_USED match the [basic.def.odr] concept for FUNCTION_DECL
1438         and VAR_DECL, so mark_used only has effect the first time.
1439         * decl2.c (mark_used): Just return if TREE_USED is already set.
1440         Don't set TREE_USED if cp_unevaluated_operand is set.
1441         (tree_used_ok): New fn.
1442         * init.c (build_offset_ref): Check it instead of TREE_USED.
1443         * call.c (build_call_a): Likewise.
1444         * cp-tree.h: Declare it.
1445         (DECL_NO_LINKAGE_CHECKED): No longer needed.
1446         (struct lang_decl_base): Remove no_linkage_checked bitfield.
1447
1448         * decl2.c (finish_static_data_member_decl): Don't set TREE_USED.
1449
1450         * decl2.c (mark_used): It's ok to synthesize for default args now.
1451
1452 2009-08-10  Jason Merrill  <jason@redhat.com>
1453
1454         Implement DR 757: It's OK for a decl to use a type without linkage
1455         so long as the decl is defined in the current translation unit.
1456         * decl2.c (no_linkage_decls): New vector.
1457         (mark_used): Add decls that use types with no linkage.
1458         (cp_write_global_declarations): Check that they are defined.
1459         (decl_defined_p, no_linkage_error): New fns.
1460         * cp-tree.h (DECL_NO_LINKAGE_CHECKED): New macro.
1461         (struct lang_decl_base): Add flag.
1462         * decl.c (grokfndecl): Don't check type linkage.
1463         (grokvardecl): If the type has no linkage, just make sure
1464         DECL_LANG_SPECIFIC is set.
1465         * pt.c (check_instantiated_arg): Don't check type linkage.
1466         * name-lookup.c (is_local_extern): New fn.
1467         * name-lookup.h: Declare it.
1468
1469 2009-08-05  Jason Merrill  <jason@redhat.com>
1470
1471         PR c++/40948
1472         * init.c (build_vec_init): Evaluate the initializer before
1473         starting the initialization try block.
1474
1475 2009-08-05  Manuel López-Ibáñez  <manu@gcc.gnu.org>
1476
1477         PR c++/36069
1478         * typeck.c (convert_for_assignment): Do not warn for any boolean
1479         variant. Use explicit location.
1480
1481 2009-08-04  Dodji Seketeli  <dodji@redhat.com>
1482
1483         PR c++/39987
1484         * pt.c (tsubst_default_argument): Let access checks of the
1485         default argument happen in the context of the current function.
1486
1487 2009-08-04  Manuel López-Ibáñez  <manu@gcc.gnu.org>
1488
1489         PR c++/16696
1490         * call.c (build_new_op): Only try prefix operator if -fpermissive,
1491         otherwise just error.
1492
1493 2009-08-04  Dodji Seketeli  <dodji@redhat.com>
1494
1495         PR debug/39706
1496         * error.c (lang_decl_name): Print qualified names for decls
1497         in  namespace scope.
1498
1499 2009-08-03  Jason Merrill  <jason@redhat.com>
1500             Jakub Jelinek  <jakub@redhat.com>
1501
1502         PR c++/40948
1503         * init.c (build_vec_init): Look through a TARGET_EXPR around a
1504         CONSTRUCTOR.
1505
1506 2009-07-31  Jason Merrill  <jason@redhat.com>
1507             Douglas Gregor  <doug.gregor@gmail.com>
1508
1509         Remove implicit binding of lvalues to rvalue references (N2831)
1510         * call.c (convert_class_to_reference): Binding an lvalue to an
1511         rvalue reference is bad.  If the user-defined conversion is bad,
1512         set bad_p before merging conversions.
1513         (maybe_handle_ref_bind): Don't push down bad_p.
1514         (reference_binding): Binding an lvalue to an rvalue reference is bad.
1515         (convert_like_real): Give a helpful error about binding lvalue
1516         to rvalue reference.
1517         (reference_related_p): No longer static.
1518         * typeck.c (build_typed_address): New.
1519         (build_static_cast_1): Add static_cast from lvalue to &&.
1520         * cp-tree.h: Adjust.
1521
1522 2009-07-31  Jason Merrill  <jason@redhat.com>
1523
1524         * call.c (reference_binding): Rename lvalue_p to is_lvalue.
1525         Do direct binding of "rvalues" in memory to rvalue references.
1526         * tree.c (lvalue_p_1): Can't be both non-addressable lvalue and
1527         "rvalue" in memory.
1528         * typeck.c (build_static_cast_1): Do direct binding of memory
1529         "rvalues" to rvalue references.
1530         * cvt.c (cp_fold_convert): New.
1531         * cp-tree.h: Declare it.
1532
1533 2009-07-31  Jason Merrill  <jason@redhat.com>
1534
1535         * typeck.c (build_address): Do fold away ADDR_EXPR of INDIRECT_REF.
1536         * tree.c (rvalue): Use cp_build_qualified_type, not TYPE_MAIN_VARIANT.
1537
1538 2009-07-29  Jason Merrill  <jason@redhat.com>
1539
1540         PR c++/14912
1541         * cp-tree.h (enum tsubst_flags): Add tf_no_class_instantiations.
1542         * error.c (count_non_default_template_args): Pass it.
1543         * pt.c (tsubst) [TYPENAME_TYPE]: Don't complete type if it's set.
1544
1545 2009-07-29  Richard Guenther  <rguenther@suse.de>
1546
1547         PR c++/40834
1548         * cp-gimplify.c (cp_genericize_r): Properly walk the BIND_EXPR
1549         vars.
1550
1551 2009-07-26  Simon Martin  <simartin@users.sourceforge.net>
1552
1553         PR c++/40749
1554         * decl.c (grokdeclarator): Do not set TREE_NO_WARNING for functions
1555         with a qualified return type.
1556
1557 2009-07-24  Jason Merrill  <jason@redhat.com>
1558
1559         Core issue 901
1560         * call.c (build_op_delete_call): If this is for a new-expression
1561         and the op delete is deleted, do nothing.
1562
1563         Core issue 702
1564         * call.c (compare_ics): Give list-initialization of std::init_list
1565         priority over conversion to scalar, too.
1566
1567 2009-07-22  Jason Merrill  <jason@redhat.com>
1568
1569         * mangle.c (mangle_type_string_for_rtti): Rename to be clearer.
1570         (needs_fake_anon): New.
1571         (write_name): Check it.
1572         (write_nested_name): Add a fake anonymous namespace scope if true.
1573         * name-lookup.c (get_anonymous_namespace_name): No longer static.
1574         * rtti.c, cp-tree.h: Adjust.
1575
1576 2009-07-22  Richard Guenther  <rguenther@suse.de>
1577
1578         PR c++/40799
1579         * cp-gimplify.c (cp_gimplify_expr): Move handling of using
1580         related exprs to ...
1581         (cp_genericize_r): ... genericization stage.
1582         (cp_genericize): Adjust.
1583
1584 2009-07-21  Jason Merrill  <jason@redhat.com>
1585
1586         Core issue 934
1587         * call.c (reference_binding): Implement binding to { }.
1588         (initialize_reference): Binding temporary to non-const && is fine.
1589         * decl.c (grok_reference_init): Remove error for CONSTRUCTOR.
1590
1591         * decl.c (reshape_init_r): { T } is not an aggregate initializer
1592         for class T.
1593
1594 2009-07-17  Richard Guenther  <rguenther@suse.de>
1595
1596         PR c/40401
1597         * decl.c (finish_function): Do not emit unused result warnings
1598         from here.
1599         * cp-objcp-common.h (LANG_HOOKS_POST_GIMPLIFY_PASS): Use
1600         c_warn_unused_result_pass.
1601         * semantics.c (expand_or_defer_fn): Adjust assertion about IL status.
1602         * optimize.c (clone_body): Clone in GENERIC.
1603         (maybe_clone_body): Do not clear DECL_SAVED_TREE.
1604         * decl2.c (cp_write_global_declarations): Fix body test.
1605         Do not call cgraph_optimize.
1606         * Make-lang.in (optimize.o): Add tree-iterator.h dependency.
1607         * method.c (use_thunk): Register thunk with
1608         cgraph_finalize_function.
1609         * error.c (function_category): Guard access of DECL_LANG_SPECIFIC.
1610
1611 2009-07-17  Richard Guenther  <rguenther@suse.de>
1612
1613         * init.c (build_vec_delete_1): Do not set DECL_REGISTER on the
1614         temporary pointer.
1615
1616 2009-07-17  Aldy Hernandez  <aldyh@redhat.com>
1617             Manuel López-Ibáñez  <manu@gcc.gnu.org>
1618
1619         PR 40435 
1620         * typeck.c, init.c, class.c, method.c, rtti.c, except.c, error.c,
1621         tree.c, cp-gimplify.c, cxx-pretty-print.c, pt.c, semantics.c,
1622         call.c, cvt.c, mangle.c: Add location argument to
1623         fold_{unary,binary,ternary}, fold_build[123], build_call_expr,
1624         build_size_arg, build_fold_addr_expr, build_call_array,
1625         non_lvalue, size_diffop, fold_build1_initializer,
1626         fold_build2_initializer, fold_build3_initializer,
1627         fold_build_call_array, fold_build_call_array_initializer,
1628         fold_single_bit_test, omit_one_operand, omit_two_operands,
1629         invert_truthvalue, fold_truth_not_expr, build_fold_indirect_ref,
1630         fold_indirect_ref, combine_comparisons, fold_builtin_*,
1631         fold_call_expr, build_range_check, maybe_fold_offset_to_address,
1632         round_up, round_down.
1633
1634 2009-07-16  Jason Merrill  <jason@redhat.com>
1635
1636         PR libstdc++/37907
1637         Split POD into "standard-layout" and "trivial" as per N2230,
1638         Support std::is_standard_layout and std::is_trivial traits.
1639         * cp-tree.h (enum cp_trait_kind): Add CPTK_IS_STD_LAYOUT,
1640         CPTK_IS_TRIVIAL.
1641         (struct lang_type_class): Add non_std_layout.
1642         (CLASSTYPE_NON_STD_LAYOUT): New.
1643         * class.c (check_bases): Set it.
1644         (check_field_decls): Likewise.
1645         (check_bases_and_members): Likewise.
1646         * parser.c (cp_parser_primary_expression): Handle RID_IS_STD_LAYOUT,
1647         RID_IS_TRIVIAL.
1648         (cp_parser_trait_expr): Likewise.
1649         * semantics.c (trait_expr_value): Handle CPTK_IS_STD_LAYOUT,
1650         CPTK_IS_TRIVIAL.
1651         (finish_trait_expr): Likewise.
1652         * tree.c (scalarish_type_p, trivial_type_p, std_layout_type_p): New.
1653         (pod_type_p): Use them.
1654         (type_has_nontrivial_copy_init, type_has_nontrivial_default_init): New.
1655
1656         Adjust bits of the language that no longer refer to POD types.
1657         * call.c (convert_arg_to_ellipsis): Use type_has_nontrivial_copy_init
1658         and TYPE_HAS_NONTRIVIAL_DESTRUCTOR rather than pod_type_p.
1659         (build_x_va_arg): Likewise.
1660         (call_builtin_trap): Remove.
1661         * decl.c (declare_local_label): Use type_has_nontrivial_default_init
1662         and TYPE_HAS_NONTRIVIAL_DESTRUCTOR rather than pod_type_p.
1663         (cp_finish_decl): Likewise.
1664         (check_previous_goto_1, check_goto): Adjust error.
1665         * typeck.c (build_class_member_access_expr): Check
1666         CLASSTYPE_NON_STD_LAYOUT rather than CLASSTYPE_NON_POD_P.
1667
1668 2009-07-14  Taras Glek  <tglek@mozilla.com>
1669             Rafael Espindola  <espindola@google.com>
1670
1671         * Make-lang.in: Added CP_PLUGIN_HEADERS and
1672         c.install-target to export cp-tree.h cxx-pretty-print.h
1673         name-lookup.h headers for plugins.
1674
1675 2009-07-14  Jason Merrill  <jason@redhat.com>
1676
1677         PR c++/37276
1678         * decl.c (decls_match): A non-extern-C declaration doesn't match
1679         a builtin extern-C declaration.
1680
1681         PR c++/40746
1682         * name-lookup.c (qualified_lookup_using_namespace): Don't stop
1683         looking in used namespaces just because we found something on
1684         another branch.
1685
1686         PR c++/40740
1687         * semantics.c (perform_koenig_lookup): Handle empty template args.
1688
1689         * call.c (build_over_call): Use can_trust_pointer_alignment.
1690
1691 2009-07-14  Dodji Seketeli  <dodji@redhat.com>
1692
1693         PR debug/40705
1694         PR c++/403057
1695         * decl2.c (grokfield): Don't call set_underlying_type on typedef
1696         decls that are type names.
1697
1698 2009-07-13  Andrew Pinski  <andrew_pinski@playstation.sony.com>
1699
1700         PR C++/22154
1701         * parser.c (cp_parser_elaborated_type_specifier): Accept typename in
1702         front of qualified names.
1703
1704 2009-07-12  Jason Merrill  <jason@redhat.com>
1705
1706         PR c++/36628
1707         * tree.c (rvalue): Use lvalue_or_rvalue_with_address_p.
1708
1709         PR c++/37206
1710         * cp-tree.h (enum cp_lvalue_kind_flags): Add clk_rvalueref.
1711         * tree.c (lvalue_p_1): Return it.  Remove
1712         treat_class_rvalues_as_lvalues parm.
1713         (real_lvalue_p): Disallow pseudo-lvalues here.
1714         (lvalue_or_rvalue_with_address_p): New fn.
1715         * call.c (initialize_reference): Use it instead of real_lvalue_p.
1716
1717         PR c++/40689
1718         * init.c (build_new_1): Handle initializer list as array initializer.
1719         (build_vec_init): Likewise.
1720         * typeck.c (cp_build_modify_expr): Likewise.
1721         * typeck2.c (process_init_constructor_array): Error rather than abort
1722         if too many initializers.
1723
1724 2009-07-10  Jakub Jelinek  <jakub@redhat.com>
1725
1726         PR c++/40502
1727         * error.c (cp_print_error_function): Check for NULL block.
1728
1729 2008-07-09  Simon Martin  <simartin@users.sourceforge.net>
1730             Jason Merrill  <jason@redhat.com>
1731
1732         * pt.c (perform_typedefs_access_check, get_types_needing_access_check,
1733         append_type_to_template_for_access_check_1): Use CLASS_TYPE_P.
1734
1735 2009-07-09  Dodji Seketeli  <dodji@redhat.com>
1736
1737         PR c++/40684
1738         * pt.c (type_unification_real): Use tsubst_template_arg instead
1739         of tsubst to substitute default template arguments.
1740
1741 2009-07-08  Manuel López-Ibáñez  <manu@gcc.gnu.org>
1742
1743         PR c++/31246
1744         * init.c (build_new_1): Set TREE_NO_WARNING for compiler-generated
1745         code.
1746         * cp-gimplify.c (genericize_eh_spec_block): Likewise.
1747         
1748
1749 2009-07-07  Jason Merrill  <jason@redhat.com>
1750
1751         PR c++/35828
1752         * pt.c (tsubst_decl): Don't abort if we didn't change anything
1753         in a TEMPLATE_DECL's args.
1754
1755 2009-07-07  Manuel López-Ibáñez  <manu@gcc.gnu.org>
1756
1757         * semantics.c (finalize_nrv_r): Replace EXPR_LOCUS by
1758         EXPR_LOCATION.
1759         
1760 2009-07-07  Jason Merrill  <jason@redhat.com>
1761
1762         PR c++/37816
1763         * decl.c (build_enumerator): Don't add enumerators for a
1764         scoped enum to the enclosing class.
1765
1766         PR c++/40639
1767         * decl.c (start_enum): Allow dependent underlying type.
1768
1769         PR c++/40633
1770         * decl.c (finish_enum): Finish scope even in a template.
1771
1772 2009-07-07  Manuel López-Ibáñez  <manu@gcc.gnu.org>
1773
1774         * init.c: Replace %J by an explicit location. Update all calls.
1775         * decl.c: Likewise.
1776         * typeck2.c: Likewise.
1777         * pt.c: Likewise.
1778         * name-lookup.c: Likewise.
1779         
1780 2009-07-06  Manuel López-Ibáñez  <manu@gcc.gnu.org>
1781
1782         * decl.c: Replace %H by an explicit location. Update all calls.
1783         * except.c: Likewise.
1784         * semantics.c: Likewise.
1785         * parser.c: Likewise.
1786
1787 2009-07-06  Simon Martin  <simartin@users.sourceforge.net>
1788
1789         PR c++/40557
1790         * pt.c (perform_typedefs_access_check, get_types_needing_access_check,
1791         append_type_to_template_for_access_check_1): Use
1792         RECORD_OR_UNION_CODE_P.
1793
1794 2009-07-04  Jason Merrill  <jason@redhat.com>
1795
1796         * pt.c (retrieve_specialization): Don't get confused by a
1797         using-declaration that brings in another instance of this template
1798         from a base class.
1799
1800         * ptree.c (cxx_print_type): Fix logic.
1801
1802         * cp-tree.h (LANG_DECL_FN_CHECK): Fix non-checking version.
1803
1804         PR c++/40619
1805         * cp-tree.h (struct lang_decl_parm): New.
1806         (struct lang_decl): Add it.
1807         (LANG_DECL_PARM_CHECK): New.
1808         (DECL_PARM_INDEX): New.
1809         * decl2.c (parm_index): Remove.
1810         * lex.c (retrofit_lang_decl): Handle parms.
1811         (cxx_dup_lang_specific_decl): Likewise.
1812         * mangle.c (write_expression): Adjust.
1813         * tree.c (cp_tree_equal): Adjust.
1814         (decl_linkage): Only check DECL_COMDAT for functions and variables.
1815         * parser.c (cp_parser_parameter_declaration_list): Set
1816         DECL_PARM_INDEX.
1817         * pt.c (iterative_hash_template_arg): Hash it.
1818
1819 2009-07-03  Jason Merrill  <jason@redhat.com>
1820
1821         * cp-tree.h (struct lang_decl): Overhaul.
1822         (struct lang_decl_flags): Remove.
1823         (struct lang_decl_base): New.
1824         (struct lang_decl_min): New.
1825         (struct lang_decl_fn): New.
1826         (struct lang_decl_ns): New.
1827         (CAN_HAVE_FULL_LANG_DECL_P): Replace with LANG_DECL_HAS_MIN.
1828         (LANG_DECL_MIN_CHECK): New.
1829         (LANG_DECL_FN_CHECK): New.
1830         (LANG_DECL_NS_CHECK): New.
1831         (STRIP_TEMPLATE): New.
1832         (NON_THUNK_FUNCTION_CHECK): Remove.
1833         (DECL_DECLARES_FUNCTION_P): New.
1834         (lots): Adjust.
1835         * lex.c (retrofit_lang_decl, cxx_dup_lang_specific_decl): Adjust.
1836         * decl.c (push_local_name, duplicate_decls): Adjust.
1837         * decl2.c (start_objects): Don't set u2sel.
1838         * semantics.c (finish_omp_threadprivate): Adjust.
1839         * class.c (build_clone): Don't do much on TEMPLATE_DECLs.
1840         (decl_cloned_function_p): Out-of-line implementation of macros.
1841         (clone_function_decl, adjust_clone_args): Use DECL_CLONED_FUNCTION_P.
1842         * mangle.c (write_unqualified_name): Don't check function flags
1843         on non-functions.
1844         * method.c (make_alias_for): Don't set DECL_CLONED_FUNCTION.
1845         * pt.c (build_template_decl): Don't set function flags.
1846         (check_default_tmpl_args): Check that it's a function.
1847         (instantiate_template): Use DECL_ABSTRACT_ORIGIN to find the
1848         cloned template.
1849
1850         * pt.c (tsubst_decl) [FUNCTION_DECL]: Don't tsubst
1851         DECL_CLONED_FUNCTION.
1852
1853         * cp-tree.h (struct lang_type_class): Move sorted_fields here.
1854         * class.c (finish_struct_1): Adjust.
1855         * ptree.c (cxx_print_decl, cxx_print_type): Adjust.
1856         * search.c (lookup_field_1): Adjust.
1857
1858         * cp-tree.h (CLASSTYPE_INLINE_FRIENDS): Remove.
1859         * decl.c (finish_method): Don't add to it.
1860         * class.c (fixup_pending_inline): Remove.
1861         (fixup_inline_methods): Remove.
1862         (finish_struct_1): Don't call it.
1863
1864         * error.c (dump_function_name): Handle null name.
1865
1866 2009-07-02  Mark Mitchell  <mark@codesourcery.com>
1867
1868         * typeck.c (cp_build_binary_op): Move warnings about use of NULL
1869         in arithmetic earlier and allow comparisions of NULL with
1870         pointers-to-members.
1871
1872 2009-07-02  Jason Merrill  <jason@redhat.com>
1873
1874         Use hash tables for template specialization lookup.
1875         * pt.c (struct spec_entry): New type.
1876         (decl_specializations, type_specializations): New hash tables.
1877         (register_specialization, retrieve_specialization): Use them.
1878         (reregister_specialization, lookup_template_class): Use them.
1879         (eq_specializations, hash_tmpl_and_args, hash_specialization): New.
1880         (iterative_hash_template_arg): New.
1881         (init_template_processing): New
1882         (process_partial_specialization): Don't look to see if we already
1883         have this partial specialization.
1884         (maybe_process_partial_specialization): Handle reassigning
1885         full specializations when we get an explicit specialization
1886         of the partial instantiation.
1887         (tsubst_friend_function): Adjust specialization reassignment code.
1888         (instantiate_template): Only do one lookup.
1889         (instantiate_decl): Don't do any lookup.
1890         * cp-tree.h: Declare init_template_processing.
1891         * decl.c (duplicate_decls): Pass args to reregister_specialization.
1892
1893 2009-07-01  Jason Merrill  <jason@redhat.com>
1894
1895         * cp-tree.h (DECL_CLASS_TEMPLATE_P): Use DECL_IMPLICIT_TYPEDEF_P.
1896
1897         * pt.c (register_specialization): Use duplicate_decls to merge
1898         the argument with a previous specialization.
1899         (check_explicit_specialization): Call register_specialization to
1900         merge the TEMPLATE_DECL with a previous version.
1901         (determine_specialization): Return the args even if fn is a template.
1902
1903 2009-07-01  Ian Lance Taylor  <iant@google.com>
1904
1905         * g++spec.c (lang_specific_driver): Bump num_args by 1.
1906
1907 2009-06-30  Jason Merrill  <jason@redhat.com>
1908
1909         PR c++/40595
1910         * pt.c (tsubst_pack_expansion): Handle unexpanded packs in an
1911         EXPR_PACK_EXPANSION.
1912
1913 2009-06-29  Jason Merrill  <jason@redhat.com>
1914
1915         PR c++/40274
1916         * error.c (dump_template_parms): Pass all args to
1917         count_non_default_template_args.
1918         (count_non_default_template_args): Pull out the inner ones.
1919
1920 2009-06-26  H.J. Lu  <hongjiu.lu@intel.com>
1921
1922         * decl.c (duplicate_decls): Re-indent.
1923
1924 2009-06-25  Ian Lance Taylor  <iant@google.com>
1925
1926         * call.c (avoid_sign_compare_warnings): New static function.
1927         (build_new_op): Call it.
1928         * typeck.c (cp_build_binary_op): Don't call warn_sign_compare if
1929         TREE_NO_WARNING is set on either operand.
1930
1931 2009-06-25  Ian Lance Taylor  <iant@google.com>
1932
1933         * g++spec.c (SKIPOPT): define.
1934         (lang_specific_driver): Handle -static-libstdc++.  Only add
1935         LIBSTDCXX_STATIC if we add LIBSTDCXX.
1936
1937 2009-06-25  Ian Lance Taylor  <iant@google.com>
1938
1939         * cvt.c (convert_to_void): Only warn about COND_EXPR if neither
1940         the second nor third operand has side effects.
1941
1942 2009-06-25  Ian Lance Taylor  <iant@google.com>
1943
1944         * parser.c (cp_parser_binary_expression): Increment
1945         c_inhibit_evaluation_warnings while parsing the right hand side of
1946         "true || x" or "false && x".
1947         * typeck.c (cp_build_binary_op): Only call warn_for_sign_compare
1948         if c_inhibit_evaluation_warnings is zero.
1949
1950 2009-06-24  Jason Merrill  <jason@redhat.com>
1951
1952         * error.c (dump_decl): Do say "typedef" for the injected class name.
1953
1954         * pt.c (lookup_template_class): Use currently_open_class,
1955         compare template args later.
1956
1957         PR c++/40342
1958         * decl.c (decls_match): Check DECL_TI_TEMPLATE too.
1959         * class.c (resolve_address_of_overloaded_function): Fix typo.
1960
1961 2009-06-18  Aldy Hernandez  <aldyh@redhat.com>
1962
1963         * class.c (get_vtable_decl): Replace finish_decl with cp_finish_decl.
1964         * decl.c (finish_decl): Remove.
1965         (declare_global_var): Replace finish_decl with cp_finish_decl.
1966         (start_method): Same.
1967         * rtti.c (emit_tinfo_decl): Same.
1968         * pt.c (tsubst_expr): Same.
1969         (instantiate_decl): Same.
1970         * decl2.c (grokbitfield): Same.
1971         * name-lookup.c (pushdecl_top_level_1): Same.
1972         * cp-tree.h: Remove finish_decl.
1973
1974 2009-06-16  David Edelsohn  <edelsohn@gnu.org>
1975
1976         * g++-spec.c (LIBSTDCXX_STATIC): Default to NULL.
1977         (lang_specific_driver): Always allocate extra argument.
1978         Add LIBSTDCXX_STATIC to arglist if defined and linking
1979         statically.
1980
1981 2009-06-16  Ian Lance Taylor  <iant@google.com>
1982
1983         * Make-lang.in (cp/class.o): Depend upon gt-cp-class.h.
1984         (cp/semantics.o): Depend upon gt-cp-semantics.h.
1985
1986 2009-06-16  Ian Lance Taylor  <iant@google.com>
1987
1988         * parser.c (cp_unevaluated_operand): Define global variable.
1989         (cp_parser_question_colon_clause): Increment
1990         c_inhibit_evaluation_warnings when evaluating an expression which
1991         will never be executed.
1992         (cp_parser_decltype): Increment cp_unevaluated_operand and
1993         c_inhibit_evaluation_warnings, not skip_evaluation.
1994         (cp_parser_sizeof_operand): Likewise.
1995         (cp_parser_enclosed_template_argument_list): Save
1996         cp_unevaluated_operand and c_inhibit_evaluation_warnings, not
1997         skip_evaluation.
1998         * cp-tree.h (struct saved_scope): Remove skip_evaluation field.
1999         Add unevaluated_operand and inhibit_evaluation_warnings fields.
2000         (cp_unevaluated_operand): Declare.
2001         * name-lookup.c (push_to_top_level): Save cp_unevaluated_operand
2002         and c_inhibit_evaluation_warnings rather than skip_evaluation.
2003         (pop_from_top_level): Restore cp_unevaluated_operand and
2004         c_inhibit_evaluation_warnings rather than skip_evaluation.
2005         * class.c (build_base_path): Check cp_unevaluated_operand rather
2006         than skip_evaluation.
2007         * typeck.c (build_class_member_access_expr): Likewise.
2008         (cp_build_binary_op): Don't warn about bad shift counts if
2009         c_inhibit_evaluation_warnings is non-zero.
2010         * pt.c (coerce_template_parms): Save state of
2011         cp_unevaluated_operand and c_inhibit_evaluation_warnings, not
2012         skip_evaluation.
2013         (tsubst_aggr_type): Likewise.
2014         (tsubst_pack_expansion): Check cp_unevaluated_operand rather than
2015         skip_evaluation.
2016         (tsubst_copy): Likewise.
2017         (tsubst): Set cp_unevaluated_operand and
2018         c_inhibit_evaluation_warnings, not skip_evaluation.
2019         (tsubst_copy_and_build): Likewise.
2020         * call.c (convert_arg_to_ellipsis): Check cp_unevaluated_operand
2021         rather than skip_evaluation.
2022         * decl2.c (mark_used): Likewise.
2023         * semantics.c (finish_non_static_data_member): Likewise.
2024         * cvt.c (cp_convert_and_check): Check
2025         c_inhibit_evaluation_warnings rather than skip_evaluation.
2026         * mangle.c (write_type): Set cp_unevaluated_operand rather than
2027         skip_evaluation.
2028
2029 2009-06-15  Ian Lance Taylor  <iant@google.com>
2030
2031         * parser.c (cp_parser_direct_declarator): Add braces around
2032         variables declared before label.
2033
2034 2009-06-15  Rafael Avila de Espindola  <espindola@google.com>
2035
2036         * cp-objcp-common.h (LANG_HOOKS_COMDAT_GROUP): Remove.
2037         * cp-tree.h (cxx_comdat_group): Change signature.
2038         * decl.c (duplicate_decls): Use DECL_COMDAT_GROUP.
2039         (cxx_comdat_group): Change signature.
2040         * decl2.c (comdat_linkage, maybe_make_one_only): Update call to
2041         make_decl_one_only.
2042         (constrain_visibility, get_guard): Use DECL_COMDAT_GROUP.
2043         * method.c (use_thunk): Update call to make_decl_one_only.
2044         * optimize.c (maybe_clone_body): Use DECL_COMDAT_GROUP
2045
2046 2009-06-12  Aldy Hernandez  <aldyh@redhat.com>
2047
2048         * typeck.c (cp_build_binary_op): Pass location to overflow_warning.
2049         (build_modify_expr): New arg.
2050         * semantics.c (finish_unary_op_expr): Pass location to
2051         overflow_warning.
2052         (handle_omp_for_class_iterator): Pass location to build_modify_expr.
2053         * typeck.c (cxx_sizeof_or_alignof_type): Pass location to
2054         c_sizeof_or_alignof_type.
2055         (build_array_ref): New argument.
2056         (build_compound_expr): Same.
2057         (build_const_cast): Same.
2058         (build_ptrmemfunc): Pass location to build_c_cast.
2059         * init.c (avoid_placement_new_aliasing): Pass location to
2060         build_stmt.
2061         (build_vec_delete_1): Pass location to cp_build_modify_expr,
2062         build_compound_expr.
2063         * class.c (build_vtbl_ref_1): Pass location to build_array_ref.
2064         * decl.c (poplevel): Pass location to c_build_bind_expr.
2065         (finish_case_label): Pass location to build_case_label.
2066         (finish_constructor_body): Same.
2067         (finish_destructor_body): Pass location to build_stmt.
2068         (cxx_maybe_build_cleanup): Same, but to build_compound_expr.
2069         * call.c (build_new_op): Pass location to build_array_ref.
2070         (build_x_va_arg): Pass location to build_va_arg.
2071         * except.c (expand_end_catch_block): Pass location to
2072         build_stmt.
2073         * cp-tree.h (build_array_ref): New argument.
2074         (build_compound_expr): Same.
2075         (build_c_cast): Same.
2076         * cp-gimplify.c (gimplify_if_stmt): Pass location on down.
2077         (gimplify_switch_stmt): Same.
2078         * typeck2.c (split_nonconstant_init_1): Same.
2079         * pt.c (tsubst_copy): Same.
2080         * semantics.c (add_decl_expr): Same.
2081         (do_poplevel): Same.
2082         (push_cleanup): Same.
2083         (finish_goto_stmt): Same.
2084         (finish_expr_stmt): Same.
2085         (begin_if_stmt): Same.
2086         (begin_while_stmt): Same.
2087         (begin_do_stmt): Same.
2088         (finish_return_stmt): Same.
2089         (begin_for_stmt): Same.
2090         (finish_break_stmt): Same.
2091         (finish_continue_stmt): Same.
2092         (begin_switch_stmt): Same.
2093         (begin_try_block): Same.
2094         (begin_handler): Same.
2095         (finish_asm_stmt): Same.
2096         (finish_label_stmt): Same.
2097         (finish_stmt_expr_expr): Same.
2098         (finalize_nrv_r): Same.
2099         (finish_omp_atomic): Same.
2100         * name-lookup.c (do_using_directive): Same.
2101         * decl2.c (grok_array_decl): Same.
2102         * parser.c (cp_parser_cast_expression): Same.
2103         (cp_parser_selection_statement): Same.
2104         (cp_parser_implicitly_scoped_statement): Same.
2105         (cp_parser_objc_selector_expression): Same.
2106         (cp_parser_objc_synchronized_statement): Same.
2107         (cp_parser_objc_throw_statement): Same.
2108         (cp_parser_omp_critical): Same.
2109         (cp_parser_omp_master): Same.
2110         * typeck.c (build_function_call): Add location argument.
2111         * init.c: Add location argument to all build_decl calls.
2112         * class.c: Same.
2113         * method.c: Same.
2114         * rtti.c: Same.
2115         * tree.c: Same.
2116         * pt.c: Same.
2117         * semantics.c: Same.
2118         * lex.c: Same.
2119         * decl2.c: Same.
2120         * cp-gimplify.c: Same.
2121         * decl.c: Same.
2122         (cp_make_fname_decl): Add location argument.  Pass location ot
2123         build_decl.
2124         (finish_case_label): Same.
2125         * cp-tree.h (finish_case_label): Add location argument.
2126         * parser.c (cp_parser_label_for_labeled_statement): Pass location to
2127         finish_case_label.
2128         
2129 2009-06-09  Jason Merrill  <jason@redhat.com>
2130
2131         PR c++/40381
2132         * decl2.c (mark_used): Return after complaining about deleted fn.
2133
2134 2009-06-08  Jason Merrill  <jason@redhat.com>
2135
2136         * parser.c (cp_parser_type_id_1): 'auto' type is ok with a
2137         late-specified return type.
2138
2139 2009-06-08  Jakub Jelinek  <jakub@redhat.com>
2140
2141         PR c++/40373
2142         * call.c (check_dtor_name): Return false even if
2143         get_type_value (name) is error_mark_node.
2144
2145         PR c++/40370
2146         PR c++/40372
2147         * parser.c (cp_parser_direct_declarator): Don't set TREE_SIDE_EFFECTS
2148         on error_mark_node.  Check for VLAs outside of function context
2149         before check whether to wrap bounds into a NOP_EXPR with
2150         TREE_SIDE_EFFECTS.
2151
2152 2009-06-08  Alexandre Oliva  <aoliva@redhat.com>
2153
2154         * repo.c (get_base_filename): Use aux_base_name rather than
2155         alternate temporary file during second compare debug compilation.
2156         (finish_repo): Skip during -fcompare-debug-second.
2157
2158 2009-06-06  Ian Lance Taylor  <iant@google.com>
2159
2160         * parser.c (cp_parser_label_for_labeled_statement): Support
2161         attribute on labels if immediately followed by semicolon.
2162         * semantics.c (finish_label_stmt): Return new label.
2163         * pt.c (tsubst_expr): Handle attributes for LABEL_EXPR.
2164
2165 2009-06-03  Ian Lance Taylor  <iant@google.com>
2166
2167         * Make-lang.in (cc1plus-checksum.o): Depend upon $(CONFIG_H) and
2168         $(SYSTEM_H).
2169
2170 2009-06-02  Mark Mitchell  <mark@codesourcery.com>
2171
2172         * decl.c (maybe_deduce_size_from_array_init): Use relayout_decl.
2173
2174 2009-06-02  Jason Merrill  <jason@redhat.com>
2175
2176         PR c++/40308
2177         PR c++/40311
2178         * typeck.c (cp_build_modify_expr): Always pass init-lists to the
2179         conversion code.
2180         * call.c (implicit_conversion): Allow init-list conversion to scalar
2181         during direct-initialization, too.  Mark the conversion bad if it
2182         has too many levels of braces.
2183         (convert_like_real): And give a helpful error.
2184
2185         PR c++/40306
2186         PR c++/40307
2187         * decl.c (cp_finish_decl): Handle auto deduction from ().
2188         * typeck.c (build_x_indirect_ref): Handle dereferencing an operand
2189         with dependent type that is known to be a pointer.
2190
2191 2009-06-02  Simon Martin  <simartin@users.sourceforge.net>
2192
2193         PR c++/38089
2194         * pt.c (register_specialization): Properly setup DECL_CONTEXT for
2195         specializations in an invalid namespace.
2196
2197 2009-06-01  Aldy Hernandez  <aldyh@redhat.com>
2198
2199         * error.c (print_instantiation_partial_context): Print column
2200         numbers.
2201
2202 2009-05-29  Ian Lance Taylor  <iant@google.com>
2203
2204         * error.c (cp_printer): Don't use va_arg with enum type.
2205
2206 2009-05-28  Dodji Seketeli  <dodji@redhat.com>
2207
2208         PR c++/39754
2209         * cp-tree.h (canonical_type_variant): Remove this function declaration.
2210         (strip_typedefs): New function declaration.
2211         * tree.c (strip_typedefs): New function definition.
2212         (canonical_type_variant): Remove function definition.
2213         * cvt.c (convert_from_reference): No need to use
2214         canonical_type_variant.
2215         * typeck.c (cp_build_indirect_ref): Likewise.
2216         * error.c (dump_template_bindings): Use strip_typedefs instead of
2217         canonical_type_variant.
2218         * pt.c (convert_template_argument, unify): Likewise.
2219         * mangle.c (canonicalize_for_substitution): Don't use
2220         canonical_type_variant.
2221
2222 2009-05-27  Jason Merrill  <jason@redhat.com>
2223
2224         * call.c (implicit_conversion): Handle conversion from
2225         initializer-list to scalar.
2226         (convert_like_real): Likewise.  Avoid crashing on list
2227         initialization with bad conversions.
2228         (can_convert): Use LOOKUP_EXPLICIT.
2229         (can_convert_arg_bad): Add flags parm.
2230         * cp-tree.h: Adjust.
2231         * typeck.c (convert_for_assignment): Pass flags.
2232
2233 2009-05-27  Ian Lance Taylor  <iant@google.com>
2234
2235         * Make-lang.in (g++$(exeext)): Change $(COMPILER) to $(LINKER).
2236         (cc1plus-dummy$(exeext), cc1plus$(exeext)): Likewise.
2237
2238 2009-05-26  Ian Lance Taylor  <iant@google.com>
2239
2240         * Make-lang.in (g++spec.o): Use $(COMPILER).
2241         (g++$(exeext), cc1plus-dummy$(exeext)): Likewise.
2242         (cc1plus$(exeext)): Likewise.
2243
2244 2009-05-26  Dodji Seketeli  <dodji@redhat.com>
2245
2246         PR c++/40007
2247         * cp-tree.h (MEMBER_TYPES_NEEDING_ACCESS_CHECK): Remove this accessor.
2248         (TI_TYPEDEFS_NEEDING_ACCESS_CHECKING): New accessor.
2249         (get_types_needing_access_check): Declare new entry point.
2250         * pt.c (append_type_to_template_for_access_check_1,
2251         get_types_needing_access_check): New functions.
2252         (perform_typedefs_access_check): Accept FUNCTION_DECLs and
2253         RECORD_TYPEs rather than TEMPLATE_DECLs. Use the new
2254         get_types_needing_access_check, no more
2255         MEMBER_TYPES_NEEDING_ACCESS_CHECK.
2256         (instantiate_class_template): Set input_location to the source
2257         location of the most specialized template definition.
2258         Perform access check using the RECORD_TYPE of the template, not its
2259         associated most generic TEMPLATE_DECL.
2260         (append_type_to_template_for_access_check): Augment function
2261         comments. Use the new get_types_needing_access_check, not
2262         MEMBER_TYPE_NEEDING_ACCESS_CHECK. Use the new
2263         append_type_to_template_for_access_check_1 subroutine.
2264
2265 2009-05-22  Jason Merrill  <jason@redhat.com>
2266
2267         PR c++/38064
2268         * typeck.c (cp_build_binary_op): Allow ENUMERAL_TYPE in
2269         arithmetic comparisons.
2270         (cp_common_type): Handle scoped enums.
2271
2272         * call.c (promoted_arithmetic_type_p): Don't use INTEGRAL_TYPE_P.
2273         (add_builtin_candidate, add_builtin_candidates): Likewise.
2274         (convert_like_real): Likewise.
2275         * class.c (check_bitfield_decl): Likewise.
2276         * decl.c (check_static_variable_definition): Likewise.
2277         (compute_array_index_type): Likewise.
2278         * decl2.c (grokbitfield): Likewise.
2279         * init.c (build_new_1): Likewise.
2280         * pt.c (convert_nontype_argument): Likewise.
2281         (current_instantiation): Likewise.
2282         * tree.c (pod_type_p): Likewise.
2283         * typeck.c (build_static_cast_1): Likewise.
2284         (build_reinterpret_cast_1): Likewise.
2285
2286 2009-05-22  Richard Guenther  <rguenther@suse.de>
2287
2288         PR middle-end/38964
2289         * init.c (avoid_placement_new_aliasing): Remove.
2290         (build_new_1): Do not call it.
2291
2292 2009-05-22  Mark Mitchell  <mark@codesourcery.com>
2293
2294         * decl2.c (decl_needed_p): Consider dllexport'd functions needed.
2295         * semantics.c (expand_or_defer_fn): Similarly.
2296
2297 2009-05-20  Ian Lance Taylor  <iant@google.com>
2298
2299         * parser.c (cp_parser_postfix_expression): Change args to a vec.
2300         Release it when done.
2301         (tree_vector): Define typedef.  Define VEC functions.
2302         (cp_parser_parenthesized_expression_list): Change return type to
2303         vec.  Change all callers.
2304         (cp_parser_new_expression): Change placement and initializer to
2305         vecs.  Release them when done.
2306         (cp_parser_new_placement): Change return type to vec.  Change all
2307         callers.
2308         (cp_parser_new_initializer): Likewise.
2309         * typeck.c (build_function_call_vec): Just call
2310         cp_build_function_call_vec.
2311         (cp_build_function_call): Just build a vec and call
2312         cp_build_function_call_vec.
2313         (cp_build_function_call_vec): New function based on old
2314         cp_build_function_call.
2315         (convert_arguments): Remove nargs and argarray parameters.  Change
2316         values to a vec.  Change caller.
2317         (build_x_compound_expr_from_vec): New function.
2318         (cp_build_modify_expr): Build vec to pass to
2319         build_special_member_call.
2320         * call.c (struct z_candidate): Add first_arg field.  Change args
2321         field to vec.
2322         (convert_class_to_reference): Handle first argument separately.
2323         (add_candidate): Add first_arg parameter.  Change args parameter
2324         to vec.  Change all callers.
2325         (add_function_candidate, add_conv_candidate): Likewise.
2326         (add_template_candidate_real, add_template_candidate): Likewise.
2327         (add_template_conv_candidate): Likewise.
2328         (build_user_type_conversion_1): Handle first argument separately.
2329         (resolve_args): Change return type and parameter type to vecs.
2330         Change all callers.
2331         (perform_overload_resolution): Change args parameter to vec.
2332         Change all callers.
2333         (build_new_function_call, build_operator_new_call): Likewise.
2334         (add_candidates): Likewise.
2335         (build_op_call): New globally visible function, built from and
2336         replacing static function build_object_call.
2337         (build_new_op): Don't handle CALL_EXPR.  Build vec, not tree_list,
2338         of arguments.
2339         (build_op_delete_call): Build vec to pass to
2340         cp_build_function_call_vec.
2341         (build_temp): Build vec to pass to build_special_member_call.
2342         (convert_like_real): Likewise.
2343         (perform_direct_initialization_if_possible): Likewise.
2344         (build_over_call): Handle first_arg field.  Use build_call_array
2345         rather than build_call_list.
2346         (build_special_member_call): Change args parameter to vec.  Change
2347         all callers.
2348         (build_new_method_call): Likewise.
2349         * init.c (expand_default_init): Change parms to vec.
2350         (build_raw_new_expr): Change placement and init to vecs.  Change
2351         all callers.
2352         (build_new_1, build_new): Likewise.
2353         * class.c (resolve_address_of_overloaded_function): Build array to
2354         pass to fn_type_unification.
2355         * pt.c (tsubst_copy_and_build): For NEW_EXPR build vecs to pass to
2356         build_new.  For CALL_EXPR create a vec rather than a tree_list;
2357         expand a pack if necessary.
2358         (fn_type_unification): Change args parameter to const tree *.  Add
2359         nargs parameter.  Change all callers.
2360         (type_unification_real): Likewise.
2361         (unify): Build array to pass to type_unification_real.
2362         (get_bindings): Build array to pass to fn_type_unification.
2363         (any_type_dependent_arguments_p): Change args parameter to a vec.
2364         Change all callers.
2365         (make_args_non_dependent): Renamed from build_non_dependent_args.
2366         Change return type to void.  Change parameter type to vec.  Change
2367         all callers.
2368         (do_auto_deduction): Pass an array to type_unification_real.
2369         * semantics.c (perform_koenig_lookup): Change args to vec.  Change
2370         all callers.
2371         (finish_call_expr): Change args to vec.  Change all callers.  Call
2372         build_op_call instead of passing CALL_EXPR to build_new_op.
2373         (cxx_omp_create_clause_info): Allocate vec to pass to
2374         build_special_member_call.
2375         * decl2.c (build_offset_ref_call_from_tree): Change args parameter
2376         to vec.  Change all callers.
2377         * name-lookup.c (lookup_function_nonclass): Likewise.
2378         (struct arg_lookup): Change args to vec.
2379         (arg_assoc_namespace): Handle args as a vec.
2380         (arg_assoc_args_vec): New static function.
2381         (lookup_arg_dependent): Change args parameter to vec.  Change all
2382         callers.
2383         * method.c (do_build_assign_ref): Allocate vec to pass to
2384         build_special_member_call.
2385         * except.c (build_throw): Likewise.
2386         * typeck2.c (build_functional_cast): Likewise.
2387         * cvt.c (ocp_convert): Likewise.
2388         * tree.c (build_min_non_dep_call_vec): Change last parameter to
2389         vec.  Change all callers.
2390         * cp-tree.h: Update declarations.
2391         * name-lookup.h: Update declarations.
2392
2393 2009-05-20  Sandra Loosemore  <sandra@codesourcery.com>
2394
2395         * typeck.c (default_conversion): Check targetm.promoted_type.
2396         * decl.c (grokdeclarator): Check targetm.invalid_return_type.
2397         (grokparms): Check targetm.invalid_parameter_type.
2398         * cvt.c (ocp_convert): Check targetm.convert_to_type.
2399         (build_expr_type_conversion): Check targetm.promoted_type.
2400
2401 2009-05-19  Andrew Pinski  <andrew_pinski@playstation.sony.com>
2402
2403         * typeck.c (build_binary_op): Allow % on integal vectors.
2404
2405 2009-05-18  Jason Merrill  <jason@redhat.com>
2406
2407         Implement explicit conversions ops as specified in N2437.
2408         * decl.c (grokdeclarator): Handle explicit conversion ops.
2409         (check_initializer): Pass flags to store_init_value.
2410         * decl2.c (maybe_emit_vtables): Likewise.
2411         * init.c (expand_aggr_init_1): Likewise.
2412         * call.c (convert_class_to_reference): Take flags parm,
2413         check DECL_NONCONVERTING_P.
2414         (build_user_type_conversion_1): Check DECL_NONCONVERTING_P.
2415         (add_builtin_candidates): Simplify getting type of conversion.
2416         (build_object_call): Likewise.  Check DECL_NONCONVERTING_P.
2417         (implicit_conversion): Pass through LOOKUP_ONLYCONVERTING.
2418         (reference_binding): Take flags parm.  Direct-initialize copy parm.
2419         (add_function_candidate): Direct-initialize the copy parm.
2420         (add_conv_candidate): Use LOOKUP_IMPLICIT, not LOOKUP_NORMAL.
2421         (build_builtin_candidate): Add LOOKUP_ONLYCONVERTING.
2422         (conditional_conversion): Likewise.
2423         (convert_like_real): Only complain about DECL_NONCONVERTING_P
2424         constructors.
2425         (perform_implicit_conversion_flags): Add flags parm to
2426         perform_implicit_conversion.  Improve diagnostics.
2427         * cp-tree.h (LOOKUP_IMPLICIT): New macro.
2428         (LOOKUP_COPY_PARM): New bit macro.
2429         * cvt.c (build_expr_type_conversion): Check DECL_NONCONVERTING_P.
2430         * typeck.c (convert_for_assignment): Take flags parm, pass it to
2431         perform_implicit_conversion_flags.
2432         (cp_build_modify_expr): Pass flags to convert_for_assignment.
2433         (convert_for_initialization): Likewise.
2434         * typeck2.c (store_init_value): Take flags parm, pass to
2435         digest_init_flags.
2436         (digest_init_flags): Add flags parm to digest_init.
2437         (digest_init_r): Take flags parm, pass to convert_for_initialization.
2438         (process_init_constructor_array): Pass it.
2439         (process_init_constructor_record): Likewise.
2440         (process_init_constructor_union): Likewise.
2441
2442 2009-05-16  Jason Merrill  <jason@redhat.com>
2443
2444         PR c++/40139
2445         * pt.c (tsubst_qualified_id): Retain the type if we aren't dealing
2446         with a dependent type.  Actually look up the destructor.
2447         * semantics.c (finish_id_expression): Fix logic.
2448         (finish_qualified_id_expr): Don't try to use 'this' if we aren't in
2449         a function.
2450         * typeck.c (build_x_unary_op): Diagnose taking the address of a
2451         constructor or destructor.
2452         * tree.c (get_first_fn): Handle OFFSET_REF.
2453
2454 2009-05-17  Joseph Myers  <joseph@codesourcery.com>
2455
2456         * tree.c (cxx_printable_name_internal): Allow consecutive
2457         translated and untranslated cached copies of the name of the
2458         current function.
2459
2460 2009-05-15  Ian Lance Taylor  <iant@google.com>
2461
2462         * cp-tree.h (enum cp_lvalue_kind_flags): Rename from
2463         cp_lvalue_kind.  Change all uses.
2464         (enum base_access_flags): Rename from enum base_access.  Change
2465         all uses.
2466         * parser.c (enum cp_parser_flags): Remove enum tag.
2467
2468 2009-05-15  Manuel López-Ibáñez  <manu@gcc.gnu.org>
2469
2470         PR 16302
2471         * call.c (build_new_op): Update calls to warn_logical_operator.
2472
2473 2009-05-14  Ian Lance Taylor  <iant@google.com>
2474
2475         * class.c (layout_class_type): Change itk to unsigned int.
2476         * decl.c (finish_enum): Change itk to unsigned int.
2477         * parser.c (cp_parser_check_decl_spec): Change ds to int.  Remove
2478         casts.
2479
2480 2009-05-13  David Mandelin <dmandelin@mozilla.com>:
2481
2482         * decl.c (duplicate_decls): Preserve parameter attributes.
2483
2484 2009-05-10  Jan Hubicka  <jh@suse.cz>
2485
2486         * decl2.c (cxx_callgraph_analyze_expr): Use
2487         cgraph_mark_address_taken.
2488
2489 2009-05-10  Joseph Myers  <joseph@codesourcery.com>
2490
2491         * call.c (name_as_c_string): Call type_as_string_translate.
2492         Translate identifiers to locale character set.
2493         * cp-tree.h (lang_decl_name): Update prototype.
2494         (type_as_string_translate, decl_as_string_translate,
2495         cxx_printable_name_translate): Declare.
2496         * cxx-pretty-print.c (M_): Define.
2497         (pp_cxx_unqualified_id, pp_cxx_canonical_template_parameter): Mark
2498         English fragments for conditional translation with M_.
2499         * decl.c (grokdeclarator): Translate identifiers to locale
2500         character set for diagnostics.
2501         * error.c (M_): Define.
2502         (dump_template_bindings, dump_type, dump_aggr_type,
2503         dump_type_prefix, dump_global_iord, dump_simple_decl, dump_decl,
2504         dump_function_decl, dump_template_parms, dump_expr,
2505         dump_binary_op, op_to_string, assop_to_string): Mark English
2506         fragments for conditional translation with M_.
2507         (type_as_string): Disable translation of identifiers.
2508         (type_as_string_translate): New.
2509         (expr_as_string): Disable translation of identifiers.
2510         (decl_as_string): Disable translation of identifiers.
2511         (decl_as_string_translate): New.
2512         (lang_decl_name): Add parameter translate.
2513         (args_to_string): Call type_as_string_translate.
2514         (cp_print_error_function): Call cxx_printable_name_translate.
2515         (print_instantiation_full_context,
2516         print_instantiation_partial_context): Call
2517         decl_as_string_translate.
2518         * parser.c (cp_lexer_get_preprocessor_token): Use %qE for
2519         identifier in diagnostic.
2520         * tree.c (cxx_printable_name): Change to
2521         cxx_printable_name_internal.  Add parameter translate.
2522         (cxx_printable_name, cxx_printable_name_translate): New wrappers
2523         round cxx_printable_name_internal.
2524
2525 2009-05-08  H.J. Lu  <hongjiu.lu@intel.com>
2526
2527         PR c/36892
2528         * call.c (build_call_a): Updated warn_deprecated_use call.
2529         (build_over_call): Likewise.
2530         * decl.c (grokdeclarator): Likewise.
2531         (grokparms): Likewise.
2532         * semantics.c (finish_id_expression): Likewise.
2533         * typeck.c (build_class_member_access_expr): Likewise.
2534         (finish_class_member_access_expr): Likewise.
2535
2536 2009-05-06  Dodji Seketeli  <dodji@redhat.com>
2537
2538         PR c++/17395
2539         * pt.c (tsubst_copy) <case PARM_DECL>: We don't want to tsubst the
2540         whole list of PARM_DECLs, just the current one.
2541
2542 2009-05-05  Shujing Zhao  <pearly.zhao@oracle.com>
2543
2544         * cp-tree.h:
2545         (opname_tab, assignop_tab, update_member_visibility, yyerror, yyhook,
2546         mangle_compound_literal): Remove unused declarations.
2547         (build_vfield_ref, cxx_print_statistics, clone_function_decl,
2548         adjust_clone_args, maybe_push_cleanup_level, pushtag, make_anon_name,
2549         pushdecl_top_level_maybe_friend, pushdecl_top_level_and_finish,
2550         check_for_out_of_scope_variable, print_other_binding_stack,
2551         maybe_push_decl, cxx_mark_addressable, force_target_expr,
2552         build_target_expr_with_type, finish_case_label,
2553         cxx_maybe_build_cleanup, begin_eh_spec_block, finish_eh_spec_block,
2554         check_template_keyword, cxx_omp_predetermined_sharing,
2555         cxx_omp_clause_default_ctor, cxx_omp_clause_copy_ctor,
2556         cxx_omp_clause_assign_op, cxx_omp_clause_dtor, cxx_omp_finish_clause,
2557         cxx_omp_privatize_by_reference): Rearrange the declarations line to
2558         match the comment that indicates the .c file which the functions are
2559         defined.
2560         (cxx_print_xnode, cxx_print_decl, cxx_print_type,
2561         cxx_print_identifier, cxx_print_error_function, pushdecl): Add comment.
2562
2563 2009-05-05  Nathan Sidwell  <nathan@codesourcery.com>
2564
2565         * typeck.c (cp_build_compound_expr): Require RHS to have a known
2566         type.
2567         * class.c (resolve_address_of_overloaded_function): Use
2568         OVL_CURRENT for error message.
2569         (instantiate_type): Forbid COMPOUND_EXPRs and remove code dealing
2570         with them.  Do not copy the node.
2571
2572 2009-05-05  Jakub Jelinek  <jakub@redhat.com>
2573
2574         PR c++/40013
2575         * pt.c (tsubst): If magic NOP_EXPR with side-effects has no type,
2576         set it from its operand's type after tsubst_expr.
2577
2578 2009-05-04  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2579
2580         PR c++/28152
2581         * parser.c (cp_lexer_get_preprocessor_token):  Do not store the
2582         canonical spelling for keywords.
2583         (cp_parser_attribute_list): Use the canonical spelling for
2584         keywords in attributes.
2585
2586 2009-05-01  Joseph Myers  <joseph@codesourcery.com>
2587
2588         * cxx-pretty-print.c (is_destructor_name, pp_cxx_unqualified_id,
2589         pp_cxx_template_keyword_if_needed, pp_cxx_postfix_expression,
2590         pp_cxx_new_expression, pp_cxx_delete_expression,
2591         pp_cxx_unary_expression, pp_cxx_assignment_operator,
2592         pp_cxx_assignment_expression, pp_cxx_expression,
2593         pp_cxx_function_specifier, pp_cxx_decl_specifier_seq,
2594         pp_cxx_simple_type_specifier, pp_cxx_type_specifier_seq,
2595         pp_cxx_exception_specification, pp_cxx_direct_declarator,
2596         pp_cxx_ctor_initializer, pp_cxx_type_id, pp_cxx_statement,
2597         pp_cxx_namespace_alias_definition, pp_cxx_template_parameter,
2598         pp_cxx_canonical_template_parameter, pp_cxx_template_declaration,
2599         pp_cxx_declaration, pp_cxx_typeid_expression,
2600         pp_cxx_va_arg_expression, pp_cxx_offsetof_expression,
2601         pp_cxx_trait_expression): Mostly use pp_string and
2602         pp_cxx_ws_string in place of pp_identifier and pp_cxx_identifier
2603         for non-identifiers.  Mark English strings for translation.
2604         * cxx-pretty-print.h (pp_cxx_ws_string): Define.
2605         * error.c (dump_template_parameter, dump_template_bindings,
2606         dump_type, dump_aggr_type, dump_type_prefix, dump_simple_decl,
2607         dump_decl, dump_template_decl, dump_function_decl,
2608         dump_parameters, dump_exception_spec, dump_template_parms,
2609         dump_expr, dump_binary_op, dump_unary_op, op_to_string,
2610         assop_to_string, args_to_string, cp_print_error_function,
2611         print_instantiation_full_context,
2612         print_instantiation_partial_context): Mostly use pp_string and
2613         pp_cxx_ws_string in place of pp_identifier and pp_cxx_identifier
2614         for non-identifiers.  Mark English strings for translation.
2615         (dump_global_iord): Mark strings for translation; use longer
2616         strings instead of substituting single words.
2617         (function_category): Return a format string marked for
2618         translation, not a single word or phrase to substitute in a longer
2619         phrase.
2620
2621 2009-04-28  Ben Elliston  <bje@au.ibm.com>
2622
2623         PR c++/35652
2624         Revert:
2625
2626         2009-03-27  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2627
2628         * typeck.c (cp_pointer_sum): Adjust call to pointer_int_sum.
2629
2630 2009-04-27  Ian Lance Taylor  <iant@google.com>
2631
2632         * semantics.c (finish_omp_clauses): Change type of c_kind to enum
2633         omp_clause_code.
2634
2635 2009-04-27  Jakub Jelinek  <jakub@redhat.com>
2636
2637         PR c++/39875
2638         * cvt.c (convert_to_void) <case INDIRECT_REF>: Only warn about
2639         -Wunused-value if implicit.
2640
2641 2009-04-24  Ian Lance Taylor  <iant@google.com>
2642
2643         * call.c (build_temp): Change 0 to enum constant.
2644         * cp-tree.h (cp_lvalue_kind): Typedef to int rather than enum
2645         type.
2646         * cp-gimplify.c (cp_gimplify_expr): Add cast to enum type.
2647         * decl2.c (constrain_visibility): Likewise.
2648         * parser.c (cp_lexer_get_preprocessor_token): Likewise.
2649         (cp_parser_flags): Typedef to int rather than enum type.
2650         (cp_parser_expression_stack_entry): Change prec field to enum
2651         cp_parser_prec.
2652
2653         * typeck.c (build_modify_expr): Add lhs_origtype parameter.
2654         Change all callers.
2655
2656 2009-04-22  Dodji Seketeli  <dodji@redhat.com>
2657
2658         PR c++/39639
2659         * parser.c (cp_parser_template_argument_list): Display an error
2660         when an ellipsis is not preceded by a parameter pack. Also, warn
2661         about variadic templates usage without -std=c++0x.
2662
2663 2009-04-21  Taras Glek <tglek@mozilla.com>
2664
2665         * cp-tree.h: Update GTY annotations to new syntax.
2666         * decl.c: Likewise.
2667         * mangle.c: Likewise.
2668         * name-lookup.c: Likewise.
2669         * name-lookup.h: Likewise.
2670         * parser.c: Likewise.
2671         * pt.c: Likewise.
2672         * rtti.c: Likewise.
2673         * semantics.c: Likewise.
2674         * typeck2.c: Likewise.
2675
2676 2009-04-22  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2677
2678         PR c++/14875
2679         * parser.c (cp_parser_error): Pass token->flags to c_parse_error.
2680
2681 2009-04-21  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2682
2683         PR c++/35711
2684         * typeck.c (check_for_casting_away_constness): We diagnose casting
2685         away any qualifiers not just constness.
2686         (casts_away_constness): Mention that it handles more than just
2687         constness.
2688         
2689 2009-04-21  Joseph Myers  <joseph@codesourcery.com>
2690
2691         * ChangeLog, ChangeLog-1993, ChangeLog-1994, ChangeLog-1995,
2692         ChangeLog-1996, ChangeLog-1997, ChangeLog-1998, ChangeLog-1999,
2693         ChangeLog-2000, ChangeLog-2001, ChangeLog-2002, ChangeLog-2003,
2694         ChangeLog-2004, ChangeLog-2005, ChangeLog-2006, ChangeLog-2007,
2695         ChangeLog-2008, ChangeLog.ptr, ChangeLog.tree-ssa, NEWS,
2696         cfns.gperf: Add copyright and license notices.
2697         * cfns.h: Regenerate.
2698         * ChangeLog, ChangeLog-2004: Correct dates.
2699
2700 2009-04-21  Manuel López-Ibáñez  <manu@gcc.gnu.org>
2701
2702         PR 16202
2703         * tree.c (lvalue_p_1): Use const_tree.
2704         Use CONST_CAST_TREE to avoid warning.
2705         (lvalue_p): Returns bool, receives const_tree.
2706
2707 2009-04-21  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2708
2709         PR c++/13358
2710         * parser.c (cp_parser_check_decl_spec): Drop redundant flags.
2711         * error.c (pedwarn_cxx98): New.
2712         * cp-tree.h (pedwarn_cxx98): Declare.
2713
2714 2009-04-20  Le-Chun Wu  <lcwu@google.com>
2715
2716         PR c++/39803
2717         * init.c (build_vec_init): Set TREE_NO_WARNING on the
2718         compiler-generated INDIRECT_REF expression.
2719
2720 2009-04-20  Ian Lance Taylor  <iant@google.com>
2721
2722         * typeck.c (build_function_call_vec): New function.
2723         (cp_build_function_call): Only pass first parameter to
2724         objc_rewrite_function_call.
2725         (build_modify_expr): Add rhs_origtype parameter.  Change all
2726         callers.
2727         * decl.c (finish_decl): Add origtype parameter.  Change all
2728         callers.
2729         * semantics.c (finish_call_expr): Pass VEC to
2730         resolve_overloaded_builtin.
2731
2732 2009-04-20  Ian Lance Taylor  <iant@google.com>
2733
2734         * cp-tree.h (base_access): Change typedef to int.
2735         * parser.c (cp_parser_omp_flush): Change 0 to OMP_CLAUSE_ERROR.
2736         (cp_parser_omp_threadprivate): Likewise.
2737         * pt.c (unify_pack_expansion): Add casts to enum type.
2738
2739 2009-04-19  Manuel López-Ibáñez  <manu@gcc.gnu.org>
2740
2741         PR c/32061
2742         PR c++/36954
2743         * call.c (build_new_op): Save the original codes of operands
2744         before folding.
2745
2746 2009-04-18  Kazu Hirata  <kazu@codesourcery.com>
2747
2748         * cp-tree.h: Remove the prototype for insert_block.
2749         * decl.c (insert_block): Remove.
2750
2751 2009-04-16  Ian Lance Taylor  <iant@google.com>
2752
2753         * cp-tree.h (enum tsubst_flags): Rename from enum tsubst_flags_t.
2754         (tsubst_flags_t): Change typedef from enum type to int.
2755
2756 2009-04-16  Paolo Bonzini  <bonzini@gnu.org>
2757
2758         * decl.c (check_initializer): Use TYPE_VECTOR_OPAQUE
2759         instead of targetm.vector_opaque_p.
2760
2761 2009-04-15  Le-Chun Wu  <lcwu@google.com>
2762
2763         PR c++/39551
2764         * call.c (build_over_call): Set TREE_NO_WARNING on the
2765         compiler-generated INDIRECT_REF expression.
2766         * cvt.c (convert_to_void): Emit warning when stripping off
2767         INDIRECT_REF.
2768
2769 2009-04-14  Diego Novillo  <dnovillo@google.com>
2770
2771         * parser.c (cp_parser_type_specifier_seq): Move call to
2772         invoke_plugin_callbacks ...
2773         (cp_parser_type_specifier_seq): ... here.
2774
2775 2009-04-14  Le-Chun Wu  <lcwu@google.com>
2776
2777         * Make-lang.in: Modify dependencies of files including plugin.h.
2778         * decl.c (finish_function): Call invoke_plugin_callbacks.
2779         * parser.c (cp_parser_type_specifier): Call invoke_plugin_callbacks.
2780
2781 2009-04-14  Jason Merrill  <jason@redhat.com>
2782
2783         PR c++/39763
2784         * name-lookup.c (pushdecl_maybe_friend): Avoid all warnings
2785         about shadowing by tentative parms.
2786
2787 2009-04-13  Jason Merrill  <jason@redhat.com>
2788
2789         PR c++/39480
2790         * call.c (build_over_call): Don't call memcpy if the target is
2791         the same as the source.
2792
2793 2009-04-13  Jason Merrill  <jason@redhat.com>
2794
2795         PR c++/39750
2796         * pt.c (uses_template_parms): Handle CONSTRUCTOR.
2797
2798 2009-04-12  Jason Merrill  <jason@redhat.com>
2799
2800         PR c++/39742
2801         * call.c (joust): Don't crash on variadic fn.
2802
2803 2009-04-10  Jason Merrill  <jason@redhat.com>
2804
2805         PR c++/28301
2806         * parser.c (cp_parser_skip_to_end_of_block_or_statement): Return
2807         if we see a close brace without an open brace.
2808
2809 2009-04-10  H.J. Lu  <hongjiu.lu@intel.com>
2810
2811         * parser.c (cp_parser_class_specifier): Remove the unused
2812         has_trailing_semicolon.
2813
2814 2009-04-10  Manuel López-Ibáñez  <manu@gcc.gnu.org>
2815
2816         PR  c++/20118
2817         * parser.c (cp_parser_check_template_parameters): Take a
2818         cp_declarator parameter.
2819         (cp_parser_elaborated_type_specifier): Update to
2820         cp_parser_check_template_parameters.
2821         (cp_parser_class_head): Likewise.
2822         (cp_parser_check_declarator_template_parameters): Likewise.
2823         (cp_parser_check_template_parameters): Handle first the non-error
2824         conditions. Give more accurate diagnostics if a declarator is
2825         given. 
2826
2827 2009-04-08  Jason Merrill  <jason@redhat.com>
2828
2829         PR c++/25185
2830         * error.c (dump_aggr_type): Chase template typedefs if
2831         -fno-pretty-templates.
2832
2833 2009-04-08  Dodji Seketeli  <dodji@redhat.com>
2834
2835         PR c++/39637
2836         * parser.c (cp_parser_enumerator_definition): Make sure the
2837         initializer of the enumerator doesn't contain any bare parameter pack.
2838
2839 2009-04-07  Jason Merrill  <jason@redhat.com>
2840
2841         PR c++/34691
2842         * name-lookup.c (merge_functions): Keep multiple extern "C" functions.
2843         * call.c (joust): Complain about mismatched default arguments
2844         in extern "C" functions.
2845         * class.c (resolve_address_of_overloaded_function): Handle multiple
2846         extern "C" functions.
2847         * pt.c (resolve_overloaded_unification): Likewise.
2848
2849 2009-04-07  Jason Merrill  <jason@redhat.com>
2850
2851         PR c++/25185
2852         * error.c (dump_function_decl): Don't pretty-print templates
2853         if -fno-pretty-templates.
2854         (count_non_default_template_args): Print all args if
2855         -fno-pretty-templates.
2856
2857 2009-04-06  Jason Merrill  <jason@redhat.com>
2858
2859         PR c++/35146
2860         * pt.c (fn_type_unification): For DEDUCE_EXACT check that
2861         the deduced template arguments give us the parameter types
2862         we're looking for.
2863
2864 2009-04-05  Giovanni Bajo <giovannibajo@libero.it>
2865             Jason Merrill  <jason@redhat.com>
2866
2867         PR c++/14912
2868         * error.c (count_non_default_template_args): New fn.
2869         (dump_template_parms): Call it.
2870         (dump_template_argument_list): Call it.  Add parms parm.
2871         (dump_template_argument): Adjust call to dump_template_argument_list.
2872         (dump_type, dump_decl): Likewise.
2873         (dump_template_bindings): Refactor logic.
2874
2875 2009-04-03  Jason Merrill  <jason@redhat.com>
2876
2877         PR c++/25185
2878         * error.c (dump_template_bindings): Look through typedefs in
2879         typename results.
2880         (dump_type) [TYPENAME_TYPE]: Print the typedef name if any.
2881         (find_typenames_r): Also collect typedefs.
2882         * pt.c (unify): Strip typedefs.
2883
2884         PR c++/39608
2885         * semantics.c (finish_id_expression): Don't assume a dependent
2886         member of the current instantiation isn't a valid integral
2887         constant expression.  Check dependent_scope_p.
2888         * pt.c (dependent_scope_p): Check TYPE_P.
2889         (tsubst_copy): If args is null, just return.
2890
2891 2009-04-02  Jason Merrill  <jason@redhat.com>
2892
2893         PR c++/25185
2894         * error.c (find_typenames, find_typenames_r): New fns.
2895         (dump_function_decl): Call find_typenames.
2896         (dump_template_bindings): Print typenames as well.
2897         * pt.c (tsubst): Non-static.
2898         * cp-tree.h: Declare it.
2899
2900 2009-04-02  Dodji Seketeli  <dodji@redhat.com>
2901
2902         PR c++/26693
2903         * decl2.c (grokfield): when a typedef appears in a
2904         class, create the typedef variant type node for it.
2905         (save_template_attributes): Creating typedef variant type node
2906          here is now useless.
2907         * decl.c (grokdeclarator): If the typedef'ed struct/class was
2908         anonymous, set the proper type name to all its type variants.
2909         (xref_basetypes) : Fixup the variant types after setting
2910         TYPE_BINFO on REF.
2911         * name-lookup.c (pushdecl_maybe_friend): Reuse the
2912         set_underlying_type function to install typedef variant types.
2913         * cp-tree.h (MEMBER_TYPES_NEEDING_ACCESS_CHECK): New template accessor
2914         macro.
2915         (append_type_to_template_for_access_check): New entry points.
2916         * semantics.c (check_accessibility_of_qualified_id):
2917         When a typedef that is a member of a class appears in a template,
2918         add it to the template. It will be ...
2919         * class.c (finish_struct_bits): Split type variant fixup into ...
2920         (fixup_type_variants): A new entry point.
2921         * pt.c (instantiate_class_template, instantiate_template ): ... access
2922         checked at template instantiation time.
2923         (resolve_type_name_type): The type name should be the name of the
2924         main type variant.
2925         (retrieve_specialization): Specializations of template typedefs aren't
2926         to looked up in DECL_TEMPLATE_INSTANTIATIONS (tmpl).
2927         (append_type_to_template_for_access_check): New entry point.
2928         (tsubst_decl): For typedefs, build the variant type from the correct
2929         original type.
2930         (get_class_bindings): Fix function comment.
2931         (perform_typedefs_access_check): New entry point.
2932
2933 2009-03-31  Jason Merrill  <jason@redhat.com>
2934
2935         PR c++/34691
2936         * name-lookup.c (pushdecl_maybe_friend): Diagnose mismatched
2937         extern "C" declarations.
2938
2939         C++ DR 613
2940         * semantics.c (finish_non_static_data_member): Allow such references
2941         without an associated object in sizeof/decltype/alignof.
2942
2943         * ptree.c (cxx_print_decl): Pretty-print full name of
2944         function/template.
2945         (cxx_print_type): Pretty-print full name of class.
2946
2947         * decl.c (grokdeclarator): Reject pointer to qualified function
2948         type.
2949
2950         PR c++/37806, core issue 547
2951         * typeck.c (cp_apply_type_quals_to_decl): Don't apply any quals
2952         to a typedef.
2953         * tree.c (cp_build_qualified_type_real): Don't apply restrict to a 
2954         function type.
2955         * decl.h (enum decl_context): Add TEMPLATE_TYPE_ARG.
2956         * decl.c (groktypename): Add is_template_arg parameter.
2957         (grokdeclarator): Allow function cv-quals on a template type arg.
2958         * parser.c (cp_parser_new_type_id, cp_parser_type_id): Add
2959         is_template_arg argument in calls to groktypename.
2960         * cp-tree.h: Adjust prototype.
2961         * error.c (dump_type_prefix, dump_type_suffix): Fix plain 
2962         FUNCTION_TYPE printing.
2963         
2964         * mangle.c (write_expression): Mangle dependent name as
2965         source-name.
2966
2967         PR c++/38030, 38850, 39070
2968         * pt.c (type_dependent_expression_p_push): New fn.
2969         (tsubst_copy_and_build) [CALL_EXPR]: Only do arg-dep lookup when the
2970         substitution makes the call non-dependent.  Preserve koenig_p.
2971         * parser.c (cp_parser_postfix_expression): Only do arg-dep lookup
2972         for non-dependent calls.
2973         * semantics.c (finish_call_expr): Revert earlier changes.
2974         * cp-tree.h: Revert change to finish_call_expr prototype.
2975
2976 2009-03-29  Joseph Myers  <joseph@codesourcery.com>
2977
2978         PR preprocessor/34695
2979         * cp-tree.h (cp_cpp_error): Remove.
2980         * error.c (cp_cpp_error): Remove.
2981         * parser.c (cp_lexer_new_main): Set done_lexing instead of
2982         client_diagnostic and error callback.
2983
2984 2009-03-28  Paolo Bonzini  <bonzini@gnu.org>
2985
2986         * cp/cp-objcp-common.h (LANG_HOOKS_STATICP): Remove.
2987         * cp/cp-objcp-common.c (cxx_staticp): Remove.
2988         * cp/cp-tree.h (cxx_staticp): Remove.
2989
2990 2009-03-28  Jakub Jelinek  <jakub@redhat.com>
2991
2992         PR c++/39554
2993         * parser.c (cp_parser_postfix_expression): Don't call
2994         warning_if_disallowed_function_p.
2995
2996 2009-03-27  Jan Hubicka  <jh@suse.cz>
2997
2998         * except.c (choose_personality_routine): Set terminate_node to abort
2999         for java exceptions.
3000
3001 2009-03-27  Dodji Seketeli  <dodji@redhat.com>
3002             Jakub Jelinek  <jakub@redhat.com>
3003
3004         PR debug/37959
3005         * cp-objcp-common.h (LANG_HOOKS_FUNCTION_DECL_EXPLICIT_P): Define.
3006         (cp_function_decl_explicit_p): New prototype.
3007         * cp-objcp-common.c (cp_function_decl_explicit_p): New function.
3008
3009 2009-03-27  Andrew Pinski  <andrew_pinski@playstation.sony.com>
3010
3011         PR c++/38638
3012         * parser.c (cp_parser_elaborated_type_specifier): If we have a
3013         typename tag and don't have either a TYPE_DECL or a
3014         TEMPLATE_ID_EXPR, set the type to NULL.
3015
3016 2009-03-27  Simon Martin  <simartin@users.sourceforge.net>
3017
3018         PR c++/37647
3019         * decl.c (grokdeclarator): Reject [con|de]stuctors in a non-class
3020         scope.
3021
3022 2009-03-27  Simon Martin  <simartin@users.sourceforge.net>
3023
3024         PR c++/29727
3025         * decl.c (check_array_designated_initializer): Handle error_mark_node.
3026
3027 2009-03-27  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
3028
3029         PR c++/35652
3030         * typeck.c (cp_pointer_sum): Adjust call to pointer_int_sum.
3031
3032 2009-03-26  Andrew Haley  <aph@redhat.com>
3033
3034         PR C++/39380
3035         * decl2.c (possibly_inlined_p): If java exceptions are in use
3036         don't inline a decl unless it is explicitly marked inline.
3037         * lex.c: (pragma_java_exceptions): New variable.
3038         (handle_pragma_java_exceptions): Set pragma_java_exceptions.
3039         * cp-tree.h (pragma_java_exceptions): Declare new variable.
3040
3041 2009-03-24  Jason Merrill  <jason@redhat.com>
3042
3043         PR c++/28274
3044         * name-lookup.c (pushdecl_maybe_friend): Check default args later.
3045
3046 2009-03-23  Jakub Jelinek  <jakub@redhat.com>
3047
3048         PR c/39495
3049         * semantics.c (handle_omp_for_class_iterator): Swap cond operands and
3050         code if iter is the second operand.
3051         * parser.c (cp_parser_binary_expression): Add no_toplevel_fold_p
3052         argument.  If it is set, don't build the toplevel expression with
3053         build_x_binary_op, but build2.
3054         (cp_parser_assignment_expression,  cp_parser_omp_for_incr): Adjust
3055         callers.
3056         (cp_parser_omp_for_cond): Don't assume the first operand of the
3057         comparison must be decl.
3058
3059 2009-03-23  Jason Merrill  <jason@redhat.com>
3060
3061         PR c++/37729
3062         * pt.c (make_fnparm_pack): Split out from...
3063         (instantiate_decl): ...here.
3064         (tsubst_pack_expansion): Handle being called in a late-specified
3065         return type.
3066
3067         PR c++/39526
3068         * name-lookup.c (pushdecl_maybe_friend): Don't warn about shadowing
3069         a parm with a parm.
3070
3071 2009-03-20  Jason Merrill  <jason@redhat.com>
3072
3073         PR c++/28879
3074         * parser.c (cp_parser_direct_declarator): In a template, wrap 
3075         non-constant expression in NOP_EXPR with TREE_SIDE_EFFECTS set.
3076         * pt.c (tsubst): Preserve it in a partial instantiation.
3077         (dependent_type_p_r): Don't check value_dependent_expression_p.
3078         * decl.c (compute_array_index_type): Don't check
3079         value_dependent_expression_p if TREE_SIDE_EFFECTS.
3080
3081         C++ core issue 703
3082         * typeck2.c (check_narrowing): Don't complain about loss of 
3083         precision when converting a floating-point constant.
3084
3085 2009-03-19  Jakub Jelinek  <jakub@redhat.com>
3086
3087         PR c/39495
3088         * parser.c (cp_parser_omp_for_cond): Don't check lhs if decl is NULL.
3089         (cp_parser_omp_for_loop): Always use cp_parser_omp_for_cond.
3090
3091 2009-03-18  Jakub Jelinek  <jakub@redhat.com>
3092
3093         * parser.c (struct cp_token): Reorder fields for 64-bit hosts.
3094         (eof_token): Adjust.
3095
3096 2009-03-18  H.J. Lu  <hongjiu.lu@intel.com>
3097
3098         PR c++/39425
3099         * parser.c (cp_parser_explicit_specialization): Don't skip the
3100         rest of the specialization when begin_specialization returns
3101         false.
3102
3103 2009-03-17  Jason Merrill  <jason@redhat.com>
3104
3105         * decl.c (grokfndecl): Set DECL_CONTEXT on parms.
3106         (duplicate_decls): Adjust DECL_CONTEXT of newdecl's parms.
3107         * pt.c (check_explicit_specialization): Likewise.
3108         (tsubst_copy) [PARM_DECL]: Return a dummy parm if we don't have a
3109         local specialization.
3110         * tree.c (cp_tree_equal) [PARM_DECL]: Check type and index, not name.
3111         * decl2.c (parm_index): New fn.
3112         * semantics.c (finish_decltype_type): Don't use describable_type.
3113         * mangle.c (write_expression): Likewise.  Mangle ALIGNOF_EXPR.
3114         Give a sorry for unsupported codes rather than crash.  Mangle
3115         conversions with other than 1 operand.  New mangling for PARM_DECL.
3116         * operators.def (ALIGNOF_EXPR): Mangle as "az".
3117
3118 2009-03-17  Jing Yu  <jingyu@google.com>
3119
3120         PR middle-end/39378
3121         * method.c (use_thunk): Change is_thunk from crtl to cfun.
3122
3123 2009-03-17  Paolo Carlini  <paolo.carlini@oracle.com>
3124
3125         PR c++/39475
3126         * semantics.c (check_trait_type): New.
3127         (finish_trait_expr): Use it.
3128
3129 2009-03-17  Jakub Jelinek  <jakub@redhat.com>
3130
3131         * name-lookup.c (cp_emit_debug_info_for_using): Emit USING_STMTs
3132         instead of calling imported_module_or_decl debug hook if
3133         building_stmt_tree ().
3134         * cp-gimplify.c (cp_gimplify_expr): Don't assert the first operand
3135         is a NAMESPACE_DECL.
3136
3137         PR debug/37890
3138         * name-lookup.c (do_namespace_alias): Don't call global_decl debug
3139         hook at function scope.
3140
3141         PR debug/39471
3142         * cp-gimplify.c (cp_gimplify_expr): Don't set DECL_NAME
3143         on IMPORTED_DECL.
3144
3145 2009-03-09  Jakub Jelinek  <jakub@redhat.com>
3146
3147         PR c++/39371
3148         * semantics.c (finish_switch_cond): Don't call get_unwidened.
3149         * decl.c (finish_case_label): Pass SWITCH_STMT_TYPE as 3rd argument
3150         instead of TREE_TYPE (cond).
3151
3152 2009-03-08  H.J. Lu  <hongjiu.lu@intel.com>
3153
3154         PR c++/39060
3155         * parser.c (cp_parser_late_parsing_default_args): Continue
3156         the loop when cp_parser_assignment_expression returns
3157         error_mark_node.
3158
3159 2009-03-07  Jason Merrill  <jason@redhat.com>
3160
3161         PR c++/39367
3162         * init.c (build_new_1): Don't use a VLA type.
3163         (build_vec_init): Handle getting a pointer for BASE.
3164
3165 2009-03-06  H.J. Lu  <hongjiu.lu@intel.com>
3166
3167         PR c++/37520
3168         * cp-tree.h: Check NO_DOT_IN_LABEL before NO_DOLLAR_IN_LABEL
3169         when mangling symbols.
3170
3171 2009-03-06  Paolo Carlini  <paolo.carlini@oracle.com>
3172
3173         PR c++/33492
3174         * error.c (dump_expr): Don't try to print THROW_EXPRs in full.
3175
3176 2009-03-06  Alexandre Oliva  <aoliva@redhat.com>
3177
3178         * decl.c (record_builtin_java_type): Use canonicalized integer
3179         types.
3180
3181 2009-03-04  Jason Merrill  <jason@redhat.com>
3182
3183         PR c++/38908
3184         * class.c (is_really_empty_class): New fn.
3185         * cp-tree.h: Declare it.
3186         * cp-objcp-common.c (cp_expr_size): Use it.
3187
3188         PR c++/13549
3189         * semantics.c (perform_koenig_lookup): Handle TEMPLATE_ID_EXPR.
3190         * parser.c (cp_parser_postfix_expression): Call it for 
3191         TEMPLATE_ID_EXPR.
3192         * tree.c (is_overloaded_fn): Look through TEMPLATE_ID_EXPR.
3193         (get_first_fn): Likewise.
3194
3195         PR c++/9634
3196         PR c++/29469
3197         PR c++/29607
3198         Implement DR 224.
3199         * decl.c (make_typename_type): Do look inside currently open classes.
3200         * parser.c (cp_parser_lookup_name): Likewise.
3201         (cp_parser_template_name): Likewise.
3202         * pt.c (dependent_scope_p): New function.
3203         * cp-tree.h: Declare it.
3204         * class.c (currently_open_class): Return fast if T isn't a class.
3205
3206 2009-02-26  H.J. Lu  <hongjiu.lu@intel.com>
3207
3208         PR c++/37789
3209         * parser.c (cp_parser_mem_initializer): Return error_mark_node
3210         if cp_parser_mem_initializer_id returns error_mark_node.
3211
3212 2009-02-24  Richard Guenther  <rguenther@suse.de>
3213
3214         PR c++/39242
3215         * pt.c (instantiate_decl): Do not instantiate extern, non-inline
3216         declared functions.
3217
3218 2009-02-23  H.J. Lu  <hongjiu.lu@intel.com>
3219
3220         PR c++/36411
3221         * pt.c (coerce_template_template_parms): Return 0 if parameter
3222         is error_mark_node.
3223
3224 2009-02-23  Jason Merrill  <jason@redhat.com>
3225
3226         * pt.c (unify): Call maybe_adjust_types_for_deduction when
3227         deducing from an initializer list.
3228
3229 2009-02-20  Jason Merrill  <jason@redhat.com>
3230
3231         PR c++/39225
3232         * decl.c (grokdeclarator): Handle ~identifier.
3233
3234 2009-02-19  Jakub Jelinek  <jakub@redhat.com>
3235
3236         PR target/39175
3237         * decl2.c (determine_visibility): If visibility changed and
3238         DECL_RTL has been already set, call make_decl_rtl to update symbol
3239         flags.
3240
3241 2009-02-19  H.J. Lu  <hongjiu.lu@intel.com>
3242
3243         PR c++/39188
3244         * cp-tree.h (maybe_commonize_var): New.
3245
3246         * decl.c (maybe_commonize_var): Make it extern.
3247
3248         * decl2.c (finish_anon_union): Call maybe_commonize_var.
3249
3250 2009-02-18  H.J. Lu  <hongjiu.lu@intel.com>
3251
3252         PR c++/39219
3253         * parser.c (cp_parser_enum_specifier): Apply all attributes.
3254
3255 2009-02-18  Jason Merrill  <jason@redhat.com>
3256
3257         * cfns.h: Tweak pathname for cfns.gperf.
3258
3259 2009-02-13  Jason Merrill  <jason@redhat.com>
3260
3261         PR c++/39070
3262         * semantics.c (finish_call_expr): Change koenig_p parm to int.
3263         If -1, don't set KOENIG_LOOKUP_P but do keep hidden candidates.
3264         * cp-tree.h: Adjust prototype.
3265         * pt.c (tsubst_copy_and_build) [CALL_EXPR]: Pass -1.
3266
3267 2009-02-12  Jason Merrill  <jason@redhat.com>
3268
3269         PR c++/38950
3270         * pt.c (unify)[TEMPLATE_PARM_INDEX]: Convert to the tsubsted type.
3271
3272 2009-02-11  Jason Merrill  <jason@redhat.com>
3273
3274         PR c++/39153
3275         * decl2.c (cp_write_global_declarations): 
3276         Check DECL_DEFAULTED_FN, not DECL_ARTIFICIAL.
3277
3278         PR c++/30111
3279         * init.c (build_value_init_noctor): Split out from...
3280         (build_value_init): ...here.
3281         (expand_aggr_init_1): Handle value-initialization.
3282         * cp-tree.h: Add declaration.
3283         * class.c (type_has_user_provided_constructor): 
3284         Handle non-class arguments.
3285
3286 2009-02-10  Jason Merrill  <jason@redhat.com>
3287
3288         PR c++/38649
3289         * class.c (defaultable_fn_p): Handle ... properly.
3290
3291         PR c++/36744
3292         * tree.c (lvalue_p_1): Condition rvalue ref handling on
3293         treat_class_rvalues_as_lvalues, too.
3294
3295 2009-02-10  Paolo Carlini  <paolo.carlini@oracle.com>
3296
3297         PR c++/34397
3298         * typeck.c (build_x_array_ref): New.
3299         * cp-tree.h: Declare it.
3300         * pt.c (tsubst_copy_and_build): Use it for case ARRAY_REF.
3301
3302 2009-02-09  Jason Merrill  <jason@redhat.com>
3303
3304         PR c++/39109
3305         * semantics.c (simplify_aggr_init_expr): Do zero-initialization here.
3306         * init.c (build_value_init): Not here. Don't build a TARGET_EXPR.
3307         * tree.c (get_target_expr): Handle AGGR_INIT_EXPR.
3308         * cp-gimplify.c (cp_gimplify_init_expr): Remove special handling
3309         for build_value_init TARGET_EXPR.
3310         * cp-tree.h (AGGR_INIT_ZERO_FIRST): New macro.
3311
3312 2009-02-06  Paolo Carlini  <paolo.carlini@oracle.com>
3313
3314         PR c++/35147
3315         PR c++/37737
3316         * cp-tree.h (TMPL_ARGS_HAVE_MULTIPLE_LEVELS): Check TREE_VEC_LENGTH.
3317
3318 2009-02-04  Jakub Jelinek  <jakub@redhat.com>
3319
3320         PR c++/39095
3321         * operators.def: Use COMPONENT_REF code for ->/pt operator again,
3322         remove ./dt operator.
3323         * mangle.c (write_expression): Handle COMPONENT_REF after handling
3324         ADDR_EXPR, for COMPONENT_REF without ARROW_EXPR inside of it
3325         write_string ("dt") instead of using operators.def.
3326
3327 2009-02-03  Jason Merrill  <jason@redhat.com>
3328
3329         * typeck.c (cp_build_unary_op): Only complain about taking address
3330         of main if pedantic.
3331
3332 2009-02-03  Jakub Jelinek  <jakub@redhat.com>
3333
3334         PR inline-asm/39059
3335         * parser.c (cp_parser_primary_expression): Reject FIXED_CSTs.
3336
3337         PR c++/39056
3338         * typeck2.c (digest_init_r): Don't call process_init_constructor
3339         for COMPLEX_TYPE.
3340
3341 2009-02-03  Paolo Bonzini  <bonzini@gnu.org>
3342
3343         PR c++/36897
3344         * pt.c (convert_nontype_argument_function): Expect expr to be an
3345         ADDR_EXPR.
3346
3347         PR c++/37314
3348         * typeck.c (merge_types): Call resolve_typename_type if only
3349         one type is a typename.
3350
3351 2009-02-02  Jason Merrill  <jason@redhat.com>
3352
3353         PR c++/39054
3354         * parser.c (cp_parser_unqualified_id): Don't wrap error_mark_node 
3355         in BIT_NOT_EXPR.
3356
3357 2009-02-01  Paolo Carlini  <paolo.carlini@oracle.com>
3358
3359         PR c++/39053
3360         * parser.c (cp_parser_pure_specifier): If there are no tokens left
3361         do not call cp_lexer_consume_token.
3362
3363 2009-01-30  Jakub Jelinek  <jakub@redhat.com>
3364
3365         PR c++/39028
3366         * parser.c (cp_parser_already_scoped_statement): Handle __label__
3367         declarations.
3368
3369 2009-01-30  Paolo Carlini  <paolo.carlini@oracle.com>
3370
3371         PR c++/33465
3372         * error.c (dump_expr): Handle FIX_TRUNC_EXPR and FLOAT_EXPR.
3373
3374 2009-01-30  Paolo Carlini  <paolo.carlini@oracle.com>
3375
3376         PR c++/38655
3377         * error.c (dump_type_prefix, dump_type_suffix): Handle FIXED_POINT_TYPE.
3378
3379 2009-01-29  Paolo Carlini  <paolo.carlini@oracle.com>
3380
3381         * typeck.c (invalid_nonstatic_memfn_p): Use
3382         DECL_NONSTATIC_MEMBER_FUNCTION_P.
3383
3384 2009-01-27  Paolo Carlini  <paolo.carlini@oracle.com>
3385
3386         PR c++/37554
3387         * call.c (build_over_call): If convert_for_arg_passing returns
3388         error_mark_node unconditionally return it.
3389
3390 2009-01-22  Adam Nemet  <anemet@caviumnetworks.com>
3391
3392         * class.c (check_field_decls): Also inherit packed for bitfields
3393         regardless of their type.
3394
3395 2009-01-22  Dodji Seketeli  <dodji@redhat.com>
3396
3397         PR c++/38930
3398         * decl2.c (grokfield): Reverting changes of PR c++/26693
3399         (save_template_attributes): Likewise.
3400         * decl.c (grokdeclarator): Likewise.
3401         * name-lookup.c (pushdecl_maybe_friend): Likewise.
3402         * cp-tree.h (MEMBER_TYPES_NEEDING_ACCESS_CHECK): Likewise.
3403         (append_type_to_template_for_access_check): Likewise.
3404         * semantics.c (check_accessibility_of_qualified_id): Likewise.
3405         * pt.c (instantiate_class_template, instantiate_template ): Likewise.
3406         (tsubst): Likewise.
3407         (resolve_type_name_type): Likewise.
3408         (append_type_to_template_for_access_check): Likewise.
3409
3410 2009-01-21  Dodji Seketeli  <dodji@redhat.com>
3411
3412         PR c++/26693
3413         * decl2.c (grokfield): when a typedef appears in a
3414         class, create the typedef variant type node for it.
3415         (save_template_attributes): Creating typedef variant type node
3416          here is now useless.
3417         * decl.c (grokdeclarator): If the typedef'ed struct/class was
3418         anonymous, set the proper type name to all its type variants.
3419         * name-lookup.c (pushdecl_maybe_friend): Reuse the
3420         set_underlying_type function to install typedef variant types.
3421         * cp-tree.h (MEMBER_TYPES_NEEDING_ACCESS_CHECK): New template accessor
3422         macro.
3423         (append_type_to_template_for_access_check): New entry points.
3424         * semantics.c (check_accessibility_of_qualified_id):
3425         When a typedef that is a member of a class appears in a template,
3426         add it to the template. It will be ...
3427         * pt.c (instantiate_class_template, instantiate_template ): ... access
3428         checked at template instantiation time.
3429         (tsubst): Handle the case of being called with NULL args.
3430         (resolve_type_name_type): The type name should be the name of the
3431         main type variant.
3432         (append_type_to_template_for_access_check): New entry point.
3433
3434 2009-01-19  Jason Merrill  <jason@redhat.com>
3435
3436         PR c++/23287
3437         * parser.c (cp_parser_unqualified_id): In a template,
3438         accept ~identifier.
3439         * typeck.c (lookup_destructor): Handle IDENTIFIER_NODE.
3440
3441 2009-01-16  Jason Merrill  <jason@redhat.com>
3442
3443         PR c++/38877
3444         * tree.c (lvalue_p_1): Allow non-fields in COMPONENT_REF.
3445         * init.c (build_new): Don't call describable_type unless we
3446         have an auto.
3447
3448         PR c++/29470
3449         * pt.c (tsubst_decl) [USING_DECL]: Propagate access flags.
3450
3451         PR c++/38579
3452         * search.c (protected_accessible_p): N doesn't vary.
3453
3454 2009-01-15  Jason Merrill  <jason@redhat.com>
3455
3456         PR c++/38850
3457         * pt.c (tsubst_copy_and_build): Tell finish_call_expr to
3458         accept hidden friends.
3459
3460 2009-01-15  Andrew Pinski  <andrew_pinski@playstation.sony.com>
3461
3462         PR C++/29388
3463         * decl.c (grokdeclarator): Check for a non namespace/class context.
3464
3465 2009-01-15  Jason Merrill  <jason@redhat.com>
3466
3467         PR c++/36334
3468         PR c++/37646
3469         * tree.c (lvalue_p_1): Handle BASELINK.  A COMPONENT_REF to
3470         a function isn't necessarily an lvalue. Take tree, not const_tree.
3471         (lvalue_p, real_lvalue_p): Take tree, not const_tree.
3472         * typeck.c (lvalue_or_else): Likewise.
3473         * cp-tree.h: Adjust prototypes.
3474
3475 2009-01-15  Steve Ellcey  <sje@cup.hp.com>
3476
3477         PR c++/38357
3478         * pt.c (tsubst): Check for NULL args.
3479
3480 2009-01-15  Dodji Seketeli  <dodji@redhat.com>
3481
3482         PR c++/38636
3483         * name-lookup.c (pushtag): Don't create members to types that are not
3484         being created.
3485
3486 2009-01-14  Nick Clifton  <nickc@redhat.com>
3487
3488         PR c++/37862
3489         * parser.c: Pass cp_id_kind computed in
3490         cp_parser_postfix_dot_deref_expression to
3491         cp_parser_primary_expression.
3492
3493 2009-01-13  Jakub Jelinek  <jakub@redhat.com>
3494
3495         PR c++/38795
3496         * tree.c (cp_walk_subtrees): Handle REINTERPRET_CAST_EXPR,
3497         STATIC_CAST_EXPR, CONST_CAST_EXPR and DYNAMIC_CAST_EXPR the same
3498         as CAST_EXPR.
3499
3500 2009-01-12  Jason Merrill  <jason@redhat.com>
3501             Steve Ellcey  <sje@cup.hp.com>
3502
3503         PR c++/35109
3504         * name-lookup.c (lookup_name_real): Keep looking past a hidden 
3505         binding.
3506
3507 2009-01-12  Dodji Seketeli  <dodji@redhat.com>
3508
3509         PR c++/36019
3510         * pt.c (parameter_of_template_p): New function.
3511         * cp-tree.h: Declare it.
3512         * name-lookup.c (binding_to_template_parms_of_scope_p): New
3513         function.
3514         (outer_binding): Take template parameters in account when looking for
3515         a name binding.
3516
3517 2009-01-12  Jason Merrill  <jason@redhat.com>
3518
3519         PR c++/31488
3520         * tree.c (pod_type_p): Return 1 for structs created by the back end.
3521
3522 2009-01-12  Jakub Jelinek  <jakub@redhat.com>
3523
3524         PR c/32041
3525         * parser.c (cp_parser_builtin_offsetof): Allow `->' in
3526         offsetof member-designator, handle it as `[0].'.
3527
3528         PR c++/38794
3529         * decl.c (start_function): If grokdeclarator hasn't returned
3530         FUNCTION_DECL nor error_mark_node, issue diagnostics.
3531
3532 2009-01-11  Jakub Jelinek  <jakub@redhat.com>
3533
3534         PR c++/36254
3535         * cp-gimplify.c (genericize_if_stmt): Renamed from ...
3536         (gimplify_if_stmt): ... this.
3537         (cp_gimplify_expr): Don't handle IF_STMT here.
3538         (cp_genericize_r): Call genericize_if_stmt for IF_STMT.
3539
3540 2009-01-10  Andrew Pinski  <pinskia@gmail.com>
3541
3542         PR c++/38648
3543         * typeck.c (cp_build_modify_expr): Check for NULL current_function_decl.
3544
3545         PR c++/36695
3546         * typeck2.c (build_functional_cast): Check for reference type and NULL
3547         PARMS.
3548
3549 2009-01-09  Steve Ellcey  <sje@cup.hp.com>
3550
3551         * typeck.c (cp_build_unary_op): Check for ERROR_MARK.
3552
3553 2009-01-09  Jakub Jelinek  <jakub@redhat.com>
3554
3555         PR c++/35335
3556         * error.c (dump_expr): Handle EXPR_STMT like BIND_EXPR.
3557
3558 2009-01-09  John F. Carr  <jfc@mit.edu>
3559
3560         PR c++/37877
3561         * parser.c (cp_parser_class_specifier): Clear
3562         parser->in_unbraced_linkage_specification_p while parsing class
3563         specifiers.
3564
3565 2009-01-07  Jakub Jelinek  <jakub@redhat.com>
3566
3567         PR c++/38725
3568         * semantics.c (finish_goto_stmt): Convert destination to
3569         void *.
3570
3571 2009-01-06  Jason Merrill  <jason@redhat.com>
3572
3573         PR c++/35297
3574         PR c++/35477
3575         PR c++/35784
3576         PR c++/36846
3577         PR c++/38276
3578         * pt.c (check_default_tmpl_args): Don't complain about
3579         out-of-order parameter packs in the enclosing class
3580         or parameter packs after default args.
3581         (coerce_template_parms): If we have more than one
3582         parameter pack, don't flatten argument packs.
3583         (template_args_equal): Handle argument packs.
3584         (comp_template_args): Don't flatten argument packs.
3585         (check_instantiated_arg): Split out from...
3586         (check_instantiated_args): Here.  Handle arg packs.
3587         (convert_template_argument): Just check that nontype argument
3588         packs have the right type.
3589
3590 2009-01-05  Dodji Seketeli  <dodji@redhat.com>
3591
3592         PR c++/38472
3593         * typeck.c (type_after_usual_arithmetic_conversions): Fix a typo.
3594
3595 2009-01-05  Jason Merrill  <jason@redhat.com>
3596
3597         PR c++/38698
3598         * typeck2.c (process_init_constructor_union): Handle union with
3599         no fields.
3600
3601         * mangle.c (write_expression): Remove mangling for zero-operand
3602         casts.
3603
3604         PR c++/38701
3605         * decl.c (cp_finish_decl): Clear DECL_INITIAL for invalid
3606         defaulting.
3607
3608         PR c++/38702
3609         * class.c (defaultable_fn_p): Only operator== can be a copy
3610         assignment operator.
3611
3612 2009-01-02  Jason Merrill  <jason@redhat.com>
3613
3614         PR c++/38698
3615         * typeck2.c (process_init_constructor_union): Handle excess
3616         initializers.
3617         (process_init_constructor_record): Likewise.
3618
3619         PR c++/38684
3620         * typeck2.c (digest_init_r): Don't use process_init_constructor
3621         for non-aggregate classes.
3622
3623 \f
3624 Copyright (C) 2009 Free Software Foundation, Inc.
3625
3626 Copying and distribution of this file, with or without modification,
3627 are permitted in any medium without royalty provided the copyright
3628 notice and this notice are preserved.