OSDN Git Service

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