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