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