OSDN Git Service

PR c++/46058
[pf3gnuchains/gcc-fork.git] / gcc / cp / ChangeLog
1 2010-12-03  Jason Merrill  <jason@redhat.com>
2
3         PR c++/46058
4         * tree.c (lvalue_kind) [SCOPE_REF]: Handle non-dependent case.
5
6 2010-12-03  Richard Guenther  <rguenther@suse.de>
7
8         PR c/46745
9         * error.c (dump_expr): Handle MEM_REF.
10
11 2010-12-03  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
12
13         * cp-tree.h (struct aggr_init_expr_arg_iterator_d): Remove GTY
14         tag.
15
16 2010-12-02  Nicola Pero  <nicola.pero@meta-innovation.com>
17
18         * parser.c (cp_parser_objc_throw_statement): Use
19         cp_parser_expression, not cp_parser_assignment_expression, to
20         parse the argument of a @throw.
21
22 2010-12-01  Joseph Myers  <joseph@codesourcery.com>
23
24         * cp-objcp-common.c, lex.c, typeck.c: Don't include toplev.h.
25         * Make-lang.in (cp/lex.o, cp/cp-objcp-common.o, cp/typeck2.o):
26         Update dependencies.
27
28 2010-11-30  Nicola Pero  <nicola.pero@meta-innovation.com>
29
30         * decl.c (finish_function): Call objc_finish_function when
31         compiling Objective-C++.
32         * call.c (standard_conversion): Do not call
33         objc_non_volatilized_type().
34         (implicit_conversion): Same change.
35         * typeck.c (comp_ptr_ttypes_real): Same change.
36
37 2010-11-30  Joseph Myers  <joseph@codesourcery.com>
38
39         * cp-gimplify.c, cp-lang.c, cvt.c, cxx-pretty-print.c, error.c,
40         except.c, expr.c, friend.c, init.c, mangle.c, name-lookup.c,
41         optimize.c, parser.c, rtti.c, tree.c, typeck2.c: Don't include
42         toplev.h.
43         * Make-lang.in: Dependencies for above files changed to remove
44         toplev.h.
45
46 2010-11-29  Dodji Seketeli  <dodji@redhat.com>
47
48         PR c++/42260
49         * call.c (add_builtin_candidate): At this point the resulting type
50         of an indirection operator should be complete.
51
52 2010-11-29  Dodji Seketeli  <dodji@redhat.com>
53
54         PR c++/45383
55         Reverted patch for PR c++/42260
56         * cp-tree.h (lookup_conversions): Reverted "Add new bool parameter to
57         declarationE."
58         * search.c (lookup_conversion): Reverted "Use new bool parameter in
59         definition".
60         * call.c (add_builtin_candidates): Reverted "Don't lookup template
61         conversion"
62         (convert_class_to_reference, build_user_type_conversion_1,
63          build_op_call): Reverted "Adjust".
64         * cvt.c (build_expr_type_conversion): Reverted "Likewise".
65
66 2010-11-29  Nicola Pero  <nicola.pero@meta-innovation.com>
67
68         * parser.c (cp_parser_objc_try_catch_finally_statement): Parse
69         @catch(...)  and pass NULL_TREE to objc_begin_catch_clause() in
70         that case.  Improved error recovery.  Reorganized code to be
71         almost identical to c_parser_objc_try_catch_finally_statement.
72
73 2010-11-27  Nicola Pero  <nicola.pero@meta-innovation.com>
74
75         PR objc++/46222
76         * decl.c (grokdeclarator): Replaced an assert (for a case that can
77         never happen in C++, but could happen in ObjC++ for invalid code)
78         with a check that prints an error message and returns
79         error_mark_node.
80
81 2010-11-23  Jeffrey Yasskin <jyasskin@google.com>
82
83         PR c++/46527
84         * pt.c (instantiate_decl): Propagate the template's location to
85         its instance.
86
87 2010-11-20  Joseph Myers  <joseph@codesourcery.com>
88
89         * name-lookup.c (handle_namespace_attrs): Don't check
90         HANDLE_PRAGMA_VISIBILITY.
91         * parser.c (cp_parser_namespace_definition): Don't check
92         HANDLE_PRAGMA_VISIBILITY.
93
94 2010-11-20  Nathan Froyd  <froydnj@codesourcery.com>
95
96         PR c++/16189
97         PR c++/36888
98         PR c++/45331
99         * parser.c (cp_lexer_set_token_position): New function.
100         (cp_lexer_previous_token_position): New function.
101         (cp_lexer_previous_token): Call it.
102         (cp_parser_class_specifier): Try to gracefully handle a missing
103         semicolon.
104
105 2010-11-20  Jakub Jelinek  <jakub@redhat.com>
106
107         PR c++/46538
108         * decl.c (cp_make_fname_decl): Return error_mark_node if
109         current_binding_level has already sk_function_parms kind.
110
111         PR c++/46526
112         * semantics.c (cxx_eval_call_expression): Unshare the result.
113
114 2010-11-19  Nicola Pero  <nicola.pero@meta-innovation.com>
115
116         * parser.c (cp_parser_objc_protocol_declaration): Pass attributes
117         to objc_declare_protocols.
118
119 2010-11-18  Nathan Froyd  <froydnj@codesourcery.com>
120
121         PR c/33193
122         * typeck.c (cp_build_unary_op): Call build_real_imag_expr for
123         REALPART_EXPR and IMAGPART_EXPR.
124
125 2010-11-16  Jason Merrill  <jason@redhat.com>
126
127         * call.c (convert_like_real): Don't make a temp for copy-list-init.
128         (build_over_call): Don't handle that here.
129         (build_new_method_call): Use COMPLETE_OR_OPEN_TYPE_P for error.
130
131         PR c++/46497
132         * call.c (build_over_call): Check for =delete even when trivial.
133
134         DR 1004
135         * decl.c (make_unbound_class_template): Handle using
136         injected-type-name as template.
137
138 2010-11-15  Nicola Pero  <nicola.pero@meta-innovation.com>
139
140         * typeck.c (cp_build_unary_op): Use
141         objc_build_incr_expr_for_property_ref to build the pre/post
142         increment/decrement of an Objective-C property ref.
143
144 2010-11-13  Jason Merrill  <jason@redhat.com>
145
146         * decl.c (cp_finish_decl): Use resolve_nondeduced_context for auto.
147         * init.c (build_new): Likewise.
148         * pt.c (tsubst_decl): Likewise.
149         (do_auto_deduction): Likewise.
150         (resolve_nondeduced_context): Use build_offset_ref and
151         cp_build_addr_expr.
152
153 2010-11-12  Joseph Myers  <joseph@codesourcery.com>
154
155         * Make-lang.in (g++spec.o): Use $(OPTS_H).
156
157 2010-11-13  Ville Voutilainen <ville.voutilainen@gmail.com> <ville.voutilainen@symbio.com>
158
159         Core 1135, 1136, 1145, 1149
160         * method.c (defaultable_fn_check): Do not disallow defaulting a
161         non-public or explicit special member function on its first
162         declaration.
163
164 2010-11-12  James Dennett <jdennett@google.com>
165
166         PR/39415
167         * typeck.c (build_static_cast_1): Convert to the target type
168         when doing static_cast<cv Derived*>(Base*).
169
170 2010-11-10  Jason Merrill  <jason@redhat.com>
171
172         PR c++/46420
173         * pt.c (tsubst_copy_and_build) [TARGET_EXPR]: New case.
174         [CONSTRUCTOR]: Use the tsubsted type.
175
176         PR c++/46369
177         * semantics.c (cxx_eval_bit_field_ref): New.
178         (cxx_eval_constant_expression): Call it.
179
180 2010-11-10  Joseph Myers  <joseph@codesourcery.com>
181
182         * cvt.c (cp_convert_to_pointer): Use %' in diagnostic.
183         * decl.c (layout_var_decl, maybe_commonize_var, grokdeclarator):
184         Use %' in diagnostics.
185         * decl2.c (check_classfn): Use %' in diagnostic.
186         * init.c (build_java_class_ref): Use %' in diagnostic.
187         (build_delete): Remove trailing '.' from diagnostic.
188         * method.c (do_build_copy_assign, walk_field_subobs): Use %' in
189         diagnostics.
190         * name-lookup.c (pushdecl_maybe_friend): Use %' in diagnostic.
191         * parser.c (cp_parser_exception_specification_opt): Remove
192         trailing '.' from diagnostic.
193         (cp_parser_objc_interstitial_code): Use %qs for quoting in
194         diagnostic.
195         * pt.c (check_valid_ptrmem_cst_expr): Use %< and %> for quoting in
196         diagnostic.
197         * repo.c (reopen_repo_file_for_write): Use %' in diagnostic.
198
199 2010-11-10  Nathan Froyd  <froydnj@codesourcery.com>
200
201         PR c++/46065
202         * decl.c (poplevel_named_label_1): Use TREE_CHAIN if necessary.
203
204 2010-11-09  Jakub Jelinek  <jakub@redhat.com>
205
206         PR c++/45894
207         * tree.c (lvalue_kind): Don't crash if ref has NULL type.
208
209 2010-11-08  Jason Merrill  <jason@redhat.com>
210
211         PR c++/46382
212         * semantics.c (check_constexpr_ctor_body): New fn.
213         * parser.c (cp_parser_ctor_initializer_opt_and_function_body): Call it.
214         * cp-tree.h: Declare it.
215
216         PR c++/46335
217         * tree.c (bot_manip): Check TREE_SIDE_EFFECTS as well.
218
219         Correct conversion/overflow behavior.
220         * cvt.c (ignore_overflows): Move here from typeck.c.
221         (ocp_convert): Use it.
222         (cp_fold_convert): Use it.  Don't call rvalue.
223         * typeck.c (build_static_cast_1): Don't use it.  Do call rvalue.
224         * error.c (location_of): Handle expressions, too.
225         * class.c (check_bitfield_decl): Set input_location around call to
226         cxx_constant_value.
227         * semantics.c (cxx_eval_outermost_constant_expr): Don't
228         print the expression if it already had TREE_OVERFLOW set.
229         (reduced_constant_expression_p): Check TREE_OVERFLOW_P for C++98, too.
230         (verify_constant): Allow overflow with a permerror if we're
231         enforcing.
232         (cxx_eval_outermost_constant_expr): Use verify_constant.
233         (adjust_temp_type): Use cp_fold_convert.
234         * decl.c (build_enumerator): Don't call constant_expression_warning.
235         * decl2.c (grokbitfield): Likewise.
236
237 2010-11-06  Jason Merrill  <jason@redhat.com>
238
239         PR c++/46348
240         * init.c (perform_member_init): Use build_vec_init_expr for
241         value-init of arrays, too.
242         * cp-gimplify.c (cp_gimplify_expr): Use VEC_INIT_EXPR_VALUE_INIT.
243         * cp-tree.h (VEC_INIT_EXPR_IS_CONSTEXPR): New macro.
244         (VEC_INIT_EXPR_VALUE_INIT): New macro.
245         * semantics.c (potential_constant_expression): No longer static.
246         Check VEC_INIT_EXPR_IS_CONSTEXPR.
247         * tree.c (build_vec_init_expr): Handle value-init.  Set
248         VEC_INIT_EXPR_IS_CONSTEXPR and VEC_INIT_EXPR_VALUE_INIT.
249
250 2010-11-06  Nathan Froyd  <froydnj@codesourcery.com>
251
252         PR c++/45332
253         * parser.c (cp_lexer_previous_token): New function.
254         (cp_parser_member_declaration): Use previous token for error
255         messages.  Assume semicolon presence rather than grovelling for
256         the next one.
257
258 2010-11-06  Joern Rennecke  <amylaar@spamcop.net>
259
260         PR middle-end/46314
261         * method.c (make_alias_for_thunk):
262         Use targetm.asm_out.generate_internal_label.
263
264 2010-11-05  Jason Merrill  <jason@redhat.com>
265
266         PR c++/45473
267         * search.c (look_for_overrides): A constructor is never virtual.
268
269 2010-11-05  Jakub Jelinek  <jakub@redhat.com>
270
271         PR c++/46160
272         * cp-gimplify.c (cp_gimplify_expr): Drop volatile MEM_REFs
273         on the RHS to avoid infinite recursion with gimplify_expr.
274
275 2010-11-05  Jason Merrill  <jason@redhat.com>
276
277         PR c++/46304
278         * pt.c (tsubst_copy): Handle COMPLEX_CST.
279
280 2010-11-04  Nicola Pero  <nicola.pero@meta-innovation.com>
281
282         Fixed using the Objective-C 2.0 dot-syntax with class names.    
283         * parser.c (cp_parser_primary_expression): Recognize Objective-C
284         2.0 dot-syntax with class names and process it.
285         (cp_parser_nonclass_name): Recognize Objective-C 2.0 dot-syntax
286         with class names.
287         (cp_parser_class_name): Same change.
288         (cp_parser_simple_type_specifier): Tidied comments.
289         
290 2010-11-04  Jason Merrill  <jason@redhat.com>
291
292         PR c++/46298
293         * semantics.c (build_constexpr_constructor_member_initializers):
294         Handle an enclosing STATEMENT_LIST.
295
296         * semantics.c (speculative_access_check): New.
297         * cp-tree.h: Declare it.
298         * call.c (build_over_call): Use it.
299         * class.c (type_has_constexpr_default_constructor): Use locate_ctor.
300         * method.c (locate_ctor): Use push/pop_deferring_access_checks.
301
302 2010-11-03  Jason Merrill  <jason@redhat.com>
303
304         PR c++/46293
305         * semantics.c (build_data_member_initialization): Handle
306         value-init of aggregate empty base.
307
308         PR c++/46289
309         * call.c (can_convert_array): New fn.
310         (build_aggr_conv): Use it.
311
312         PR c++/46289
313         * semantics.c (build_constexpr_constructor_member_initializers):
314         Avoid ICE on error.
315
316 2010-11-02  Dodji Seketeli  <dodji@redhat.com>
317
318         * cp-tree.h (enum tsubst_flags)<tf_no_class_instantiations>:
319         Remove.
320         * pt.c (tsubst): Remove the use of tf_no_class_instantiations.
321
322 2010-11-03  Jason Merrill  <jason@redhat.com>
323
324         PR c++/46277
325         * init.c (expand_default_init): Avoid ICE if we can't figure out
326         which function is being called.
327
328 2010-11-02  Nathan Froyd  <froydnj@codesourcery.com>
329
330         * class.c (build_base_path, add_vcall_offset): Use build_zero_cst
331         instead of fold_convert.
332         * init.c (build_zero_init): Likewise.
333         * typeck.c (cp_build_binary_op): Likewise.
334
335 2010-11-02  Dodji Seketeli  <dodji@redhat.com>
336
337         PR c++/46170
338         PR c++/46162
339         * pt.c (check_valid_ptrmem_cst_expr): Add a complain parameter to
340          control diagnostic.
341         (convert_nontype_argument, convert_nontype_argument): Pass the
342         complain parameter down to check_valid_ptrmem_cst_expr.
343
344 2010-11-02  Dodji Seketeli  <dodji@redhat.com>
345
346         PR c++/45606
347         * cp-tree.h (TEMPLATE_TYPE_PARM_SIBLING_PARMS): Remove.
348         (struct template_parm_index_s)<num_siblings>: New field.
349         (TEMPLATE_PARM_NUM_SIBLINGS): New accessor.
350         (process_template_parm): Extend the API to accept the number of
351         template parms in argument.
352         (cp_set_underlying_type): Remove this.
353         * class.c (build_self_reference): Require canonical type equality
354         back on the self reference of class.
355         * decl2.c (grokfield): Require canonical type equality back on
356         typedef class fields.
357         * name-lookup.c (pushdecl_maybe_friend): Require canonical type
358         equality back on typedefs.
359         * parser.c (cp_parser_template_parameter_list): Do not require
360         canonical type equality on dependent types created during template
361         parameters parsing.
362         * pt.c (fixup_template_type_parm_type, fixup_template_parm_index)
363         (fixup_template_parm, fixup_template_parms): New private
364         functions.
365         (current_template_args): Declare this.
366         (process_template_parm): Pass the total number of template parms
367         to canonical_type_parameter.
368         (build_template_parm_index): Add a new argument to carry the total
369         number of template parms.
370         (reduce_template_parm_level, process_template_parm, make_auto):
371         Adjust.
372         (current_template_args): Fix this for template template
373         parameters.
374         (tsubst_template_parm): Split out of ...
375         (tsubst_template_parms): ... this.
376         (reduce_template_parm_level): Don't loose
377         TEMPLATE_PARM_NUM_SIBLINGS when cloning a TEMPLATE_PARM_INDEX.
378         (template_parm_to_arg): Extracted this function from
379         current_template_args. Make it represent invalid template parms
380         with an error_mark_node instead of a LIST_TREE containing an
381         error_mark_node.
382         (current_template_args): Use template_parm_to_arg.
383         (dependent_template_arg_p): Consider an invalid template argument
384         as dependent.
385         (end_template_parm_list): Do not update template sibling parms
386         here anymore. Use fixup_template_parms instead.
387         (process_template_parm): Pass the number of template parms to
388         canonical_type_parameter.
389         (make_auto): Require structural equality on auto
390         TEMPLATE_TYPE_PARM for now.
391         (unify)<BOUND_TEMPLATE_TEMPLATE_PARM>: Coerce template parameters
392         using all the arguments deduced so far.
393         (tsubst)<TEMPLATE_TYPE_PARM>: Pass the number of sibling parms to
394         canonical_type_parameter.
395         * tree.c (cp_set_underlying_type): Remove.
396         * typeck.c (get_template_parms_of_dependent_type)
397         (incompatible_dependent_types_p): Remove.
398         (structural_comptypes): Do not call incompatible_dependent_types_p
399         anymore.
400         (comp_template_parms_position): Re-organized. Take the length of
401         template parms list in account.
402
403 2010-11-01  Jason Merrill  <jason@redhat.com>
404
405         * semantics.c (call_stack, call_stack_tick, cx_error_context): New.
406         (last_cx_error_tick, push_cx_call_context, pop_cx_call_context): New.
407         (cxx_eval_call_expression): Call push/pop_cx_call_context instead
408         of giving follow-on errors.
409         * error.c (maybe_print_constexpr_context): New.
410         (cp_diagnostic_starter): Call it.
411         * cp-tree.h: Declare cx_error_context.
412
413         * semantics.c (cxx_eval_constant_expression): Explain
414         unacceptable use of variable better.
415
416 2010-11-01  Gabriel Dos Reis  <gdr@cse.tamu.edu>
417             Jason Merrill  <jason@redhat.com>
418
419         * call.c (null_ptr_cst_p): Use maybe_constant_value.
420         (set_up_extended_ref_temp): Support constant initialization.
421         (initialize_reference): Adjust.
422         * class.c (check_bitfield_decl): Use cxx_constant_value.
423         * cvt.c (ocp_convert): Don't use integral_constant_value when
424         converting to class type.
425         * decl.c (finish_case_label): Use maybe_constant_value.
426         (build_init_list_var_init): Support constant initialization.
427         (check_initializer): Likewise.  Reorganize.
428         (cp_finish_decl): Likewise.
429         (expand_static_init): Likewise.
430         (compute_array_index_type): Use maybe_constant_value.
431         Add complain parm.
432         (create_array_type_for_decl, grokdeclarator): Pass it.
433         (build_enumerator): Use cxx_constant_value.
434         * decl2.c (grokfield): Use maybe_constant_init.
435         * except.c (check_noexcept_r): Handle constexpr.
436         (build_noexcept_spec): Use maybe_constant_value.
437         * init.c (expand_default_init): Support constant initialization.
438         (build_vec_init): Likewise.
439         (constant_value_1): Adjust.
440         (build_new_1): Adjust.
441         * parser.c (cp_parser_constant_expression): Allow non-integral
442         in C++0x mode.
443         (cp_parser_direct_declarator): Don't fold yet in C++0x mode.
444         (cp_parser_initializer_clause): Toss folded result if non-constant.
445         * pt.c (fold_decl_constant_value): Remove.
446         (convert_nontype_argument): Use maybe_constant_value.  Give clearer
447         error about overflow.
448         (tsubst): Move array bounds handling into compute_array_index_type.
449         (value_dependent_expression_p): Handle constant CALL_EXPR.
450         (tsubst_decl): Don't set
451         DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P yet.
452         (tsubst_expr) [DECL_EXPR]: Pass it into cp_finish_decl.
453         (instantiate_decl): Here too.
454         * semantics.c (finish_static_assert): Use maybe_constant_value.
455         (ensure_literal_type_for_constexpr_object): Make sure type is complete.
456         (potential_constant_expression): Use maybe_constant_value.
457         * tree.c (cast_valid_in_integral_constant_expression_p): Any cast
458         is potentially valid in C++0x.
459         * typeck2.c (store_init_value): Handle constant init.
460         (check_narrowing): Use maybe_constant_value.
461         (build_functional_cast): Set TREE_CONSTANT on literal T().
462         * cp-tree.h (DECL_INTEGRAL_CONSTANT_VAR_P): Remove.
463         (LOOKUP_ALREADY_DIGESTED): New.
464         (compute_array_index_type): Adjust prototype.
465
466         * semantics.c (constexpr_call): New datatype.
467         (constexpr_call_table): New global table.
468         (constexpr_call_hash): New.
469         (constexpr_call_equal): Likewise.
470         (maybe_initialize_constexpr_call_table): Likewise.
471         (lookup_parameter_binding): Likewise.
472         (cxx_eval_builtin_function_call): Likewise.
473         (cxx_bind_parameters_in_call): Likewise.
474         (cxx_eval_call_expression): Likewise.
475         (cxx_eval_unary_expression): Likewise.
476         (cxx_eval_binary_expression): Likewise.
477         (cxx_eval_conditional_expression): Likewise.
478         (cxx_eval_array_reference): Likewise.
479         (cxx_eval_component_reference): Likewise.
480         (cxx_eval_logical_expression): Likewise.
481         (cxx_eval_object_construction): Likewise.
482         (cxx_eval_constant_expression): Likewise.
483         (cxx_eval_indirect_ref): Likewise.
484         (cxx_constant_value): Likewise.
485         (cxx_eval_bare_aggregate): Likewise.
486         (adjust_temp_type): New.
487         (reduced_constant_expression_p): New.
488         (verify_constant): New.
489         (cxx_eval_vec_init, cxx_eval_vec_init_1): New.
490         (cxx_eval_outermost_constant_expr): New.
491         (maybe_constant_value, maybe_constant_init): New.
492         (cxx_eval_constant_expression): Use them.
493         * pt.c (iterative_hash_template_arg): No longer static.
494         * cp-tree.h: Declare fns.
495
496         * cp-tree.h (register_constexpr_fundef): Declare.
497         * decl.c (maybe_save_function_definition): New.
498         (finish_function): Use it.
499         * semantics.c (constexpr_fundef): New datatype.
500         (constexpr_fundef_table): New global table.
501         (constexpr_fundef_equal): New.
502         (constexpr_fundef_hash): Likewise.
503         (retrieve_constexpr_fundef): Likewise.
504         (validate_constexpr_fundecl): Store in the table.
505         (build_data_member_initialization): New fn.
506         (build_constexpr_constructor_member_initializers): New.
507         (register_constexpr_fundef): Define.
508         (is_this_parameter): New.
509         (get_function_named_in_call): Likewise.
510         (get_nth_callarg): Likewise.
511         (check_automatic_or_tls): New.
512         (morally_constexpr_builtin_function_p): New.
513         (potential_constant_expression): New.
514
515 2010-11-01  Jason Merrill  <jason@redhat.com>
516
517         * decl2.c (decl_constant_var_p): New fn.
518         (decl_maybe_constant_var_p): New fn.
519         (mark_used): Rework instantiation of things needed for constant
520         expressions.
521         * cp-tree.h: Declare new fns.
522         * pt.c (instantiate_decl): Handle cp_unevaluated_operand.
523         (always_instantiate_p): Use decl_maybe_constant_var_p.
524         (instantiate_decl): Don't defer constexpr functions.
525         * repo.c (repo_emit_p): Use decl_maybe_constant_var_p.
526         * semantics.c (finish_id_expression): Use decl_constant_var_p.
527         Check for valid name in constant expr after mark_used.
528
529 2010-10-31  Jason Merrill  <jason@redhat.com>
530
531         * class.c (is_really_empty_class): Work when type is not complete.
532         (synthesized_default_constructor_is_constexpr): New.
533         (add_implicitly_declared_members): Use it.
534         (type_has_constexpr_default_constructor): Likewise.
535         * cp-tree.h: Declare it.
536         * method.c (synthesized_method_walk): Use it.
537
538         * decl.c (pop_switch): Use EXPR_LOC_OR_HERE.
539         * typeck.c (convert_for_assignment): Likewise.
540
541         * parser.c (cp_parser_diagnose_invalid_type_name): Give helpful
542         message about constexpr without -std=c++0x.
543
544         * decl.c (grokdeclarator): Don't ICE on constexpr non-static data
545         member.
546
547 2010-10-30  Nathan Froyd  <froydnj@codesourcery.com>
548
549         * class.c (layout_vtable_decl): Call build_array_of_n_type.
550         (build_vtt, build_ctor_vtabl_group): Likewise.
551
552 2010-10-30  Nicola Pero  <nicola.pero@meta-innovation.com>
553
554         Implemented Objective-C 2.0 @property, @synthesize and @dynamic.
555         * parser.c (cp_parser_objc_at_property_declaration): Removed
556         parsing of RID_COPIES and RID_IVAR.  Updated call to
557         objc_add_property_declaration.
558         * typecheck.c (finish_class_member_access_expr): Call
559         objc_maybe_build_component_ref instead of objc_build_setter_call.
560         (cp_build_modify_expr): Call objc_maybe_build_modify_expr instead
561         of objc_build_getter_call.
562
563 2010-10-27  Jason Merrill  <jason@redhat.com>
564
565         * cp-tree.h (cp_trait_kind): Add CPTK_IS_LITERAL_TYPE.
566         * cxx-pretty-print.c (pp_cxx_trait_expression): Handle it.
567         * semantics.c (trait_expr_value, finish_trait_expr): Likewise.
568         * parser.c (cp_parser_primary_expression): Handle RID_IS_LITERAL_TYPE.
569         (cp_parser_trait_expr): Likewise.
570
571 2010-10-27  Gabriel Dos Reis  <gdr@cse.tamu.edu>
572             Jason Merrill  <jason@redhat.com>
573
574         * decl.c (finish_case_label): Use decl_constant_value.
575
576         * method.c (synthesized_method_walk): Track constexprness too.
577         (process_subob_fn, walk_field_subobs): Likewise.
578         (implicitly_declare_fn): Set DECL_DECLARED_CONSTEXPR_P.
579         (defaulted_late_check): Handle DECL_DECLARED_CONSTEXPR_P.
580         * class.c (add_implicitly_declared_members): Handle
581         constexpr default ctor.
582
583         * parser.c (cp_parser_ctor_initializer_opt_and_function_body):
584         Make sure a constexpr ctor has an empty body.
585         * class.c (type_has_constexpr_default_constructor): New.
586         * cp-tree.h: Declare it.
587         * init.c (perform_member_init): Complain about uninitialized
588         member in constexpr ctor.
589         (emit_mem_initializers): And uninitialized base.
590         * decl.c (check_tag_decl): Fix typo.
591
592         * semantics.c (valid_type_in_constexpr_fundecl_p): New fn.
593         (is_valid_constexpr_fn): New fn.
594         (validate_constexpr_fundecl): Use it.
595         * decl.c (validate_constexpr_redeclaration): New.
596         (duplicate_decls): Use it.
597         (cp_finish_decl): Call validate_constexpr_fundecl and
598         ensure_literal_type_for_constexpr_object here.
599         (start_decl): Not here.  Don't ICE on constexpr reference.
600         (check_for_uninitialized_const_var): Don't handle constexpr specially.
601         (grokfndecl): Set DECL_DECLARED_CONSTEXPR_P.
602         (check_static_variable_definition): Give friendly message about
603         missing constexpr.
604         (grokdeclarator): Complain about typedef and volatile with constexpr.
605         Reorganize.  Give sorry about non-static data members in C++0x mode.
606         (start_preparsed_function): Check validate_constexpr_fundecl here.
607         (check_function_type): Not here.
608         * decl2.c (finish_static_data_member_decl): Don't complain about
609         in-class init.
610         * parser.c (CP_PARSER_FLAGS_ONLY_TYPE_OR_CONSTEXPR): New.
611         (cp_parser_condition): Pass it to cp_parser_decl_specifier_seq.
612         (cp_parser_decl_specifier_seq): Handle it.
613         (cp_parser_explicit_instantiation): Diagnose inline and constexpr.
614
615         * class.c (check_bases): Propagate non-literality.
616         (check_field_decls): Likewise.
617         (finalize_literal_type_property): New.
618         (check_bases_and_members): Call it.
619         * cp-tree.h (TYPE_HAS_CONSTEXPR_CTOR): New.
620         (lang_type_class): Add has_constexpr_ctor field.
621         (DECL_DECLARED_CONSTEXPR_P): Strip template.
622         * decl.c (grok_special_member_properties): Set
623         TYPE_HAS_CONSTEXPR_CTOR.
624
625 2010-10-27  Jason Merrill  <jason@redhat.com>
626
627         * call.c (build_integral_nontype_arg_conv): New.
628         * cp-tree.h: Declare it.
629         * pt.c (convert_nontype_argument): Use it.
630
631         * error.c (dump_simple_decl): Print constexpr.
632
633         * cvt.c (build_up_reference): Use target_type for the temporary var.
634
635         * except.c (build_throw): Set EXPR_LOCATION.
636
637         * tree.c (build_cplus_new): Handle CONSTRUCTOR.
638
639         * semantics.c (finish_compound_stmt): Avoid creating an
640         unnecessary BIND_EXPR.
641
642         * call.c (convert_like_real): Don't check narrowing if the element
643         is also an initializer-list.
644
645 2010-10-27  Nicola Pero  <nicola.pero@meta-innovation.com>
646
647         * parser.c (cp_parser_objc_at_property_declaration): Recognize
648         RID_ASSIGN, RID_COPY, RID_RETAIN, RID_READWRITE and RID_NONATOMIC.
649         Do not use objc_set_property_attr, but use local variables
650         instead.  Detect repeated usage of setter, getter and ivar
651         attributes.  Improved error processing when a setter name does not
652         end in ':'.  Do not check for CPP_CLOSE_PAREN after we determined
653         that the token is a keyword.  Updated call to
654         objc_add_property_declaration.
655
656 2010-10-27  Nicola Pero  <nicola.pero@meta-innovation.com>
657
658         * parser.c (cp_parser_objc_property_decl): Renamed to
659         cp_parser_objc_struct_declaration.  Return the parsed trees
660         instead of calling objc_add_property_variable directly.  Detect
661         missing or invalid declspecs.  Implemented attributes.  Do not eat
662         the ';' at the end.  Exit loop whenever a non-comma is parsed, not
663         just EOF.
664         (cp_parser_objc_at_property): Renamed to
665         cp_parser_objc_at_property_declaration.  Updated calls to
666         objc_add_property_variable, now objc_add_property_declaration, and
667         to cp_parser_objc_property_decl, now
668         cp_parser_objc_struct_declaration.  Rewritten all code to be more
669         robust in dealing with syntax errors, and almost identical to the
670         one in c_parser_objc_at_property_declaration.
671         (cp_parser_objc_property_attrlist): Removed.
672         (cp_parser_objc_method_prototype_list): Updated call to
673         cp_parser_objc_at_property.
674         (cp_parser_objc_method_definition_list): Same change.
675         (cp_parser_objc_class_ivars): Detect a number of invalid
676         declarations of instance variables and produce errors when they
677         are found.
678         
679 2010-10-26  Jason Merrill  <jason@redhat.com>
680
681         * tree.c (build_vec_init_expr): Split out from...
682         (build_array_copy): ...here.
683         * init.c (perform_member_init): Use it.
684         * cp-tree.h: Declare it.
685         * cp-gimplify.c (cp_gimplify_init_expr): Don't gimplify the slot for
686         VEC_INIT_EXPR and AGGR_INIT_EXPR here.  Drop pre/post parameters.
687         (cp_gimplify_expr): Handle array default-initialization via
688         VEC_INIT_EXPR.
689
690         * tree.c (stabilize_expr): Handle xvalues properly.
691
692         * call.c (build_over_call): Use argarray[0] for 'this' argument.
693
694         * decl.c (finish_function): Don't look at function_depth.
695
696 2010-10-25  Rodrigo Rivas Costa <rodrigorivascosta@gmail.com>
697
698         Implement opaque-enum-specifiers for C++0x.
699         * cp-tree.h (SET_OPAQUE_ENUM_P): New.
700         (OPAQUE_ENUM_P): New.
701         (ENUM_FIXED_UNDERLYING_TYPE_P): New.
702         (start_enum): Update prototype.
703         (finish_enum_value_list): New prototype.
704         * parser.c (cp_parser_elaborated_type_specifier): Issue a pedwarn if
705         "enum class" is used in an elaborated-type-specifier.
706         (cp_parser_enum_specifier): Rewrite to parse opaque-enum-specifiers.
707         * decl.c (copy_type_enum): New.
708         (finish_enum_value_list): New, with code from finish_enum.
709         (finish_enum): A lot of code removed. Added a gcc_assert.
710         (start_enum): Add parameters enumtype and is_new.
711         Rewrite to work with opaque-enum-specifiers.
712         * pt.c (maybe_process_partial_specialization): Allow for template
713         specialization of enumerations, with a pedwarn.
714         (lookup_template_class): Update call to start_enum. Call to
715         SET_OPAQUE_ENUM_P.
716         (tsubst_enum): Call to begin_scope, finish_scope and
717         finish_enum_value_list.
718
719 2010-10-24  Nicola Pero  <nicola.pero@meta-innovation.com>
720
721         Removed Objective-C++ specific replacement of cxx_printable_name.
722         * cp-objcp-common.h: Added LANG_HOOKS_DECL_PRINTABLE_NAME, set
723         to cxx_printable_name for both C++ and Objective-C++.
724         * cp-lang.h: Removed LANG_HOOKS_DECL_PRINTABLE_NAME.
725
726         * error.c (dump_decl): For Objective-C++, call
727         objc_maybe_printable_name here ...
728         * tree.c (cxx_printable_name_internal): ... instead of here.
729         
730 2010-10-23  Nicola Pero  <nicola.pero@meta-innovation.com>
731
732         * tree.c (cxx_printable_name_internal): In Objective-C++, call
733         objc_maybe_printable_name.
734
735 2010-10-22  Jason Merrill  <jason@redhat.com>
736
737         PR c++/46129
738         * pt.c (instantiate_class_template): Don't instantiate default
739         arguments.
740
741         PR c++/46103
742         * init.c (build_vec_init): Handle memberwise move.
743
744 2010-10-21  Paolo Carlini  <paolo.carlini@oracle.com>
745
746         PR c++/46117
747         * call.c (add_function_candidate): Don't use TREE_VALUE on null
748         parmnode.
749
750 2010-10-20  Nicola Pero  <nicola.pero@meta-innovation.com>
751
752         * parser.c (cp_parser_objc_method_type): Mark inline.  Return a
753         bool instead of calling objc_set_method_type.
754         (cp_parser_objc_method_signature): Updated calls to
755         cp_parser_objc_method_type and to objc_build_method_signature.
756         (cp_parser_objc_method_prototype_list): Updated calls to
757         objc_add_method_declaration.  Use token->type to determine if it
758         is a class method or not.
759         (cp_parser_objc_method_definition_list): Same change.
760
761 2010-10-20  Rodrigo Rivas Costa <rodrigorivascosta@gmail.com>
762
763         PR c++/46056
764         * parser.c (cp_convert_range_for): Call cp_finish_decl
765         instead of finish_expr_stmt.
766
767 2010-10-20  Nicola Pero  <nicola.pero@meta-innovation.com>
768
769         * cp-lang.c (finish_file): Removed.
770         * decl2.c (cp_write_global_declarations): Call
771         objc_write_global_declarations when compiling Objective-C++.
772
773 2010-10-19  Paolo Carlini  <paolo.carlini@oracle.com>
774
775         PR c++/46046
776         * pt.c (add_to_template_args): Check extra_args for error_mark_node.
777         (coerce_template_parms): Likewise for args.
778
779 2010-10-18  Nicola Pero  <nicola.pero@meta-innovation.com>
780
781         Implemented parsing @synthesize and @dynamic for Objective-C++.
782         * parser.c (cp_parser_objc_method_definition_list): Recognize
783         RID_AT_SYNTHESIZE and RID_AT_DYNAMIC.
784         (cp_parser_objc_at_dynamic_declaration): New.
785         (cp_parser_objc_at_synthesize_declaration): New.
786
787 2010-10-18  Nicola Pero  <nicola.pero@meta-innovation.com>
788
789         * parser.c (cp_parser_objc_identifier_list): Check the return
790         value of cp_parser_identifier and react if it is error_mark_node.
791
792 2010-10-18  Nicola Pero  <nicola.pero@meta-innovation.com>
793
794         Merge from apple/trunk branch on FSF servers.
795
796         2005-03-01 Fariborz Jahanian <fjahanian@apple.com>
797
798         Radar 4451818
799         * call.c (standard_conversion, implicit_conversion): Ignore
800         'volatile' attribute of artificially volatized type in objc when
801         evaluating various conversion weights.
802
803         2005-11-08  Fariborz Jahanian <fjahanian@apple.com>
804
805         Radar 4330422
806         * typeck.c (comp_ptr_ttypes_real): Remove the hack. un-volatize the
807         artiificially 'volatized' type before doing pointer comparison.
808
809 2010-10-18  Jakub Jelinek  <jakub@redhat.com>
810
811         PR c/46015
812         * semantics.c (finish_goto_stmt): Call mark_rvalue_use on computed
813         goto destination.
814
815 2010-10-17  Nicola Pero  <nicola.pero@meta-innovation.com>
816
817         Merge from apple/trunk branch on FSF servers.
818
819         2006-04-19 Fariborz Jahanian <fjahanian@apple.com>
820
821         Radar 4516785
822         * parser.c (cp_parser_simple_type_specifier): Don't lookup for
823         objc object types if type is scope qualified.
824
825 2010-10-17  Nicola Pero  <nicola.pero@meta-innovation.com>
826
827         Merge from apple/trunk branch on FSF servers.
828
829         2006-03-27 Fariborz Jahanian <fjahanian@apple.com>
830
831         Radar 4133425
832         * lex.c (unqualified_name_lookup_error): Issue diagnostic
833         for private 'ivar' access.
834
835 2010-10-17  Iain Sandoe  <iains@gcc.gnu.org>
836
837         * parser.c (cp_parser_objc_visibility_spec): Update to use visibility
838         enum, and handle @package.
839
840 2010-10-15  Jason Merrill  <jason@redhat.com>
841
842         PR c++/45983
843         * tree.c (cp_build_qualified_type_real): Don't reuse a variant
844         with a different typedef variant of the element type.
845
846 2010-10-14  Iain Sandoe  <iains@gcc.gnu.org>
847
848         merge from FSF apple 'trunk' branch.
849         2006 Fariborz Jahanian <fjahanian@apple.com>
850
851         Radars 4436866, 4505126, 4506903, 4517826
852         * typeck.c (finish_class_member_access_expr): Handle CLASS.property
853         syntax.
854         (cp_build_modify_expr): Likewise.
855         * parser.c (cp_parser_objc_method_prototype_list): Handle @property.
856         (cp_parser_objc_method_definition_list): Likewise.
857         (cp_parser_objc_property_decl): New.
858         (cp_parser_objc_property_attrlist): New.
859         (cp_parser_objc_at_property): New.
860
861 2010-10-14  Richard Guenther  <rguenther@suse.de>
862
863         PR lto/44561
864         * cp-tree.h (NULLPTR_TYPE_P): Adjust.
865         * decl.c (cxx_init_decl_processing): Build a NULLPTR_TYPE node,
866         use build_int_cst.
867         * error.c (dump_type): Handle NULLPTR_TYPE.
868         (dump_type_prefix): Likewise.
869         (dump_type_suffix): Likewise.
870         * mangle.c (write_type): Likewise.
871         * name-lookup.c (arg_assoc_type): Likewise.
872         * rtti.c (typeinfo_in_lib_p): Likewise.
873         * pt.c (tsubst): Likewise.
874
875 2010-10-13  Jason Merrill  <jason@redhat.com>
876
877         PR c++/45984
878         * class.c (fixup_attribute_variants): New fn.
879         * cp-tree.h: Declare it.
880         * pt.c (instantiate_class_template): Call it.
881         * semantics.c (begin_class_definition): Call it.
882
883 2010-10-13  Richard Henderson  <rth@redhat.com>
884
885         * cp-lang.c (cp_eh_personality): Update call to
886         build_personality_function.
887         * except.c (choose_personality_routine): Update function comment.
888
889 2010-10-13  Richard Guenther  <rguenther@suse.de>
890
891         * tree.c (cp_free_lang_data): Free DECL_NAMESPACE_USERS and
892         clear DECL_CHAIN of NAMESPACE_DECLs.
893
894 2010-10-11  Martin Jambor  <mjambor@suse.cz>
895
896         PR c++/45562
897         * cp-tree.h (current_class_ref): Check that cp_function_chain is
898         non-NULL.
899         * call.c (build_cxx_call): Likewise.
900
901 2010-10-10  Jason Merrill  <jason@redhat.com>
902
903         * pt.c (tsubst_default_argument): Handle DEFAULT_ARG.
904         (tsubst_default_arguments): Only do this once for cloned fns.
905         (tsubst): Use typedef_variant_p.  Handle LANG_TYPE.  Don't
906         handle expressions.
907         (tsubst_expr): Avoid calling tsubst_expr for non-expressions.
908         (tsubst_copy_and_build): Likewise.
909         (tsubst_initializer_list): Likewise.
910         (tsubst_copy): Change default to gcc_unreachable.  Handle
911         OVERLOAD and PTRMEM_CST.
912
913 2010-10-10  Jason Merrill  <jason@redhat.com>
914
915         PR lto/45959
916         PR lto/45960
917         * pt.c (tsubst_copy) [INTEGER_CST]: Instantiate the type.
918
919 2010-10-07  Andi Kleen  <ak@linux.intel.com>
920
921         * Make-lang.in (c++_OBJS): Remove dummy-checksum.o.
922         (cc1plus-dummy): Remove.
923         (cc1plus-checksum): Change to run checksum over object files
924         and options only.
925
926 2010-10-08  Joseph Myers  <joseph@codesourcery.com>
927
928         * cp-objcp-common.h (LANG_HOOKS_INIT_OPTIONS_STRUCT): Define.
929
930 2010-10-07  Nicola Pero  <nicola.pero@meta-innovation.com>
931
932         * cp-tree.def: Changed type of AT_ENCODE_EXPR from tcc_unary to
933         tcc_expression.
934         * cxx-pretty-print.c (pp_cxx_unary_expression): Added case for
935         AT_ENCODE_EXPR.
936         * error.c (dump_expr): Added case for AT_ENCODE_EXPR.
937         * pt.c (tsubst_copy): Added case for AT_ENCODE_EXPR.
938         (value_dependent_expression_p): Added case for AT_ENCODE_EXPR.
939         (type_dependent_expression_p): Added case for AT_ENCODE_EXPR.
940         * parser.c (cp_parser_objc_encode_expression): Updated comment.
941
942 2010-10-07  Nicola Pero  <nicola.pero@meta-innovation.com>
943
944         Merge from apple/trunk branch on FSF servers.
945
946         2006-04-26  Fariborz Jahanian <fjahanian@apple.com>
947
948         Radar 4508851
949         * parser.c (cp_parser_objc_interstitial_code): Recognize
950         and parse RID_NAMESPACE keyword.
951
952 2010-10-07  Iain Sandoe  <iains@gcc.gnu.org>
953
954         * parser.c (cp_parser_objc_method_tail_params_opt): Peek new token after
955         finding ellipsis, before checking for attributes.
956
957 2010-10-06  Nicola Pero  <nicola.pero@meta-innovation.com>
958
959         Merge from apple/trunk branch on FSF servers.
960         * cp-tree.def: Added AT_ENCODE_EXPR here instead of to the no
961         longer existing gcc/c-common.def.
962
963         2005-12-14  Fariborz Jahanian <fjahanian@apple.com>
964
965         Radar 4278774
966         * pt.c (tsubst_copy_and_build): Instantiate @endcode(T).
967         * parser.c (cp_parser_objc_encode_expression): Build a templatized
968         parse tree for @encode(T).
969
970         2005-12-14  Fariborz Jahanian <fjahanian@apple.com>
971
972         Radar 4278774
973         * c-common.def: Add new expression code AT_ENCODE_EXPR.
974
975 2010-10-06  Eric Botcazou  <ebotcazou@adacore.com>
976
977         PR c++/45908
978         * typeck.c (cp_build_addr_expr_1): Add check for incomplete types in
979         code folding offsetof-like computations.
980
981 2010-10-05  Nicola Pero  <nicola.pero@meta-innovation.com>
982
983         PR objc++/31125
984         * parser.c (cp_parser_objc_class_interface): If no identifier
985         follows an @interface token, stop parsing the interface after
986         printing an error.
987         (cp_parser_objc_class_implementation): If no identifier follows an
988         @implementation token, stop parsing the implementation after
989         printing an error.
990
991 2010-10-05  Nicola Pero  <nicola.pero@meta-innovation.com>
992
993         PR objc++/23707
994         * parser.c (cp_parser_objc_method_keyword_params): If the required
995         colon is not found while parsing parameters, stop parsing them.
996
997 2010-10-05  Nicola Pero  <nicola.pero@meta-innovation.com>
998
999         PR objc++/31126
1000         * parser.c (cp_parser_objc_class_ivars): Do not eat the EOF or
1001         @end after detecting it.  Print an error if @end is found without
1002         a '}'.
1003         (cp_parser_objc_method_prototype_list): Do not eat the EOF after
1004         detecting it.  Fixed reading the next token when continuing
1005         because of an error in a method signature.  Print an error if EOF
1006         is found without an '@end'.
1007         (cp_parser_objc_method_definition_list): Same change.
1008
1009 2010-10-05  Nicola Pero  <nicola.pero@meta-innovation.com>
1010
1011         Merge from apple/trunk branch on FSF servers:
1012
1013         2005-10-17  Fariborz Jahanian <fjahanian@apple.com>
1014
1015         Radar 4290840
1016         * parser.c (cp_parser_objc_method_keyword_params): Check for valid
1017         method parameters and issue error.
1018         (cp_parser_objc_method_definition_list): Check for invalid tokens
1019         which cannot start a function definition.
1020
1021         2005-10-14  Fariborz Jahanian <fjahanian@apple.com>
1022
1023         Radar 4294425
1024         * parser.c (cp_parser_objc_message_args): Check for missing message
1025         arguments and syntax error.
1026
1027         2005-10-13  Fariborz Jahanian <fjahanian@apple.com>
1028
1029         Radar 4261146
1030         * parser.c (cp_parser_objc_class_ivars): Check for @end/eof while
1031         looking for '}'.
1032
1033         2005-08-15  Ziemowit Laski  <zlaski@apple.com>
1034
1035         Radar 4093475
1036         * parser.c (cp_parser_objc_interstitial_code): Catch stray
1037         '{' and '}' tokens and issue appropriate errors.
1038
1039         2005-08-02  Ziemowit Laski  <zlaski@apple.com>
1040
1041         Radar 4185810
1042         (cp_parser_statement_seq_opt): In addition to '}' and
1043         end-of-file, a statement sequence may also be terminated
1044         by a stray '@end'.
1045
1046 2010-10-05  Joseph Myers  <joseph@codesourcery.com>
1047
1048         * cp-tree.h (cxx_print_error_function,
1049         cxx_initialize_diagnostics): Declare using diagnostic_context
1050         typedef.
1051
1052 2010-10-04  Andi Kleen <ak@linux.intel.com>
1053
1054         * Make-lang.in (g++, cc1plus): Add + to build rule.
1055
1056 2010-10-04  Jason Merrill  <jason@redhat.com>
1057
1058         * tree.c (decl_storage_duration): New.
1059         * cp-tree.h: Declare it.
1060         (duration_kind): Return values.
1061
1062 2010-10-03  Jason Merrill  <jason@redhat.com>
1063
1064         * typeck.c (require_complete_type_sfinae): Add complain parm to...
1065         (require_complete_type): ...this function.
1066         (cp_build_array_ref, convert_arguments): Use it.
1067         (convert_for_initialization, cp_build_modify_expr): Likewise.
1068         * cp-tree.h: Declare it.
1069         * call.c (build_over_call): Use it.
1070
1071 2010-09-30  Iain Sandoe  <iains@gcc.gnu.org>
1072
1073         merge from FSF 'apple/trunk' branch.
1074         2006-01-30  Fariborz Jahanian <fjahanian@apple.com>
1075
1076         Radar 4386773
1077         * cp/parser.c (cp_parser_objc_interstitial_code): For
1078         @optional/@required set the optional/required flag.
1079
1080 2010-09-30  Nicola Pero  <nicola.pero@meta-innovation.com>
1081
1082         * parser.c (cp_lexer_get_preprocessor_token): Tidied up comments
1083         and indentation when finding an Objective-C++ CPP_AT_NAME token.
1084
1085 2010-09-29  Richard Guenther  <rguenther@suse.de>
1086
1087         * cp-tree.h (CP_DECL_CONTEXT): Check DECL_FILE_SCOPE_P.
1088         (CP_TYPE_CONTEXT): Similar.
1089         (FROB_CONTEXT): Frob global_namespace to the global
1090         TRANSLATION_UNIT_DECL.
1091         * decl.c (cxx_init_decl_processing): Build a TRANSLATION_UNIT_DECL,
1092         set DECL_CONTEXT of global_namespace to it.
1093         (start_decl): Use CP_DECL_CONTEXT and test TYPE_P
1094         instead of zeroing context.
1095         (cp_finish_decl): Use DECL_FILE_SCOPE_P.
1096         (grokfndecl): Likewise.
1097         (start_preparsed_function): Likewise.
1098         * name-lookup.c (maybe_push_decl): Use DECL_NAMESPACE_SCOPE_P.
1099         (namespace_binding): Use SCOPE_FILE_SCOPE_P.
1100         * pt.c (template_class_depth): Use CP_TYPE_CONTEXT.
1101         (is_specialization_of_friend): Use CP_DECL_CONTEXT.
1102         (push_template_decl_real): Likewise.
1103         (tsubst_friend_class): Likewise.  Adjust context comparisons.
1104         (instantiate_class_template): Use CP_TYPE_CONTEXT.
1105         (tsubst): Do not substitute into TRANSLATION_UNIT_DECL.
1106         * cxx-pretty-print.c (pp_cxx_nested_name_specifier): Use
1107         SCOPE_FILE_SCOPE_P.
1108
1109 2010-09-29  Yao Qi  <yao@codesourcery.com>
1110
1111         * decl.c (get_atexit_node): Fix typo.
1112
1113 2010-09-28  Jason Merrill  <jason@redhat.com>
1114
1115         * tree.c (lvalue_kind): Rename from lvalue_p_1, make nonstatic.
1116         (real_lvalue_p): Take const_tree.
1117         * cp-tree.h: Adjust.
1118         * typeck.c (lvalue_or_else): Make temporary arg a permerror.
1119         (cp_build_addr_expr_1): Likewise.
1120
1121 2010-09-28  Iain Sandoe  <iains@gcc.gnu.org>
1122
1123         Partially merged from apple/trunk branch on FSF servers:
1124         2006-04-26 Fariborz Jahanian <fjahanian@apple.com>
1125         Radar 3803157 (method attributes)
1126
1127         * parser.c (cp_parser_objc_method_keyword_params): Handle attributes.
1128         (cp_parser_objc_method_tail_params_opt): Likewise.
1129         (cp_parser_objc_method_signature): Likewise.
1130         (cp_parser_objc_method_maybe_bad_prefix_attributes): New.
1131         (cp_parser_objc_method_prototype_list): Handle attributes.
1132         (cp_parser_objc_method_definition_list): Likewise.
1133
1134 2010-09-28  Richard Henderson  <rth@redhat.com>
1135
1136         * cp-lang.c: Include "target.h".
1137         (cp_eh_personality): Use targetm.except_unwind_info.
1138         * Make-lang.in (cp-lang.o): Update deps.
1139
1140 2010-09-28  Iain Sandoe  <iains@gcc.gnu.org>
1141
1142         * parser.c (cp_parser_objc_valid_prefix_attributes): New.
1143         (cp_parser_declaration): Parse prefix attributes for ObjC++.
1144         (cp_parser_objc_protocol_declaration): Handle attributes.
1145         (cp_parser_objc_class_interface): Likewise.
1146         (cp_parser_objc_declaration): Likewise.
1147
1148 2010-09-27  Jason Merrill  <jason@redhat.com>
1149
1150         Require lvalues as specified by the standard.
1151         * typeck.c (lvalue_or_else): Use real_lvalue_p.
1152         (cp_build_addr_expr_1): Split out of cp_build_unary_op.
1153         (cp_build_addr_expr, cp_build_addr_expr_strict): Interfaces.
1154         (decay_conversion, get_member_function_from_ptrfunc): Adjust.
1155         (build_x_unary_op, build_reinterpret_cast_1): Adjust.
1156         (build_const_cast_1): Adjust.
1157         * cp-tree.h: Declare new fns.
1158         * call.c (build_this, convert_like_real, build_over_call): Adjust.
1159         (initialize_reference): Adjust.
1160         * class.c (build_base_path, convert_to_base_statically): Adjust.
1161         (build_vfn_ref, resolve_address_of_overloaded_function): Adjust.
1162         * cvt.c (build_up_reference, convert_to_reference): Adjust.
1163         * decl.c (register_dtor_fn): Adjust.
1164         * decl2.c (build_offset_ref_call_from_tree): Adjust.
1165         * except.c (initialize_handler_parm): Adjust.
1166         * init.c (build_offset_ref, build_delete, build_vec_delete): Adjust.
1167         * rtti.c (build_dynamic_cast_1, tinfo_base_init): Adjust.
1168         * tree.c (stabilize_expr): Adjust.
1169
1170 2010-09-27  Nicola Pero  <nicola.pero@meta-innovation.com>
1171
1172         Merge from apple/trunk branch on FSF servers:
1173
1174         2005-12-15  Fariborz Jahanian <fjahanian@apple.com>
1175
1176         Radar 4229905
1177         * typeck.c (composite_pointer_type): Call objc_have_common_type
1178         when comparing two objective-c pointer types.
1179
1180         2005-07-18  Ziemowit Laski  <zlaski@apple.com>
1181
1182         Radar 4175534
1183         * call.c (standard_conversion): Do not issue warnings when
1184         comparing ObjC pointer types.
1185
1186         2005-06-22  Ziemowit Laski  <zlaski@apple.com>
1187
1188         Radar 4154928
1189         * call.c (standard_conversion): Allow for a pointer conversion
1190         between any two ObjC pointer types.
1191         * typeck.c (composite_pointer_type): Determine common type
1192         for two ObjC pointer types.
1193
1194 2010-09-24  Jan Hubicka  <jh@suse.cz>
1195
1196         * decl.c (finish_function): Use decl_replaceable_p
1197         * method.c (make_alias_for_thunk): Update call of
1198         cgraph_same_body_alias.
1199
1200 2010-09-24  Jason Merrill  <jason@redhat.com>
1201
1202         * decl.c (compute_array_index_type): Remember type dependence of
1203         array bound.
1204         * pt.c (dependent_type_p_r): Don't recompute it here.
1205
1206         * error.c (dump_expr) [CASE_CONVERT]: Print conversion between
1207         reference and pointer to the same type as "*" or "&".
1208
1209 2010-09-24  Nicola Pero  <nicola.pero@meta-innovation.com>
1210
1211         * typeck.c (warn_args_num): Use warning 'too many arguments to
1212         method [methodname]' for an Objective-C method instead of the less
1213         satisfactory 'too many arguments to function' (with no method
1214         name).
1215
1216 2010-09-21  Jason Merrill  <jason@redhat.com>
1217
1218         * mangle.c (write_expression) [SCOPE_REF]: Only do -fabi-version=1
1219         special handling if we know the member.
1220
1221 2010-09-18  Jason Merrill  <jason@redhat.com>
1222
1223         * call.c (compare_ics): Do lvalue/rvalue reference binding
1224         comparison for ck_list, too.
1225
1226 2010-09-15  Jason Merrill  <jason@redhat.com>
1227
1228         * semantics.c (finish_id_expression): Diagnose use of function
1229         parms in evaluated context outside function body.
1230
1231         * decl2.c (grokbitfield): Diagnose non-integral width.
1232
1233         * call.c (convert_like_real): Use the underlying type of the
1234         reference for the temporary.
1235
1236 2010-09-15  Jakub Jelinek  <jakub@redhat.com>
1237
1238         PR c++/45635
1239         * class.c (build_vtbl_initializer): Use fn instead of init's operand
1240         as first argument to FDESC_EXPR.
1241
1242 2010-09-15  Paolo Carlini  <paolo.carlini@oracle.com>
1243
1244         PR c++/45665
1245         * decl.c (grokdeclarator): Check build_memfn_type return value
1246         for error_mark_node.
1247
1248 2010-09-13  Rodrigo Rivas Costa <rodrigorivascosta@gmail.com>
1249
1250         * semantics.c (finish_for_stmt): Always test flag_new_for_scope.
1251         (begin_range_for_stmt): Likewise.
1252
1253 2010-09-11  Rodrigo Rivas <rodrigorivascosta@gmail.com>
1254
1255         Implement range-based for-statements.
1256         * cp-tree.def (RANGE_FOR_STMT): New.
1257         * cp-tree.h (RANGE_FOR_DECL, RANGE_FOR_EXPR, RANGE_FOR_BODY): New.
1258         (cp_convert_range_for): Declare.
1259         * pt.c (tsubst_expr): Add RANGE_FOR_STMT.
1260         (tsubst_copy_and_build): perform_koenig_lookup takes extra argument.
1261         * semantics.c (begin_range_for_stmt): New.
1262         (finish_range_for_decl): New.
1263         (finish_for_stmt): Accept also RANGE_FOR_STMT.
1264         (perform_koenig_lookup): Add extra argument include_std.
1265         * parser.c (cp_parser_c_for): New with code from
1266         cp_parser_iteration_statement().
1267         (cp_parser_range_for): New.
1268         (cp_convert_range_for): New.
1269         (cp_parser_iteration_statement): Add range-for support.
1270         (cp_parser_condition): Adjust comment.
1271         (cp_parser_postfix_expression): perform_koenig_lookup takes extra
1272         argument.
1273         * dump.c (cp_dump_tree): Add RANGE_FOR_STMT.
1274         * cxx-pretty-print.c: Likewise.
1275         * lex.c (cxx_init): Likewise.
1276         * name-lookup.c (lookup_function_nonclass): Add extra argument
1277         include_std.
1278         (lookup_arg_dependent): Likewise.
1279         * name-lookup.h: Likewise.
1280
1281 2010-09-10  Rodrigo Rivas Costa <rodrigorivascosta@gmail.com>
1282
1283         PR c++/43824
1284         * error.c (maybe_warn_cpp0x): Add new warning
1285         CPP0X_INLINE_NAMESPACES.
1286         * parser.c (cp_parser_namespace_definition): Likewise.
1287         * cp-tree.h (cpp0x_warn_str): Likewise.
1288
1289 2010-09-10  Richard Guenther  <rguenther@suse.de>
1290
1291         * decl.c (reshape_init_vector): For VECTOR_TYPEs, use
1292         TYPE_VECTOR_SUBPARTS instead of TYPE_DEBUG_REPRESENTATION_TYPE.
1293
1294 2010-09-10  Jan Hubicka  <jh@suse.cz>
1295
1296         PR tree-optimization/45605
1297         * cp/class.c (build_vtbl_initializer): Avoid wrong type conversion in
1298         ADDR_EXPR.
1299
1300 2010-09-08  Jakub Jelinek  <jakub@redhat.com>
1301
1302         PR c++/45588
1303         * pt.c (tsubst) <case INTEGER_TYPE>: Call mark_rvalue_use
1304         before calling fold_decl_constant_value.
1305
1306 2010-09-07  Arnaud Charlet  <charlet@adacore.com>
1307
1308         * cp-tree.h (build_enumerator): Add new location_t parameter.
1309         (build_lang_decl_loc): New function.
1310         * decl.c (build_enumerator): New parameter loc. Use it when calling
1311         build_decl. Replace build_lang_decl with build_lang_decl_loc.
1312         * pt.c (tsubst_enum): Adjust call to build_enumerator.
1313         * parser.c (cp_parser_enumerator_definition): Ditto.
1314         * lex.c (build_lang_decl_loc): New function.
1315
1316 2010-09-06  Dodji Seketeli  <dodji@redhat.com>
1317
1318         PR c++/45200
1319         PR c++/45293
1320         PR c++/45558
1321         * tree.c (strip_typedefs): Strip typedefs from the context of
1322         TYPENAME_TYPEs.
1323
1324 2010-09-06  Mark Mitchell  <mark@codesourcery.com>
1325
1326         * typeck.c (cp_build_binary_op): Call do_warn_double_promotion.
1327         * call.c (build_conditional_expr): Likewise.
1328         (convert_arg_to_ellipsis): Likewise.
1329
1330 2010-09-06  Arnaud Charlet  <charlet@adacore.com>
1331
1332         * parser.c (make_pointer_declarator, make_reference_declarator,
1333         make_call_declarator, make_array_declarator): Set declarator->id_loc.
1334         (cp_parser_init_declarator): Adjust location of decl if appropriate.
1335
1336 2010-09-06  Jason Merrill  <jason@redhat.com>
1337
1338         * call.c (implicit_conversion): Fix value-init of enums.
1339         (convert_like_real): Likewise.
1340
1341         * decl.c (cp_finish_decl): Don't change init for auto deduction.
1342
1343         * pt.c (fold_non_dependent_expr_sfinae): Split out from...
1344         (fold_non_dependent_expr): ...here.
1345         (convert_nontype_argument): Use it.  Take complain parm.
1346         Use perform_implicit_conversion instead of ocp_convert.
1347         Allow cv-qual changes.
1348         (convert_template_argument): Pass complain down.
1349         (tsubst_template_arg): Suppress constant expression warnings.
1350         Don't fold here.
1351
1352         * method.c (synthesized_method_walk): In constructors, also check
1353         subobject destructors.
1354
1355         * semantics.c (finish_compound_literal): Always build a
1356         TARGET_EXPR.
1357
1358 2010-08-30  Paolo Carlini  <paolo.carlini@oracle.com>
1359
1360         PR c++/45043
1361         * decl.c (grokdeclarator): Use MAIN_NAME_P only on IDENTIFIER_NODEs.
1362
1363 2010-08-30  Jakub Jelinek  <jakub@redhat.com>
1364
1365         PR middle-end/45423
1366         * parser.c (cp_parser_omp_atomic): Handle boolean
1367         {PRE,POST}_INCREMENT.
1368
1369 2010-08-29  Jason Merrill  <jason@redhat.com>
1370
1371         PR c++/44991
1372         * parser.c (cp_parser_parameter_declaration): Pop parameter decls
1373         after tentative parsing.
1374
1375 2010-08-22  Joseph Myers  <joseph@codesourcery.com>
1376
1377         * Make-lang.in (g++spec.o): Update dependencies.
1378         * g++spec.c: Include opts.h
1379         (MATH_LIBRARY, LIBSTDCXX): Remove initial "-l".
1380         (lang_specific_driver): Use cl_decoded_option structures.
1381
1382 2010-08-20  Nathan Froyd  <froydnj@codesourcery.com>
1383
1384         * call.c: Use FOR_EACH_VEC_ELT.
1385         * class.c: Likewise.
1386         * decl.c: Likewise.
1387         * decl2.c: Likewise.
1388         * error.c: Likewise.
1389         * except.c: Likewise.
1390         * mangle.c: Likewise.
1391         * method.c: Likewise.
1392         * name-lookup.c: Likewise.
1393         * parser.c: Likewise.
1394         * pt.c: Likewise.
1395         * repo.c: Likewise.
1396         * semantics.c: Likewise.
1397         * typeck2.c: Likewise.
1398
1399 2010-08-19  Jason Merrill  <jason@redhat.com>
1400
1401         * call.c (reference_related_p): Check for error_mark_node.
1402         (add_function_candidate): Check it instead of
1403         same_type_ignoring_top_level_qualifiers_p.
1404
1405         PR c++/45315
1406         * init.c (build_new_1): Don't use build_value_init in a template.
1407         (build_value_init): Make sure we don't.
1408
1409         PR c++/45307
1410         * cp-gimplify.c (cp_gimplify_expr): Also remove assignment
1411         of empty class CONSTRUCTOR.
1412
1413         * except.c (pending_noexcept, pending_noexcept_checks): New.
1414         (perform_deferred_noexcept_checks): New.
1415         (maybe_noexcept_warning): Split from...
1416         (finish_noexcept_expr): ...here.  Adjust.
1417         * decl2.c (cp_write_global_declarations): Call
1418         perform_deferred_noexcept_checks.
1419         * cp-tree.h: And declare it.
1420
1421 2010-08-18  Nathan Froyd  <froydnj@codesourcery.com>
1422
1423         PR c++/45049
1424         * name-lookup.c (push_overloaded_decl): Change DECL_CHAIN to
1425         TREE_CHAIN.
1426
1427 2010-08-17  Kai Tietz  <kai.tietz@onevision.com>
1428
1429         * class.c (note_name_declared_in_class): Make in 'extern "C"' blocks,
1430         or if -fms-extensions is enabled check, check permissive.
1431
1432 2010-08-09  Jason Merrill  <jason@redhat.com>
1433
1434         PR c++/45236
1435         * pt.c (lookup_template_class): Don't re-coerce outer parms.
1436
1437 2010-08-09  Nathan Froyd  <froydnj@codesourcery.com>
1438
1439         * call.c (add_builtin_candidates): Use VECs for local variable
1440         `types'.  Adjust remainder of function accordingly.
1441
1442 2010-08-09  Nathan Froyd  <froydnj@codesourcery.com>
1443
1444         * name-lookup.c (is_associated_namespace): Convert local variables
1445         to be VECs instead of TREE_LISTs.
1446
1447 2010-08-09  Nathan Froyd  <froydnj@codesourcery.com>
1448
1449         * tree.c (varargs_function_p): Use stdarg_p.
1450
1451 2010-08-07  Nathan Froyd  <froydnj@codesourcery.com>
1452
1453         * parser.c (cp_default_arg_entry): Declare.  Declare a VEC of it.
1454         (cp_unparsed_functions_entry): Declare.  Declare a VEC of it.
1455         (cp_parser) [unparsed_functions_queues]: Rename to unparsed_queues.
1456         Change type to a VEC.
1457         (unparsed_funs_with_default_args): Define.
1458         (unparsed_funs_with_definitions): Define.
1459         (push_unparsed_function_queues): New function.
1460         (cp_parser_new): Call it.
1461         (pop_unparsed_function_queues): New function.
1462         (cp_parser_class_specifier): Adjust processing of unparsed functions.
1463         (cp_parser_template_declaration_after_export): Use VEC_safe_push.
1464         (cp_parser_save_member_function_body): Likewise.
1465         (cp_parser_late_parsing_for_member): Call push_unparsed_function_queues
1466         and pop_unparsed_function_queues.
1467         (cp_parser_late_parsing_default_args): Likewise.
1468         (cp_parser_save_default_args): Use VEC_safe_push.
1469
1470 2010-08-07  Nathan Froyd  <froydnj@codesourcery.com>
1471
1472         * name-lookup.h (cp_label_binding): Declare.  Declare a VEC type
1473         containing it.
1474         (cp_binding_level): Convert shadowed_labels and dead_vars_from_for
1475         fields to VECs.
1476         * decl.c (poplevel): Adjust for type changes.
1477         (declare_local_label): Likewise.
1478
1479 2010-08-06  Jason Merrill  <jason@redhat.com>
1480
1481         * typeck.c (complete_type_or_maybe_complain): Split out from...
1482         (complete_type_or_else): Here.
1483         (build_class_member_access_expr): Call it.
1484         (finish_class_member_access_expr): Likewise.
1485         * call.c (build_special_member_call): Likewise.
1486         * cvt.c (build_expr_type_conversion): Likewise.
1487         * init.c (build_new): Likewise.
1488         * typeck2.c (build_functional_cast): Likewise.
1489         * cp-tree.h: Declare it.
1490
1491         * init.c (build_value_init): Add complain parm.
1492         (build_value_init_noctor): Likewise.
1493         (perform_member_init): Pass it.
1494         (expand_aggr_init_1): Likewise.
1495         (build_new_1): Likewise.
1496         (build_vec_init): Likewise.
1497         * pt.c (tsubst_expr): Likewise.
1498         * typeck2.c (build_functional_cast): Likewise.
1499         * cp-tree.h: Adjust.
1500         * tree.c (build_target_expr_with_type): Handle error_mark_node.
1501
1502         * typeck.c (decay_conversion): Any expression with type nullptr_t
1503         decays to nullptr.
1504
1505 2010-07-30  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
1506
1507         PR c++/45112
1508         * decl.c (duplicate_decls): Merge DECL_USER_ALIGN and DECL_PACKED.
1509
1510 2010-07-27  Jason Merrill  <jason@redhat.com>
1511
1512         * pt.c (tsubst_expr) [DECL_EXPR]: Handle getting an AGGR_INIT_EXPR
1513         from build_value_init.
1514         * init.c (build_value_init_noctor): Give error for unknown array
1515         bound.
1516
1517 2010-07-27  Joseph Myers  <joseph@codesourcery.com>
1518
1519         * cp-objcp-common.h (LANG_HOOKS_MISSING_ARGUMENT): Remove.
1520
1521 2010-07-27  Joseph Myers  <joseph@codesourcery.com>
1522
1523         * cp-objcp-common.c (cxx_initialize_diagnostics): First call
1524         c_common_initialize_diagnostics.
1525         * cp-objcp-common.h (LANG_HOOKS_OPTION_LANG_MASK,
1526         LANG_HOOKS_COMPLAIN_WRONG_LANG_P): Define.
1527
1528 2010-07-21  Jason Merrill  <jason@redhat.com>
1529
1530         * tree.c (cp_tree_equal): Fix CONSTRUCTOR handling.
1531
1532         * parser.c (cp_parser_init_declarator): Pass LOOKUP_NORMAL
1533         to cp_finish_decl.
1534
1535 2010-07-20  Jeffrey Yasskin  <jyasskin@google.com>
1536
1537         PR c++/44641
1538         * pt.c (instantiate_class_template): Propagate the template's
1539         location to its instance.
1540
1541 2010-07-20  Jason Merrill  <jason@redhat.com>
1542
1543         PR c++/44967
1544         * pt.c (tsubst_copy_and_build): Rework last change.
1545
1546         PR c++/44967
1547         * pt.c (tsubst_copy_and_build): Handle partial substitution of
1548         CALL_EXPR.
1549
1550 2010-07-19  Jason Merrill  <jason@redhat.com>
1551
1552         PR c++/44996
1553         * semantics.c (finish_decltype_type): Correct decltype
1554         of parenthesized rvalue reference variable.
1555
1556         PR c++/44969
1557         * tree.c (cp_tree_equal): Compare type of *CAST_EXPR.
1558         * pt.c (iterative_hash_template_arg): Hash type of *CAST_EXPR.
1559
1560 2010-07-19  Paolo Carlini  <paolo.carlini@oracle.com>
1561
1562         PR c++/44969
1563         * typeck.c (build_x_compound_expr_from_list): Add tsubst_flags_t
1564         parameter.
1565         * cp-tree.h: Adjust declaration.
1566         * init.c (perform_member_init): Adjust caller.
1567         * decl.c (grok_reference_init, cp_finish_decl): Likewise.
1568         * typeck2.c (store_init_value): Likewise.
1569         (build_functional_cast): Pass complain argument to
1570         build_x_compound_expr_from_list.
1571
1572 2010-07-16  Jason Merrill  <jason@redhat.com>
1573
1574         PR c++/32505
1575         * pt.c (process_partial_specialization): Diagnose partial
1576         specialization after instantiation.
1577         (most_specialized_class): Add complain parm.
1578
1579         * ptree.c (cxx_print_xnode): Handle TEMPLATE_INFO.
1580
1581 2010-07-15  Nathan Froyd  <froydnj@codesourcery.com>
1582
1583         * init.c (build_new_1): Use cp_build_function_call_nary instead of
1584         cp_build_function_call.
1585
1586 2010-07-15  Jason Merrill  <jason@redhat.com>
1587
1588         PR c++/44909
1589         * call.c (add_function_candidate): If we're working on an implicit
1590         declaration, don't consider candidates that won't match.
1591         * typeck.c (same_type_ignoring_top_level_qualifiers_p): Now a fn.
1592         * cp-tree.h (same_type_ignoring_top_level_qualifiers_p): Adjust.
1593
1594         Revert:
1595         * cp-tree.h (struct lang_type_class): Add has_user_opeq.
1596         (TYPE_HAS_USER_OPEQ): New.
1597         * decl.c (grok_special_member_properties): Set it.
1598         * class.c (add_implicitly_declared_members): Don't lazily declare
1599         constructors/operator= if a base or member has a user-declared one.
1600         (check_bases_and_members, check_bases): Adjust.
1601         (check_field_decls, check_field_decl): Adjust.
1602
1603 2010-07-15  Anatoly Sokolov  <aesok@post.ru>
1604
1605         * decl.c (integer_three_node): Remove.
1606         (cxx_init_decl_processing): Do not initialize the integer_three_node.
1607         * cp-tree.h (integer_three_node): Remove.
1608
1609 2010-07-15  Nathan Froyd  <froydnj@codesourcery.com>
1610
1611         * cp-tree.h: Carefully replace TREE_CHAIN with DECL_CHAIN.
1612         * call.c: Likewise.
1613         * class.c: Likewise.
1614         * cp-gimplify.c: Likewise.
1615         * decl.c: Likewise.
1616         * decl2.c: Likewise.
1617         * init.c: Likewise.
1618         * mangle.c: Likewise.
1619         * name-lookup.c: Likewise.
1620         * optimize.c: Likewise.
1621         * parser.c: Likewise.
1622         * pt.c: Likewise.
1623         * rtti.c: Likewise.
1624         * search.c: Likewise.
1625         * semantics.c: Likewise.
1626         * typeck.c: Likewise.
1627         * typeck2.c: Likewise.
1628
1629 2010-07-14  Jason Merrill  <jason@redhat.com>
1630
1631         * init.c (sort_mem_initializers): Rename "field_type" to "ctx".
1632         (build_field_list): Cache field type.
1633
1634         Implement C++0x unrestricted unions (N2544)
1635         * class.c (check_field_decl): Loosen union handling in C++0x.
1636         * method.c (walk_field_subobs): Split out from...
1637         (synthesized_method_walk): ...here.  Set msg before loops.
1638         (process_subob_fn): Check for triviality in union members.
1639         * init.c (sort_mem_initializers): Splice out uninitialized
1640         anonymous unions and union members.
1641         (push_base_cleanups): Don't automatically destroy anonymous unions
1642         and union members.
1643
1644 2010-07-13  Jason Merrill  <jason@redhat.com>
1645
1646         PR c++/44909
1647         * cp-tree.h (struct lang_type_class): Add has_user_opeq.
1648         (TYPE_HAS_USER_OPEQ): New.
1649         * decl.c (grok_special_member_properties): Set it.
1650         * class.c (add_implicitly_declared_members): Don't lazily declare
1651         constructors/operator= if a base or member has a user-declared one.
1652         (check_bases_and_members, check_bases): Adjust.
1653         (check_field_decls, check_field_decl): Adjust.
1654         * method.c (synthesized_method_walk): Initialize check_vdtor.
1655
1656         PR c++/44540
1657         * mangle.c (write_type): Canonicalize.
1658         (canonicalize_for_substitution): Retain cv-quals on FUNCTION_TYPE.
1659         (write_CV_qualifiers_for_type): Ignore them in abi>=5.
1660
1661 2010-07-13  Paolo Carlini  <paolo.carlini@oracle.com>
1662
1663         PR c++/44908
1664         * call.c (convert_like_real): Adjust convert_ptrmem call, pass
1665         complain argument.
1666         * typeck.c (get_delta_difference): Update prototype, add a
1667         tsubst_flags_t parameter; update get_delta_difference_1 calls and
1668         add checks for error_mark_node.
1669         (get_delta_difference_1): Update prototype, add a tsubst_flags_t
1670         parameter; update lookup_base call.
1671         (build_ptrmemfunc): Update prototype, add a tsubst_flags_t
1672         parameter; update get_delta_difference call and add check for
1673         error_mark_node.
1674         (convert_ptrmem): Update prototype, add a tsubst_flags_t
1675         parameter; update get_delta_difference call and add check for
1676         error_mark_node;  update build_ptrmemfunc call.
1677         (build_static_cast_1): Adjust convert_ptrmem call.
1678         (expand_ptrmemfunc_cst): Adjust get_delta_difference call.
1679         (cp_build_unary_op): Adjust build_ptrmemfunc call.
1680         * cvt.c (cp_convert_to_pointer, convert_force): Adjust convert_ptrmem
1681         and build_ptrmemfunc calls.
1682         * cp-tree.h: Update build_ptrmemfunc and convert_ptrmem prototypes.
1683
1684 2010-07-12  Paolo Carlini  <paolo.carlini@oracle.com>
1685
1686         PR c++/44907
1687         * call.c (build_temp): Add tsubst_flags_t complain parameter;
1688         adjust build_special_member_call call, pass complain.
1689         (convert_like_real): Adjust build_temp call, pass complain.
1690
1691 2010-07-09  Jason Merrill  <jason@redhat.com>
1692
1693         PR c++/43120
1694         * cp-tree.h (BV_LOST_PRIMARY): New macro.
1695         * class.c (update_vtable_entry_for_fn): Fix covariant thunk logic.
1696         Set BV_LOST_PRIMARY.
1697         (build_vtbl_initializer): Check BV_LOST_PRIMARY.
1698
1699 2010-07-08  Jason Merrill  <jason@redhat.com>
1700
1701         PR c++/43120
1702         * class.c (update_vtable_entry_for_fn): Fix handling of dummy
1703         virtual bases for covariant thunks.
1704
1705 2010-07-08  Manuel López-Ibáñez  <manu@gcc.gnu.org>
1706
1707         * cp-tree.h: Do not include toplev.h.
1708
1709 2010-07-06  Jason Merrill  <jason@redhat.com>
1710
1711         PR c++/44703
1712         * call.c (is_std_init_list): Look through typedefs.
1713
1714         PR c++/44778
1715         * init.c (build_offset_ref): If scope isn't dependent,
1716         don't exit early.  Look at TYPE_MAIN_VARIANT.
1717         * pt.c (tsubst_copy) [OFFSET_REF]: Do substitution.
1718
1719         * error.c (dump_function_decl): Don't crash on null DECL_NAME.
1720
1721 2010-07-06  Shujing Zhao  <pearly.zhao@oracle.com>
1722
1723         * cp-tree.h (impl_conv_void): New type.
1724         (convert_to_void): Adjust prototype.
1725         * cvt.c (convert_to_void): Use impl_conv_void, emit and adjust the
1726         diagnostic for easy translation. Change caller.
1727         * typeck.c: Update call to convert_to_void.
1728         * semantics.c: Likewise.
1729         * init.c: Likewise.
1730
1731 2010-07-05  Nathan Froyd  <froydnj@codesourcery.com>
1732
1733         * decl.c (cp_finish_decl): Call add_local_decl.
1734         * optimize.c (clone_body): Adjust for new type of cfun->local_decls.
1735
1736 2010-07-05  Paolo Carlini  <paolo.carlini@oracle.com>
1737
1738         * pt.c (tsubst): Early declare code = TREE_CODE (t) and use it
1739         throughout.
1740
1741 2010-07-05  Shujing Zhao  <pearly.zhao@oracle.com>
1742
1743         PR c++/22138
1744         * parser.c (cp_parser_primary_expression): Error if local template is
1745         declared.
1746
1747 2010-07-02  Le-Chun Wu  <lcwu@google.com>
1748
1749         PR/44128
1750         * name-lookup.c (pushdecl_maybe_friend): Warn when a local decl
1751         (variable or type) shadows another type.
1752
1753 2010-07-02  Jakub Jelinek  <jakub@redhat.com>
1754
1755         PR c++/44780
1756         * typeck.c (convert_for_assignment): When converting a convertible
1757         vector type or objc++ types, call mark_rvalue_use.
1758         * typeck2.c (build_m_component_ref): Use return values from
1759         mark_rvalue_use or mark_lvalue_use.
1760         * class.c (build_base_path): Likewise.
1761         * call.c (build_conditional_expr): Likewise.
1762
1763 2010-07-02  Paolo Carlini  <paolo.carlini@oracle.com>
1764
1765         PR c++/44039
1766         * pt.c (tsubst_baselink): Return error_mark_node if lookup_fnfields
1767         returns NULL_TREE.
1768
1769 2010-07-01  Richard Guenther  <rguenther@suse.de>
1770
1771         * cp-gimplify.c (cp_gimplify_expr): Open-code the rhs
1772         predicate we are looking for, allow non-gimplified
1773         INDIRECT_REFs.
1774
1775 2010-06-30  Paolo Carlini  <paolo.carlini@oracle.com>
1776
1777         PR c++/44628
1778         * typeck.c (cp_build_unary_op): Early return error_mark_node when
1779         arg is NULL_TREE too.
1780         * call.c (convert_class_to_reference): Return error_mark_node when
1781         expr is NULL_TREE.
1782
1783 2010-06-30  Michael Matz  <matz@suse.de>
1784
1785         * repo.c (finish_repo): Fix typo.
1786
1787 2010-06-30  Nathan Froyd  <froydnj@codesourcery.com>
1788
1789         * parser.c (cp_parser_omp_for_loop): Use a VEC for for_block.
1790
1791 2010-06-30  Nathan Froyd  <froydnj@codesourcery.com>
1792
1793         * repo.c (pending_repo): Change type to a VEC.
1794         (finish_repo): Adjust for new type of pending_repo.
1795         (repo_emit_p): Likewise.
1796
1797 2010-06-30  Manuel López-Ibáñez  <manu@gcc.gnu.org>
1798
1799         * tree.c: Include gimple.h. Do not include tree-flow.h
1800         * decl.c: Do not include tree-flow.h
1801         * Make-lang.in: Adjust dependencies.
1802
1803 2010-06-29  Nathan Froyd  <froydnj@codesourcery.com>
1804
1805         * decl.c (incomplete_var): Declare.  Declare VECs containing them.
1806         (incomplete_vars): Adjust comment.  Change type to a VEC.
1807         (maybe_register_incomplete_var): Adjust for new type.
1808         (complete_vars): Adjust iteration over incomplete_vars.
1809
1810 2010-06-29  Nathan Froyd  <froydnj@codesourcery.com>
1811
1812         * decl.c (struct named_label_entry): Change type of bad_decls field
1813         to a VEC.
1814         (poplevel_named_label_1): Adjust for new type of bad_decls.
1815         (check_goto): Likewise.
1816
1817 2010-06-29  Jason Merrill  <jason@redhat.com>
1818
1819         Enable implicitly declared move constructor/operator= (N3053).
1820         * class.c (add_implicitly_declared_members): A class with no
1821         explicitly declared copy or move constructor gets both declared
1822         implicitly, and similarly for operator=.
1823         (check_bases): A type with no copy ctor does not inhibit
1824         a const copy ctor in a derived class.  It does mean the derived
1825         one is non-trivial.
1826         (check_field_decl): Likewise.
1827         (check_bases_and_members): A nonexistent copy ctor/op= is non-trivial.
1828         * tree.c (type_has_nontrivial_copy_init): Adjust semantics.
1829         (trivially_copyable_p): Likewise.
1830         * call.c (convert_like_real): Use type_has_nontrivial_copy_init.
1831         * class.c (finish_struct_bits): Likewise.
1832         * tree.c (build_target_expr_with_type): Likewise.
1833         * typeck2.c (store_init_value): Likewise.
1834
1835         Enable implicitly deleted functions (N2346)
1836         * class.c (check_bases_and_members): Adjust lambda flags.
1837         * method.c (implicitly_declare_fn): Set DECL_DELETED_FN if appropriate.
1838
1839         * decl2.c (mark_used): Adjust error for use of deleted function.
1840
1841         Machinery to support implicit delete/move.
1842         * cp-tree.h: (struct lang_type_class): Add lazy_move_assign,
1843         has_complex_move_ctor, has_complex_move_assign bitfields.
1844         (CLASSTYPE_LAZY_MOVE_ASSIGN): New.
1845         (TYPE_HAS_COMPLEX_MOVE_ASSIGN): New.
1846         (TYPE_HAS_COMPLEX_MOVE_CTOR): New.
1847         (enum special_function_kind): Add sfk_move_assignment.
1848         (LOOKUP_SPECULATIVE): New.
1849         * call.c (build_over_call): Return early if it's set.
1850         (build_over_call): Use trivial_fn_p.
1851         * class.c (check_bases): If the base has no default constructor,
1852         the derived one is non-trivial.  Handle move ctor/op=.
1853         (check_field_decl): Likewise.
1854         (check_bases_and_members): Handle move ctor/op=.
1855         (add_implicitly_declared_members): Handle CLASSTYPE_LAZY_MOVE_ASSIGN.
1856         (type_has_move_constructor, type_has_move_assign): New.
1857         * decl.c (grok_special_member_properties): Handle move ctor/op=.
1858         * method.c (type_has_trivial_fn, type_set_nontrivial_flag): New.
1859         (trivial_fn_p): New.
1860         (do_build_copy_constructor): Use it.
1861         (do_build_assign_ref): Likewise.  Handle move assignment.
1862         (build_stub_type, build_stub_object, locate_fn_flags): New.
1863         (locate_ctor): Use locate_fn_flags.
1864         (locate_copy, locate_dtor): Remove.
1865         (get_dtor, get_default_ctor, get_copy_ctor, get_copy_assign): New.
1866         (process_subob_fn, synthesized_method_walk): New.
1867         (maybe_explain_implicit_delete): New.
1868         (implicitly_declare_fn): Use synthesized_method_walk,
1869         type_has_trivial_fn, and type_set_nontrivial_flag.
1870         (defaulted_late_check): Set DECL_DELETED_FN.
1871         (defaultable_fn_check): Handle sfk_move_assignment.
1872         (lazily_declare_fn): Clear CLASSTYPE_LAZY_* early.  Don't declare
1873         implicitly deleted move ctor/op=.
1874         * search.c (lookup_fnfields_1): Handle sfk_move_assignment.
1875         (lookup_fnfields_slot): New.
1876         * semantics.c (omp_clause_info_fndecl): Remove.
1877         (cxx_omp_create_clause_info): Use get_default_ctor, get_copy_ctor,
1878         get_copy_assign, trivial_fn_p.
1879         (trait_expr_value): Adjust call to locate_ctor.
1880         * tree.c (special_function_p): Handle sfk_move_assignment.
1881
1882         * class.c (type_has_virtual_destructor): New.
1883         * cp-tree.h: Declare it.
1884         * semantics.c (trait_expr_value): Use it.
1885
1886         * call.c (build_over_call): Only give warnings with tf_warning.
1887
1888         * name-lookup.c (pop_scope): Handle NULL_TREE.
1889
1890         * cp-tree.h (TYPE_HAS_ASSIGN_REF): Rename to TYPE_HAS_COPY_ASSIGN.
1891         (TYPE_HAS_CONST_ASSIGN_REF): Rename to TYPE_HAS_CONST_COPY_ASSIGN.
1892         (TYPE_HAS_INIT_REF): Rename to TYPE_HAS_COPY_CTOR.
1893         (TYPE_HAS_CONST_INIT_REF): Rename to TYPE_HAS_CONST_COPY_CTOR.
1894         (TYPE_HAS_COMPLEX_ASSIGN_REF): Rename to TYPE_HAS_COMPLEX_COPY_ASSIGN.
1895         (TYPE_HAS_COMPLEX_INIT_REF): Rename to TYPE_HAS_COMPLEX_COPY_CTOR.
1896         (TYPE_HAS_TRIVIAL_ASSIGN_REF): Rename to TYPE_HAS_TRIVIAL_COPY_ASSIGN.
1897         (TYPE_HAS_TRIVIAL_INIT_REF): Rename to TYPE_HAS_TRIVIAL_COPY_CTOR.
1898         (CLASSTYPE_LAZY_ASSIGNMENT_OP): Rename to CLASSTYPE_LAZY_COPY_ASSIGN.
1899         (sfk_assignment_operator): Rename to sfk_copy_assignment.
1900         * decl.c, call.c, class.c, init.c, method.c, pt.c, ptree.c: Adjust.
1901         * search.c, semantics.c, tree.c: Adjust.
1902
1903         * pt.c (dependent_scope_ref_p): Remove.
1904         (value_dependent_expression_p): Don't call it.
1905         (type_dependent_expression_p): Here either.
1906         * init.c (build_offset_ref): Set TREE_TYPE on a qualified-id
1907         if the scope isn't dependent.
1908
1909         * pt.c (convert_nontype_argument): Use mark_lvalue_use if we want
1910         a reference.
1911
1912         PR c++/44587
1913         * pt.c (has_value_dependent_address): New.
1914         (value_dependent_expression_p): Check it.
1915         (convert_nontype_argument): Likewise.  Call decay_conversion before
1916         folding if we want a pointer.
1917         * semantics.c (finish_id_expression): Don't add SCOPE_REF if the
1918         scope is the current instantiation.
1919
1920 2010-06-28  Jakub Jelinek  <jakub@redhat.com>
1921
1922         PR c++/44682
1923         * class.c (build_base_path): If want_pointer, call mark_rvalue_use
1924         on expr.
1925
1926 2010-06-28  Steven Bosscher  <steven@gcc.gnu.org>
1927
1928         * init.c: Do not include except.h.
1929         * decl.c: Likewise.
1930         * expr.c: Likewise.
1931         * cp-lang.c: Likewise.
1932         * pt.c: Likewise.
1933         * semantics.c: Likewise.
1934         * decl2.c: Likewise.
1935         * except.c: Likewise.
1936         (init_exception_processing): Do not set the removed
1937         lang_protect_cleanup_actions here.
1938         (cp_protect_cleanup_actions): Make non-static and remove prototype.
1939         (doing_eh): New, moved from except.c but removed the do_warning flag.
1940         (expand_start_catch_block): Update doing_eh call.
1941         (expand_end_catch_block): Likewise.
1942         (build_throw): Likewise.
1943         * cp-tree.h: Prototype cp_protect_cleanup_actions.
1944         * cp-objcp-common.h: Set LANG_HOOKS_EH_PROTECT_CLEANUP_ACTIONS to
1945         cp_protect_cleanup_actions.
1946         * Make-lang.in: Update dependencies.
1947
1948 2010-06-26  Jason Merrill  <jason@redhat.com>
1949
1950         * call.c (add_function_candidate): Set LOOKUP_COPY_PARM for any
1951         constructor called with a single argument that takes a reference
1952         to the constructor's class.
1953         (BAD_CONVERSION_RANK): New.
1954         (compare_ics): Use it to compare bad ICSes.
1955
1956 2010-06-25  Joseph Myers  <joseph@codesourcery.com>
1957
1958         * lang-specs.h: Remove +e handling.
1959
1960 2010-06-24  Andi Kleen  <ak@linux.intel.com>
1961
1962         * parser.c: (cp_parser_question_colon_clause):
1963         Switch to use cp_lexer_peek_token.
1964         Call warn_for_omitted_condop. Call pedwarn for omitted
1965         middle operand.
1966
1967 2010-06-22  Jakub Jelinek  <jakub@redhat.com>
1968
1969         PR c++/44619
1970         * typeck2.c (build_m_component_ref): Call mark_lvalue_use on
1971         datum and mark_rvalue_use on component.
1972
1973         PR c++/44627
1974         * error.c (dump_expr): Don't look at CALL_EXPR_ARG (t, 0) if
1975         the CALL_EXPR has no arguments.
1976
1977 2010-06-21  Jason Merrill  <jason@redhat.com>
1978
1979         * typeck.c (comp_except_specs): Fix ce_derived with noexcept.
1980
1981         * semantics.c (check_trait_type): Check COMPLETE_TYPE_P for array
1982         element type.
1983
1984 2010-06-17  Nathan Froyd  <froydnj@codesourcery.com>
1985
1986         * name-lookup.c (struct arg_lookup): Convert namespaces and
1987         classes fields to VEC.
1988         (arg_assoc_namespace): Adjust for new type of namespaces.
1989         (arg_assoc_class): Adjust for new type of classes.
1990         (lookup_arg_dependent): Use make_tree_vector and
1991         release_tree_vector.
1992         * typeck2.c (build_x_arrow): Use vec_member.
1993
1994 2010-06-17  Manuel López-Ibáñez  <manu@gcc.gnu.org>
1995
1996         PR c++/44486
1997         * error.c (dump_decl): Better wording for anonymous namespace.
1998
1999 2010-06-16  Nathan Froyd  <froydnj@codesourcery.com>
2000
2001         * class.c (build_vtbl_initializer): Adjust computation of new_position
2002         and which entry to add padding for.
2003
2004 2010-06-16  Jason Merrill  <jason@redhat.com>
2005
2006         * except.c (check_noexcept_r): Return the problematic function.
2007         (finish_noexcept_expr): Give -Wnoexcept warning.  Add complain parm.
2008         * pt.c (tsubst_copy_and_build): Pass it.
2009         * parser.c (cp_parser_unary_expression): Likewise.
2010         * cp-tree.h: Adjust prototype.
2011
2012         * method.c (defaulted_late_check): Give the defaulted method
2013         the same exception specification as the implicit declaration.
2014
2015 2010-06-15  Jason Merrill  <jason@redhat.com>
2016
2017         * class.c (add_implicitly_declared_members): Implicit assignment
2018         operators can also be virtual overriders.
2019         * method.c (lazily_declare_fn): Likewise.
2020
2021         * call.c (convert_like_real): Give "initializing argument of"
2022         information for ambiguous conversion.  Give source position
2023         of function.
2024
2025         * call.c (print_z_candidates): Do print viable deleted candidates.
2026         (joust): Don't choose a deleted function just because its worst
2027         conversion is better than another candidate's worst.
2028
2029         * call.c (convert_like_real): Don't complain about
2030         list-value-initialization from an explicit constructor.
2031
2032         * decl.c (duplicate_decls): Use DECL_IS_BUILTIN rather than test
2033         DECL_SOURCE_LOCATION directly.
2034
2035         * class.c (type_has_user_provided_default_constructor): Use
2036         sufficient_parms_p.
2037
2038         * call.c (is_subseq): Handle ck_aggr, ck_list.
2039         (compare_ics): Treat an aggregate or ambiguous conversion to the
2040         same type as involving the same function.
2041
2042 2010-06-13  Shujing Zhao  <pearly.zhao@oracle.com>
2043
2044         * typeck.c (convert_for_assignment): Fix comment. Change message
2045         format from %d to %qP.
2046         (convert_for_initialization): Fix comment. 
2047
2048 2010-06-11  Shujing Zhao  <pearly.zhao@oracle.com>
2049
2050         * cp-tree.h (expr_list_kind): New type.
2051         (impl_conv_rhs): New type.
2052         (build_x_compound_expr_from_list, convert_for_initialization): Adjust
2053         prototype.
2054         (typeck.c (convert_arguments): Use impl_conv_rhs and emit the
2055         diagnostics for easy translation. Change caller.
2056         (convert_for_initialization): Use impl_conv_rhs and change caller.
2057         (build_x_compound_expr_from_list): Use expr_list_kind and emit the
2058         diagnostics for easy translation. Change caller.
2059         * decl.c (bad_spec_place): New enum.
2060         (bad_specifiers): Use it and emit the diagnostics for easy
2061         translation. Change caller.
2062         * pt.c (coerce_template_parms): Put the diagnostics in full sentence.
2063
2064 2010-06-09  Nathan Froyd  <froydnj@codesourcery.com>
2065
2066         * cp-tree.h (struct saved_scope): Change decl_ns_list field type
2067         to a VEC.
2068         * decl2.c (cp_write_global_declarations): Adjust for new type of
2069         decl_namespace_list.
2070         * name-lookup.c (current_decl_namespace): Likewise.
2071         (push_decl_namespace): Likewise.
2072         (pop_decl_namespace): Likewise.
2073
2074 2010-06-09  Nathan Froyd  <froydnj@codesourcery.com>
2075
2076         * call.c (build_java_interface_fn_ref): Call build_function_type_list
2077         instead of build_function_type.
2078         * decl.c (cxx_init_decl_processing): Likewise.
2079         (declare_global_var): Likewise.
2080         (get_atexit_node): Likewise.
2081         (expand_static_init): Likewise.
2082         * decl2.c (start_objects): Likewise.
2083         (start_static_storage_duration_function): Likewise.
2084         * except.c (init_exception_processing): Likewise.
2085         (build_exc_ptr): Likewise.
2086         (build_throw): Likewise.
2087         * rtti.c (throw_bad_cast): Likewise.
2088         (throw_bad_typeid): Likewise.
2089         (build_dynamic_cast_1): Likewise.
2090
2091 2010-06-09  Nathan Froyd  <froydnj@codesourcery.com>
2092
2093         * call.c (build_call_n): Call XALLOCAVEC instead of alloca.
2094         (build_op_delete_call): Likewise.
2095         (build_over_call): Likewise.
2096         * cp-gimplify.c (cxx_omp_clause_apply_fn): Likewise.
2097         * pt.c (process_partial_specialization): Likewise.
2098         (tsubst_template_args): Likewise.
2099         * semantics.c (finish_asm_stmt): Likewise.
2100
2101 2010-06-08  Nathan Sidwell  <nathan@codesourcery.com>
2102
2103         * decl.c (record_key_method_defined): New, broken out of ...
2104         (finish_function): ... here.  Call it.  
2105         (start_decl): Treat aliases as definitions.
2106
2107 2010-06-08  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
2108
2109         * typeck2.c (abstract_virtuals_error): Use typed GC allocation.
2110
2111         * pt.c (maybe_process_partial_specialization): Likewise.
2112         (register_specialization): Likewise.
2113         (add_pending_template): Likewise.
2114         (lookup_template_class): Likewise.
2115         (push_tinst_level): Likewise.
2116
2117         * parser.c (cp_lexer_new_main): Likewise.
2118         (cp_lexer_new_from_tokens): Likewise.
2119         (cp_token_cache_new): Likewise.
2120         (cp_parser_context_new): Likewise.
2121         (cp_parser_new): Likewise.
2122         (cp_parser_nested_name_specifier_opt): Likewise.
2123         (cp_parser_template_id): Likewise.
2124
2125         * name-lookup.c (binding_entry_make): Likewise.
2126         (binding_table_construct): Likewise.
2127         (binding_table_new): Likewise.
2128         (cxx_binding_make): Likewise.
2129         (pushdecl_maybe_friend): Likewise.
2130         (begin_scope): Likewise.
2131         (push_to_top_level): Likewise.
2132
2133         * lex.c (init_reswords): Likewise.
2134         (retrofit_lang_decl): Likewise.
2135         (cxx_dup_lang_specific_decl): Likewise.
2136         (copy_lang_type): Likewise.
2137         (cxx_make_type): Likewise.
2138
2139         * decl.c (make_label_decl): Likewise.
2140         (check_goto): Likewise.
2141         (start_preparsed_function): Likewise.
2142         (save_function_data): Likewise.
2143
2144         * cp-tree.h (TYPE_SET_PTRMEMFUNC_TYPE): Likewise.
2145
2146         * cp-objcp-common.c (decl_shadowed_for_var_insert): Likewise.
2147
2148         * class.c (finish_struct_1): Likewise.
2149
2150         * cp-tree.h (struct lang_type): Add variable_size GTY option.
2151         (struct lang_decl): Likewise.
2152
2153         * parser.c (cp_parser_new): Update comment to not reference
2154         ggc_alloc.
2155
2156 2010-06-07  Jason Merrill  <jason@redhat.com>
2157
2158         PR c++/44366
2159         * error.c (dump_parameters): Mask out TFF_SCOPE.
2160         (dump_simple_decl): Don't print the scope of a PARM_DECL.
2161         (dump_scope): Remove no-op mask.
2162
2163         PR c++/44401
2164         * parser.c (cp_parser_lookup_name): Fix naming the constructor.
2165
2166         * cp-tree.h (COMPLETE_OR_OPEN_TYPE_P): New macro.
2167         * init.c (build_offset_ref): Use it.
2168         * pt.c (maybe_process_partial_specialization): Use it.
2169         (instantiate_class_template): Use it.
2170         * search.c (lookup_base): Use it.
2171
2172 2010-06-07  Jakub Jelinek  <jakub@redhat.com>
2173
2174         PR c++/44444
2175         * expr.c (mark_exp_read): Handle INDIRECT_REF.
2176         * cvt.c (convert_to_void): Handle INDIRECT_REF like
2177         handled_component_p.
2178
2179         PR c++/44443
2180         * decl.c (initialize_local_var): If TREE_USED is set on the type,
2181         set also DECL_READ_P on the decl.
2182
2183 2010-05-25  Dodji Seketeli  <dodji@redhat.com>
2184
2185         PR c++/44188
2186         * cp-tree.h (typedef_variant_p): Move this declaration to
2187         gcc/tree.h.
2188         * tree.c (typedef_variant_p): Move this definition to gcc/tree.c.
2189         * decl.c (grokdeclarator): Do not rename debug info of an
2190         anonymous tagged type named by a typedef.
2191
2192 2010-06-05  Fabien Chêne  <fabien@gcc.gnu.org>
2193
2194         PR c++/44086
2195         * class.c (check_field_decls): Move the call to
2196         check_bitfield_decl before trying to set the
2197         CLASSTYPE_READONLY_FIELDS_NEED_INIT flag.
2198
2199 2010-06-05  Steven Bosscher  <steven@gcc.gnu.org>
2200
2201         * typeck.c: Update include path for moved files.
2202         * decl.c: Likewise.
2203         * rtti.c: Likewise.
2204         * cp-gimplify.c: Likewise.
2205         * cp-lang.c: Likewise.
2206         * pt.c: Likewise.
2207         * semantics.c: Likewise.
2208         * cxx-pretty-print.h: Likewise.
2209         * decl2.c: Likewise.
2210         * parser.c: Likewise.
2211         * cp-objcp-common.c: Likewise.
2212         * cp-tree.h: Likewise.
2213         * name-lookup.c: Likewise.
2214         * lex.c: Likewise.
2215         * name-lookup.h: Likewise.
2216         * config-lang.in: Update paths in gtfiles for files in c-family/.
2217         * Make-lang.in: Likewise.
2218
2219 2010-06-04  Magnus Fromreide  <magfr@lysator.liu.se>
2220
2221         * cvt.c (cp_convert_to_pointer): Use null_ptr_cst_p.
2222         * typeck.c (build_ptrmemfunc): Likewise.
2223
2224 2010-06-04  Jason Merrill  <jason@redhat.com>
2225
2226         * typeck2.c (merge_exception_specifiers): Adjust merging of
2227         throw() and noexcept(true).
2228
2229         * pt.c (value_dependent_expression_p) [NOEXCEPT_EXPR]: Avoid
2230         using an uninitialized variable.
2231
2232         * cxx-pretty-print.c (pp_cxx_unary_expression): Handle NOEXCEPT_EXPR.
2233         (pp_cxx_expression): Likewise.
2234
2235         Implement noexcept-specification (15.4)
2236         * parser.c (cp_parser_exception_specification_opt): Parse it.
2237         Give -Wdeprecated warning about throw() specs.
2238         * pt.c (tsubst_exception_specification): Handle it.
2239         * error.c (dump_exception_spec): Handle it.
2240         (dump_expr): Handle NOEXCEPT_EXPR.
2241         * cxx-pretty-print.c (pp_cxx_exception_specification): Likewise.
2242         * typeck.c (comp_except_specs): Handle compatibility rules.
2243         Change exact parm to take an enum.
2244         * typeck2.c (merge_exception_specifiers): Handle noexcept.
2245         * except.c (nothrow_spec_p, type_noexcept_p): New fns.
2246         (type_throw_all_p, build_noexcept_spec): New fns.
2247         * cp-tree.h (TYPE_NOTHROW_P, TYPE_NOEXCEPT_P): Use them.
2248         (comp_except_specs): Define ce_derived, ce_normal, ce_exact enums.
2249         (cp_tree_index): Add CPTI_NOEXCEPT_TRUE_SPEC, CPTI_NOEXCEPT_FALSE_SPEC.
2250         (noexcept_true_spec, noexcept_false_spec): New macros.
2251         * name-lookup.c (pushdecl_maybe_friend): Adjust.
2252         * search.c (check_final_overrider): Adjust.
2253         * decl.c (check_redeclaration_exception_specification): Adjust.
2254         (use_eh_spec_block): Use type_throw_all_p.
2255         (cxx_init_decl_processing): Set noexcept_false_spec,noexcept_true_spec.
2256         Give operator new a noexcept-specification in C++0x mode.
2257         * tree.c (build_exception_variant, cxx_type_hash_eq): Adjust.
2258         (cp_build_type_attribute_variant): Don't test TYPE_RAISES_EXCEPTIONS.
2259
2260         Implement noexcept operator (5.3.7)
2261         * cp-tree.def (NOEXCEPT_EXPR): New.
2262         * except.c (check_noexcept_r, finish_noexcept_expr): New.
2263         * cp-tree.h: Declare finish_noexcept_expr.
2264         * parser.c (cp_parser_unary_expression): Parse noexcept-expression.
2265         * pt.c (tsubst_copy_and_build): And tsubst it.
2266         (type_dependent_expression_p): Handle it.
2267         (value_dependent_expression_p): Handle it.
2268
2269         * call.c (build_conditional_expr): Never fold in unevaluated context.
2270         * tree.c (build_aggr_init_expr): Propagate TREE_NOTHROW.
2271         * semantics.c (simplify_aggr_init_expr): Likewise.
2272         * typeck.c (merge_types): Call merge_exception_specifiers.
2273         * decl.c (duplicate_decls): Check DECL_SOURCE_LOCATION rather than
2274         DECL_ANTICIPATED for preferring new type.
2275
2276 2010-06-04  Joseph Myers  <joseph@codesourcery.com>
2277
2278         * g++spec.c (lang_specific_driver): Use GCC-specific formats in
2279         diagnostics.
2280
2281 2010-06-04  Jakub Jelinek  <jakub@redhat.com>
2282
2283         PR c++/44412
2284         * typeck.c (build_class_member_access_expr): Call mark_exp_read
2285         on object for static data members.
2286
2287 2010-06-04  Jakub Jelinek  <jakub@redhat.com>
2288             Jason Merrill  <jason@redhat.com>
2289
2290         PR c++/44362
2291         * call.c (build_conditional_expr): If both arg2 and arg3 are lvalues
2292         with the same type, call mark_lvalue_use on both.
2293
2294 2010-06-03  Nathan Froyd  <froydnj@codesourcery.com>
2295
2296         * class.c (struct vtbl_init_data_s): Remove last_init field.
2297         (struct secondary_vptr_vtt_init_data_s): Change type of inits field
2298         to a VEC.
2299         (finish_vtbls): Use a VEC rather than a TREE_LIST for the accumulated
2300         initializers.
2301         (build_vtt): Likewise.
2302         (initialize_vtable): Take a VEC instead of a tree.
2303         (build_vtt_inits): Change return type to void.  Take a VEC **
2304         instead of a tree *; accumulate results into said VEC.
2305         (build_ctor_vtbl_group): Use a VEC rather than a TREE_LIST for the
2306         accumulated initializers.  Pass the vtable to accumulate_vtbl_inits.
2307         (accumulate_vtbl_inits): Add extra vtable tree parameter; take a VEC
2308         instead of a tree.
2309         (dfs_accumulate_vtbl_inits): Likewise.  Change return type to void.
2310         (build_vtbl_initializer): Add VEC parameter; accumulate initializers
2311         into it.
2312         (dfs_build_secondary_vptr_vtt_inits): Use CONSTRUCTOR_APPEND_ELT
2313         rather than tree_cons.
2314         (build_vbase_offset_vtbl_entries): Likewise.
2315         (add_vcall_offset): Likewise.
2316         (build_rtti_vtbl_entries): Likewise.
2317         * cp-tree.h (initialize_artificial_var): Take a VEC instead of a tree.
2318         * decl.c (initialize_artificial_var): Use build_constructor instead
2319         of build_constructor_from_list.
2320
2321 2010-06-03  H.J. Lu  <hongjiu.lu@intel.com>
2322
2323         PR c++/44294
2324         * class.c (layout_class_type): Check MAX_FIXED_MODE_SIZE on
2325         bit-field.
2326
2327 2010-06-02  Jonathan Wakely  <jwakely.gcc@gmail.com>
2328
2329         * parser.c (cp_parser_mem_initializer_list): Change error text.
2330
2331 2010-06-02  Jakub Jelinek  <jakub@redhat.com>
2332
2333         * cp-objcp-common.c (shadowed_var_for_decl): Change into
2334         tree_decl_map hashtab from tree_map.
2335         (decl_shadowed_for_var_lookup, decl_shadowed_for_var_insert): Adjust.
2336         (init_shadowed_var_for_decl): Adjust initialization.
2337
2338         PR c++/44361
2339         * cvt.c (convert_to_void): If implicit is NULL, call mark_rvalue_use
2340         instead of calling mark_exp_read only when not an assignment.
2341
2342         PR debug/44367
2343         * semantics.c (finalize_nrv): Don't copy DECL_ARTIFICIAL, DECL_IGNORED_P,
2344         DECL_SOURCE_LOCATION and DECL_ABSTRACT_ORIGIN from var to result.
2345         Set DECL_VALUE_EXPR on var.
2346
2347 2010-06-02  Jason Merrill  <jason@redhat.com>
2348
2349         * error.c (dump_type): Improve typedef handling.
2350
2351         PR c++/9726
2352         PR c++/23594
2353         PR c++/44333
2354         * name-lookup.c (same_entity_p): New.
2355         (ambiguous_decl): Multiple declarations of the same entity
2356         are not ambiguous.
2357
2358 2010-06-01  Jason Merrill  <jason@redhat.com>
2359
2360         DR 990
2361         * call.c (add_list_candidates): Prefer the default constructor.
2362         (build_aggr_conv): Treat missing initializers like { }.
2363         * typeck2.c (process_init_constructor_record): Likewise.
2364         * init.c (expand_default_init): Use digest_init for
2365         direct aggregate initialization, too.
2366
2367         * call.c (add_list_candidates): Split out...
2368         (build_user_type_conversion_1): ...from here.
2369         (build_new_method_call): And here.
2370         (implicit_conversion): Propagate LOOKUP_NO_NARROWING.
2371
2372         PR c++/44358
2373         * call.c (build_list_conv): Set list-initialization flags properly.
2374
2375 2010-06-01  Nathan Froyd  <froydnj@codesourcery.com>
2376
2377         * typeck2.c (build_x_arrow): Make types_memoized a VEC.
2378
2379 2010-06-01  Arnaud Charlet  <charlet@adacore.com>
2380             Matthew Gingell  <gingell@adacore.com>
2381
2382         * Make-lang.in (CXX_C_OBJS): Add c-ada-spec.o.
2383         * decl2.c: Include langhooks.h and c-ada-spec.h.
2384         (cpp_check, collect_source_refs, collect_ada_namespace,
2385         collect_all_refs): New functions.
2386         (cp_write_global_declarations): Add handling of -fdump-ada-spec.
2387         * lang-specs.h: Ditto.
2388
2389 2010-05-29  Nathan Froyd  <froydnj@codesourcery.com>
2390
2391         * cp-tree.h (cp_build_function_call_nary): Declare.
2392         * typeck.c (cp_build_function_call_nary): Define.
2393         * decl.c (register_dtor_fn): Use it instead of
2394         cp_build_function_call.
2395         (cxx_maybe_build_cleanup): Likewise.
2396         * decl2.c (generate_ctor_or_dtor_function): Likewise.
2397         * except.c (do_get_exception_ptr): Likewise.
2398         (do_begin_catch): Likewise.
2399         (do_allocate_exception): Likewise.
2400         (do_free_exception): Likewise.
2401         (build_throw): Likewise.  Use cp_build_function_call_vec instead
2402         of cp_build_function_call.
2403         (do_end_catch): Likewise.
2404
2405 2010-05-29  Nathan Froyd  <froydnj@codesourcery.com>
2406
2407         * cp-tree.h (struct cp_decl_specifier_seq): Move type_location field up.
2408         (struct cp_declarator): Move id_loc field up.
2409
2410 2010-05-29  Steven Bosscher  <steven@gcc.gnu.org>
2411
2412         * cp-tree.h (ATTRIBUTE_GCC_CXXDIAG): Remove.  Require that
2413         this file is included before c-common.h.  Define GCC_DIAG_STYLE
2414         before including diagnostic-core.h and toplev.h.
2415         (pedwarn_cxx98): Use ATTRIBUTE_GCC_DIAG.
2416         * pt.c: Include cp-tree.h before c-common.h.
2417
2418 2010-05-29  Steven Bosscher  <steven@gcc.gnu.org>
2419
2420         * tree.c (c_register_addr_space): Add stub.
2421
2422 2010-05-28  Joseph Myers  <joseph@codesourcery.com>
2423
2424         * g++spec.c (lang_specific_driver): Use fatal_error instead of
2425         fatal.
2426
2427 2010-05-28  Dodji Seketeli  <dodji@redhat.com>
2428
2429         Revert fix of PR c++/44188
2430         * cp-tree.h (typedef_variant_p): Revert moving this declaration to
2431         gcc/tree.h.
2432         * tree.c (typedef_variant_p): Revert moving this definition to
2433         gcc/tree.c.
2434         * decl.c (grokdeclarator): Revert naming typedef handling.
2435
2436 2010-05-27  Joseph Myers  <joseph@codesourcery.com>
2437
2438         * call.c: Include diagnostic-core.h instead of diagnostic.h.
2439         * cp-lang.c: Don't include diagnostic.h
2440         * name-lookup.c: Include diagnostic-core.h instead of
2441         diagnostic.h.
2442         (cp_emit_debug_info_for_using): Use seen_error.
2443         * optimize.c: Include diagnostic-core.h instead of diagnostic.h.
2444         * parser.c: Include diagnostic-core.h instead of diagnostic.h.
2445         * pt.c (iterative_hash_template_arg): Use seen_error.
2446         * repo.c: Include diagnostic-core.h instead of diagnostic.h.
2447         * typeck2.c: Include diagnostic-core.h instead of diagnostic.h.
2448         * Make-lang.in (cp/cp-lang.o, cp/typeck2.o, cp/call.o, cp/repo.o,
2449         cp/optimize.o, cp/parser.o, cp/name-lookup.o): Update
2450         dependencies.
2451
2452 2010-05-25  Dodji Seketeli  <dodji@redhat.com>
2453
2454         PR c++/44188
2455         * cp-tree.h (typedef_variant_p): Move this declaration to
2456         gcc/tree.h.
2457         * tree.c (typedef_variant_p): Move this definition to gcc/tree.c.
2458         * decl.c (grokdeclarator): Do not rename debug info of an
2459         anonymous tagged type named by a typedef.
2460
2461 2010-05-27  Jason Merrill  <jason@redhat.com>
2462
2463         PR c++/43555
2464         * decl.c (grokdeclarator) [cdk_pointer et al]: Force evaluation of
2465         anonymous VLA size.
2466
2467 2010-05-27  Kai Tietz  <kai.tietz@onevision.com>
2468
2469         PR bootstrap/44287
2470         * rtti.c (emit_support_tinfos): Check for NULL_TREE.
2471         * class.c (layout_class_type): Likewise.
2472         * decl.c (finish_enum): Likewise.
2473         * mangle.c (write_builitin_type): Likewise.
2474
2475 2010-05-26  Kai Tietz  <kai.tietz@onevision.com>
2476
2477         * cp-tree.h (cp_decl_specifier_seq): Add new bifield
2478         explicit_int128_p.
2479         * decl.c (grokdeclarator): Handle __int128.
2480         * parser.c (cp_lexer_next_token_is_decl_specifier_ke): Likewise.
2481         (cp_parser_simple_type_specifier): Likewise.
2482         * rtti.c (emit_support_tinfos): Add int128 nodes for rtti.
2483         * typeck.c (cp_common_type): Handle __int128.
2484         * mangle.c (integer_type_codes): Add itk_int128 and
2485         itk_unsigned_int128.
2486
2487 2010-05-26  Jason Merrill  <jason@redhat.com>
2488
2489         PR c++/43382
2490         * pt.c (tsubst_pack_expansion): Don't get confused by recursive
2491         unification.
2492
2493 2010-05-26  Steven Bosscher  <steven@gcc.gnu.org>
2494
2495         * cp-lang.c: Do not include expr.h.
2496
2497 2010-05-26  Steven Bosscher  <steven@gcc.gnu.org>
2498
2499         * decl.c: Do not include rtl.h
2500         * semantics.c: Likewise.
2501
2502 2010-05-25  Steven Bosscher  <steven@gcc.gnu.org>
2503
2504         * cp-tree.h: Do not include splay-tree.h.
2505         (struct prtmem_cst): Remove unused field and false comment.
2506         * typeck.c: Do not include rtl.h, expr.h, and tm_p.h.
2507         * optimize.c: Do not inclde rtl.h, insn-config.h, and integrate.h.
2508         * init.c: Do not include rtl.h and expr.h.
2509         * class.c: Do not include rtl.h.  Include splay-tree.h.
2510         (build_clone): Use plain NULL instead of NULL_RTX.
2511         * decl.c: Do not include expr.h.  Explain why rtl.h has to be
2512         included.  Include splay-tree.h.
2513         * method.c: Do not include rtl.h and expr.h.
2514         (use_thunk): Use plain NULL instead of NULL_RTX.
2515         * except.c: Do not include rtl.h, expr.h, and libfuncs.h.
2516         * tree.c: Do not include rtl.h, insn-config.h, integrate.h,
2517         and target.h.  Include splay-tree.h.
2518         * expr.c: Do not include rtl.h and expr.h.
2519         * pt.c: Do not include obstack.h and rtl.h.
2520         (tsubst_friend_function): Use plain NULL instead of NULL_RTX.
2521         (tsubst_decl): Likewise.
2522         (instantiate_decl): Likewise.
2523         * semantics.c: Do not include exprt.h and debug.h.  Explain why
2524         rtl.h has to be included.
2525         * decl2.c: Do not include rtl.h and expr.h.  Include splay-tree.h.
2526         * call.c: Do not include rtl.h and expr.h.
2527         * search.c: Do not include obstack.h and rtl.h.
2528         * friend.c: Do not include rtl.h and expr.h.
2529         * Make-lang.in: Update dependencies.
2530
2531 2010-05-25  Jakub Jelinek  <jakub@redhat.com>
2532
2533         PR c++/18249
2534         * parser.c (non_integral_constant): Add NIC_NONE.
2535         (required_token): Add RT_NONE.
2536         (cp_parser_unary_expression): Initialize non_constant_p
2537         to NIC_NONE.
2538         (cp_parser_asm_definition): Initialize missing to RT_NONE.
2539         (cp_parser_primary_expression, cp_parser_postfix_expression,
2540         cp_parser_cast_expression, cp_parser_binary_expression,
2541         cp_parser_functional_cast): Fix formatting.
2542
2543 2010-05-25  Shujing Zhao  <pearly.zhao@oracle.com>
2544         
2545         PR c++/18249
2546         * parser.c: Remove inclusion of dyn-string.h.
2547         (non_integral_constant): New enum.
2548         (name_lookup_error): New enum.
2549         (required_token): New enum.
2550         (cp_parser_required_error): New function.
2551         (cp_parser_require): Change the type of variable token_desc to
2552         required_token and use cp_parser_required_error.
2553         (cp_parser_require_keyword): Likewise.
2554         (cp_parser_error): Use gmsgid as parameter.
2555         (cp_parser_name_lookup_error): Change the type of variable desired to
2556         name_lookup_error and put the diagnostic in the full sentences. Change
2557         caller.
2558         (cp_parser_non_integral_constant_expression): Change the type of the
2559         variable thing to non_integral_constant and put the diagnostics in
2560         full sentences. Change caller.
2561
2562 2010-05-24  Eric Botcazou  <ebotcazou@adacore.com>
2563
2564         PR middle-end/44100
2565         * typeck.c (cp_build_unary_op): Fold offsetof-like computations.
2566
2567 2010-05-24  Joseph Myers  <joseph@codesourcery.com>
2568
2569         * error.c (cp_diagnostic_starter): Update call to
2570         diagnostic_build_prefix.
2571         (cp_print_error_function,
2572         print_instantiation_partial_context_line): Check show_column flag
2573         in context.
2574
2575 2010-05-24  Jason Merrill  <jason@redhat.com>
2576
2577         PR c++/41510
2578         * decl.c (check_initializer): Don't wrap an init-list in a
2579         TREE_LIST.
2580         * init.c (build_aggr_init): Don't assume copy-initialization if
2581         init has CONSTRUCTOR_IS_DIRECT_INIT.
2582         * call.c (build_new_method_call): Sanity check.
2583
2584 2010-05-24  Nathan Froyd  <froydnj@codesourcery.com>
2585
2586         * rtti.c (tinfo_base_init): Use build_constructor instead of
2587         build_constructor_from_list.  Don't cons a tree node for
2588         returning.
2589         (generic_initializer): Use build_constructor_single instead of
2590         build_constructor_from_list.
2591         (ptr_initializer): Use build_constructor instead of
2592         build_constructor_from_list
2593         (ptm_initializer): Likewise.
2594         (class_initializer): Likewise.  Take varargs instead of TRAIL.
2595         (get_pseudo_ti_init): Adjust calls to class_initializer.  Use
2596         build_constructor instead of build_constructor_from_list.
2597
2598 2010-05-22  Steven Bosscher  <steven@gcc.gnu.org>
2599
2600         * semantics.c: Include bitmap.h.
2601         * Make-lang.in: Update dependencies.
2602
2603 2010-05-22  Jan Hubicka  <jh@suse.cz>
2604
2605         * decl2.c (maybe_emit_vtables): Produce same comdat group when outputting
2606         comdat vtables.
2607         (cxx_callgraph_analyze_expr): Remove code marking vtables needed.
2608
2609 2010-05-21  Joseph Myers  <joseph@codesourcery.com>
2610
2611         * cxx-pretty-print.c: Correct merge error.
2612
2613 2010-05-21  Joseph Myers  <joseph@codesourcery.com>
2614
2615         * error.c: Include tree-diagnostic.h and tree-pretty-print.h.
2616         (cp_print_error_function): Use diagnostic_abstract_origin macro.
2617         (cp_printer): Handle %K here using percent_K_format.
2618         * cxx-pretty-print.c: Include tree-pretty-print.h.
2619         * Make-lang.in (cp/error.o, cp/cxx-pretty-print.o): Update
2620         dependencies.
2621
2622 2010-05-21  Steven Bosscher  <steven@gcc.gnu.org>
2623
2624         * error.c, tree.c, typeck2.c, cxx-pretty-print.c, mangle.c:
2625         Clean up redundant includes.
2626
2627 2010-05-20  Paolo Carlini  <paolo.carlini@oracle.com>
2628
2629         PR c++/30298
2630         * decl.c (xref_basetypes): Return false in case of ill-formed
2631         redefinition.
2632
2633 2010-05-19  Jason Merrill  <jason@redhat.com>
2634
2635         * call.c (reference_binding): Use cp_build_qualified_type_real
2636         and cp_type_quals consistently.
2637         (add_function_candidate): Likewise.
2638         (build_conditional_expr): Likewise.
2639         (convert_like_real): Likewise.
2640         (type_passed_as): Likewise.
2641         * class.c (add_method): Likewise.
2642         (same_signature_p): Likewise.
2643         (layout_class_type): Likewise.
2644         * decl.c (cxx_init_decl_processing): Likewise.
2645         (cp_fname_init): Likewise.
2646         (grokdeclarator): Likewise.
2647         * decl2.c (cp_reconstruct_complex_type): Likewise.
2648         * init.c (build_new_1): Likewise.
2649         * method.c (do_build_copy_constructor): Likewise.
2650         (implicitly_declare_fn): Likewise.
2651         * pt.c (tsubst_aggr_type): Likewise.
2652         (tsubst): Likewise.
2653         * rtti.c (init_rtti_processing): Likewise.
2654         (build_headof): Likewise.
2655         (build_dynamic_cast_1): Likewise.
2656         (tinfo_base_init): Likewise.
2657         (emit_support_tinfos): Likewise.
2658         * semantics.c (capture_decltype): Likewise.
2659         * tree.c (cv_unqualified): Likewise.
2660         * typeck.c (composite_pointer_type): Likewise.
2661         (string_conv_p): Likewise.
2662
2663         * mangle.c (write_CV_qualifiers_for_type): Tweak.
2664
2665         * call.c (initialize_reference): Use CP_TYPE_CONST_P.
2666         * decl.c (start_decl): Likewise.
2667         * semantics.c (finish_compound_literal): Likewise.
2668         * typeck.c (check_return_expr): Use CP_TYPE_VOLATILE_P.
2669         (cp_type_readonly): Remove.
2670         * cp-tree.h: Remove declaration.
2671
2672         * typeck.c (merge_types): Preserve memfn quals.
2673
2674         * decl.c (grokdeclarator): Don't check quals on fn type.
2675         * typeck.c (cp_apply_type_quals_to_decl): Likewise.
2676         * tree.c (cp_build_qualified_type_real): Simplify qualifier checking.
2677
2678         PR c++/44193
2679         * typeck.c (type_memfn_quals): New fn.
2680         (apply_memfn_quals): New fn.
2681         (cp_type_quals): Return TYPE_UNQUALIFIED for FUNCTION_TYPE.
2682         (cp_type_readonly): Use cp_type_quals.
2683         * cp-tree.h: Add declarations.
2684         * tree.c (cp_build_qualified_type_real): Don't set, but do
2685         preserve, quals on FUNCTION_TYPE.
2686         (strip_typedefs): Use apply_memfn_quals and type_memfn_quals.
2687         * decl.c (build_ptrmem_type): Likewise.
2688         (grokdeclarator): Likewise.
2689         (static_fn_type): Likewise.
2690         * decl2.c (change_return_type): Likewise.
2691         (cp_reconstruct_complex_type): Likewise.
2692         * pt.c (tsubst_function_type): Likewise.
2693         (unify): Likewise.
2694         (tsubst): Likewise.  Drop special FUNCTION_TYPE substitution code.
2695
2696 2010-05-18  Nathan Froyd  <froydnj@codesourcery.com>
2697
2698         * tree.c (build_min_non_dep_call_vec): Update comment.
2699
2700 2010-05-17  Jason Merrill  <jason@redhat.com>
2701
2702         * call.c (struct z_candidate): Add explicit_targs field.
2703         (add_template_candidate_real): Set it.
2704         (build_over_call): Use it to control init-list warning.
2705
2706         PR c++/44157
2707         * call.c (build_over_call): Limit init-list deduction warning to
2708         cases where the argument is actually an init-list.
2709
2710         PR c++/44158
2711         * call.c (build_over_call): Don't do bitwise copy for move ctor.
2712
2713 2010-05-17  Dodji Seketeli  <dodji@redhat.com>
2714             Jason Merrill  <jason@redhat.com>
2715
2716         PR c++/44108
2717         * decl.c (compute_array_index_type): Call mark_rvalue_use.
2718
2719 2010-05-15  Jason Merrill  <jason@redhat.com>
2720
2721         * cp-tree.h (TYPE_NOEXCEPT_P): New macro.
2722         * except.c (begin_eh_spec_block): Use MUST_NOT_THROW_EXPR if
2723         TYPE_NOEXCEPT_P.
2724         (finish_eh_spec_block): Adjust.
2725
2726 2010-05-15  Jakub Jelinek  <jakub@redhat.com>
2727
2728         PR c++/44148
2729         * pt.c (tsubst): Unshare template argument.
2730
2731 2010-05-15  Steven Bosscher  <steven@gcc.gnu.org>
2732
2733         * decl.c: Include tree-iterator.h, as fixup for tree-inline.h changes.
2734         * Make-lang.in: Fix dependencies accordingly.
2735
2736 2010-05-14  Jason Merrill  <jason@redhat.com>
2737
2738         C++ DR 475
2739         * except.c (build_throw): Simplify, adjust for DR 475.
2740
2741         PR c++/44127
2742         * except.c (dtor_nothrow): Return nonzero for type with
2743         trivial destructor.
2744
2745         PR c++/44127
2746         * cp-gimplify.c (gimplify_must_not_throw_expr): Use
2747         gimple_build_eh_must_not_throw.
2748
2749 2010-05-14  Martin Jambor  <mjambor@suse.cz>
2750
2751         * cp-lang.c (LANG_HOOKS_FOLD_OBJ_TYPE_REF): Remove both its undef
2752         and define.
2753
2754 2010-05-14  Jonathan Wakely  <jwakely.gcc@gmail.com>
2755
2756         * call.c (build_new_method_call): Change warning text.
2757         * typeck2.c (build_functional_cast): Change error text.
2758
2759 2010-05-14  Shujing Zhao  <pearly.zhao@oracle.com>
2760
2761         PR c++/30566
2762         * name-lookup.c (pushdecl_maybe_friend): Avoid the warnings about
2763         shadowing the outer parameter or variables by the declaration of
2764         nested function in nested structure or class. Warn the shadowing by
2765         the declaration of nested lambda expression.
2766
2767 2010-05-13  Jason Merrill  <jason@redhat.com>
2768
2769         * typeck.c (cp_build_array_ref): Factor out from...
2770         (build_array_ref): ...here.  Drop complain parm.
2771         (build_new_op): Adjust.
2772         * class.c (build_vtbl_ref_1): Adjust.
2773         * decl2.c (grok_array_decl): Adjust.
2774         * cp-tree.h: Adjust prototypes.
2775
2776 2010-05-13  Jan Hubicka  <jh@suse.cz>
2777
2778         * decl.c (cp_finish_decl): Do not worry about used attribute.
2779
2780 2010-05-12  Jason Merrill  <jason@redhat.com>
2781
2782         * typeck.c (build_array_ref): Take complain parm.
2783         * cp-tree.h: Add it to prototype.
2784         * call.c (build_new_op): Pass it.
2785         * class.c (build_vtbl_ref): Pass it.
2786         * decl2.c (grok_array_decl): Pass it.
2787
2788         PR bootstrap/44048
2789         PR target/44099
2790         * cp-tree.def (NULLPTR_TYPE): Remove.
2791         * cp-tree.h (NULLPTR_TYPE_P): New.
2792         (SCALAR_TYPE_P): Use it.
2793         (nullptr_type_node): New.
2794         (cp_tree_index): Add CPTI_NULLPTR_TYPE.
2795         * decl.c (cxx_init_decl_processing): Call record_builtin_type on
2796         nullptr_type_node.
2797         * cvt.c (ocp_convert): Use NULLPTR_TYPE_P instead of NULLPTR_TYPE.
2798         * cxx-pretty-print.c (pp_cxx_constant): Likewise.
2799         * error.c (dump_type, dump_type_prefix, dump_type_suffix): Likewise.
2800         * mangle.c (write_type): Likewise.
2801         * name-lookup.c (arg_assoc_type): Likewise.
2802         * typeck.c (build_reinterpret_cast_1): Likewise.
2803         * rtti.c (typeinfo_in_lib_p): Likewise.
2804         (emit_support_tinfos): Remove local nullptr_type_node.
2805
2806         * cp-tree.h (UNKNOWN_TYPE): Remove.
2807         * decl.c (cxx_init_decl_processing): Use LANG_TYPE instead.
2808         * error.c (dumy_type, dump_type_prefix, dump_type_suffix): Likewise.
2809         * typeck2.c (cxx_incomplete_type_diagnostic): Likewise.
2810         * class.c (instantiate_type): Check unknown_type_node rather than
2811         UNKNOWN_TYPE.
2812         * name-lookup.c (maybe_push_decl): Likewise.
2813         * rtti.c (get_tinfo_decl_dynamic): Likewise.
2814         (get_typeid): Likewise.
2815         * semantics.c (finish_offsetof): Likewise.
2816
2817         PR c++/20669
2818         * call.c (add_template_candidate_real): If deduction fails, still
2819         add the template as a non-viable candidate.
2820         (equal_functions): Handle template candidates.
2821         (print_z_candidate): Likewise.
2822         (print_z_candidates): Likewise.
2823         (build_new_function_call): Likewise.
2824
2825         * cp-tree.h (LOOKUP_LIST_ONLY): New.
2826         * call.c (add_candidates): Enforce it.
2827         (build_new_method_call): Try non-list ctor if no viable list ctor.
2828         (build_user_type_conversion_1): Likewise.
2829
2830         * call.c (add_candidates): Distinguish between type(x) and
2831         x.operator type().
2832         (convert_class_to_reference): Set LOOKUP_NO_CONVERSION.
2833         (build_new_method_call): Give better error for conversion op.
2834
2835         * call.c (add_candidates): Add first_arg and return_type parms.
2836         Add special constructor/conversion op handling.
2837         (convert_class_to_reference): Use it.
2838         (build_user_type_conversion_1): Likewise.
2839         (build_op_call): Likewise.
2840         (build_new_method_call): Likewise.
2841         (build_new_op): Adjust.
2842         (perform_overload_resolution): Adjust.
2843
2844 2010-05-11  Paolo Carlini  <paolo.carlini@oracle.com>
2845
2846         PR c++/34272
2847         PR c++/43630
2848         PR c++/34491
2849         * pt.c (process_partial_specialization): Return error_mark_node
2850         in case of unused template parameters in partial specialization.
2851
2852 2010-05-11  Jakub Jelinek  <jakub@redhat.com>
2853
2854         PR c++/44062
2855         * semantics.c (finish_expr_stmt): Don't call mark_exp_read here...
2856         * cvt.c (convert_to_void): ... but here.  If expr is a COMPOUND_EXPR,
2857         look at its second operand.
2858
2859 2010-05-10  Jason Merrill  <jason@redhat.com>
2860
2861         PR c++/44017
2862         * semantics.c (baselink_for_fns): Revert earlier change.
2863
2864         PR c++/44045
2865         * typeck.c (cp_build_modify_expr): Complain about assignment to
2866         array from init list.
2867
2868 2010-05-10  Fabien Chêne  <fabien.chene@gmail.com>
2869
2870         PR c++/43719
2871         * decl.c (check_initializer): strip array type before checking for
2872         uninitialized const or ref members.
2873
2874 2010-05-07  Fabien Chêne  <fabien.chene@gmail.com>
2875
2876         PR c++/43951
2877         * init.c (diagnose_uninitialized_cst_or_ref_member_1): Returns the
2878         error count. Emit errors only if compain is true.
2879         (build_new_1): Do not return error_mark_node if
2880         diagnose_uninitialized_cst_or_ref_member_1 does not diagnose any
2881         errors. Delay the check for user-provided constructor.
2882         (perform_member_init): Adjust.
2883         * cp-tree.h (diagnose_uninitialized_cst_or_ref_member): Change the
2884         prototype.
2885
2886 2010-05-06  Magnus Fromreide  <magfr@lysator.liu.se>
2887             Jason Merrill  <jason@redhat.com>
2888
2889         Add support for C++0x nullptr.
2890         * cp-tree.def: Add NULLPTR_TYPE.
2891         * cp-tree.h: Add nullptr_node.
2892         (cp_tree_index): Add CPTI_NULLPTR.
2893         (SCALAR_TYPE_P): Add NULLPTR_TYPE.
2894         * call.c (null_ptr_cst_p): Handle nullptr.
2895         (standard_conversion): Likewise.
2896         (convert_arg_to_ellipsis): Likewise.
2897         * mangle.c (write_type): Likewise.
2898         * name-lookup.c (arg_assoc_type): Likewise.
2899         * parser.c (cp_parser_primary_expression): Likewise.
2900         * typeck.c (cp_build_binary_op): Likewise.
2901         (build_reinterpret_cast_1): Likewise.
2902         * error.c (dump_type): Likewise.
2903         (dump_type_prefix, dump_type_suffix): Likewise.
2904         * decl.c (cxx_init_decl_processing): Likewise.
2905         * cxx-pretty-print.c (pp_cxx_constant): Likewise.
2906         * cvt.c (ocp_convert): Likewise.
2907         * rtti.c (typeinfo_in_lib_p, emit_support_tinfos): Put
2908         nullptr_t tinfo in libsupc++.
2909
2910 2010-05-06  Jason Merrill  <jason@redhat.com>
2911
2912         * semantics.c (simplify_aggr_init_expr): Use INIT_EXPR.
2913
2914 2010-04-22  Jakub Jelinek <jakub@redhat.com>
2915             Dodji Seketeli <dodji@redhat.com>
2916
2917         PR c/18624
2918         * cp-tree.h (mark_exp_read, rvalue_use, lvalue_use, type_use):
2919         Declare ...
2920         * expr.c (mark_exp_read, rvalue_use, lvalue_use, type_use): ... new fns.
2921         * typeck.c (cxx_sizeof_expr, cxx_alignof_expr): Call type_use.
2922         (decay_conversion, perform_integral_promotions): Call rvalue_use.
2923         (cp_build_unary_op): Call lvalue_use.
2924         * decl.c (unused_but_set_errorcount): New variable.
2925         (poplevel): Issue -Wunused-but-set-variable diagnostics.
2926         (duplicate_decls): Merge DECL_READ_P flags.
2927         (start_cleanup_fn): Set DECL_READ_P flag.
2928         (finish_function): Issue -Wunused-but-set-parameter diagnostics.
2929         * tree.c (rvalue): Call rvalue_use.
2930         * pt.c (convert_nontype_argument): Likewise.
2931         * semantics.c (finish_expr_stmt, finish_asm_stmt, finish_typeof,
2932         finish_decltype_type): Likewise.
2933         * call.c (convert_like_real) <ck_identity, ck_user>: Call rvalue use.
2934         (build_x_va_arg, build_new_method_call, build_over_call): Call lvalue_use
2935         or rvalue_use depending on the expr.
2936         * init.c (build_new, build_delete): Likewise.
2937         * rtti.c (build_typeid, build_dynamic_cast_1): Likewise.
2938
2939 2010-05-05  Jason Merrill  <jason@redhat.com>
2940
2941         PR c++/43787
2942         * cp-gimplify.c (cp_gimplify_expr): Remove copies of empty classes.
2943         * call.c (build_over_call): Don't try to avoid INIT_EXPR copies here.
2944
2945 2010-05-04  Paolo Carlini  <paolo.carlini@oracle.com>
2946
2947         PR c++/43028
2948         * pt.c (unify): Check each elt for error_mark_node.
2949
2950 2010-05-04  Jason Merrill  <jason@redhat.com>
2951
2952         PR c++/38064
2953         * typeck.c (cp_build_binary_op): Allow enums for <> as well.
2954
2955 2010-05-04  Paolo Carlini  <paolo.carlini@oracle.com>
2956
2957         PR c++/43705
2958         * call.c (build_new_method_call): Return error_mark_node if fns is
2959         NULL_TREE.
2960
2961 2010-05-03  Dodji Seketeli  <dodji@redhat.com>
2962
2963         PR c++/43953
2964         * pt.c (most_specialized_class): Pretend we are processing
2965         a template decl during the call to coerce_template_parms.
2966
2967 2010-05-03  Jason Merrill  <jason@redhat.com>
2968
2969         PR c++/42810
2970         PR c++/43680
2971         * decl.c (finish_enum): Use the TYPE_MIN_VALUE and TYPE_MAX_VALUE
2972         from the selected underlying type unless -fstrict-enums.  Set
2973         ENUM_UNDERLYING_TYPE to have the restricted range.
2974         * cvt.c (type_promotes_to): Use ENUM_UNDERLYING_TYPE.
2975         * class.c (check_bitfield_decl): Likewise.
2976
2977 2010-05-01  H.J. Lu  <hongjiu.lu@intel.com>
2978
2979         PR c++/43951
2980         * init.c (build_new_1): Revert the accidental checkin in
2981         revision 158918.
2982
2983 2010-04-30  Jason Merrill  <jason@redhat.com>
2984
2985         PR c++/43868
2986         * cxx-pretty-print.c (pp_cxx_decl_specifier_seq): Move pmf handling...
2987         (pp_cxx_type_specifier_seq): ...here.
2988
2989 2010-04-30  Steven Bosscher  <steven@gcc.gnu.org>
2990
2991         * optimize.c, parser.c, mangle.c, cp-tree.h: Do not include varray.h.
2992         * Make-lang.in: Don't include varray.h dependency in CXX_TREE_H.
2993
2994 2010-04-30  Shujing Zhao  <pearly.zhao@oracle.com>
2995
2996         PR c++/43779
2997         * typeck.c (warn_args_num): New function.
2998         (convert_arguments): Use warn_args_num to print the diagnostic
2999         messages. 
3000
3001 2010-04-29  Fabien Chêne  <fabien.chene@gmail.com>
3002
3003         PR c++/43890
3004         * init.c (diagnose_uninitialized_cst_or_ref_member): check for
3005         user-provided constructor while recursing.
3006
3007 2010-04-28  Manuel López-Ibáñez  <manu@gcc.gnu.org>
3008
3009         PR c++/9335
3010         * error.c (print_instantiation_partial_context_line): Handle
3011         recursive instantiation.
3012         (print_instantiation_partial_context): Likewise.
3013
3014 2010-04-27  Jason Merrill  <jason@redhat.com>
3015
3016         * init.c (perform_member_init): Check CLASS_TYPE_P.
3017
3018 2010-04-27  Fabien Chêne  <fabien.chene@gmail.com>
3019
3020         PR c++/29043
3021         * init.c (perform_member_init): check for uninitialized const or
3022         reference members, including array types.
3023
3024 2010-04-24  Jason Merrill  <jason@redhat.com>
3025
3026         * tree.c (get_fns): Split out from get_first_fn.
3027         * cp-tree.h: Declare it.
3028         * search.c (shared_member_p): Use it.
3029         * semantics.c (finish_qualified_id_expr): Simplify.
3030         (finish_id_expression): Simplify.
3031
3032         * semantics.c (finish_non_static_data_member): Call maybe_dummy_object
3033         whenever object is NULL_TREE.  Don't do 'this' capture here.
3034         (finish_qualified_id_expr): Pass NULL_TREE.
3035         (finish_id_expression): Likewise.
3036         (lambda_expr_this_capture): Likewise.
3037
3038         * semantics.c (finish_qualified_id_expr): Use maybe_dummy_object
3039         rather than checking current_class_ref directly.
3040         (finish_call_expr): Likewise.
3041
3042         PR c++/43856
3043         * name-lookup.c (qualify_lookup): Disqualify lambda op().
3044         * class.c (current_nonlambda_class_type): New fn.
3045         * semantics.c (nonlambda_method_basetype): New.
3046         * cp-tree.h: Declare them.
3047         * tree.c (maybe_dummy_object): Handle implicit 'this' capture.
3048
3049         * semantics.c (baselink_for_fns): Correct BASELINK_BINFO.
3050
3051         PR c++/43875
3052         * semantics.c (lambda_return_type): Complain about
3053         braced-init-list.
3054
3055         PR c++/43790
3056         * tree.c (cv_unqualified): Handle error_mark_node.
3057
3058         PR c++/41468
3059         * call.c (convert_like_real) [ck_ambig]: Just return error_mark_node
3060         if we don't want errors.
3061
3062         PR c++/41468
3063         * class.c (convert_to_base): Add complain parameter.  Pass
3064         ba_quiet to lookup_base if we don't want errors.
3065         (build_vfield_ref): Pass complain to convert_to_base.
3066         * call.c (convert_like_real): Likewise.
3067         (initialize_reference): Likewise.
3068         (perform_direct_initialization_if_possible): Pass complain to
3069         convert_like_real.
3070         * cp-tree.h: Adjust.
3071
3072 2010-04-27  Fabien Chêne  <fabien.chene@gmail.com>
3073             Jason Merrill  <jason@redhat.com>
3074
3075         PR c++/42844
3076         * decl.c (check_for_uninitialized_const_var): Handle classes that need
3077         constructing, too.
3078         (check_initializer): Call it for classes that need constructing, too.
3079         * class.c (in_class_defaulted_default_constructor): New.
3080         * cp-tree.h: Declare it.
3081
3082 2010-04-20  Jason Merrill  <jason@redhat.com>
3083
3084         PR c++/9335
3085         * init.c (constant_value_1): Treat error_mark_node as a constant
3086         if DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P is set.
3087         * cvt.c (ocp_convert): Handle getting error_mark_node from
3088         integral_constant_value.
3089         * decl.c (compute_array_index_type): Likewise.
3090
3091 2010-04-20  Dodji Seketeli  <dodji@redhat.com>
3092
3093         PR c++/43800
3094         PR c++/43704
3095         * typeck.c (incompatible_dependent_types_p): If one of the
3096         compared types if not a typedef then honour their main variant
3097         equivalence.
3098
3099 2010-04-20  Jakub Jelinek  <jakub@redhat.com>
3100
3101         * cp-tree.h (TYPE_REF_IS_RVALUE): Remove.
3102
3103 2010-04-19  Dodji Seketeli  <dodji@redhat.com>
3104
3105         PR c++/43704
3106         * typeck.c (structural_comptypes): Test dependent typedefs
3107         incompatibility before testing for their main variant based
3108         equivalence.
3109
3110 2010-04-19  Jakub Jelinek  <jakub@redhat.com>
3111
3112         * cp-tree.h (SCOPED_ENUM_P, UNSCOPED_ENUM_P, SET_SCOPED_ENUM_P): Use
3113         ENUM_IS_SCOPED bit instead of TYPE_LANG_FLAG_5.
3114
3115 2010-04-18  Eric Botcazou  <ebotcazou@adacore.com>
3116
3117         * decl.c (cxx_init_decl_processing): Remove second argument in call to
3118         build_common_tree_nodes.
3119
3120 2010-04-14  Jason Merrill  <jason@redhat.com>
3121
3122         PR c++/36625
3123         * parser.c (cp_parser_parenthesized_expression_list): Change
3124         is_attribute_list parm to int to indicate whether or not to
3125         handle initial identifier specially.
3126         (cp_parser_attribute_list): Use attribute_takes_identifier_p.
3127
3128 2010-04-13  Jason Merrill  <jason@redhat.com>
3129
3130         * call.c (type_decays_to): Check MAYBE_CLASS_TYPE_P instead of
3131         CLASS_TYPE_P.
3132         * parser.c (cp_parser_lambda_expression): Complain about lambda in
3133         unevaluated context.
3134         * pt.c (iterative_hash_template_arg): Don't crash on lambda.
3135
3136 2010-04-12  Jason Merrill  <jason@redhat.com>
3137
3138         PR c++/43641
3139         * semantics.c (maybe_add_lambda_conv_op): Use build_call_a and tweak
3140         return value directly.
3141
3142         * call.c (type_decays_to): Call cv_unqualified for non-class type.
3143
3144 2010-04-12  Fabien Chene  <fabien.chene@gmail.com>
3145
3146         PR c++/25811
3147         * cp-tree.h (diagnose_uninitialized_cst_or_ref_member): Declare.
3148         * init.c (build_new_1): Check for uninitialized const members and
3149         uninitialized reference members, when using new without
3150         new-initializer. Call diagnose_uninitialized_cst_or_ref_member.
3151         (diagnose_uninitialized_cst_or_ref_member): Define, call
3152         diagnose_uninitialized_cst_or_ref_member_1.
3153         (diagnose_uninitialized_cst_or_ref_member_1): New function.
3154
3155 2010-04-12  Richard Guenther  <rguenther@suse.de>
3156
3157         PR c++/43611
3158         * semantics.c (expand_or_defer_fn_1): Do not keep extern
3159         template inline functions.
3160
3161 2010-04-09  Manuel López-Ibáñez  <manu@gcc.gnu.org>
3162
3163         PR c++/28584
3164         * typeck.c (cp_build_c_cast): Warn for casting integer to larger
3165         pointer type.
3166
3167 2010-04-07  Jason Merrill  <jason@redhat.com>
3168
3169         PR c++/43016
3170         * decl.c (start_preparsed_function): Do defer nested functions.
3171
3172         PR c++/11094, DR 408
3173         * cp-tree.h (VAR_HAD_UNKNOWN_BOUND, SET_VAR_HAD_UNKNOWN_BOUND): New.
3174         * decl2.c (finish_static_data_member_decl): Set it.
3175         * decl.c (duplicate_decls): Propagate it.
3176         * pt.c (tsubst_decl): Don't substitute the domain of an array
3177         VAR_DECL if it's set.
3178         (regenerate_decl_from_template): Substitute it here.
3179         (type_dependent_expression_p): Return true if it's set.
3180         * semantics.c (finish_decltype_type): Instantiate such a variable.
3181         * typeck.c (cxx_sizeof_expr): Likewise.
3182         (strip_array_domain): New.
3183
3184         PR c++/43145
3185         * name-lookup.c (current_decl_namespace): Non-static.
3186         (pop_nested_namespace): Sanity check.
3187         * cp-tree.h: Declare current_decl_namespace.
3188         * decl.c (grokvardecl): Use it instead of current_namespace.
3189         (grokfndecl): Likewise.
3190
3191         PR c++/38392
3192         * pt.c (tsubst_friend_function): Instatiate a friend that has already
3193         been used.
3194
3195         * pt.c (print_template_statistics): New.
3196         * cp-tree.h: Declare it.
3197         * tree.c (cxx_print_statistics): Call it.
3198
3199         PR c++/41970
3200         * decl.c (grokvardecl): Tweak warning message.
3201         (grokfndecl): Likewise.
3202
3203 2010-04-07  Dodji Seketeli  <dodji@redhat.com>
3204
3205         PR c++/42697
3206         *pt.c (tsubst_decl): Get the arguments of a specialization from
3207         the specialization template, not from the most general template.
3208
3209 2010-04-07  Dodji Seketeli  <dodji@redhat.com>
3210
3211         PR c++/40239
3212         * typeck2.c (process_init_constructor_record):
3213         value-initialize members that are are not explicitely
3214         initialized.
3215
3216 2010-04-07  Jie Zhang  <jie@codesourcery.com>
3217
3218         PR c++/42556
3219         * typeck2.c (split_nonconstant_init_1): Drop empty CONSTRUCTOR
3220         when all of its elements are non-constant and have been split out.
3221
3222 2010-04-06  Taras Glek  <taras@mozilla.com>
3223             Jason Merrill  <jason@redhat.com>
3224
3225         * parser.c (cp_parser_class_specifier): Set class location to that
3226         of IDENTIFIER_NODE instead of '{' when possible.
3227         * semantics.c (begin_class_definition): Do not overide locations
3228         with less precise ones.
3229
3230 2010-04-06  Jason Merrill  <jason@redhat.com>
3231
3232         PR c++/43648
3233         * name-lookup.c (constructor_name_p): Allow X::~X even for typedefs.
3234
3235         PR c++/43621
3236         * pt.c (maybe_update_decl_type): Check the return value from
3237         push_scope.
3238
3239 2010-04-01  Jason Merrill  <jason@redhat.com>
3240
3241         * decl.c (next_initializable_field): No longer static.
3242         * cp-tree.h: Declare it.
3243         * call.c (build_aggr_conv): Fail if there are more initializers
3244         than initializable fields.
3245
3246         * semantics.c (maybe_add_lambda_conv_op): Use null_pointer_node
3247         instead of void_zero_node.
3248
3249 2010-03-31  Dodji Seketeli  <dodji@redhat.com>
3250
3251         PR c++/43558
3252         * cp-tree.h (TEMPLATE_TYPE_PARM_SIBLING_PARMS): New accessor macro.
3253         * pt.c (end_template_parm_list): Store sibling template parms of
3254         each TEMPLATE_TYPE_PARMs into its TEMPLATE_TYPE_PARM_SIBLING_PARMS.
3255         (push_template_decl_real): Don't store the containing template decl
3256         into the DECL_CONTEXT of TEMPLATE_TYPE_PARMs anymore.
3257         * typeck.c (get_template_parms_of_dependent_type): Get sibling parms
3258         of a TEMPLATE_TYPE_PARM from TEMPLATE_TYPE_PARM_SIBLING_PARMS.
3259         Simplify the logic.
3260
3261 2010-03-30  Jason Merrill  <jason@redhat.com>
3262
3263         PR c++/43076
3264         * pt.c (push_template_decl_real): Deal better with running out of
3265         scopes before running out of template parms.
3266
3267         PR c++/41185
3268         PR c++/41786
3269         * parser.c (cp_parser_direct_declarator): Don't allow VLAs in
3270         function parameter context.  Don't print an error if parsing
3271         tentatively.
3272
3273         PR c++/43559
3274         * pt.c (more_specialized_fn): Don't control cv-qualifier check
3275         with same_type_p.
3276
3277 2010-03-26  Jason Merrill  <jason@redhat.com>
3278
3279         PR c++/43509
3280         * parser.c (cp_parser_qualifying_entity): Do accept enum names in
3281         c++0x mode, but not other type-names.
3282
3283 2010-03-26  Dodji Seketeli  <dodji@redhat.com>
3284
3285         PR c++/43327
3286         * pt.c (add_to_template_args): Support NULL ARGS;
3287         (most_specialized_class): call coerce_template_parms on
3288         template arguments passed to get_class_bindings. Use
3289         add_to_template_args.
3290         (unify): Handle VAR_DECLs.
3291
3292 2010-03-26  Dodji Seketeli  <dodji@redhat.com>
3293
3294         * cp-tree.h (get_template_parms_at_level): Change unsigned parm
3295         into int.
3296         * pt.c (get_template_parms_at_level): Adjust.
3297
3298 2010-03-25  Dodji Seketeli  <dodji@redhat.com>
3299
3300         PR c++/43206
3301         * cp-tree.h (get_template_parms_at_level): Declare ...
3302         * pt.c (get_template_parms_at_level): ... new function.
3303         * typeck.c (get_template_parms_of_dependent_type): If a template
3304         type parm's DECL_CONTEXT isn't yet set, get its siblings from
3305         current_template_parms. Use get_template_parms_at_level. Remove
3306         useless test.
3307         (incompatible_dependent_types_p): If we get empty parms from just one
3308         of the template type parms we are comparing then the template parms are
3309         incompatible.
3310
3311 2010-03-24  Jason Merrill  <jason@redhat.com>
3312
3313         PR c++/43502
3314         * parser.c (make_declarator): Initialize id_loc.
3315         (cp_parser_lambda_declarator_opt): And set it.
3316
3317 2010-03-23  Jason Merrill  <jason@redhat.com>
3318
3319         Make lambda conversion op and op() non-static.
3320         * semantics.c (maybe_add_lambda_conv_op): Make non-static.
3321         Also add the thunk function returned by the conversion op.
3322         Mark the conversion deleted if the op() is variadic.
3323         * decl2.c (mark_used): Give helpful message about deleted conversion.
3324         * parser.c (cp_parser_lambda_declarator_opt): Don't make op() static.
3325         * semantics.c (finish_this_expr): Adjust.
3326         * mangle.c (write_closure_type_name): Adjust.
3327         * decl.c (grok_op_properties): Don't allow it.
3328         * call.c (build_user_type_conversion_1): No static conversion ops.
3329         (build_op_call): Or op().
3330
3331         * decl2.c (change_return_type): Fix 'this' quals.
3332
3333 2010-03-22  Jason Merrill  <jason@redhat.com>
3334
3335         PR c++/43333
3336         * tree.c (pod_type_p): Use old meaning in C++98 mode.
3337
3338         PR c++/43281
3339         * pt.c (contains_auto_r): New fn.
3340         (do_auto_deduction): Use it.
3341         (tsubst): Don't look at TREE_TYPE of a TEMPLATE_TYPE_PARM.
3342
3343 2010-03-20  Simon Martin  <simartin@users.sourceforge.net>
3344
3345         PR c++/43081:
3346         * decl2.c (grokfield): Handle invalid initializers for member
3347         functions.
3348
3349 2010-03-20  Dodji Seketeli  <dodji@redhat.com>
3350
3351         PR c++/43375
3352         * method.c (make_alias_for): Avoid crashing when DECL_LANG_SPECIFIC
3353         is NULL.
3354         * decl2.c (vague_linkage_p): Likewise.
3355
3356 2010-03-18  Paolo Carlini  <paolo.carlini@oracle.com>
3357
3358         PR c++/43418
3359         * parser.c (cp_parser_for_init_statement): Use NULL_TREE, not
3360         false, in the cp_parser_expression_statement call.
3361
3362 2010-03-05  Jason Merrill  <jason@redhat.com>
3363
3364         * mangle.c (mangle_decl): Give name collision error even without
3365         ASM_OUTPUT_DEF.
3366
3367 2010-03-04  Marco Poletti  <poletti.marco@gmail.com>
3368
3369         * pt.c (process_partial_specialization): Use error_n instead of
3370         error.
3371
3372 2010-03-03  Jason Merrill  <jason@redhat.com>
3373
3374         PR c++/12909
3375         * mangle.c (mangle_decl): Handle VAR_DECL, too.
3376
3377 2010-03-03  Jason Merrill  <jason@redhat.com>
3378
3379         PR c++/12909
3380         * mangle.c: Include cgraph.h.
3381         (mangle_decl): If the mangled name will change in a later
3382         ABI version, make the later mangled name an alias.
3383         * method.c (make_alias_for): Copy DECL_ARGUMENTS.
3384         * Make-lang.in (mangle.o): Depend on cgraph.h.
3385         * method.c (make_alias_for): Handle VAR_DECL, too.
3386         * decl2.c (vague_linkage_p): Rename from vague_linkage_fn_p.
3387         * tree.c (no_linkage_check): Adjust.
3388         * decl.c (maybe_commonize_var): Adjust.
3389         * cp-tree.h: Adjust.
3390
3391 2010-03-01  Marco Poletti  <poletti.marco@gmail.com>
3392
3393         * pt.c (redeclare_class_template): Use error_n and inform_n.
3394
3395 2010-02-27  Mark Mitchell  <mark@codesourcery.com>
3396
3397         PR c++/42748
3398         * cp-tree.h (push_tinst_level): Declare.
3399         (pop_tinst_level): Likewise.
3400         * pt.c (push_tinst_level): Give it external linkage.
3401         (pop_tinst_level): Likewise.
3402         * mangle.c (mangle_decl_string): Set the source location to that
3403         of the decl while mangling.
3404
3405 2010-02-27  Simon Martin  <simartin@users.sourceforge.net>
3406
3407         PR c++/42054
3408         * pt.c (redeclare_class_template): Return false if there are erroneous
3409         template parameters.
3410
3411 2010-02-24  Manuel López-Ibáñez  <manu@gcc.gnu.org>
3412
3413         * pt.c (push_tinst_level): Replace -ftemplate-depth- with 
3414         -ftemplate-depth=.
3415
3416 2010-02-24  Jason Merrill  <jason@redhat.com>
3417
3418         PR c++/12909
3419         * mangle.c (write_type): Give -Wabi warning for old vector mangling.
3420
3421         * class.c (layout_class_type): Don't give -Wabi warning for a bug
3422         in a previous ABI version.
3423
3424 2010-02-23  Jason Merrill  <jason@redhat.com>
3425
3426         PR c++/43143
3427         * typeck2.c (digest_init_r): Accept value init of array.
3428
3429 2010-02-22  Manuel López-Ibáñez  <manu@gcc.gnu.org>
3430
3431         PR c++/43126
3432         * typeck.c (convert_arguments): Update error message.
3433
3434 2010-02-22  Mike Stump  <mikestump@comcast.net>
3435
3436         PR c++/43125
3437         * decl.c (duplicate_decls): Merge DECL_PRESERVE_P.
3438
3439 2010-02-21  Manuel López-Ibáñez  <manu@gcc.gnu.org>
3440
3441         PR c++/23510
3442         * error.c (print_instantiation_partial_context_line): New.
3443         (print_instantiation_partial_context): Print at most 12 contexts,
3444         skip the rest with a message.
3445
3446 2010-02-21  Dodji Seketeli  <dodji@redhat.com>
3447
3448         PR c++/42824
3449         * pt.c (lookup_template_class): Better support of specialization
3450         of member of class template implicit instantiation.
3451
3452 2010-02-20  Manuel López-Ibáñez  <manu@gcc.gnu.org>
3453
3454         PR c++/35669
3455         * call.c (conversion_null_warnings): Replace -Wconversion with
3456         -Wconversion-null.
3457         * cvt.c (build_expr_type_conversion): Likewise.
3458
3459 2010-02-18  Jason Merrill  <jason@redhat.com>
3460
3461         PR c++/42837
3462         * class.c (create_vtable_ptr): Set DECL_PACKED if type is packed.
3463
3464         PR c++/43108
3465         * typeck.c (cp_build_binary_op): Adapt mixed complex/non handling from
3466         C build_binary_op.
3467         * cp-tree.h (WANT_VECTOR_OR_COMPLEX): Rename from WANT_VECTOR.
3468         * cvt.c (build_expr_type_conversion): Allow COMPLEX_TYPE.
3469
3470         PR c++/43070
3471         * semantics.c (finish_goto_stmt): Don't call decay_conversion.
3472
3473         PR c++/26261
3474         PR c++/43101
3475         * pt.c (tsubst_qualified_id): Do normal lookup in non-dependent scope.
3476         (maybe_update_decl_type): New fn.
3477         * parser.c (cp_parser_init_declarator): Use it.
3478
3479         PR c++/43109
3480         * semantics.c (begin_class_definition): Don't crash on unnamed ns.
3481
3482 2010-02-17  Jason Merrill  <jason@redhat.com>
3483
3484         PR c++/43075
3485         * call.c (build_over_call): Don't create zero-sized assignments.
3486         * cp-gimplify.c (cp_genericize_r): Don't remove them here.
3487         * cp-objcp-common.c (cp_expr_size): Remove.
3488         * cp-tree.h: Remove prototype.
3489
3490         PR c++/43069
3491         * name-lookup.c (set_decl_namespace): Don't copy DECL_CONTEXT if the
3492         decl we looked up doesn't match.
3493
3494         PR c++/43093
3495         * cp-gimplify.c (cp_gimplify_expr) [INIT_EXPR]: Return if we don't
3496         have an INIT_EXPR anymore.
3497
3498         PR c++/43079
3499         * pt.c (convert_nontype_argument): Change assert to test.
3500
3501 2010-02-16  Jason Merrill  <jason@redhat.com>
3502
3503         * cp-gimplify.c (cp_gimplify_expr): Fix error recovery.
3504
3505         PR c++/43031
3506         * cp-gimplify.c (cp_gimplify_expr) [MODIFY_EXPR]: Use
3507         VIEW_CONVERT_EXPR for conversions between structural equality types
3508         that the back end can't tell are the same.
3509
3510         PR c++/43036
3511         * tree.c (build_cplus_array_type): Set TYPE_MAIN_VARIANT to strip
3512         cv-quals from element here.
3513         (cp_build_qualified_type_real): Not here.  Preserve typedef name.
3514
3515 2010-02-14  Jason Merrill  <jason@redhat.com>
3516
3517         PR c++/41997
3518         * semantics.c (finish_compound_literal): Use
3519         cp_apply_type_quals_to_decl when creating a static variable.
3520
3521 2010-02-12  Jason Merrill  <jason@redhat.com>
3522
3523         PR c++/43024
3524         * name-lookup.h (current_binding_level): Check for null
3525         cp_function_chain.
3526
3527 2010-02-12  Jason Merrill  <jason@redhat.com>
3528
3529         PR c++/43054
3530         * tree.c (cp_tree_equal): Correct CALL_EXPR logic.
3531
3532 2010-02-12  Jakub Jelinek  <jakub@redhat.com>
3533
3534         PR c++/43033
3535         * name-lookup.c (pushdecl_maybe_friend): Check default args of t
3536         instead of x.
3537
3538 2010-02-10  Jason Merrill  <jason@redhat.com>
3539
3540         PR c++/41896
3541         * semantics.c (outer_lambda_capture_p): Revert.
3542         (add_capture): Only finish_member_declaration if
3543         we're in the lambda class.
3544         (register_capture_members): New.
3545         * cp-tree.h: Declare it.
3546         * parser.c (cp_parser_lambda_expression): Call it.
3547
3548 2010-02-10  Jason Merrill  <jason@redhat.com>
3549
3550         PR c++/41896
3551         * semantics.c (outer_lambda_capture_p): Use current_function_decl
3552         instead of current_class_type.
3553
3554 2010-02-10  Jason Merrill  <jason@redhat.com>
3555
3556         PR c++/42983, core issue 906
3557         * method.c (defaultable_fn_check): Check virtualness.
3558
3559 2010-02-10  Jason Merrill  <jason@redhat.com>
3560
3561         PR c++/43016
3562         * semantics.c (maybe_add_lambda_conv_op): Set DECL_INTERFACE_KNOWN.
3563
3564 2010-02-10  Shujing Zhao  <pearly.zhao@oracle.com>
3565
3566         * Make-lang.in (cp/cvt.o, cp/parser.o, cp/search.o): Depend on intl.h.
3567         * cvt.c (warn_ref_binding): Wrap the messages into G_() for easy
3568         translation.
3569         * parser.c (cp_parser_postfix_expression, cp_parser_new_type_id)
3570         (cp_parser_cast_expression, cp_parser_condition, cp_parser_decltype)
3571         (cp_parser_parameter_declaration)
3572         (cp_parser_exception_specification_opt)
3573         (cp_parser_exception_declaration): Likewise.
3574         * pt.c (check_default_tmpl_args): Likewise.
3575         * search.c (lookup_field_r): Likewise.
3576
3577 2010-02-09  Jason Merrill  <jason@redhat.com>
3578
3579         PR c++/42399
3580         * pt.c (tsubst_copy_and_build): Propagate LAMBDA_EXPR_LOCATION.
3581
3582 2010-02-09  Jason Merrill  <jason@redhat.com>
3583
3584         PR c++/42370
3585         * decl2.c (change_return_type): New fn.
3586         * semantics.c (apply_lambda_return_type): Use it.
3587         * cp-tree.h: Declare it.
3588
3589 2010-02-05  Richard Guenther  <rguenther@suse.de>
3590
3591         * Make-lang.in (cp/cp-lang.o): Depend on gt-cp-cp-lang.h.
3592         * cp-lang.c: Include gt-cp-cp-lang.h.
3593         * config-lang.in (gtfiles): Add cp/cp-lang.c.
3594
3595 2010-02-05  Dodji Seketeli  <dodji@redhat.com>
3596
3597         PR c++/42915
3598         * typeck.c (get_template_parms_of_dependent_type): Try getting
3599         the template parameters fromt the type itself first.
3600
3601 2010-02-03  Jason Merrill  <jason@redhat.com>
3602
3603         PR c++/4926
3604         PR c++/38600
3605         * mangle.c (write_unqualified_id): Split out from write_expression.
3606         (write_unqualified_name): Call it.
3607         (write_member_name): Likewise.
3608         (write_expression): Support TEMPLATE_ID_EXPR.
3609         Disambiguate operator names.
3610
3611         PR c++/12909
3612         * mangle.c (write_type) [VECTOR_TYPE]: Change mangling with
3613         -fabi-version=4.
3614
3615 2010-02-02  Jason Merrill  <jason@redhat.com>
3616
3617         PR c++/41090
3618         * decl.c (cp_finish_decl): Add local statics to cfun->local_decls.
3619         * optimize.c (clone_body): Remap their initializers when making base
3620         variants.
3621         (maybe_clone_body): Complain if multiple clones aren't safe.
3622
3623 2010-01-29  Dodji Seketeli  <dodji@redhat.com>
3624
3625         PR c++/42758
3626         PR c++/42634
3627         PR c++/42336
3628         PR c++/42797
3629         PR c++/42880
3630         * cp-tree.h (NON_DEFAULT_TEMPLATE_ARGS_COUNT,
3631         SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT,
3632         GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT): New accessor macros.
3633         * pt.c (coerce_template_parms, type_unification_real,
3634         expand_template_argument_pack, coerce_template_parameter_pack):
3635         Set the non default template args count.
3636         (current_template_args): Always set non defaulted
3637         template args count when compiled with --enable-checking
3638         (tsubst_template_args, type_unification_real): Propagate the non
3639         defaulted template args count.
3640         * error.c (get_non_default_template_args_count): Renamed
3641         count_non_default_template_args into this. Don't calculate the
3642         non default template argument count anymore. Use the new
3643         accessor macros above to get it.
3644         (dump_template_argument_list, dump_type, dump_decl,
3645         dump_template_parms): Adjust.
3646         * parser.c (cp_parser_template_argument_list): Always set defaulted
3647         template args count when compiled with --enable-checking.
3648
3649 2010-01-29  Shujing Zhao  <pearly.zhao@oracle.com>
3650
3651         * decl.c (redeclaration_error_message): Wrap the return messages into
3652         G_() for easy translation.
3653
3654 2010-01-28  Jason Merrill  <jason@redhat.com>
3655
3656         PR c++/42880
3657         * semantics.c (begin_class_definition): Don't use type_as_string.
3658
3659 2010-01-28  Dodji Seketeli  <dodji@redhat.com>
3660
3661         PR c++/42713
3662         PR c++/42820
3663         * typeck.c (get_template_parms_of_dependent_type): Factorized
3664         this out of incompatible_template_type_parms_p
3665         (incompatible_dependent_types_p): Renamed
3666         incompatible_template_type_parms_p into this. Make it detect
3667         two incompatible dependent typedefs too.
3668         (structural_comptypes): Use incompatible_dependent_types_p.
3669         * pt.c (get_template_info):
3670         Handle BOUND_TEMPLATE_TEMPLATE_PARAM.
3671
3672 2010-01-20  Janis Johnson  <janis187@us.ibm.com>
3673             Jason Merrill  <jason@redhat.com>
3674
3675         * mangle.c (write_type): Mangle transparent record as member type.
3676         * semantics.c (begin_class_definition): Recognize decimal classes
3677         and set TYPE_TRANSPARENT_AGGR.
3678
3679 2010-01-20  Jason Merrill  <jason@redhat.com>
3680
3681         PR c++/42338
3682         * mangle.c (write_expression): Handle tree codes that have extra
3683         arguments in the middle-end.
3684
3685 2010-01-20  Paolo Carlini  <paolo.carlini@oracle.com>
3686
3687         PR c++/42038
3688         * except.c (expand_start_catch_block): Deal correctly with
3689         do_begin_catch returning error_mark_node.
3690
3691 2010-01-20  Jason Merrill  <jason@redhat.com>
3692
3693         PR c++/41788
3694         * class.c (layout_class_type): Set packed_maybe_necessary for packed
3695         non-PODs.
3696
3697         PR c++/41920
3698         * semantics.c (build_lambda_object): Call mark_used on captured
3699         variables.
3700
3701         PR c++/40750
3702         * decl.c (grokdeclarator): Clear type_quals for a member function
3703         declared using a typedef.  Don't complain about adding cv-quals
3704         to a function typedef in C++0x mode.
3705
3706 2010-01-20  Jakub Jelinek  <jakub@redhat.com>
3707
3708         * decl.c (create_array_type_for_decl): Remove set but not used
3709         variable error_msg.  Remove break stmts after return stmts.
3710
3711 2010-01-19  Dodji Seketeli  <dodji@redhat.com>
3712
3713         * error.c (dump_template_parms, count_non_default_template_args):
3714         Revert fix of PR c++/42634.
3715
3716 2010-01-18  Dodji Seketeli  <dodji@redhat.com>
3717
3718         PR c++/42634
3719         * error.c (dump_template_parms): Use innermost template
3720         arguments before calling count_non_default_template_args.
3721         (count_non_default_template_args): We are being called with
3722         template innermost arguments now. There is no need to ensure
3723         that again.
3724
3725 2010-01-18  Dodji Seketeli  <dodji@redhat.com>
3726
3727         PR c++/42766
3728         * cvt.c (build_expr_type_conversion): Look through OVERLOAD.
3729
3730 2010-01-17  Dodji Seketeli  <dodji@redhat.com>
3731
3732         PR c++/42697
3733         *pt.c (tsubst_decl):  Revert commit for PR c++/42697.
3734
3735 2010-01-17  Dodji Seketeli  <dodji@redhat.com>
3736
3737         PR c++/42697
3738         *pt.c (tsubst_decl): Get the arguments of a specialization from
3739         the specialization template, not from the most general template.
3740
3741 2010-01-16  Jason Merrill  <jason@redhat.com>
3742
3743         PR c++/42761
3744         * semantics.c (finish_decltype_type): Within a template, treat
3745         unresolved CALL_EXPR as dependent.
3746
3747 2010-01-15  Dodji Seketeli  <dodji@redhat.com>
3748
3749         * error.c (dump_template_parms,count_non_default_template_args):
3750         Revert changes of PR c++/42634.
3751
3752 2010-01-14  Jakub Jelinek  <jakub@redhat.com>
3753
3754         PR middle-end/42674
3755         * decl.c (finish_function): Don't emit -Wreturn-type warnings in
3756         functions with noreturn attribute.
3757
3758 2010-01-14  Jason Merrill  <jason@redhat.com>
3759
3760         PR c++/42701
3761         * call.c (build_new_method_call): Don't free the vec here.
3762
3763         PR c++/42655
3764         * call.c (convert_like_real): Do full decay_conversion for ck_rvalue.
3765
3766 2010-01-13  Dodji Seketeli  <dodji@redhat.com>
3767
3768         PR c++/42634
3769         * error.c (dump_template_parms): Use innermost template
3770         arguments before calling count_non_default_template_args.
3771         (count_non_default_template_args): We are being called with
3772         template innermost arguments now. There is no need to ensure
3773         that again.
3774
3775 2010-01-07  Dodji Seketeli  <dodji@redhat.com>
3776
3777         c++/40155
3778         * pt.c (unify_pack_expansion): In non-deduced contexts, re-use template
3779         arguments that were previously deduced.
3780
3781 2010-01-05  Jason Merrill  <jason@redhat.com>
3782
3783         * pt.c (unify_pack_expansion): Handle deduction from init-list.
3784         * call.c (build_over_call): Don't complain about it.
3785
3786 2010-01-04  Jason Merrill  <jason@redhat.com>
3787
3788         PR c++/42555
3789         * pt.c (tsubst_decl): Don't apply type attributes in place.
3790
3791         PR c++/42567
3792         * semantics.c (describable_type): Remove decltype comment and
3793         semantics.
3794
3795
3796 \f
3797 Copyright (C) 2010 Free Software Foundation, Inc.
3798
3799 Copying and distribution of this file, with or without modification,
3800 are permitted in any medium without royalty provided the copyright
3801 notice and this notice are preserved.
3802