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