re PR c++/40370 (ICE with invalid array bound in template class)
[gcc.git] / gcc / cp / ChangeLog
1 2009-06-08 Jakub Jelinek <jakub@redhat.com>
2
3 PR c++/40370
4 PR c++/40372
5 * parser.c (cp_parser_direct_declarator): Don't set TREE_SIDE_EFFECTS
6 on error_mark_node. Check for VLAs outside of function context
7 before check whether to wrap bounds into a NOP_EXPR with
8 TREE_SIDE_EFFECTS.
9
10 2009-06-08 Alexandre Oliva <aoliva@redhat.com>
11
12 * repo.c (get_base_filename): Use aux_base_name rather than
13 alternate temporary file during second compare debug compilation.
14 (finish_repo): Skip during -fcompare-debug-second.
15
16 2009-06-06 Ian Lance Taylor <iant@google.com>
17
18 * parser.c (cp_parser_label_for_labeled_statement): Support
19 attribute on labels if immediately followed by semicolon.
20 * semantics.c (finish_label_stmt): Return new label.
21 * pt.c (tsubst_expr): Handle attributes for LABEL_EXPR.
22
23 2009-06-03 Ian Lance Taylor <iant@google.com>
24
25 * Make-lang.in (cc1plus-checksum.o): Depend upon $(CONFIG_H) and
26 $(SYSTEM_H).
27
28 2009-06-02 Mark Mitchell <mark@codesourcery.com>
29
30 * decl.c (maybe_deduce_size_from_array_init): Use relayout_decl.
31
32 2009-06-02 Jason Merrill <jason@redhat.com>
33
34 PR c++/40308
35 PR c++/40311
36 * typeck.c (cp_build_modify_expr): Always pass init-lists to the
37 conversion code.
38 * call.c (implicit_conversion): Allow init-list conversion to scalar
39 during direct-initialization, too. Mark the conversion bad if it
40 has too many levels of braces.
41 (convert_like_real): And give a helpful error.
42
43 PR c++/40306
44 PR c++/40307
45 * decl.c (cp_finish_decl): Handle auto deduction from ().
46 * typeck.c (build_x_indirect_ref): Handle dereferencing an operand
47 with dependent type that is known to be a pointer.
48
49 2009-06-02 Simon Martin <simartin@users.sourceforge.net>
50
51 PR c++/38089
52 * pt.c (register_specialization): Properly setup DECL_CONTEXT for
53 specializations in an invalid namespace.
54
55 2009-06-01 Aldy Hernandez <aldyh@redhat.com>
56
57 * error.c (print_instantiation_partial_context): Print column
58 numbers.
59
60 2009-05-29 Ian Lance Taylor <iant@google.com>
61
62 * error.c (cp_printer): Don't use va_arg with enum type.
63
64 2009-05-28 Dodji Seketeli <dodji@redhat.com>
65
66 PR c++/39754
67 * cp-tree.h (canonical_type_variant): Remove this function declaration.
68 (strip_typedefs): New function declaration.
69 * tree.c (strip_typedefs): New function definition.
70 (canonical_type_variant): Remove function definition.
71 * cvt.c (convert_from_reference): No need to use
72 canonical_type_variant.
73 * typeck.c (cp_build_indirect_ref): Likewise.
74 * error.c (dump_template_bindings): Use strip_typedefs instead of
75 canonical_type_variant.
76 * pt.c (convert_template_argument, unify): Likewise.
77 * mangle.c (canonicalize_for_substitution): Don't use
78 canonical_type_variant.
79
80 2009-05-27 Jason Merrill <jason@redhat.com>
81
82 * call.c (implicit_conversion): Handle conversion from
83 initializer-list to scalar.
84 (convert_like_real): Likewise. Avoid crashing on list
85 initialization with bad conversions.
86 (can_convert): Use LOOKUP_EXPLICIT.
87 (can_convert_arg_bad): Add flags parm.
88 * cp-tree.h: Adjust.
89 * typeck.c (convert_for_assignment): Pass flags.
90
91 2009-05-27 Ian Lance Taylor <iant@google.com>
92
93 * Make-lang.in (g++$(exeext)): Change $(COMPILER) to $(LINKER).
94 (cc1plus-dummy$(exeext), cc1plus$(exeext)): Likewise.
95
96 2009-05-26 Ian Lance Taylor <iant@google.com>
97
98 * Make-lang.in (g++spec.o): Use $(COMPILER).
99 (g++$(exeext), cc1plus-dummy$(exeext)): Likewise.
100 (cc1plus$(exeext)): Likewise.
101
102 2009-05-26 Dodji Seketeli <dodji@redhat.com>
103
104 PR c++/40007
105 * cp-tree.h (MEMBER_TYPES_NEEDING_ACCESS_CHECK): Remove this accessor.
106 (TI_TYPEDEFS_NEEDING_ACCESS_CHECKING): New accessor.
107 (get_types_needing_access_check): Declare new entry point.
108 * pt.c (append_type_to_template_for_access_check_1,
109 get_types_needing_access_check): New functions.
110 (perform_typedefs_access_check): Accept FUNCTION_DECLs and
111 RECORD_TYPEs rather than TEMPLATE_DECLs. Use the new
112 get_types_needing_access_check, no more
113 MEMBER_TYPES_NEEDING_ACCESS_CHECK.
114 (instantiate_class_template): Set input_location to the source
115 location of the most specialized template definition.
116 Perform access check using the RECORD_TYPE of the template, not its
117 associated most generic TEMPLATE_DECL.
118 (append_type_to_template_for_access_check): Augment function
119 comments. Use the new get_types_needing_access_check, not
120 MEMBER_TYPE_NEEDING_ACCESS_CHECK. Use the new
121 append_type_to_template_for_access_check_1 subroutine.
122
123 2009-05-22 Jason Merrill <jason@redhat.com>
124
125 PR c++/38064
126 * typeck.c (cp_build_binary_op): Allow ENUMERAL_TYPE in
127 arithmetic comparisons.
128 (cp_common_type): Handle scoped enums.
129
130 * call.c (promoted_arithmetic_type_p): Don't use INTEGRAL_TYPE_P.
131 (add_builtin_candidate, add_builtin_candidates): Likewise.
132 (convert_like_real): Likewise.
133 * class.c (check_bitfield_decl): Likewise.
134 * decl.c (check_static_variable_definition): Likewise.
135 (compute_array_index_type): Likewise.
136 * decl2.c (grokbitfield): Likewise.
137 * init.c (build_new_1): Likewise.
138 * pt.c (convert_nontype_argument): Likewise.
139 (current_instantiation): Likewise.
140 * tree.c (pod_type_p): Likewise.
141 * typeck.c (build_static_cast_1): Likewise.
142 (build_reinterpret_cast_1): Likewise.
143
144 2009-05-22 Richard Guenther <rguenther@suse.de>
145
146 PR middle-end/38964
147 * init.c (avoid_placement_new_aliasing): Remove.
148 (build_new_1): Do not call it.
149
150 2009-05-22 Mark Mitchell <mark@codesourcery.com>
151
152 * decl2.c (decl_needed_p): Consider dllexport'd functions needed.
153 * semantics.c (expand_or_defer_fn): Similarly.
154
155 2009-05-20 Ian Lance Taylor <iant@google.com>
156
157 * parser.c (cp_parser_postfix_expression): Change args to a vec.
158 Release it when done.
159 (tree_vector): Define typedef. Define VEC functions.
160 (cp_parser_parenthesized_expression_list): Change return type to
161 vec. Change all callers.
162 (cp_parser_new_expression): Change placement and initializer to
163 vecs. Release them when done.
164 (cp_parser_new_placement): Change return type to vec. Change all
165 callers.
166 (cp_parser_new_initializer): Likewise.
167 * typeck.c (build_function_call_vec): Just call
168 cp_build_function_call_vec.
169 (cp_build_function_call): Just build a vec and call
170 cp_build_function_call_vec.
171 (cp_build_function_call_vec): New function based on old
172 cp_build_function_call.
173 (convert_arguments): Remove nargs and argarray parameters. Change
174 values to a vec. Change caller.
175 (build_x_compound_expr_from_vec): New function.
176 (cp_build_modify_expr): Build vec to pass to
177 build_special_member_call.
178 * call.c (struct z_candidate): Add first_arg field. Change args
179 field to vec.
180 (convert_class_to_reference): Handle first argument separately.
181 (add_candidate): Add first_arg parameter. Change args parameter
182 to vec. Change all callers.
183 (add_function_candidate, add_conv_candidate): Likewise.
184 (add_template_candidate_real, add_template_candidate): Likewise.
185 (add_template_conv_candidate): Likewise.
186 (build_user_type_conversion_1): Handle first argument separately.
187 (resolve_args): Change return type and parameter type to vecs.
188 Change all callers.
189 (perform_overload_resolution): Change args parameter to vec.
190 Change all callers.
191 (build_new_function_call, build_operator_new_call): Likewise.
192 (add_candidates): Likewise.
193 (build_op_call): New globally visible function, built from and
194 replacing static function build_object_call.
195 (build_new_op): Don't handle CALL_EXPR. Build vec, not tree_list,
196 of arguments.
197 (build_op_delete_call): Build vec to pass to
198 cp_build_function_call_vec.
199 (build_temp): Build vec to pass to build_special_member_call.
200 (convert_like_real): Likewise.
201 (perform_direct_initialization_if_possible): Likewise.
202 (build_over_call): Handle first_arg field. Use build_call_array
203 rather than build_call_list.
204 (build_special_member_call): Change args parameter to vec. Change
205 all callers.
206 (build_new_method_call): Likewise.
207 * init.c (expand_default_init): Change parms to vec.
208 (build_raw_new_expr): Change placement and init to vecs. Change
209 all callers.
210 (build_new_1, build_new): Likewise.
211 * class.c (resolve_address_of_overloaded_function): Build array to
212 pass to fn_type_unification.
213 * pt.c (tsubst_copy_and_build): For NEW_EXPR build vecs to pass to
214 build_new. For CALL_EXPR create a vec rather than a tree_list;
215 expand a pack if necessary.
216 (fn_type_unification): Change args parameter to const tree *. Add
217 nargs parameter. Change all callers.
218 (type_unification_real): Likewise.
219 (unify): Build array to pass to type_unification_real.
220 (get_bindings): Build array to pass to fn_type_unification.
221 (any_type_dependent_arguments_p): Change args parameter to a vec.
222 Change all callers.
223 (make_args_non_dependent): Renamed from build_non_dependent_args.
224 Change return type to void. Change parameter type to vec. Change
225 all callers.
226 (do_auto_deduction): Pass an array to type_unification_real.
227 * semantics.c (perform_koenig_lookup): Change args to vec. Change
228 all callers.
229 (finish_call_expr): Change args to vec. Change all callers. Call
230 build_op_call instead of passing CALL_EXPR to build_new_op.
231 (cxx_omp_create_clause_info): Allocate vec to pass to
232 build_special_member_call.
233 * decl2.c (build_offset_ref_call_from_tree): Change args parameter
234 to vec. Change all callers.
235 * name-lookup.c (lookup_function_nonclass): Likewise.
236 (struct arg_lookup): Change args to vec.
237 (arg_assoc_namespace): Handle args as a vec.
238 (arg_assoc_args_vec): New static function.
239 (lookup_arg_dependent): Change args parameter to vec. Change all
240 callers.
241 * method.c (do_build_assign_ref): Allocate vec to pass to
242 build_special_member_call.
243 * except.c (build_throw): Likewise.
244 * typeck2.c (build_functional_cast): Likewise.
245 * cvt.c (ocp_convert): Likewise.
246 * tree.c (build_min_non_dep_call_vec): Change last parameter to
247 vec. Change all callers.
248 * cp-tree.h: Update declarations.
249 * name-lookup.h: Update declarations.
250
251 2009-05-20 Sandra Loosemore <sandra@codesourcery.com>
252
253 * typeck.c (default_conversion): Check targetm.promoted_type.
254 * decl.c (grokdeclarator): Check targetm.invalid_return_type.
255 (grokparms): Check targetm.invalid_parameter_type.
256 * cvt.c (ocp_convert): Check targetm.convert_to_type.
257 (build_expr_type_conversion): Check targetm.promoted_type.
258
259 2009-05-19 Andrew Pinski <andrew_pinski@playstation.sony.com>
260
261 * typeck.c (build_binary_op): Allow % on integal vectors.
262
263 2009-05-18 Jason Merrill <jason@redhat.com>
264
265 Implement explicit conversions ops as specified in N2437.
266 * decl.c (grokdeclarator): Handle explicit conversion ops.
267 (check_initializer): Pass flags to store_init_value.
268 * decl2.c (maybe_emit_vtables): Likewise.
269 * init.c (expand_aggr_init_1): Likewise.
270 * call.c (convert_class_to_reference): Take flags parm,
271 check DECL_NONCONVERTING_P.
272 (build_user_type_conversion_1): Check DECL_NONCONVERTING_P.
273 (add_builtin_candidates): Simplify getting type of conversion.
274 (build_object_call): Likewise. Check DECL_NONCONVERTING_P.
275 (implicit_conversion): Pass through LOOKUP_ONLYCONVERTING.
276 (reference_binding): Take flags parm. Direct-initialize copy parm.
277 (add_function_candidate): Direct-initialize the copy parm.
278 (add_conv_candidate): Use LOOKUP_IMPLICIT, not LOOKUP_NORMAL.
279 (build_builtin_candidate): Add LOOKUP_ONLYCONVERTING.
280 (conditional_conversion): Likewise.
281 (convert_like_real): Only complain about DECL_NONCONVERTING_P
282 constructors.
283 (perform_implicit_conversion_flags): Add flags parm to
284 perform_implicit_conversion. Improve diagnostics.
285 * cp-tree.h (LOOKUP_IMPLICIT): New macro.
286 (LOOKUP_COPY_PARM): New bit macro.
287 * cvt.c (build_expr_type_conversion): Check DECL_NONCONVERTING_P.
288 * typeck.c (convert_for_assignment): Take flags parm, pass it to
289 perform_implicit_conversion_flags.
290 (cp_build_modify_expr): Pass flags to convert_for_assignment.
291 (convert_for_initialization): Likewise.
292 * typeck2.c (store_init_value): Take flags parm, pass to
293 digest_init_flags.
294 (digest_init_flags): Add flags parm to digest_init.
295 (digest_init_r): Take flags parm, pass to convert_for_initialization.
296 (process_init_constructor_array): Pass it.
297 (process_init_constructor_record): Likewise.
298 (process_init_constructor_union): Likewise.
299
300 2009-05-16 Jason Merrill <jason@redhat.com>
301
302 PR c++/40139
303 * pt.c (tsubst_qualified_id): Retain the type if we aren't dealing
304 with a dependent type. Actually look up the destructor.
305 * semantics.c (finish_id_expression): Fix logic.
306 (finish_qualified_id_expr): Don't try to use 'this' if we aren't in
307 a function.
308 * typeck.c (build_x_unary_op): Diagnose taking the address of a
309 constructor or destructor.
310 * tree.c (get_first_fn): Handle OFFSET_REF.
311
312 2009-05-17 Joseph Myers <joseph@codesourcery.com>
313
314 * tree.c (cxx_printable_name_internal): Allow consecutive
315 translated and untranslated cached copies of the name of the
316 current function.
317
318 2009-05-15 Ian Lance Taylor <iant@google.com>
319
320 * cp-tree.h (enum cp_lvalue_kind_flags): Rename from
321 cp_lvalue_kind. Change all uses.
322 (enum base_access_flags): Rename from enum base_access. Change
323 all uses.
324 * parser.c (enum cp_parser_flags): Remove enum tag.
325
326 2009-05-15 Manuel López-Ibáñez <manu@gcc.gnu.org>
327
328 PR 16302
329 * call.c (build_new_op): Update calls to warn_logical_operator.
330
331 2009-05-14 Ian Lance Taylor <iant@google.com>
332
333 * class.c (layout_class_type): Change itk to unsigned int.
334 * decl.c (finish_enum): Change itk to unsigned int.
335 * parser.c (cp_parser_check_decl_spec): Change ds to int. Remove
336 casts.
337
338 2009-05-13 David Mandelin <dmandelin@mozilla.com>:
339
340 * decl.c (duplicate_decls): Preserve parameter attributes.
341
342 2009-05-10 Jan Hubicka <jh@suse.cz>
343
344 * decl2.c (cxx_callgraph_analyze_expr): Use
345 cgraph_mark_address_taken.
346
347 2009-05-10 Joseph Myers <joseph@codesourcery.com>
348
349 * call.c (name_as_c_string): Call type_as_string_translate.
350 Translate identifiers to locale character set.
351 * cp-tree.h (lang_decl_name): Update prototype.
352 (type_as_string_translate, decl_as_string_translate,
353 cxx_printable_name_translate): Declare.
354 * cxx-pretty-print.c (M_): Define.
355 (pp_cxx_unqualified_id, pp_cxx_canonical_template_parameter): Mark
356 English fragments for conditional translation with M_.
357 * decl.c (grokdeclarator): Translate identifiers to locale
358 character set for diagnostics.
359 * error.c (M_): Define.
360 (dump_template_bindings, dump_type, dump_aggr_type,
361 dump_type_prefix, dump_global_iord, dump_simple_decl, dump_decl,
362 dump_function_decl, dump_template_parms, dump_expr,
363 dump_binary_op, op_to_string, assop_to_string): Mark English
364 fragments for conditional translation with M_.
365 (type_as_string): Disable translation of identifiers.
366 (type_as_string_translate): New.
367 (expr_as_string): Disable translation of identifiers.
368 (decl_as_string): Disable translation of identifiers.
369 (decl_as_string_translate): New.
370 (lang_decl_name): Add parameter translate.
371 (args_to_string): Call type_as_string_translate.
372 (cp_print_error_function): Call cxx_printable_name_translate.
373 (print_instantiation_full_context,
374 print_instantiation_partial_context): Call
375 decl_as_string_translate.
376 * parser.c (cp_lexer_get_preprocessor_token): Use %qE for
377 identifier in diagnostic.
378 * tree.c (cxx_printable_name): Change to
379 cxx_printable_name_internal. Add parameter translate.
380 (cxx_printable_name, cxx_printable_name_translate): New wrappers
381 round cxx_printable_name_internal.
382
383 2009-05-08 H.J. Lu <hongjiu.lu@intel.com>
384
385 PR c/36892
386 * call.c (build_call_a): Updated warn_deprecated_use call.
387 (build_over_call): Likewise.
388 * decl.c (grokdeclarator): Likewise.
389 (grokparms): Likewise.
390 * semantics.c (finish_id_expression): Likewise.
391 * typeck.c (build_class_member_access_expr): Likewise.
392 (finish_class_member_access_expr): Likewise.
393
394 2009-05-06 Dodji Seketeli <dodji@redhat.com>
395
396 PR c++/17395
397 * pt.c (tsubst_copy) <case PARM_DECL>: We don't want to tsubst the
398 whole list of PARM_DECLs, just the current one.
399
400 2009-05-05 Shujing Zhao <pearly.zhao@oracle.com>
401
402 * cp-tree.h:
403 (opname_tab, assignop_tab, update_member_visibility, yyerror, yyhook,
404 mangle_compound_literal): Remove unused declarations.
405 (build_vfield_ref, cxx_print_statistics, clone_function_decl,
406 adjust_clone_args, maybe_push_cleanup_level, pushtag, make_anon_name,
407 pushdecl_top_level_maybe_friend, pushdecl_top_level_and_finish,
408 check_for_out_of_scope_variable, print_other_binding_stack,
409 maybe_push_decl, cxx_mark_addressable, force_target_expr,
410 build_target_expr_with_type, finish_case_label,
411 cxx_maybe_build_cleanup, begin_eh_spec_block, finish_eh_spec_block,
412 check_template_keyword, cxx_omp_predetermined_sharing,
413 cxx_omp_clause_default_ctor, cxx_omp_clause_copy_ctor,
414 cxx_omp_clause_assign_op, cxx_omp_clause_dtor, cxx_omp_finish_clause,
415 cxx_omp_privatize_by_reference): Rearrange the declarations line to
416 match the comment that indicates the .c file which the functions are
417 defined.
418 (cxx_print_xnode, cxx_print_decl, cxx_print_type,
419 cxx_print_identifier, cxx_print_error_function, pushdecl): Add comment.
420
421 2009-05-05 Nathan Sidwell <nathan@codesourcery.com>
422
423 * typeck.c (cp_build_compound_expr): Require RHS to have a known
424 type.
425 * class.c (resolve_address_of_overloaded_function): Use
426 OVL_CURRENT for error message.
427 (instantiate_type): Forbid COMPOUND_EXPRs and remove code dealing
428 with them. Do not copy the node.
429
430 2009-05-05 Jakub Jelinek <jakub@redhat.com>
431
432 PR c++/40013
433 * pt.c (tsubst): If magic NOP_EXPR with side-effects has no type,
434 set it from its operand's type after tsubst_expr.
435
436 2009-05-04 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
437
438 PR c++/28152
439 * parser.c (cp_lexer_get_preprocessor_token): Do not store the
440 canonical spelling for keywords.
441 (cp_parser_attribute_list): Use the canonical spelling for
442 keywords in attributes.
443
444 2009-05-01 Joseph Myers <joseph@codesourcery.com>
445
446 * cxx-pretty-print.c (is_destructor_name, pp_cxx_unqualified_id,
447 pp_cxx_template_keyword_if_needed, pp_cxx_postfix_expression,
448 pp_cxx_new_expression, pp_cxx_delete_expression,
449 pp_cxx_unary_expression, pp_cxx_assignment_operator,
450 pp_cxx_assignment_expression, pp_cxx_expression,
451 pp_cxx_function_specifier, pp_cxx_decl_specifier_seq,
452 pp_cxx_simple_type_specifier, pp_cxx_type_specifier_seq,
453 pp_cxx_exception_specification, pp_cxx_direct_declarator,
454 pp_cxx_ctor_initializer, pp_cxx_type_id, pp_cxx_statement,
455 pp_cxx_namespace_alias_definition, pp_cxx_template_parameter,
456 pp_cxx_canonical_template_parameter, pp_cxx_template_declaration,
457 pp_cxx_declaration, pp_cxx_typeid_expression,
458 pp_cxx_va_arg_expression, pp_cxx_offsetof_expression,
459 pp_cxx_trait_expression): Mostly use pp_string and
460 pp_cxx_ws_string in place of pp_identifier and pp_cxx_identifier
461 for non-identifiers. Mark English strings for translation.
462 * cxx-pretty-print.h (pp_cxx_ws_string): Define.
463 * error.c (dump_template_parameter, dump_template_bindings,
464 dump_type, dump_aggr_type, dump_type_prefix, dump_simple_decl,
465 dump_decl, dump_template_decl, dump_function_decl,
466 dump_parameters, dump_exception_spec, dump_template_parms,
467 dump_expr, dump_binary_op, dump_unary_op, op_to_string,
468 assop_to_string, args_to_string, cp_print_error_function,
469 print_instantiation_full_context,
470 print_instantiation_partial_context): Mostly use pp_string and
471 pp_cxx_ws_string in place of pp_identifier and pp_cxx_identifier
472 for non-identifiers. Mark English strings for translation.
473 (dump_global_iord): Mark strings for translation; use longer
474 strings instead of substituting single words.
475 (function_category): Return a format string marked for
476 translation, not a single word or phrase to substitute in a longer
477 phrase.
478
479 2009-04-28 Ben Elliston <bje@au.ibm.com>
480
481 PR c++/35652
482 Revert:
483
484 2009-03-27 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
485
486 * typeck.c (cp_pointer_sum): Adjust call to pointer_int_sum.
487
488 2009-04-27 Ian Lance Taylor <iant@google.com>
489
490 * semantics.c (finish_omp_clauses): Change type of c_kind to enum
491 omp_clause_code.
492
493 2009-04-27 Jakub Jelinek <jakub@redhat.com>
494
495 PR c++/39875
496 * cvt.c (convert_to_void) <case INDIRECT_REF>: Only warn about
497 -Wunused-value if implicit.
498
499 2009-04-24 Ian Lance Taylor <iant@google.com>
500
501 * call.c (build_temp): Change 0 to enum constant.
502 * cp-tree.h (cp_lvalue_kind): Typedef to int rather than enum
503 type.
504 * cp-gimplify.c (cp_gimplify_expr): Add cast to enum type.
505 * decl2.c (constrain_visibility): Likewise.
506 * parser.c (cp_lexer_get_preprocessor_token): Likewise.
507 (cp_parser_flags): Typedef to int rather than enum type.
508 (cp_parser_expression_stack_entry): Change prec field to enum
509 cp_parser_prec.
510
511 * typeck.c (build_modify_expr): Add lhs_origtype parameter.
512 Change all callers.
513
514 2009-04-22 Dodji Seketeli <dodji@redhat.com>
515
516 PR c++/39639
517 * parser.c (cp_parser_template_argument_list): Display an error
518 when an ellipsis is not preceded by a parameter pack. Also, warn
519 about variadic templates usage without -std=c++0x.
520
521 2009-04-21 Taras Glek <tglek@mozilla.com>
522
523 * cp-tree.h: Update GTY annotations to new syntax.
524 * decl.c: Likewise.
525 * mangle.c: Likewise.
526 * name-lookup.c: Likewise.
527 * name-lookup.h: Likewise.
528 * parser.c: Likewise.
529 * pt.c: Likewise.
530 * rtti.c: Likewise.
531 * semantics.c: Likewise.
532 * typeck2.c: Likewise.
533
534 2009-04-22 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
535
536 PR c++/14875
537 * parser.c (cp_parser_error): Pass token->flags to c_parse_error.
538
539 2009-04-21 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
540
541 PR c++/35711
542 * typeck.c (check_for_casting_away_constness): We diagnose casting
543 away any qualifiers not just constness.
544 (casts_away_constness): Mention that it handles more than just
545 constness.
546
547 2009-04-21 Joseph Myers <joseph@codesourcery.com>
548
549 * ChangeLog, ChangeLog-1993, ChangeLog-1994, ChangeLog-1995,
550 ChangeLog-1996, ChangeLog-1997, ChangeLog-1998, ChangeLog-1999,
551 ChangeLog-2000, ChangeLog-2001, ChangeLog-2002, ChangeLog-2003,
552 ChangeLog-2004, ChangeLog-2005, ChangeLog-2006, ChangeLog-2007,
553 ChangeLog-2008, ChangeLog.ptr, ChangeLog.tree-ssa, NEWS,
554 cfns.gperf: Add copyright and license notices.
555 * cfns.h: Regenerate.
556 * ChangeLog, ChangeLog-2004: Correct dates.
557
558 2009-04-21 Manuel López-Ibáñez <manu@gcc.gnu.org>
559
560 PR 16202
561 * tree.c (lvalue_p_1): Use const_tree.
562 Use CONST_CAST_TREE to avoid warning.
563 (lvalue_p): Returns bool, receives const_tree.
564
565 2009-04-21 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
566
567 PR c++/13358
568 * parser.c (cp_parser_check_decl_spec): Drop redundant flags.
569 * error.c (pedwarn_cxx98): New.
570 * cp-tree.h (pedwarn_cxx98): Declare.
571
572 2009-04-20 Le-Chun Wu <lcwu@google.com>
573
574 PR c++/39803
575 * init.c (build_vec_init): Set TREE_NO_WARNING on the
576 compiler-generated INDIRECT_REF expression.
577
578 2009-04-20 Ian Lance Taylor <iant@google.com>
579
580 * typeck.c (build_function_call_vec): New function.
581 (cp_build_function_call): Only pass first parameter to
582 objc_rewrite_function_call.
583 (build_modify_expr): Add rhs_origtype parameter. Change all
584 callers.
585 * decl.c (finish_decl): Add origtype parameter. Change all
586 callers.
587 * semantics.c (finish_call_expr): Pass VEC to
588 resolve_overloaded_builtin.
589
590 2009-04-20 Ian Lance Taylor <iant@google.com>
591
592 * cp-tree.h (base_access): Change typedef to int.
593 * parser.c (cp_parser_omp_flush): Change 0 to OMP_CLAUSE_ERROR.
594 (cp_parser_omp_threadprivate): Likewise.
595 * pt.c (unify_pack_expansion): Add casts to enum type.
596
597 2009-04-19 Manuel López-Ibáñez <manu@gcc.gnu.org>
598
599 PR c/32061
600 PR c++/36954
601 * call.c (build_new_op): Save the original codes of operands
602 before folding.
603
604 2009-04-18 Kazu Hirata <kazu@codesourcery.com>
605
606 * cp-tree.h: Remove the prototype for insert_block.
607 * decl.c (insert_block): Remove.
608
609 2009-04-16 Ian Lance Taylor <iant@google.com>
610
611 * cp-tree.h (enum tsubst_flags): Rename from enum tsubst_flags_t.
612 (tsubst_flags_t): Change typedef from enum type to int.
613
614 2009-04-16 Paolo Bonzini <bonzini@gnu.org>
615
616 * decl.c (check_initializer): Use TYPE_VECTOR_OPAQUE
617 instead of targetm.vector_opaque_p.
618
619 2009-04-15 Le-Chun Wu <lcwu@google.com>
620
621 PR c++/39551
622 * call.c (build_over_call): Set TREE_NO_WARNING on the
623 compiler-generated INDIRECT_REF expression.
624 * cvt.c (convert_to_void): Emit warning when stripping off
625 INDIRECT_REF.
626
627 2009-04-14 Diego Novillo <dnovillo@google.com>
628
629 * parser.c (cp_parser_type_specifier_seq): Move call to
630 invoke_plugin_callbacks ...
631 (cp_parser_type_specifier_seq): ... here.
632
633 2009-04-14 Le-Chun Wu <lcwu@google.com>
634
635 * Make-lang.in: Modify dependencies of files including plugin.h.
636 * decl.c (finish_function): Call invoke_plugin_callbacks.
637 * parser.c (cp_parser_type_specifier): Call invoke_plugin_callbacks.
638
639 2009-04-14 Jason Merrill <jason@redhat.com>
640
641 PR c++/39763
642 * name-lookup.c (pushdecl_maybe_friend): Avoid all warnings
643 about shadowing by tentative parms.
644
645 2009-04-13 Jason Merrill <jason@redhat.com>
646
647 PR c++/39480
648 * call.c (build_over_call): Don't call memcpy if the target is
649 the same as the source.
650
651 2009-04-13 Jason Merrill <jason@redhat.com>
652
653 PR c++/39750
654 * pt.c (uses_template_parms): Handle CONSTRUCTOR.
655
656 2009-04-12 Jason Merrill <jason@redhat.com>
657
658 PR c++/39742
659 * call.c (joust): Don't crash on variadic fn.
660
661 2009-04-10 Jason Merrill <jason@redhat.com>
662
663 PR c++/28301
664 * parser.c (cp_parser_skip_to_end_of_block_or_statement): Return
665 if we see a close brace without an open brace.
666
667 2009-04-10 H.J. Lu <hongjiu.lu@intel.com>
668
669 * parser.c (cp_parser_class_specifier): Remove the unused
670 has_trailing_semicolon.
671
672 2009-04-10 Manuel López-Ibáñez <manu@gcc.gnu.org>
673
674 PR c++/20118
675 * parser.c (cp_parser_check_template_parameters): Take a
676 cp_declarator parameter.
677 (cp_parser_elaborated_type_specifier): Update to
678 cp_parser_check_template_parameters.
679 (cp_parser_class_head): Likewise.
680 (cp_parser_check_declarator_template_parameters): Likewise.
681 (cp_parser_check_template_parameters): Handle first the non-error
682 conditions. Give more accurate diagnostics if a declarator is
683 given.
684
685 2009-04-08 Jason Merrill <jason@redhat.com>
686
687 PR c++/25185
688 * error.c (dump_aggr_type): Chase template typedefs if
689 -fno-pretty-templates.
690
691 2009-04-08 Dodji Seketeli <dodji@redhat.com>
692
693 PR c++/39637
694 * parser.c (cp_parser_enumerator_definition): Make sure the
695 initializer of the enumerator doesn't contain any bare parameter pack.
696
697 2009-04-07 Jason Merrill <jason@redhat.com>
698
699 PR c++/34691
700 * name-lookup.c (merge_functions): Keep multiple extern "C" functions.
701 * call.c (joust): Complain about mismatched default arguments
702 in extern "C" functions.
703 * class.c (resolve_address_of_overloaded_function): Handle multiple
704 extern "C" functions.
705 * pt.c (resolve_overloaded_unification): Likewise.
706
707 2009-04-07 Jason Merrill <jason@redhat.com>
708
709 PR c++/25185
710 * error.c (dump_function_decl): Don't pretty-print templates
711 if -fno-pretty-templates.
712 (count_non_default_template_args): Print all args if
713 -fno-pretty-templates.
714
715 2009-04-06 Jason Merrill <jason@redhat.com>
716
717 PR c++/35146
718 * pt.c (fn_type_unification): For DEDUCE_EXACT check that
719 the deduced template arguments give us the parameter types
720 we're looking for.
721
722 2009-04-05 Giovanni Bajo <giovannibajo@libero.it>
723 Jason Merrill <jason@redhat.com>
724
725 PR c++/14912
726 * error.c (count_non_default_template_args): New fn.
727 (dump_template_parms): Call it.
728 (dump_template_argument_list): Call it. Add parms parm.
729 (dump_template_argument): Adjust call to dump_template_argument_list.
730 (dump_type, dump_decl): Likewise.
731 (dump_template_bindings): Refactor logic.
732
733 2009-04-03 Jason Merrill <jason@redhat.com>
734
735 PR c++/25185
736 * error.c (dump_template_bindings): Look through typedefs in
737 typename results.
738 (dump_type) [TYPENAME_TYPE]: Print the typedef name if any.
739 (find_typenames_r): Also collect typedefs.
740 * pt.c (unify): Strip typedefs.
741
742 PR c++/39608
743 * semantics.c (finish_id_expression): Don't assume a dependent
744 member of the current instantiation isn't a valid integral
745 constant expression. Check dependent_scope_p.
746 * pt.c (dependent_scope_p): Check TYPE_P.
747 (tsubst_copy): If args is null, just return.
748
749 2009-04-02 Jason Merrill <jason@redhat.com>
750
751 PR c++/25185
752 * error.c (find_typenames, find_typenames_r): New fns.
753 (dump_function_decl): Call find_typenames.
754 (dump_template_bindings): Print typenames as well.
755 * pt.c (tsubst): Non-static.
756 * cp-tree.h: Declare it.
757
758 2009-04-02 Dodji Seketeli <dodji@redhat.com>
759
760 PR c++/26693
761 * decl2.c (grokfield): when a typedef appears in a
762 class, create the typedef variant type node for it.
763 (save_template_attributes): Creating typedef variant type node
764 here is now useless.
765 * decl.c (grokdeclarator): If the typedef'ed struct/class was
766 anonymous, set the proper type name to all its type variants.
767 (xref_basetypes) : Fixup the variant types after setting
768 TYPE_BINFO on REF.
769 * name-lookup.c (pushdecl_maybe_friend): Reuse the
770 set_underlying_type function to install typedef variant types.
771 * cp-tree.h (MEMBER_TYPES_NEEDING_ACCESS_CHECK): New template accessor
772 macro.
773 (append_type_to_template_for_access_check): New entry points.
774 * semantics.c (check_accessibility_of_qualified_id):
775 When a typedef that is a member of a class appears in a template,
776 add it to the template. It will be ...
777 * class.c (finish_struct_bits): Split type variant fixup into ...
778 (fixup_type_variants): A new entry point.
779 * pt.c (instantiate_class_template, instantiate_template ): ... access
780 checked at template instantiation time.
781 (resolve_type_name_type): The type name should be the name of the
782 main type variant.
783 (retrieve_specialization): Specializations of template typedefs aren't
784 to looked up in DECL_TEMPLATE_INSTANTIATIONS (tmpl).
785 (append_type_to_template_for_access_check): New entry point.
786 (tsubst_decl): For typedefs, build the variant type from the correct
787 original type.
788 (get_class_bindings): Fix function comment.
789 (perform_typedefs_access_check): New entry point.
790
791 2009-03-31 Jason Merrill <jason@redhat.com>
792
793 PR c++/34691
794 * name-lookup.c (pushdecl_maybe_friend): Diagnose mismatched
795 extern "C" declarations.
796
797 C++ DR 613
798 * semantics.c (finish_non_static_data_member): Allow such references
799 without an associated object in sizeof/decltype/alignof.
800
801 * ptree.c (cxx_print_decl): Pretty-print full name of
802 function/template.
803 (cxx_print_type): Pretty-print full name of class.
804
805 * decl.c (grokdeclarator): Reject pointer to qualified function
806 type.
807
808 PR c++/37806, core issue 547
809 * typeck.c (cp_apply_type_quals_to_decl): Don't apply any quals
810 to a typedef.
811 * tree.c (cp_build_qualified_type_real): Don't apply restrict to a
812 function type.
813 * decl.h (enum decl_context): Add TEMPLATE_TYPE_ARG.
814 * decl.c (groktypename): Add is_template_arg parameter.
815 (grokdeclarator): Allow function cv-quals on a template type arg.
816 * parser.c (cp_parser_new_type_id, cp_parser_type_id): Add
817 is_template_arg argument in calls to groktypename.
818 * cp-tree.h: Adjust prototype.
819 * error.c (dump_type_prefix, dump_type_suffix): Fix plain
820 FUNCTION_TYPE printing.
821
822 * mangle.c (write_expression): Mangle dependent name as
823 source-name.
824
825 PR c++/38030, 38850, 39070
826 * pt.c (type_dependent_expression_p_push): New fn.
827 (tsubst_copy_and_build) [CALL_EXPR]: Only do arg-dep lookup when the
828 substitution makes the call non-dependent. Preserve koenig_p.
829 * parser.c (cp_parser_postfix_expression): Only do arg-dep lookup
830 for non-dependent calls.
831 * semantics.c (finish_call_expr): Revert earlier changes.
832 * cp-tree.h: Revert change to finish_call_expr prototype.
833
834 2009-03-29 Joseph Myers <joseph@codesourcery.com>
835
836 PR preprocessor/34695
837 * cp-tree.h (cp_cpp_error): Remove.
838 * error.c (cp_cpp_error): Remove.
839 * parser.c (cp_lexer_new_main): Set done_lexing instead of
840 client_diagnostic and error callback.
841
842 2009-03-28 Paolo Bonzini <bonzini@gnu.org>
843
844 * cp/cp-objcp-common.h (LANG_HOOKS_STATICP): Remove.
845 * cp/cp-objcp-common.c (cxx_staticp): Remove.
846 * cp/cp-tree.h (cxx_staticp): Remove.
847
848 2009-03-28 Jakub Jelinek <jakub@redhat.com>
849
850 PR c++/39554
851 * parser.c (cp_parser_postfix_expression): Don't call
852 warning_if_disallowed_function_p.
853
854 2009-03-27 Jan Hubicka <jh@suse.cz>
855
856 * except.c (choose_personality_routine): Set terminate_node to abort
857 for java exceptions.
858
859 2009-03-27 Dodji Seketeli <dodji@redhat.com>
860 Jakub Jelinek <jakub@redhat.com>
861
862 PR debug/37959
863 * cp-objcp-common.h (LANG_HOOKS_FUNCTION_DECL_EXPLICIT_P): Define.
864 (cp_function_decl_explicit_p): New prototype.
865 * cp-objcp-common.c (cp_function_decl_explicit_p): New function.
866
867 2009-03-27 Andrew Pinski <andrew_pinski@playstation.sony.com>
868
869 PR c++/38638
870 * parser.c (cp_parser_elaborated_type_specifier): If we have a
871 typename tag and don't have either a TYPE_DECL or a
872 TEMPLATE_ID_EXPR, set the type to NULL.
873
874 2009-03-27 Simon Martin <simartin@users.sourceforge.net>
875
876 PR c++/37647
877 * decl.c (grokdeclarator): Reject [con|de]stuctors in a non-class
878 scope.
879
880 2009-03-27 Simon Martin <simartin@users.sourceforge.net>
881
882 PR c++/29727
883 * decl.c (check_array_designated_initializer): Handle error_mark_node.
884
885 2009-03-27 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
886
887 PR c++/35652
888 * typeck.c (cp_pointer_sum): Adjust call to pointer_int_sum.
889
890 2009-03-26 Andrew Haley <aph@redhat.com>
891
892 PR C++/39380
893 * decl2.c (possibly_inlined_p): If java exceptions are in use
894 don't inline a decl unless it is explicitly marked inline.
895 * lex.c: (pragma_java_exceptions): New variable.
896 (handle_pragma_java_exceptions): Set pragma_java_exceptions.
897 * cp-tree.h (pragma_java_exceptions): Declare new variable.
898
899 2009-03-24 Jason Merrill <jason@redhat.com>
900
901 PR c++/28274
902 * name-lookup.c (pushdecl_maybe_friend): Check default args later.
903
904 2009-03-23 Jakub Jelinek <jakub@redhat.com>
905
906 PR c/39495
907 * semantics.c (handle_omp_for_class_iterator): Swap cond operands and
908 code if iter is the second operand.
909 * parser.c (cp_parser_binary_expression): Add no_toplevel_fold_p
910 argument. If it is set, don't build the toplevel expression with
911 build_x_binary_op, but build2.
912 (cp_parser_assignment_expression, cp_parser_omp_for_incr): Adjust
913 callers.
914 (cp_parser_omp_for_cond): Don't assume the first operand of the
915 comparison must be decl.
916
917 2009-03-23 Jason Merrill <jason@redhat.com>
918
919 PR c++/37729
920 * pt.c (make_fnparm_pack): Split out from...
921 (instantiate_decl): ...here.
922 (tsubst_pack_expansion): Handle being called in a late-specified
923 return type.
924
925 PR c++/39526
926 * name-lookup.c (pushdecl_maybe_friend): Don't warn about shadowing
927 a parm with a parm.
928
929 2009-03-20 Jason Merrill <jason@redhat.com>
930
931 PR c++/28879
932 * parser.c (cp_parser_direct_declarator): In a template, wrap
933 non-constant expression in NOP_EXPR with TREE_SIDE_EFFECTS set.
934 * pt.c (tsubst): Preserve it in a partial instantiation.
935 (dependent_type_p_r): Don't check value_dependent_expression_p.
936 * decl.c (compute_array_index_type): Don't check
937 value_dependent_expression_p if TREE_SIDE_EFFECTS.
938
939 C++ core issue 703
940 * typeck2.c (check_narrowing): Don't complain about loss of
941 precision when converting a floating-point constant.
942
943 2009-03-19 Jakub Jelinek <jakub@redhat.com>
944
945 PR c/39495
946 * parser.c (cp_parser_omp_for_cond): Don't check lhs if decl is NULL.
947 (cp_parser_omp_for_loop): Always use cp_parser_omp_for_cond.
948
949 2009-03-18 Jakub Jelinek <jakub@redhat.com>
950
951 * parser.c (struct cp_token): Reorder fields for 64-bit hosts.
952 (eof_token): Adjust.
953
954 2009-03-18 H.J. Lu <hongjiu.lu@intel.com>
955
956 PR c++/39425
957 * parser.c (cp_parser_explicit_specialization): Don't skip the
958 rest of the specialization when begin_specialization returns
959 false.
960
961 2009-03-17 Jason Merrill <jason@redhat.com>
962
963 * decl.c (grokfndecl): Set DECL_CONTEXT on parms.
964 (duplicate_decls): Adjust DECL_CONTEXT of newdecl's parms.
965 * pt.c (check_explicit_specialization): Likewise.
966 (tsubst_copy) [PARM_DECL]: Return a dummy parm if we don't have a
967 local specialization.
968 * tree.c (cp_tree_equal) [PARM_DECL]: Check type and index, not name.
969 * decl2.c (parm_index): New fn.
970 * semantics.c (finish_decltype_type): Don't use describable_type.
971 * mangle.c (write_expression): Likewise. Mangle ALIGNOF_EXPR.
972 Give a sorry for unsupported codes rather than crash. Mangle
973 conversions with other than 1 operand. New mangling for PARM_DECL.
974 * operators.def (ALIGNOF_EXPR): Mangle as "az".
975
976 2009-03-17 Jing Yu <jingyu@google.com>
977
978 PR middle-end/39378
979 * method.c (use_thunk): Change is_thunk from crtl to cfun.
980
981 2009-03-17 Paolo Carlini <paolo.carlini@oracle.com>
982
983 PR c++/39475
984 * semantics.c (check_trait_type): New.
985 (finish_trait_expr): Use it.
986
987 2009-03-17 Jakub Jelinek <jakub@redhat.com>
988
989 * name-lookup.c (cp_emit_debug_info_for_using): Emit USING_STMTs
990 instead of calling imported_module_or_decl debug hook if
991 building_stmt_tree ().
992 * cp-gimplify.c (cp_gimplify_expr): Don't assert the first operand
993 is a NAMESPACE_DECL.
994
995 PR debug/37890
996 * name-lookup.c (do_namespace_alias): Don't call global_decl debug
997 hook at function scope.
998
999 PR debug/39471
1000 * cp-gimplify.c (cp_gimplify_expr): Don't set DECL_NAME
1001 on IMPORTED_DECL.
1002
1003 2009-03-09 Jakub Jelinek <jakub@redhat.com>
1004
1005 PR c++/39371
1006 * semantics.c (finish_switch_cond): Don't call get_unwidened.
1007 * decl.c (finish_case_label): Pass SWITCH_STMT_TYPE as 3rd argument
1008 instead of TREE_TYPE (cond).
1009
1010 2009-03-08 H.J. Lu <hongjiu.lu@intel.com>
1011
1012 PR c++/39060
1013 * parser.c (cp_parser_late_parsing_default_args): Continue
1014 the loop when cp_parser_assignment_expression returns
1015 error_mark_node.
1016
1017 2009-03-07 Jason Merrill <jason@redhat.com>
1018
1019 PR c++/39367
1020 * init.c (build_new_1): Don't use a VLA type.
1021 (build_vec_init): Handle getting a pointer for BASE.
1022
1023 2009-03-06 H.J. Lu <hongjiu.lu@intel.com>
1024
1025 PR c++/37520
1026 * cp-tree.h: Check NO_DOT_IN_LABEL before NO_DOLLAR_IN_LABEL
1027 when mangling symbols.
1028
1029 2009-03-06 Paolo Carlini <paolo.carlini@oracle.com>
1030
1031 PR c++/33492
1032 * error.c (dump_expr): Don't try to print THROW_EXPRs in full.
1033
1034 2009-03-06 Alexandre Oliva <aoliva@redhat.com>
1035
1036 * decl.c (record_builtin_java_type): Use canonicalized integer
1037 types.
1038
1039 2009-03-04 Jason Merrill <jason@redhat.com>
1040
1041 PR c++/38908
1042 * class.c (is_really_empty_class): New fn.
1043 * cp-tree.h: Declare it.
1044 * cp-objcp-common.c (cp_expr_size): Use it.
1045
1046 PR c++/13549
1047 * semantics.c (perform_koenig_lookup): Handle TEMPLATE_ID_EXPR.
1048 * parser.c (cp_parser_postfix_expression): Call it for
1049 TEMPLATE_ID_EXPR.
1050 * tree.c (is_overloaded_fn): Look through TEMPLATE_ID_EXPR.
1051 (get_first_fn): Likewise.
1052
1053 PR c++/9634
1054 PR c++/29469
1055 PR c++/29607
1056 Implement DR 224.
1057 * decl.c (make_typename_type): Do look inside currently open classes.
1058 * parser.c (cp_parser_lookup_name): Likewise.
1059 (cp_parser_template_name): Likewise.
1060 * pt.c (dependent_scope_p): New function.
1061 * cp-tree.h: Declare it.
1062 * class.c (currently_open_class): Return fast if T isn't a class.
1063
1064 2009-02-26 H.J. Lu <hongjiu.lu@intel.com>
1065
1066 PR c++/37789
1067 * parser.c (cp_parser_mem_initializer): Return error_mark_node
1068 if cp_parser_mem_initializer_id returns error_mark_node.
1069
1070 2009-02-24 Richard Guenther <rguenther@suse.de>
1071
1072 PR c++/39242
1073 * pt.c (instantiate_decl): Do not instantiate extern, non-inline
1074 declared functions.
1075
1076 2009-02-23 H.J. Lu <hongjiu.lu@intel.com>
1077
1078 PR c++/36411
1079 * pt.c (coerce_template_template_parms): Return 0 if parameter
1080 is error_mark_node.
1081
1082 2009-02-23 Jason Merrill <jason@redhat.com>
1083
1084 * pt.c (unify): Call maybe_adjust_types_for_deduction when
1085 deducing from an initializer list.
1086
1087 2009-02-20 Jason Merrill <jason@redhat.com>
1088
1089 PR c++/39225
1090 * decl.c (grokdeclarator): Handle ~identifier.
1091
1092 2009-02-19 Jakub Jelinek <jakub@redhat.com>
1093
1094 PR target/39175
1095 * decl2.c (determine_visibility): If visibility changed and
1096 DECL_RTL has been already set, call make_decl_rtl to update symbol
1097 flags.
1098
1099 2009-02-19 H.J. Lu <hongjiu.lu@intel.com>
1100
1101 PR c++/39188
1102 * cp-tree.h (maybe_commonize_var): New.
1103
1104 * decl.c (maybe_commonize_var): Make it extern.
1105
1106 * decl2.c (finish_anon_union): Call maybe_commonize_var.
1107
1108 2009-02-18 H.J. Lu <hongjiu.lu@intel.com>
1109
1110 PR c++/39219
1111 * parser.c (cp_parser_enum_specifier): Apply all attributes.
1112
1113 2009-02-18 Jason Merrill <jason@redhat.com>
1114
1115 * cfns.h: Tweak pathname for cfns.gperf.
1116
1117 2009-02-13 Jason Merrill <jason@redhat.com>
1118
1119 PR c++/39070
1120 * semantics.c (finish_call_expr): Change koenig_p parm to int.
1121 If -1, don't set KOENIG_LOOKUP_P but do keep hidden candidates.
1122 * cp-tree.h: Adjust prototype.
1123 * pt.c (tsubst_copy_and_build) [CALL_EXPR]: Pass -1.
1124
1125 2009-02-12 Jason Merrill <jason@redhat.com>
1126
1127 PR c++/38950
1128 * pt.c (unify)[TEMPLATE_PARM_INDEX]: Convert to the tsubsted type.
1129
1130 2009-02-11 Jason Merrill <jason@redhat.com>
1131
1132 PR c++/39153
1133 * decl2.c (cp_write_global_declarations):
1134 Check DECL_DEFAULTED_FN, not DECL_ARTIFICIAL.
1135
1136 PR c++/30111
1137 * init.c (build_value_init_noctor): Split out from...
1138 (build_value_init): ...here.
1139 (expand_aggr_init_1): Handle value-initialization.
1140 * cp-tree.h: Add declaration.
1141 * class.c (type_has_user_provided_constructor):
1142 Handle non-class arguments.
1143
1144 2009-02-10 Jason Merrill <jason@redhat.com>
1145
1146 PR c++/38649
1147 * class.c (defaultable_fn_p): Handle ... properly.
1148
1149 PR c++/36744
1150 * tree.c (lvalue_p_1): Condition rvalue ref handling on
1151 treat_class_rvalues_as_lvalues, too.
1152
1153 2009-02-10 Paolo Carlini <paolo.carlini@oracle.com>
1154
1155 PR c++/34397
1156 * typeck.c (build_x_array_ref): New.
1157 * cp-tree.h: Declare it.
1158 * pt.c (tsubst_copy_and_build): Use it for case ARRAY_REF.
1159
1160 2009-02-09 Jason Merrill <jason@redhat.com>
1161
1162 PR c++/39109
1163 * semantics.c (simplify_aggr_init_expr): Do zero-initialization here.
1164 * init.c (build_value_init): Not here. Don't build a TARGET_EXPR.
1165 * tree.c (get_target_expr): Handle AGGR_INIT_EXPR.
1166 * cp-gimplify.c (cp_gimplify_init_expr): Remove special handling
1167 for build_value_init TARGET_EXPR.
1168 * cp-tree.h (AGGR_INIT_ZERO_FIRST): New macro.
1169
1170 2009-02-06 Paolo Carlini <paolo.carlini@oracle.com>
1171
1172 PR c++/35147
1173 PR c++/37737
1174 * cp-tree.h (TMPL_ARGS_HAVE_MULTIPLE_LEVELS): Check TREE_VEC_LENGTH.
1175
1176 2009-02-04 Jakub Jelinek <jakub@redhat.com>
1177
1178 PR c++/39095
1179 * operators.def: Use COMPONENT_REF code for ->/pt operator again,
1180 remove ./dt operator.
1181 * mangle.c (write_expression): Handle COMPONENT_REF after handling
1182 ADDR_EXPR, for COMPONENT_REF without ARROW_EXPR inside of it
1183 write_string ("dt") instead of using operators.def.
1184
1185 2009-02-03 Jason Merrill <jason@redhat.com>
1186
1187 * typeck.c (cp_build_unary_op): Only complain about taking address
1188 of main if pedantic.
1189
1190 2009-02-03 Jakub Jelinek <jakub@redhat.com>
1191
1192 PR inline-asm/39059
1193 * parser.c (cp_parser_primary_expression): Reject FIXED_CSTs.
1194
1195 PR c++/39056
1196 * typeck2.c (digest_init_r): Don't call process_init_constructor
1197 for COMPLEX_TYPE.
1198
1199 2009-02-03 Paolo Bonzini <bonzini@gnu.org>
1200
1201 PR c++/36897
1202 * pt.c (convert_nontype_argument_function): Expect expr to be an
1203 ADDR_EXPR.
1204
1205 PR c++/37314
1206 * typeck.c (merge_types): Call resolve_typename_type if only
1207 one type is a typename.
1208
1209 2009-02-02 Jason Merrill <jason@redhat.com>
1210
1211 PR c++/39054
1212 * parser.c (cp_parser_unqualified_id): Don't wrap error_mark_node
1213 in BIT_NOT_EXPR.
1214
1215 2009-02-01 Paolo Carlini <paolo.carlini@oracle.com>
1216
1217 PR c++/39053
1218 * parser.c (cp_parser_pure_specifier): If there are no tokens left
1219 do not call cp_lexer_consume_token.
1220
1221 2009-01-30 Jakub Jelinek <jakub@redhat.com>
1222
1223 PR c++/39028
1224 * parser.c (cp_parser_already_scoped_statement): Handle __label__
1225 declarations.
1226
1227 2009-01-30 Paolo Carlini <paolo.carlini@oracle.com>
1228
1229 PR c++/33465
1230 * error.c (dump_expr): Handle FIX_TRUNC_EXPR and FLOAT_EXPR.
1231
1232 2009-01-30 Paolo Carlini <paolo.carlini@oracle.com>
1233
1234 PR c++/38655
1235 * error.c (dump_type_prefix, dump_type_suffix): Handle FIXED_POINT_TYPE.
1236
1237 2009-01-29 Paolo Carlini <paolo.carlini@oracle.com>
1238
1239 * typeck.c (invalid_nonstatic_memfn_p): Use
1240 DECL_NONSTATIC_MEMBER_FUNCTION_P.
1241
1242 2009-01-27 Paolo Carlini <paolo.carlini@oracle.com>
1243
1244 PR c++/37554
1245 * call.c (build_over_call): If convert_for_arg_passing returns
1246 error_mark_node unconditionally return it.
1247
1248 2009-01-22 Adam Nemet <anemet@caviumnetworks.com>
1249
1250 * class.c (check_field_decls): Also inherit packed for bitfields
1251 regardless of their type.
1252
1253 2009-01-22 Dodji Seketeli <dodji@redhat.com>
1254
1255 PR c++/38930
1256 * decl2.c (grokfield): Reverting changes of PR c++/26693
1257 (save_template_attributes): Likewise.
1258 * decl.c (grokdeclarator): Likewise.
1259 * name-lookup.c (pushdecl_maybe_friend): Likewise.
1260 * cp-tree.h (MEMBER_TYPES_NEEDING_ACCESS_CHECK): Likewise.
1261 (append_type_to_template_for_access_check): Likewise.
1262 * semantics.c (check_accessibility_of_qualified_id): Likewise.
1263 * pt.c (instantiate_class_template, instantiate_template ): Likewise.
1264 (tsubst): Likewise.
1265 (resolve_type_name_type): Likewise.
1266 (append_type_to_template_for_access_check): Likewise.
1267
1268 2009-01-21 Dodji Seketeli <dodji@redhat.com>
1269
1270 PR c++/26693
1271 * decl2.c (grokfield): when a typedef appears in a
1272 class, create the typedef variant type node for it.
1273 (save_template_attributes): Creating typedef variant type node
1274 here is now useless.
1275 * decl.c (grokdeclarator): If the typedef'ed struct/class was
1276 anonymous, set the proper type name to all its type variants.
1277 * name-lookup.c (pushdecl_maybe_friend): Reuse the
1278 set_underlying_type function to install typedef variant types.
1279 * cp-tree.h (MEMBER_TYPES_NEEDING_ACCESS_CHECK): New template accessor
1280 macro.
1281 (append_type_to_template_for_access_check): New entry points.
1282 * semantics.c (check_accessibility_of_qualified_id):
1283 When a typedef that is a member of a class appears in a template,
1284 add it to the template. It will be ...
1285 * pt.c (instantiate_class_template, instantiate_template ): ... access
1286 checked at template instantiation time.
1287 (tsubst): Handle the case of being called with NULL args.
1288 (resolve_type_name_type): The type name should be the name of the
1289 main type variant.
1290 (append_type_to_template_for_access_check): New entry point.
1291
1292 2009-01-19 Jason Merrill <jason@redhat.com>
1293
1294 PR c++/23287
1295 * parser.c (cp_parser_unqualified_id): In a template,
1296 accept ~identifier.
1297 * typeck.c (lookup_destructor): Handle IDENTIFIER_NODE.
1298
1299 2009-01-16 Jason Merrill <jason@redhat.com>
1300
1301 PR c++/38877
1302 * tree.c (lvalue_p_1): Allow non-fields in COMPONENT_REF.
1303 * init.c (build_new): Don't call describable_type unless we
1304 have an auto.
1305
1306 PR c++/29470
1307 * pt.c (tsubst_decl) [USING_DECL]: Propagate access flags.
1308
1309 PR c++/38579
1310 * search.c (protected_accessible_p): N doesn't vary.
1311
1312 2009-01-15 Jason Merrill <jason@redhat.com>
1313
1314 PR c++/38850
1315 * pt.c (tsubst_copy_and_build): Tell finish_call_expr to
1316 accept hidden friends.
1317
1318 2009-01-15 Andrew Pinski <andrew_pinski@playstation.sony.com>
1319
1320 PR C++/29388
1321 * decl.c (grokdeclarator): Check for a non namespace/class context.
1322
1323 2009-01-15 Jason Merrill <jason@redhat.com>
1324
1325 PR c++/36334
1326 PR c++/37646
1327 * tree.c (lvalue_p_1): Handle BASELINK. A COMPONENT_REF to
1328 a function isn't necessarily an lvalue. Take tree, not const_tree.
1329 (lvalue_p, real_lvalue_p): Take tree, not const_tree.
1330 * typeck.c (lvalue_or_else): Likewise.
1331 * cp-tree.h: Adjust prototypes.
1332
1333 2009-01-15 Steve Ellcey <sje@cup.hp.com>
1334
1335 PR c++/38357
1336 * pt.c (tsubst): Check for NULL args.
1337
1338 2009-01-15 Dodji Seketeli <dodji@redhat.com>
1339
1340 PR c++/38636
1341 * name-lookup.c (pushtag): Don't create members to types that are not
1342 being created.
1343
1344 2009-01-14 Nick Clifton <nickc@redhat.com>
1345
1346 PR c++/37862
1347 * parser.c: Pass cp_id_kind computed in
1348 cp_parser_postfix_dot_deref_expression to
1349 cp_parser_primary_expression.
1350
1351 2009-01-13 Jakub Jelinek <jakub@redhat.com>
1352
1353 PR c++/38795
1354 * tree.c (cp_walk_subtrees): Handle REINTERPRET_CAST_EXPR,
1355 STATIC_CAST_EXPR, CONST_CAST_EXPR and DYNAMIC_CAST_EXPR the same
1356 as CAST_EXPR.
1357
1358 2009-01-12 Jason Merrill <jason@redhat.com>
1359 Steve Ellcey <sje@cup.hp.com>
1360
1361 PR c++/35109
1362 * name-lookup.c (lookup_name_real): Keep looking past a hidden
1363 binding.
1364
1365 2009-01-12 Dodji Seketeli <dodji@redhat.com>
1366
1367 PR c++/36019
1368 * pt.c (parameter_of_template_p): New function.
1369 * cp-tree.h: Declare it.
1370 * name-lookup.c (binding_to_template_parms_of_scope_p): New
1371 function.
1372 (outer_binding): Take template parameters in account when looking for
1373 a name binding.
1374
1375 2009-01-12 Jason Merrill <jason@redhat.com>
1376
1377 PR c++/31488
1378 * tree.c (pod_type_p): Return 1 for structs created by the back end.
1379
1380 2009-01-12 Jakub Jelinek <jakub@redhat.com>
1381
1382 PR c/32041
1383 * parser.c (cp_parser_builtin_offsetof): Allow `->' in
1384 offsetof member-designator, handle it as `[0].'.
1385
1386 PR c++/38794
1387 * decl.c (start_function): If grokdeclarator hasn't returned
1388 FUNCTION_DECL nor error_mark_node, issue diagnostics.
1389
1390 2009-01-11 Jakub Jelinek <jakub@redhat.com>
1391
1392 PR c++/36254
1393 * cp-gimplify.c (genericize_if_stmt): Renamed from ...
1394 (gimplify_if_stmt): ... this.
1395 (cp_gimplify_expr): Don't handle IF_STMT here.
1396 (cp_genericize_r): Call genericize_if_stmt for IF_STMT.
1397
1398 2009-01-10 Andrew Pinski <pinskia@gmail.com>
1399
1400 PR c++/38648
1401 * typeck.c (cp_build_modify_expr): Check for NULL current_function_decl.
1402
1403 PR c++/36695
1404 * typeck2.c (build_functional_cast): Check for reference type and NULL
1405 PARMS.
1406
1407 2009-01-09 Steve Ellcey <sje@cup.hp.com>
1408
1409 * typeck.c (cp_build_unary_op): Check for ERROR_MARK.
1410
1411 2009-01-09 Jakub Jelinek <jakub@redhat.com>
1412
1413 PR c++/35335
1414 * error.c (dump_expr): Handle EXPR_STMT like BIND_EXPR.
1415
1416 2009-01-09 John F. Carr <jfc@mit.edu>
1417
1418 PR c++/37877
1419 * parser.c (cp_parser_class_specifier): Clear
1420 parser->in_unbraced_linkage_specification_p while parsing class
1421 specifiers.
1422
1423 2009-01-07 Jakub Jelinek <jakub@redhat.com>
1424
1425 PR c++/38725
1426 * semantics.c (finish_goto_stmt): Convert destination to
1427 void *.
1428
1429 2009-01-06 Jason Merrill <jason@redhat.com>
1430
1431 PR c++/35297
1432 PR c++/35477
1433 PR c++/35784
1434 PR c++/36846
1435 PR c++/38276
1436 * pt.c (check_default_tmpl_args): Don't complain about
1437 out-of-order parameter packs in the enclosing class
1438 or parameter packs after default args.
1439 (coerce_template_parms): If we have more than one
1440 parameter pack, don't flatten argument packs.
1441 (template_args_equal): Handle argument packs.
1442 (comp_template_args): Don't flatten argument packs.
1443 (check_instantiated_arg): Split out from...
1444 (check_instantiated_args): Here. Handle arg packs.
1445 (convert_template_argument): Just check that nontype argument
1446 packs have the right type.
1447
1448 2009-01-05 Dodji Seketeli <dodji@redhat.com>
1449
1450 PR c++/38472
1451 * typeck.c (type_after_usual_arithmetic_conversions): Fix a typo.
1452
1453 2009-01-05 Jason Merrill <jason@redhat.com>
1454
1455 PR c++/38698
1456 * typeck2.c (process_init_constructor_union): Handle union with
1457 no fields.
1458
1459 * mangle.c (write_expression): Remove mangling for zero-operand
1460 casts.
1461
1462 PR c++/38701
1463 * decl.c (cp_finish_decl): Clear DECL_INITIAL for invalid
1464 defaulting.
1465
1466 PR c++/38702
1467 * class.c (defaultable_fn_p): Only operator== can be a copy
1468 assignment operator.
1469
1470 2009-01-02 Jason Merrill <jason@redhat.com>
1471
1472 PR c++/38698
1473 * typeck2.c (process_init_constructor_union): Handle excess
1474 initializers.
1475 (process_init_constructor_record): Likewise.
1476
1477 PR c++/38684
1478 * typeck2.c (digest_init_r): Don't use process_init_constructor
1479 for non-aggregate classes.
1480
1481 \f
1482 Copyright (C) 2009 Free Software Foundation, Inc.
1483
1484 Copying and distribution of this file, with or without modification,
1485 are permitted in any medium without royalty provided the copyright
1486 notice and this notice are preserved.