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