OSDN Git Service

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