OSDN Git Service

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