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