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