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