re PR c++/61488 (Regression in template argument substitution in 4.9+)
[gcc.git] / gcc / cp / ChangeLog
1 2014-06-13 Jason Merrill <jason@redhat.com>
2
3 PR c++/61488
4 * pt.c (check_valid_ptrmem_cst_expr): Fix for template context.
5
6 PR c++/61500
7 * tree.c (lvalue_kind): Handle MEMBER_REF and DOTSTAR_EXPR.
8
9 2014-06-15 Jan Hubicka <hubicka@ucw.cz>
10
11 * decl.c (grokvardecl): Fix pasto in previous patch.
12
13 2014-06-15 Jan Hubicka <hubicka@ucw.cz>
14
15 * decl.c (duplicate_decls): Use set_decl_tls_model.
16 (grokdeclarator): Likewise.
17 * semantics.c (finish_id_expression): Check TLS only for
18 static variables.
19 (finish_omp_threadprivate): Use decl_default_tls_model.
20 * decl2.c (get_guard): Likewise.
21 * call.c (make_temporary_var_for_ref_to_temp): Likewise.
22
23 2014-06-14 Paolo Carlini <paolo.carlini@oracle.com>
24
25 PR c++/33101
26 * decl.c (grokparms): Improve error message about void parameters.
27 * error.c (type_to_string): Fix aka cut off code.
28
29 2014-06-12 Jason Merrill <jason@redhat.com>
30
31 * call.c (convert_arg_to_ellipsis): Use abi_version_crosses.
32 * cvt.c (type_promotes_to): Likewise.
33 * mangle.c (write_type, write_expression): Likewise.
34 (write_name, write_template_arg): Likewise.
35 (mangle_decl): Make alias based on flag_abi_compat_version.
36 Emit -Wabi warning here.
37 (finish_mangling_internal): Not here. Drop warn parm.
38 (finish_mangling_get_identifier, finish_mangling): Adjust.
39 (mangle_type_string, mangle_special_for_type): Adjust.
40 (mangle_ctor_vtbl_for_type, mangle_thunk): Adjust.
41 (mangle_guard_variable, mangle_tls_init_fn): Adjust.
42 (mangle_tls_wrapper_fn, mangle_ref_init_variable): Adjust.
43
44 * call.c (build_operator_new_call): Remove -fabi-version=1 support.
45 * class.c (walk_subobject_offsets, include_empty_classes): Likewise.
46 (layout_nonempty_base_or_field, end_of_class): Likewise.
47 (layout_empty_base, build_base_field, layout_class_type): Likewise.
48 (is_empty_class, add_vcall_offset_vtbl_entries_1): Likewise.
49 (layout_virtual_bases): Likewise.
50 * decl.c (compute_array_index_type): Likewise.
51 * mangle.c (write_mangled_name, write_prefix): Likewise.
52 (write_template_prefix, write_integer_cst, write_expression): Likewise.
53 (write_template_arg, write_array_type): Likewise.
54 * method.c (lazily_declare_fn): Likewise.
55 * rtti.c (get_pseudo_ti_index): Likewise.
56 * typeck.c (comp_array_types): Likewise.
57
58 2014-06-11 Jan Hubicka <hubicka@ucw.cz>
59
60 * vtable-class-hierarchy.c: Update handling for section names
61 that are no longer trees.
62 * decl.c (duplicate_decls): Likewise.
63
64 2014-06-11 Paolo Carlini <paolo.carlini@oracle.com>
65
66 PR c++/19200
67 * parser.c (cp_parser_init_declarator): Actually pass friend_p
68 to cp_parser_declarator.
69
70 2014-06-11 Paolo Carlini <paolo.carlini@oracle.com>
71
72 PR c++/60265
73 * parser.c (cp_parser_using_declaration): Handle unscoped enums.
74 * name-lookup.c (validate_nonmember_using_decl): Adjust error
75 message.
76
77 2014-06-11 Paolo Carlini <paolo.carlini@oracle.com>
78
79 PR c++/19200
80 * parser.c (cp_parser_declarator): Add bool parameter.
81 (cp_parser_direct_declarator): Likewise, use it.
82 (cp_parser_member_declaration): Pass friend_p to cp_parser_declarator.
83 (cp_parser_condition, cp_parser_explicit_instantiation,
84 cp_parser_init_declarator, cp_parser_type_id_1,
85 cp_parser_parameter_declaration, cp_parser_exception_declaration,
86 cp_parser_cache_defarg, cp_parser_objc_class_ivars,
87 cp_parser_objc_struct_declaration, cp_parser_omp_for_loop_init):
88 Adjust.
89 * decl.c (grokdeclarator): Fix handling of friend declared in
90 namespace scope (g++.dg/parse/friend10.C).
91
92 2014-06-10 Jan Hubicka <hubicka@ucw.cz>
93
94 * vtable-class-hierarchy.c: Use symtab_get_node (var_decl)
95 ->implicit_section.
96 * optimize.c (cdtor_comdat_group): Fix handling of aliases.
97 (maybe_clone_body): Move symbol across comdat groups.
98 * method.c (use_thunk): Copy implicit section flag.
99
100 2014-06-09 Paolo Carlini <paolo.carlini@oracle.com>
101
102 PR c++/22556
103 * name-lookup.c (pushdecl_maybe_friend_1): Use comptypes.
104
105 2014-06-07 Jan Hubicka <hubicka@ucw.cz>
106
107 * method.c (use_thunk): Use set_decl_section_name.
108 * optimize.c (maybe_clone_body): Use set_decl_section_name.
109 * decl.c (duplicate_decls): Likewise.
110 * vtable-class-hierarchy.c: Likewise.
111
112 2014-06-06 Paolo Carlini <paolo.carlini@oracle.com>
113
114 PR c++/60184
115 * class.c (check_field_decls): In C++11 mode do not reject
116 static data members and reference-type members in unions.
117
118 2014-06-05 Jason Merrill <jason@redhat.com>
119
120 PR c++/43453
121 * decl.c (check_initializer): Collapse a TREE_LIST here.
122 * typeck2.c (store_init_value): Not here.
123
124 2014-06-05 Richard Biener <rguenther@suse.de>
125 Paolo Carlini <paolo.carlini@oracle.com>
126
127 PR c++/56961
128 * cp-gimplify.c (cp_gimplify_expr, [MODIFY_EXPR]): Rework
129 handling of empty classes.
130
131 2014-06-04 Jason Merrill <jason@redhat.com>
132
133 * parser.c (cp_parser_diagnose_invalid_type_name): Give helpful note
134 for noexcept and thread_local, too.
135
136 PR c++/61343
137 * decl.c (check_initializer): Maybe clear
138 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P.
139
140 2014-06-05 Richard Biener <rguenther@suse.de>
141
142 PR c++/61004
143 * typeck.c (cp_build_indirect_ref): Do not emit strict-aliasing
144 warnings for accessing empty classes.
145
146 2014-06-05 Marek Polacek <polacek@redhat.com>
147
148 PR c/49706
149 * parser.c (cp_parser_binary_expression): Warn when logical not is
150 used on the left hand side operand of a comparison.
151
152 2014-06-04 Paolo Carlini <paolo.carlini@oracle.com>
153
154 PR c++/43453
155 * typeck.c (cp_build_modify_expr): Handle array of characters
156 initialized by a string literal.
157 * decl.c (check_initializer): Handle parenthesized string literal
158 as initializer.
159 * typeck2.c (store_init_value): Remove redundant check.
160
161 2014-06-04 Jason Merrill <jason@redhat.com>
162
163 PR c++/51253
164 PR c++/61382
165 * cp-gimplify.c (cp_gimplify_expr): Handle CALL_EXPR_LIST_INIT_P here.
166 * semantics.c (simplify_aggr_init_expr): Not here, just copy it.
167
168 2014-06-04 Igor Zamyatin <igor.zamyatin@intel.com>
169
170 PR c/58942
171 * cp-array-notation.c (expand_sec_reduce_builtin): Handle the case
172 with a pointer.
173
174 2014-06-03 Paolo Carlini <paolo.carlini@oracle.com>
175
176 DR 1423
177 PR c++/52174
178 * call.c (standard_conversion): Convert nullptr to bool only
179 in case of direct-initialization.
180 (convert_like_real): Provide informative error message.
181
182 2014-06-03 Marek Polacek <polacek@redhat.com>
183
184 PR c/60439
185 * semantics.c (finish_switch_cond): Warn if switch condition has
186 boolean value.
187
188 2014-06-03 Jason Merrill <jason@redhat.com>
189
190 PR c++/60992
191 * pt.c (tsubst_copy) [VAR_DECL]: Try lookup first. Add a new
192 variable to local_specializations.
193
194 PR c++/60848
195 * call.c (is_std_init_list): Check CLASSTYPE_TEMPLATE_INFO.
196
197 2014-06-02 Jason Merrill <jason@redhat.com>
198
199 PR c++/61046
200 * decl.c (reshape_init_class): Handle un-folded
201 constant-expressions.
202
203 PR c++/61134
204 * pt.c (pack_deducible_p): Handle canonicalization.
205
206 2014-06-02 Paolo Carlini <paolo.carlini@oracle.com>
207
208 * pt.c (tsubst_function_type): Initialize arg_types.
209
210 2014-06-02 Siva Chandra Reddy <sivachandra@google.com>
211
212 PR debug/57519
213 * class.c (handle_using_decl): Pass the correct scope to
214 cp_emit_debug_info_for_using.
215
216 2014-06-02 Ville Voutilainen <ville.voutilainen@gmail.com>
217
218 PR c++/59483
219 PR c++/61148
220 * search.c (accessible_p): Use current_nonlambda_class_type.
221 * semantics.c (check_accessibility_of_qualified_id): Likewise.
222
223 2014-06-02 Andrew MacLeod <amacleod@redhat.com>
224
225 * decl.c: Include builtins.h.
226 * semantics.c: Likewise.
227
228 2014-05-31 Paolo Carlini <paolo.carlini@oracle.com>
229
230 DR 1227
231 PR c++/57543
232 * cp-tree.h (TYPE_HAS_LATE_RETURN_TYPE): Add.
233 * pt.c (tsubst_function_type): Inject the this parameter; do the
234 substitutions in the order mandated by the DR.
235 (copy_default_args_to_explicit_spec): Copy TYPE_HAS_LATE_RETURN_TYPE.
236 * decl.c (grokdeclarator): Maybe set TYPE_HAS_LATE_RETURN_TYPE.
237 (static_fn_type): Copy it.
238 * decl2.c (build_memfn_type, change_return_type,
239 cp_reconstruct_complex_type): Likewise.
240 * parser.c (cp_parser_lambda_declarator_opt): Likewise.
241 * tree.c (strip_typedefs): Likewise.
242 * typeck.c (merge_types): Likewise.
243
244 2014-05-30 Jason Merrill <jason@redhat.com>
245
246 PR c++/56947
247 * pt.c (instantiate_decl): Check that defer_ok is not set for
248 local class members.
249
250 PR c++/60992
251 * pt.c (tsubst_init): Split out from...
252 (tsubst_expr) [DECL_EXPR]: Here.
253 (tsubst_copy) [VAR_DECL]: Use it.
254 * semantics.c (finish_id_expression): Return the decl for static/const.
255
256 2014-05-28 Jason Merrill <jason@redhat.com>
257
258 PR c++/47202
259 * decl.c (cxx_comdat_group): Return a decl.
260 * optimize.c (cdtor_comdat_group): Get its DECL_ASSEMBLER_NAME.
261
262 * pt.c (tsubst) [ARRAY_TYPE]: Check for array of array of unknown
263 bound.
264
265 PR c++/61242
266 * call.c (build_aggr_conv): Ignore passed in flags.
267 (build_array_conv, build_complex_conv): Likewise.
268
269 2014-05-23 Jan Hubicka <hubicka@ucw.cz>
270
271 * optimize.c (maybe_thunk_body): Use set_comdat_group.
272 (maybe_clone_body): Likewise.
273 * decl.c (duplicate_decls): Update code duplicating comdat group;
274 do not copy symtab pointer; before freeing newdecl remove it
275 from symtab.
276 * decl2.c (constrain_visibility): Use set_comdat_group.
277
278 2014-05-23 Jan Hubicka <hubicka@ucw.cz>
279
280 * rtti.c: Include tm_p.h
281 (emit_tinfo_decl): Force RTTI data to be aligned to required
282 ABI alignment only.
283
284 2014-05-23 Jan Hubicka <hubicka@ucw.cz>
285
286 * class.c (build_vtable): Align vtables to TARGET_VTABLE_ENTRY_ALIGN
287 ignoring other target adjustments.
288
289 2014-05-23 Thomas Schwinge <thomas@codesourcery.com>
290
291 * semantics.c (finish_omp_clauses): Remove duplicated variable
292 initialization.
293
294 * parser.c (cp_parser_omp_target): Return bool values.
295
296 2014-05-22 Paolo Carlini <paolo.carlini@oracle.com>
297
298 PR c++/61088
299 * lambda.c (add_capture): Enforce that capture by value requires
300 complete type.
301 * typeck2.c (cxx_incomplete_type_inform): Early return if
302 TYPE_MAIN_DECL is null.
303
304 2014-05-21 Jonathan Wakely <jwakely@redhat.com>
305
306 PR c/61271
307 * cp-array-notation.c (cilkplus_an_triplet_types_ok_p): Fix condition.
308
309 2014-05-21 Ville Voutilainen <ville.voutilainen@gmail.com>
310
311 PR c++/61133
312 * lambda.c (build_capture_proxy, add_capture): Treat normal
313 captures and init-captures identically.
314
315 2014-05-21 Mark Wielaard <mjw@redhat.com>
316
317 PR debug/16063
318 * cp-lang.c (cxx_enum_underlying_base_type): New function.
319 (LANG_HOOKS_ENUM_UNDERLYING_BASE_TYPE): Define.
320
321 2014-05-21 Richard Sandiford <rsandifo@linux.vnet.ibm.com>
322
323 * cvt.c (convert_to_void): Use void_node instead of void_zero_node.
324 * cp-array-notation.c (replace_invariant_exprs): Likewise.
325 (expand_array_notation): Handle VOID_CST.
326 * error.c (dump_expr): Likewise.
327 * cxx-pretty-print.c (cxx_pretty_printer::primary_expression)
328 (cxx_pretty_printer::expression): Likewise.
329 (pp_cxx_new_expression): Use void_node instead of void_zero_node.
330 * decl.c (register_dtor_fn): Likewise.
331 * init.c (build_raw_new_expr, build_new_1, build_vec_init)
332 (build_delete, push_base_cleanups): Likewise.
333 * mangle.c (write_expression): Likewise.
334 * semantics.c (finish_break_stmt, empty_expr_stmt_p): Likewise.
335 * pt.c (tsubst_decl, tsubst_copy_and_build): Likewise.
336 (tsubst, tsubst_copy, build_non_dependent_expr): Handle VOID_CST.
337 * tree.c (cp_tree_equal): Likewise.
338 (build_dummy_object, is_dummy_object, stabilize_expr): Use void_node
339 instead of void_zero_node.
340 * typeck.c (check_return_expr): Likewise.
341 * typeck2.c (build_functional_cast): Likewise.
342
343 2014-05-21 Igor Zamyatin <igor.zamyatin@intel.com>
344
345 PR c/60189
346 * parser.c (cp_parser_postfix_expression): Move handling of cilk_sync
347 from here to...
348 (cp_parser_statement): ...here. Make sure only semicolon can go after
349 Cilk_sync.
350
351 2014-05-20 Paolo Carlini <paolo.carlini@oracle.com>
352
353 PR c++/58753
354 PR c++/58930
355 PR c++/58704
356 * typeck2.c (digest_nsdmi_init): New.
357 * parser.c (cp_parser_late_parse_one_default_arg): Use it.
358 * init.c (get_nsdmi): Likewise.
359 * cp-tree.h (digest_nsdmi_init): Declare.
360
361 2014-05-20 Jason Merrill <jason@redhat.com>
362
363 * typeck.c (get_member_function_from_ptrfunc): Don't try to look
364 up a virtual function in a dummy object.
365
366 2014-05-20 Paolo Carlini <paolo.carlini@oracle.com>
367
368 PR c++/60373
369 * decl.c (duplicate_decls): Replace pair of warning_at with
370 warning_at + inform.
371 (maybe_commonize_var): Likewise.
372
373 2014-05-20 Richard Sandiford <rsandifo@linux.vnet.ibm.com>
374
375 PR bootstrap/61210
376 * pt.c (tsubst_copy, tsubst_omp_for_iterator, tsubst_expr)
377 (tsubst_copy_and_build): Perform recursive substitutions in a
378 deterministic order.
379
380 2014-05-20 Paolo Carlini <paolo.carlini@oracle.com>
381
382 PR c++/58664
383 * typeck2.c (cxx_incomplete_type_inform): New.
384 (cxx_incomplete_type_diagnostic): Use it.
385 * decl.c (grokdeclarator): Check the element type of an
386 incomplete array type; call the above.
387 * cp-tree.h (cxx_incomplete_type_inform): Declare.
388
389 2014-05-19 Jason Merrill <jason@redhat.com>
390
391 PR c++/58761
392 * pt.c (tsubst_copy): Don't check at_function_scope_p.
393 (instantiate_class_template_1): Don't push_to_top_level in an nsdmi.
394
395 2014-05-19 Paolo Carlini <paolo.carlini@oracle.com>
396
397 * typeck2.c (cxx_incomplete_type_diagnostic): Use inform.
398 * parser.c (cp_parser_enum_specifier): Likewise.
399
400 2014-05-17 Trevor Saunders <tsaunders@mozilla.com>
401
402 * class.c (sorted_fields_type_new): Adjust.
403 * cp-cilkplus.c (cilk_install_body_with_frame_cleanup): Likewise.
404 * cp-objcp-common.c (decl_shadowed_for_var_insert): Likewise.
405 * cp-tree.h: Remove usage of variable_size gty attribute.
406 * decl.c (make_label_decl): Adjust.
407 (check_goto): Likewise.
408 (start_preparsed_function): Likewise.
409 (save_function_data): Likewise.
410 * lex.c (init_reswords): Likewise.
411 (retrofit_lang_decl): Likewise.
412 (cxx_dup_lang_specific_decl): Likewise.
413 (copy_lang_type): Likewise.
414 (cxx_make_type): Likewise.
415 * name-lookup.c (binding_entry_make): Likewise.
416 (binding_table_construct): Likewise.
417 (binding_table_new): Likewise.
418 (cxx_binding_make): Likewise.
419 (pushdecl_maybe_friend_1): Likewise.
420 (begin_scope): Likewise.
421 (push_to_top_level): Likewise.
422 * parser.c (cp_lexer_alloc): Likewise.
423 (cp_lexer_new_from_tokens): Likewise.
424 (cp_token_cache_new): Likewise.
425 (cp_parser_context_new): Likewise.
426 (cp_parser_new): Likewise.
427 (cp_parser_nested_name_specifier_opt): Likewise.
428 (cp_parser_template_id): Likewise.
429 * pt.c (maybe_process_partial_specialization): Likewise.
430 (register_specialization): Likewise.
431 (add_pending_template): Likewise.
432 (lookup_template_class_1): Likewise.
433 (push_tinst_level): Likewise.
434 * semantics.c (register_constexpr_fundef): Likewise.
435 (cxx_eval_call_expression): Likewise.
436 * typeck2.c (abstract_virtuals_error_sfinae): Likewise.
437
438 2014-05-16 Paolo Carlini <paolo.carlini@oracle.com>
439
440 PR c++/51640
441 * parser.c (cp_parser_diagnose_invalid_type_name): Early return
442 when cp_parser_lookup_name sets ambiguous_decls.
443
444 2014-05-15 Jason Merrill <jason@redhat.com>
445
446 * call.c (print_conversion_rejection): Use loc consistently.
447
448 2014-05-14 Paolo Carlini <paolo.carlini@oracle.com>
449
450 * cp-tree.h (DIRECT_LIST_INIT_P): Add.
451 * call.c (convert_like_real, build_new_method_call_1): Use it.
452 * decl2.c (grokfield): Likewise.
453 * init.c (perform_member_init, build_aggr_init, expand_default_init,
454 build_new_1): Likewise.
455 * mangle.c (write_expression): Likewise.
456 * parser.c (cp_parser_late_parse_one_default_arg): Likewise.
457
458 2014-05-14 Jason Merrill <jason@redhat.com>
459
460 PR c++/20332
461 PR c++/21631
462 * call.c (reference_binding): Treat lvalue/rvalue mismatch and
463 dropped cv-quals as a bad conversion.
464 (convert_like_real) [ck_ref_bind]: Explain them.
465 (compare_ics): Check badness before stripping reference
466 bindings. Handle comparing bad reference bindings.
467 * typeck.c (comp_cv_qualification): Add overload that just takes
468 integers.
469 * cp-tree.h: Declare it.
470
471 * call.c (struct conversion_info): Rename 'from_type' to 'from'.
472 (arg_conversion_rejection, bad_arg_conversion_rejection)
473 (explicit_conversion_rejection, template_conversion_rejection): Adjust.
474 (add_function_candidate): Pass actual argument, rather than type, to
475 bad_arg_conversion_rejection.
476 (print_conversion_rejection): Explain what's wrong with the conversion.
477 (print_z_candidates): Say "candidate:" before each candidate.
478 (splice_viable): Be strict if we see a viable or template candidate.
479 (build_user_type_conversion_1): Pass false to strict parameter.
480 (perform_overload_resolution, build_conditional_expr_1): Likewise.
481 (build_new_op_1, build_new_method_call_1): Likewise.
482 (build_op_call_1): Pass true to strict parameter.
483
484 2014-05-13 Jason Merrill <jason@redhat.com>
485
486 * call.c (print_error_for_call_failure): Say "no match" rather
487 than "ambiguous" if there were no strict matches.
488 (build_new_method_call_1): Likewise.
489
490 PR c++/61151
491 * semantics.c (is_this_parameter): Allow capture proxies too.
492
493 2014-05-12 Jason Merrill <jason@redhat.com>
494
495 * call.c (maybe_print_user_conv_context): New.
496 (convert_like_real): Use it. Print call context for bad
497 user-defined conversion.
498 (build_over_call): Print call context for bad 'this' conversion.
499
500 * call.c (convert_like_real): Use inform for identifying the
501 declaration point.
502
503 2014-05-12 Paolo Carlini <paolo.carlini@oracle.com>
504
505 * cvt.c (cp_convert_to_pointer): Don't call error_at if
506 complain & tf_error is false.
507
508 * decl.c (make_unbound_class_template): Prefer inform for
509 "declared here"-type message.
510
511 2014-05-09 Momchil Velikov <momchil.velikov@gmail.com>
512
513 PR c++/60463
514 PR c++/60755
515 * lambda.c (lambda_expr_this_capture): Add new parameter
516 add_capture_p controlling whether the functions will try to
517 capture 'this' via the default capture.
518 (maybe_resolve_dummy): Likewise.
519 * cp-tree.h: Adjust prototypes.
520 * call.c, semantics.c: Change callers of these functions.
521 * call.c (build_new_method_call_1): Use the actual 'this' that
522 would be potentially captured for the overload resolution, instead
523 of the dummy object.
524
525 2014-05-09 Paolo Carlini <paolo.carlini@oracle.com>
526
527 * pt.c (convert_nontype_argument_function): Add tsubst_flags_t
528 parameter.
529 (convert_nontype_argument): Adjust calls.
530 (coerce_template_parameter_pack): Add missing complain & tf_error
531 check.
532
533 2014-05-09 Jason Merrill <jason@redhat.com>
534
535 DR 587
536 PR c++/51317
537 * call.c (build_conditional_expr_1, conditional_conversion): Handle
538 non-class lvalues and xvalues that differ only in cv-qualifiers.
539
540 DR 5
541 PR c++/60019
542 * call.c (build_user_type_conversion_1): The copy-init temporary
543 is cv-unqualified.
544
545 PR c++/58714
546 * tree.c (stabilize_expr): A stabilized prvalue is an xvalue.
547
548 PR c++/54348
549 * call.c (build_conditional_expr_1): If overload resolution finds
550 no match, just say "different types".
551
552 PR c++/32019
553 * call.c (build_conditional_expr_1): Improve ambiguity diagnostic.
554
555 PR c++/22434
556 * call.c (build_conditional_expr_1): Don't try to pool cv-quals
557 if we didn't find a conversion.
558 Don't accept a bad conversion too early.
559
560 2014-05-08 Paolo Carlini <paolo.carlini@oracle.com>
561
562 PR c++/13981
563 * typeck.c (convert_for_assignment): Provide an inform for pointers
564 to incomplete class types.
565
566 2014-05-07 Paolo Carlini <paolo.carlini@oracle.com>
567
568 PR c++/61083
569 * pt.c (convert_nontype_argument): Protect all the error calls
570 with complain & tf_error.
571
572 2014-05-07 Paolo Carlini <paolo.carlini@oracle.com>
573
574 PR c++/61080
575 * pt.c (instantiate_decl): Avoid generating the body of a
576 deleted function.
577
578 2014-05-06 Paolo Carlini <paolo.carlini@oracle.com>
579
580 PR c++/60999
581 * pt.c (maybe_begin_member_template_processing): Use
582 uses_template_parms.
583
584 2014-05-06 Kenneth Zadeck <zadeck@naturalbridge.com>
585 Mike Stump <mikestump@comcast.net>
586 Richard Sandiford <rdsandiford@googlemail.com>
587
588 * call.c: Include wide-int.h.
589 (type_passed_as): Use tree_int_cst_lt instead of INT_CST_LT_UNSIGNED.
590 (convert_for_arg_passing): Likewise.
591 * class.c: Include wide-int.h.
592 (walk_subobject_offsets): Use tree_int_cst_lt instead of INT_CST_LT.
593 (end_of_class): Use tree_int_cst_lt instead of INT_CST_LT_UNSIGNED.
594 (include_empty_classes): Likewise
595 (layout_class_type): Use tree_int_cst_lt instead of INT_CST_LT.
596 * cvt.c: Include wide-int.h.
597 (ignore_overflows): Use wide_int_to_tree.
598 * decl.c: Include wide-int.h.
599 (check_array_designated_initializer): Use wide-int interfaces.
600 (compute_array_index_type): Use tree_int_cst_lt instead of INT_CST_LT.
601 (finish_enum_value_list): Use signop.
602 (build_enumerator): Use wide-int interfaces.
603 * init.c: Include wide-int.h.
604 (build_new_1): Use wide-int interfaces.
605 * mangle.c: Include wide-int.h.
606 (write_integer_cst): Use wide-int interfaces.
607 (write_array_type): Likewise.
608 * tree.c: Include wide-int.h.
609 (cp_tree_equal): Use tree_int_cst_equal.
610 * typeck2.c: Include wide-int.h.
611 (process_init_constructor_array): Use wide-int interfaces.
612
613 2014-05-03 Paolo Carlini <paolo.carlini@oracle.com>
614
615 PR c++/58582
616 * decl.c (grokfndecl): Check duplicate_decls return value for
617 error_mark_node.
618 * pt.c (instantiate_decl): A deleted function is defined.
619
620 2014-05-02 Jason Merrill <jason@redhat.com>
621
622 * decl2.c (vague_linkage_p): Local statics have vague linkage.
623
624 PR c++/60992
625 * lambda.c (lambda_capture_field_type): Wrap anything dependent
626 other than 'this'.
627 (add_capture): Check for VLA before calling it.
628 * semantics.c (is_this_parameter): Accept any 'this' parameter, not
629 just the current one. Make non-static.
630 * cp-tree.h: Declare it.
631 * pt.c (tsubst_copy) [VAR_DECL]: Also build a new VAR_DECL if
632 the operand was static or constant.
633
634 2014-05-02 Marek Polacek <polacek@redhat.com>
635
636 * typeck.c (maybe_warn_about_returning_address_of_local): Separate
637 warning_at calls.
638
639 2014-05-01 Marek Polacek <polacek@redhat.com>
640
641 PR c/43395
642 * typeck.c (maybe_warn_about_returning_address_of_local): Distinguish
643 between label and variable when warning about returning local address.
644
645 2014-04-30 Jason Merrill <jason@redhat.com>
646
647 PR c++/60980
648 * init.c (build_value_init): Don't try to call an array constructor.
649
650 PR c++/60951
651 * typeck2.c (massage_init_elt): Use maybe_constant_init.
652
653 2014-04-30 Marek Polacek <polacek@redhat.com>
654
655 * typeck.c (cp_build_binary_op): Call ubsan_instrument_division
656 even when SANITIZE_FLOAT_DIVIDE is on. Set doing_div_or_mod even
657 for non-integer types.
658
659 2014-04-29 Jason Merrill <jason@redhat.com>
660
661 DR 1351
662 Represent the unevaluated exception specification of an implicitly
663 declared or deleted function with a simple placeholder, not a list
664 of functions.
665 * cp-tree.h (UNEVALUATED_NOEXCEPT_SPEC_P): New.
666 * except.c (unevaluated_noexcept_spec): New.
667 * class.c (deduce_noexcept_on_destructor): Use it.
668 * decl.c (check_redeclaration_exception_specification): Call
669 maybe_instantiate_noexcept.
670 (duplicate_decls): Call it before merge_types.
671 (start_preparsed_function): Call maybe_instantiate_noexcept.
672 * decl2.c (mark_used): Call maybe_instantiate_noexcept earlier.
673 * init.c (get_nsdmi): Factor out of perform_member_init.
674 * method.c (process_subob_fn): Call maybe_instantiate_noexcept.
675 (walk_field_subobs): Consider NSDMI for EH spec.
676 (get_defaulted_eh_spec): New.
677 (implicitly_declare_fn): Use unevaluated_noexcept_spec.
678 (defaulted_late_check): Defer EH checking in non-template classes.
679 (after_nsdmi_defaulted_late_checks): New.
680 * parser.c (cp_parser_class_specifier_1): Use it.
681 (unparsed_classes): New macro.
682 * parser.h (cp_unparsed_functions_entry_d): Add classes field.
683 * pt.c (maybe_instantiate_noexcept): Use get_defaulted_eh_spec.
684 Remove list-of-functions handling.
685 * typeck2.c (merge_exception_specifiers): Remove list-of-functions
686 handling and FN parameter.
687 * typeck.c (merge_types): Adjust.
688
689 2014-04-28 Paolo Carlini <paolo.carlini@oracle.com>
690
691 PR c++/59120
692 * parser.c (cp_parser_alias_declaration): Check return value of
693 cp_parser_require.
694
695 2014-04-24 Jakub Jelinek <jakub@redhat.com>
696
697 * parser.c (cp_parser_omp_atomic): Allow seq_cst before
698 atomic-clause, allow comma in between atomic-clause and
699 seq_cst.
700
701 2014-04-24 Marc Glisse <marc.glisse@inria.fr>
702
703 PR libstdc++/43622
704 * rtti.c (emit_support_tinfos): Do not iterate on
705 registered_builtin_types (partial revert).
706
707 2014-04-23 Dinar Temirbulatov <dtemirbulatov@gmail.com>
708
709 PR c++/57958
710 * semantics.c (apply_deduced_return_type): Complete non-void type
711 before estimating whether the type is aggregate.
712
713 2014-04-22 Marc Glisse <marc.glisse@inria.fr>
714
715 PR libstdc++/43622
716 * rtti.c (emit_support_tinfo_1): New function, extracted from
717 emit_support_tinfos.
718 (emit_support_tinfos): Call it and iterate on registered_builtin_types.
719
720 2014-04-22 Jakub Jelinek <jakub@redhat.com>
721
722 PR c/59073
723 * parser.c (cp_parser_omp_parallel): If cp_parser_omp_for
724 fails, don't set OM_PARALLEL_COMBINED and return NULL.
725
726 2014-04-18 Jason Merrill <jason@redhat.com>
727
728 DR 1571
729 * call.c (reference_binding): Recurse on user-defined conversion.
730
731 PR c++/60872
732 * call.c (standard_conversion): Don't try to apply restrict to void.
733
734 2014-04-16 Marc Glisse <marc.glisse@inria.fr>
735
736 * decl.c (reshape_init_r): Handle a single element of vector type.
737
738 2014-04-16 Patrick Palka <patrick@parcs.ath.cx>
739
740 PR c++/60765
741 * decl2.c (cplus_decl_attributes): Handle
742 pointer-to-member-function declarations.
743
744 2014-04-16 Patrick Palka <patrick@parcs.ath.cx>
745
746 PR c++/60764
747 * call.c (build_user_type_coversion): Use build_dummy_object
748 to create the placeholder object for a constructor method call.
749 (build_special_member_call): Likewise.
750 (build_over_call): Check for the placeholder object with
751 is_dummy_object.
752 (build_new_method_call_1): Likewise. Don't attempt to resolve
753 a dummy object for a constructor method call.
754
755 2014-04-16 Paul Pluzhnikov <ppluzhnikov@google.com>
756
757 PR c++/59295
758 * friend.c (add_friend, make_friend_class): Move repeated friend
759 warning under Wredundant_decls.
760
761 2014-04-15 Paolo Carlini <paolo.carlini@oracle.com>
762
763 * decl.c (duplicate_decls): Remove redundant TYPE_NAME use.
764 * name-lookup.c (pushdecl_maybe_friend_1): Likewise.
765 (do_class_using_decl): Likewise.
766 * mangle.c (dump_substitution_candidates): Use TYPE_NAME_STRING.
767
768 2014-04-15 Jakub Jelinek <jakub@redhat.com>
769
770 PR plugins/59335
771 * Make-lang.h (CP_PLUGIN_HEADERS): Add type-utils.h.
772
773 2014-04-14 Paolo Carlini <paolo.carlini@oracle.com>
774
775 * cp-tree.h (TYPE_IDENTIFIER): Remove declaration.
776
777 2014-04-14 Paolo Carlini <paolo.carlini@oracle.com>
778
779 * pt.c (mark_template_parm): Use template_parm_level_and_index.
780
781 2014-04-11 Jason Merrill <jason@redhat.com>
782
783 * parser.h (struct cp_token): Rename ambiguous_p to error_reported.
784 * parser.c: Adjust.
785 (cp_lexer_get_preprocessor_token): Always clear it.
786 (cp_parser_lambda_expression): Use it to avoid duplicate diagnostics.
787
788 DR 1467
789 PR c++/51747
790 * decl.c (reshape_init_r): Handle a single element of class type.
791
792 DR 1338
793 * decl.c (cxx_init_decl_processing): Set DECL_IS_MALLOC on
794 built-in operator new.
795
796 2014-04-11 Paolo Carlini <paolo.carlini@oracle.com>
797
798 PR c++/58600
799 * name-lookup.c (parse_using_directive): Return early if the
800 attribs argument is error_mark_node; use get_attribute_name.
801
802 2014-04-11 Jason Merrill <jason@redhat.com>
803
804 DR 1030
805 PR c++/51253
806 * cp-tree.h (CALL_EXPR_LIST_INIT_P): New.
807 * call.c (struct z_candidate): Add flags field.
808 (add_candidate): Add flags parm.
809 (add_function_candidate, add_conv_candidate, build_builtin_candidate)
810 (add_template_candidate_real): Pass it.
811 (build_over_call): Set CALL_EXPR_LIST_INIT_P.
812 * tree.c (build_aggr_init_expr): Copy it.
813 * semantics.c (simplify_aggr_init_expr): Preevaluate args if it's set.
814
815 2014-04-10 Richard Biener <rguenther@suse.de>
816 Jakub Jelinek <jakub@redhat.com>
817
818 PR ipa/60761
819 * error.c (dump_decl) <case FUNCTION_DECL>: If
820 DECL_LANG_SPECIFIC is NULL, but DECL_ABSTRACT_ORIGIN is not,
821 recurse on DECL_ABSTRACT_ORIGIN instead of printing
822 <built-in>.
823
824 2014-04-09 Fabien Chêne <fabien@gcc.gnu.org>
825
826 * pt.c (check_template_variable): Check for the return of pedwarn
827 before emitting a note.
828 * parser.c (cp_parser_lambda_introducer): Likewise.
829
830 2014-04-08 Paolo Carlini <paolo.carlini@oracle.com>
831
832 PR c++/59115
833 * pt.c (process_template_parm): For an invalid non-type parameter
834 only set TREE_TYPE to error_mark_node.
835 (push_inline_template_parms_recursive, comp_template_parms,
836 redeclare_class_template, coerce_template_template_parm,
837 coerce_template_template_parms, unify): Use error_operand_p.
838
839 2014-04-08 Nathan Sidwell <nathan@codesourcery.com>
840
841 * class.c (check_bases_and_members): Warn about non-virtual dtors
842 in public bases only. Check warn_ecpp before complaining about
843 non-polymorphic bases.
844
845 2014-04-04 Fabien Chêne <fabien@gcc.gnu.org>
846
847 * decl.c (duplicate_decls): Check for the return of warning_at
848 before emitting a note.
849 (warn_misplaced_attr_for_class_type): Likewise.
850 (check_tag_decl): Likewise.
851
852 2014-04-04 Paolo Carlini <paolo.carlini@oracle.com>
853
854 PR c++/58207
855 * semantics.c (sort_constexpr_mem_initializers): Robustify loop.
856
857 2014-04-04 Patrick Palka <patrick@parcs.ath.cx>
858
859 PR c++/44613
860 * semantics.c (add_stmt): Set STATEMENT_LIST_HAS_LABEL.
861 * decl.c (cp_finish_decl): Create a new BIND_EXPR before
862 instantiating a variable-sized type.
863
864 PR c++/21113
865 * decl.c (decl_jump_unsafe): Consider variably-modified decls.
866
867 2014-04-04 Fabien Chêne <fabien@gcc.gnu.org>
868
869 * class.c (find_abi_tags_r): Check for the return of warning
870 before emitting a note.
871 (one_inherited_ctor): Likewise.
872
873 2014-04-04 Fabien Chêne <fabien@gcc.gnu.org>
874
875 * decl.c (duplicate_decls): Check for the return of permerror
876 before emitting a note.
877
878 2014-04-03 Nathan Sidwell <nathan@codesourcery.com>
879
880 * class.c (accessible_nvdtor_p): New.
881 (check_bases): Don't check base destructor here ...
882 (check_bases_and_members): ... check them here. Trigger on
883 Wnon-virtual-dtor flag.
884 (finish_struct_1): Use accessible_nvdtor_p.
885
886 2014-04-01 Jason Merrill <jason@redhat.com>
887
888 * pt.c (process_partial_specialization): Say "not deducible"
889 rather than "not used". Use inform.
890
891 PR c++/60374
892 * pt.c (coerce_template_parms): Check that the pack expansion
893 pattern works with the first matching parameter.
894
895 2014-04-01 Fabien Chêne <fabien@gcc.gnu.org>
896
897 * init.c (perform_member_init): Homogenize uninitialized
898 diagnostics.
899
900 2014-04-01 Jason Merrill <jason@redhat.com>
901
902 PR c++/60708
903 * call.c (build_array_conv): Call complete_type.
904
905 PR c++/60713
906 * typeck2.c (PICFLAG_SIDE_EFFECTS): New.
907 (picflag_from_initializer): Return it.
908 (process_init_constructor): Handle it.
909
910 PR c++/60642
911 * decl2.c (is_late_template_attribute): Don't defer abi_tag.
912 * mangle.c (write_unqualified_name): Fix abi_tag on templates.
913 * pt.c (get_template_info): Handle NAMESPACE_DECL.
914 (most_general_template): Handle more kinds of template.
915 * tree.c (handle_abi_tag_attribute): Ignore abi_tag on template
916 instantiations and specializations.
917
918 2014-03-31 Patrick Palka <patrick@parcs.ath.cx>
919
920 PR c++/44859
921 * typeck.c (maybe_warn_about_returning_address_of_local): Unwrap
922 COMPONENT_REFs and ARRAY_REFs sooner.
923
924 2014-03-29 Adam Butcher <adam@jessamine.co.uk>
925
926 PR c++/60626
927 * parser.c (cp_parser_init_declarator): Handle erroneous generic type
928 usage in non-functions with pushed scope.
929
930 2014-03-28 Adam Butcher <adam@jessamine.co.uk>
931
932 PR c++/60573
933 * name-lookup.h (cp_binding_level): New transient field defining_class_p
934 to indicate whether a scope is in the process of defining a class.
935 * semantics.c (begin_class_definition): Set defining_class_p.
936 * name-lookup.c (leave_scope): Reset defining_class_p.
937 * parser.c (synthesize_implicit_template_parm): Use cp_binding_level::
938 defining_class_p rather than TYPE_BEING_DEFINED as the predicate for
939 unwinding to class-defining scope to handle the erroneous definition of
940 a generic function of an arbitrarily nested class within an enclosing
941 class.
942
943 2014-03-26 Fabien Chêne <fabien@gcc.gnu.org>
944
945 PR c++/52369
946 * method.c (walk_field_subobs): Improve the diagnostic
947 locations for both REFERENCE_TYPEs and non-static const members.
948 * init.c (diagnose_uninitialized_cst_or_ref_member): Use %q#D
949 instead of %qD to be consistent with the c++11 diagnostic.
950
951 2014-03-25 Jason Merrill <jason@redhat.com>
952
953 PR c++/60566
954 PR c++/58678
955 * class.c (build_vtbl_initializer): Handle abstract dtors here.
956 * search.c (get_pure_virtuals): Not here.
957
958 PR c++/60375
959 * parser.c (cp_parser_lambda_expression): Don't parse the body of
960 a lambda in unevaluated context.
961
962 PR c++/60628
963 * decl.c (create_array_type_for_decl): Complain about array of auto.
964
965 2014-03-25 Jakub Jelinek <jakub@redhat.com>
966
967 PR c++/60331
968 * semantics.c (potential_constant_expression_1): Handle
969 DECL_EXPR.
970
971 2014-03-24 Adam Butcher <adam@jessamine.co.uk>
972
973 PR c++/60627
974 * parser.c (cp_parser_parameter_declaration_clause): Prevent 'auto' from
975 introducing an implicit function template parameter within an explicit
976 instantiation.
977
978 2014-03-22 Jason Merrill <jason@redhat.com>
979
980 PR c++/60574
981 * decl.c (grokdeclarator): Change permerror about 'virtual auto'
982 to error.
983
984 2014-03-21 Paolo Carlini <paolo.carlini@oracle.com>
985
986 PR c++/60384
987 * name-lookup.c (push_class_level_binding_1): Check identifier_p
988 on the name argument.
989
990 2014-03-20 Jakub Jelinek <jakub@redhat.com>
991
992 PR c++/60572
993 * init.c (build_zero_init_1): Ignore fields with error_mark_node
994 type.
995
996 2014-03-19 Paolo Carlini <paolo.carlini@oracle.com>
997
998 PR c++/51474
999 * call.c (build_new_method_call_1): Handle pure virtuals called by
1000 NSDMIs too.
1001
1002 2014-03-17 Adam Butcher <adam@jessamine.co.uk>
1003
1004 PR c++/60390
1005 * parser.c (cp_parser_member_declaration): Don't allow
1006 finish_fully_implicit_template to consider friend declarations to be
1007 class member templates.
1008 (synthesize_implicit_template_parm): Handling winding back through class
1009 scope to the class being defined in order to inject a template argument
1010 list.
1011
1012 PR c++/60391
1013 * parser.c (cp_parser_skip_to_end_of_block_or_statement): Unwind generic
1014 function scope as per cp_parser_skip_to_end_of_statement.
1015
1016 2014-03-17 Paolo Carlini <paolo.carlini@oracle.com>
1017
1018 PR c++/59571
1019 * typeck2.c (check_narrowing): Use fold_non_dependent_expr_sfinae.
1020
1021 2014-03-14 Jason Merrill <jason@redhat.com>
1022
1023 PR c++/60532
1024 PR c++/58678
1025 * search.c (get_pure_virtuals): Handle abstract dtor here.
1026 (dfs_get_pure_virtuals): Not here.
1027
1028 PR c++/58678
1029 * search.c (dfs_get_pure_virtuals): Treat the destructor of an
1030 abstract class as pure.
1031
1032 2014-03-13 Paolo Carlini <paolo.carlini@oracle.com>
1033
1034 PR c++/60383
1035 * pt.c (maybe_process_partial_specialization): Check return value
1036 of check_specialization_namespace.
1037
1038 2014-03-13 Paolo Carlini <paolo.carlini@oracle.com>
1039
1040 PR c++/60254
1041 * semantics.c (finish_static_assert): Call cxx_constant_value only
1042 if require_potential_rvalue_constant_expression returns true.
1043
1044 2014-03-11 Paolo Carlini <paolo.carlini@oracle.com>
1045
1046 PR c++/60389
1047 * method.c (get_inherited_ctor): New.
1048 * cp-tree.h (get_inherited_ctor): Declare it.
1049 * semantics.c (is_valid_constexpr_fn): Use it.
1050
1051 2014-03-10 Jason Merrill <jason@redhat.com>
1052
1053 PR c++/60367
1054 * call.c (convert_default_arg): Remove special handling for
1055 CONSTRUCTOR.
1056
1057 PR c++/53492
1058 * parser.c (cp_parser_class_head): Also check PRIMARY_TEMPLATE_P
1059 when deciding whether to call push_template_decl for a member class.
1060 * pt.c (push_template_decl_real): Return after wrong levels error.
1061
1062 2014-03-08 Adam Butcher <adam@jessamine.co.uk>
1063
1064 PR c++/60033
1065 * pt.c (tsubst_copy): When retrieving a capture pack from a generic
1066 lambda, remove the lambda's own template argument list prior to fetching
1067 the specialization.
1068
1069 PR c++/60393
1070 * parser.c (cp_parser_parameter_declaration_clause): Move generic
1071 function template unwinding on error into a more general location, ...
1072 (cp_parser_skip_to_end_of_statement): ... here.
1073
1074 2014-03-07 Jason Merrill <jason@redhat.com>
1075
1076 * Make-lang.in (check_g++_parallelize): Split dg.exp.
1077
1078 * parser.c (cp_parser_type_id_1): Only allow 'auto' in C++1y if
1079 we're in a trailing return type.
1080
1081 * typeck.c (comp_template_parms_position): 'auto' and
1082 'decltype(auto)' are different from real template parms.
1083
1084 * parser.c (cp_parser_using_declaration): Consume the semicolon
1085 after bare parameter pack error.
1086
1087 * cp-tree.h (REF_PARENTHESIZED_P): New.
1088 * semantics.c (force_paren_expr): Set it.
1089 * pt.c (do_auto_deduction): Check it.
1090 (tsubst) [COMPONENT_REF]: Copy it.
1091 * typeck.c (maybe_warn_about_useless_cast): Don't strip dereference.
1092
1093 * decl.c (create_array_type_for_decl): Only warn about invalid
1094 C++1y VLA if flag_iso or warn_vla>0.
1095 (grokdeclarator): Likewise.
1096 * pt.c (tsubst): Likewise.
1097 * semantics.c (finish_decltype_type): Likewise.
1098 * typeck.c (cxx_sizeof_or_alignof_type): Likewise.
1099 (cp_build_addr_expr_1): Likewise.
1100 * init.c (build_new_1): Improve diagnostics.
1101
1102 2014-03-07 Paolo Carlini <paolo.carlini@oracle.com>
1103
1104 PR c++/58609
1105 * decl.c (check_initializer): Return NULL_TREE after error;
1106 consistently use inform.
1107
1108 2014-03-07 Paolo Carlini <paolo.carlini@oracle.com>
1109
1110 * decl.c (check_initializer): Remove dead code.
1111
1112 2014-03-06 Marek Polacek <polacek@redhat.com>
1113
1114 PR c/60197
1115 * typeck.c (check_return_expr): Call contains_cilk_spawn_stmt instead
1116 of checking tree code.
1117
1118 2014-03-06 Paolo Carlini <paolo.carlini@oracle.com>
1119
1120 * parser.c (cp_lexer_set_source_position): New.
1121 (cp_parser_mem_initializer): Use it.
1122 (cp_parser_postfix_open_square_expression): Likewise.
1123 (cp_parser_parenthesized_expression_list): Likewise.
1124 (cp_parser_new_initializer): Likewise.
1125 (cp_parser_jump_statement): Likewise.
1126 (cp_parser_initializer): Likewise.
1127 (cp_parser_functional_cast): Likewise.
1128
1129 2014-03-05 Jason Merrill <jason@redhat.com>
1130
1131 PR c++/60409
1132 * semantics.c (force_paren_expr): Only add a PAREN_EXPR to a
1133 dependent expression.
1134
1135 PR c++/60361
1136 * parser.c (cp_parser_template_id): Don't set up a CPP_TEMPLATE_ID
1137 if re-parsing might succeed.
1138 * semantics.c (finish_id_expression): Use of a parameter outside
1139 the function body is a parse error.
1140
1141 * parser.c (cp_parser_mem_initializer): Set input_location
1142 properly for init-list warning.
1143 (cp_parser_postfix_open_square_expression): Likewise.
1144 (cp_parser_parenthesized_expression_list): Likewise.
1145 (cp_parser_new_initializer): Likewise.
1146 (cp_parser_jump_statement): Likewise.
1147 (cp_parser_initializer): Likewise.
1148 (cp_parser_functional_cast): Likewise.
1149
1150 2014-03-04 Jason Merrill <jason@redhat.com>
1151
1152 PR c++/60417
1153 * typeck2.c (process_init_constructor_record): Set
1154 CONSTRUCTOR_IS_DIRECT_INIT on {} for omitted initializers.
1155
1156 PR c++/60415
1157 PR c++/54359
1158 * parser.c (cp_parser_direct_declarator): Set declarator to
1159 cp_error_declarator on invalid qualified-id.
1160
1161 2014-03-04 Paolo Carlini <paolo.carlini@oracle.com>
1162
1163 PR c++/60376
1164 * parser.c (cp_parser_using_declaration): Early return when
1165 cp_parser_nested_name_specifier errors out.
1166
1167 2014-03-01 Adam Butcher <adam@jessamine.co.uk>
1168
1169 PR c++/60377
1170 * parser.c (cp_parser_parameter_declaration_clause): Unwind generic
1171 function scope on parse error in function parameter list.
1172
1173 2014-03-01 Paolo Carlini <paolo.carlini@oracle.com>
1174
1175 * method.c (implicitly_declare_fn): Remove redundant
1176 DECL_TEMPLATE_RESULT and STRIP_TEMPLATE uses.
1177 * semantics.c (is_instantiation_of_constexpr): Likewise.
1178 * error.c (dump_function_decl): Likewise.
1179
1180 2014-03-01 Jason Merrill <jason@redhat.com>
1181
1182 PR c++/60379
1183 * semantics.c (begin_maybe_infinite_loop): Use
1184 fold_non_dependent_expr_sfinae.
1185
1186 2014-02-28 Jason Merrill <jason@redhat.com>
1187
1188 PR c++/58845
1189 * typeck.c (cp_build_binary_op): Sorry on vector&&vector.
1190
1191 2014-02-28 Paolo Carlini <paolo.carlini@oracle.com>
1192
1193 PR c++/58610
1194 * cp-tree.h (DECL_DELETED_FN): Use LANG_DECL_FN_CHECK.
1195 * call.c (print_z_candidate): Remove STRIP_TEMPLATE use.
1196 * lambda.c (maybe_add_lambda_conv_op): Likewise.
1197
1198 2014-02-27 Paolo Carlini <paolo.carlini@oracle.com>
1199
1200 PR c++/60253
1201 * call.c (convert_arg_to_ellipsis): Return error_mark_node after
1202 error_at.
1203
1204 2014-02-27 Jason Merrill <jason@redhat.com>
1205
1206 PR c++/60353
1207 PR c++/55877
1208 * decl2.c (tentative_decl_linkage): Don't mess with functions that
1209 are not yet defined.
1210
1211 2014-02-26 Jason Merrill <jason@redhat.com>
1212
1213 PR c++/60347
1214 PR lto/53808
1215 * class.c (clone_function_decl): Don't note_vague_linkage_fn.
1216 * init.c (build_vtbl_address): Do it here.
1217
1218 PR c++/59231
1219 PR c++/11586
1220 PR c++/14710
1221 PR c++/57132
1222 * pt.c (struct warning_sentinel): New.
1223 (tsubst_copy_and_build): Use it instead of
1224 c_inhibit_evaluation_warnings.
1225 * typeck.c (maybe_warn_about_useless_cast): Remove
1226 c_inhibit_evaluation_warnings check.
1227
1228 PR c++/54440
1229 * pt.c (get_template_parm_index): New.
1230 (fixed_parameter_pack_p_1, fixed_parameter_pack_p): New.
1231 (process_template_parm): Allow bare packs in template template
1232 parm template parms.
1233 (coerce_template_parameter_pack): Handle fixed template template
1234 parm packs and fixed packs not at the end of the parm list.
1235 (coerce_template_parms): Handle template parm packs not at the end
1236 of the parm list.
1237 (gen_elem_of_pack_expansion_instantiation): Handle a decl expansion.
1238
1239 PR c++/60182
1240 * pt.c (unify): Ignore alias templates when deducing a template
1241 template parameter.
1242
1243 PR c++/60345
1244 Revert:
1245 DR 1571
1246 * call.c (reference_binding): Recurse on user-defined conversion.
1247 (convert_like_real) [ck_ref_bind]: Explain cv-qual mismatch.
1248
1249 2014-02-25 Jason Merrill <jason@redhat.com>
1250
1251 DR 1571
1252 * call.c (reference_binding): Recurse on user-defined conversion.
1253 (convert_like_real) [ck_ref_bind]: Explain cv-qual mismatch.
1254
1255 * call.c (print_conversion_rejection): Handle n_arg of -2.
1256 (build_user_type_conversion_1): Pass it.
1257
1258 PR c++/55877
1259 * decl2.c (no_linkage_error): Handle C++98 semantics.
1260 (reset_type_linkage): Move from decl.c.
1261 (reset_type_linkage_1, reset_type_linkage_2, bt_reset_linkage_1)
1262 (bt_reset_linkage_2, reset_decl_linkage): New.
1263 (tentative_decl_linkage): Factor out of expand_or_defer_fn_1.
1264 (cp_write_global_declarations): Move condition into no_linkage_error.
1265 * decl.c (grokfndecl, grokvardecl): Use no_linkage_error.
1266 * semantics.c (expand_or_defer_fn_1): Factor out
1267 tentative_decl_linkage.
1268 * cp-tree.h: Adjust.
1269
1270 * decl2.c (finish_static_data_member_decl): Diagnose static data
1271 member in unnamed class.
1272 * class.c (finish_struct_anon_r): Avoid redundant diagnostic.
1273
1274 PR lto/53808
1275 * class.c (clone_function_decl): Call note_vague_linkage_fn for
1276 defaulted virtual dtor.
1277
1278 DR 1286
1279 PR c++/60328
1280 * pt.c (get_underlying_template): Fix equivalence calculation.
1281
1282 2014-02-25 Adam Butcher <adam@jessamine.co.uk>
1283
1284 PR c++/60311
1285 * parser.c (function_being_declared_is_template_p): Return false when
1286 processing a template parameter list.
1287 (cp_parser_parameter_declaration_clause): Don't set
1288 auto_is_implicit_function_template_parm_p when processing a
1289 template parameter list.
1290
1291 * parser.c (synthesize_implicit_template_parm): Inject new template
1292 argument list appropriately when a generic member function
1293 of a class template is declared out-of-line.
1294
1295 PR c++/60065
1296 * parser.c (cp_parser_direct_declarator): Don't save and
1297 restore num_template_parameter_lists around call to
1298 cp_parser_parameter_declaration_list.
1299 (function_being_declared_is_template_p): New predicate.
1300 (cp_parser_parameter_declaration_list): Use
1301 function_being_declared_is_template_p as predicate for
1302 inspecting current function template parameter list length
1303 rather than num_template_parameter_lists.
1304
1305 2014-02-24 Jason Merrill <jason@redhat.com>
1306
1307 PR c++/60146
1308 * pt.c (tsubst_omp_for_iterator): Don't let substitution of the
1309 DECL_EXPR initialize a non-class iterator.
1310
1311 PR c++/60312
1312 * parser.c (cp_parser_template_type_arg): Check for invalid 'auto'.
1313
1314 2014-02-21 Jason Merrill <jason@redhat.com>
1315
1316 PR c++/58170
1317 * parser.c (cp_parser_type_name): Always check dependency.
1318 (cp_parser_type_specifier_seq): Call
1319 cp_parser_parse_and_diagnose_invalid_type_name.
1320
1321 PR c++/60108
1322 * semantics.c (expand_or_defer_fn_1): Check DECL_DEFAULTED_FN.
1323
1324 PR c++/60185
1325 * parser.c (cp_parser_default_argument): Clear
1326 current_class_ptr/current_class_ref like tsubst_default_argument.
1327
1328 PR c++/60252
1329 * lambda.c (maybe_resolve_dummy): Check lambda_function rather
1330 than current_binding_level.
1331
1332 PR c++/60186
1333 * typeck2.c (massage_init_elt): Call fold_non_dependent_expr_sfinae.
1334
1335 PR c++/60187
1336 * parser.c (cp_parser_enum_specifier): Call
1337 check_for_bare_parameter_packs.
1338
1339 PR c++/59347
1340 * pt.c (tsubst_decl) [TYPE_DECL]: Don't try to instantiate an
1341 erroneous typedef.
1342
1343 PR c++/60241
1344 * pt.c (lookup_template_class_1): Update DECL_TEMPLATE_INSTANTIATIONS
1345 of the partial instantiation, not the most general template.
1346 (maybe_process_partial_specialization): Reassign everything on
1347 that list.
1348
1349 PR c++/60216
1350 * pt.c (register_specialization): Copy DECL_DELETED_FN to clones.
1351 (check_explicit_specialization): Don't clone.
1352
1353 PR c++/60219
1354 * pt.c (coerce_template_parms): Bail if argument packing fails.
1355
1356 PR c++/60224
1357 * decl.c (cp_complete_array_type, maybe_deduce_size_from_array_init):
1358 Don't get confused by a CONSTRUCTOR that already has a type.
1359
1360 PR c++/60227
1361 * call.c (build_array_conv): Don't crash on VLA.
1362
1363 PR c++/60248
1364 * mangle.c (mangle_decl): Don't make an alias for a TYPE_DECL.
1365
1366 PR c++/60252
1367 * lambda.c (maybe_resolve_dummy): Don't try to capture this
1368 in declaration context.
1369
1370 DR 1591
1371 PR c++/60051
1372 * pt.c (unify): Only unify if deducible. Handle 0-length list.
1373
1374 PR c++/60250
1375 * parser.c (cp_parser_direct_declarator): Don't wrap a
1376 type-dependent expression in a NOP_EXPR.
1377
1378 PR c++/60251
1379 * lambda.c (is_normal_capture_proxy): Handle VLA capture.
1380
1381 PR c++/60167
1382 PR c++/60222
1383 PR c++/58606
1384 * parser.c (cp_parser_template_argument): Restore dereference.
1385 * pt.c (template_parm_to_arg): Dereference non-pack expansions too.
1386 (process_partial_specialization): Handle deref.
1387 (unify): Likewise.
1388
1389 2014-02-21 Adam Butcher <adam@jessamine.co.uk>
1390
1391 PR c++/60052
1392 PR c++/60053
1393 * parser.c (cp_parser_parameter_declaration_list): Correctly reset
1394 implicit_template_scope upon leaving an out-of-line generic member
1395 function definition.
1396
1397 2014-02-20 Kai Tietz <ktietz@redhat.com>
1398
1399 PR c++/58873
1400 * parser.c (cp_parser_functional_cast): Treat NULL_TREE
1401 valued type argument as error_mark_node.
1402
1403 PR c++/58835
1404 * semantics.c (finish_fname): Handle error_mark_node.
1405
1406 2014-02-19 Jason Merrill <jason@redhat.com>
1407
1408 PR c++/60046
1409 * pt.c (maybe_instantiate_noexcept): Don't instantiate exception
1410 spec from template context.
1411
1412 2014-02-19 Jakub Jelinek <jakub@redhat.com>
1413
1414 PR debug/56563
1415 * cp-objcp-common.c (cp_function_decl_explicit_p): Remove
1416 FUNCTION_FIRST_USER_PARMTYPE (decl) != void_list_node check.
1417
1418 PR c++/60267
1419 * pt.c (tsubst_expr): Handle ANNOTATE_EXPR.
1420
1421 2014-02-18 Paolo Carlini <paolo.carlini@oracle.com>
1422
1423 PR c++/60225
1424 * semantics.c (ensure_literal_type_for_constexpr_object): Use
1425 strip_array_types.
1426
1427 2014-02-18 Paolo Carlini <paolo.carlini@oracle.com>
1428
1429 PR c++/60215
1430 * semantics.c (cxx_eval_constant_expression, [COMPONENT_REF]):
1431 During error recovery allow_non_constant may be false.
1432
1433 2014-02-18 Adam Butcher <adam@jessamine.co.uk>
1434
1435 PR c++/60190
1436 * parser.c (cp_parser_lambda_declarator_opt): Pop template parameter
1437 scope whenever a template parameter list has been started, independent
1438 of whether the function call operator was well-formed or not.
1439
1440 PR c++/60064
1441 * parser.c (cp_parser_member_declaration): Pop fully implicit template
1442 scope for generic friend declarations as well as for non-friends.
1443
1444 2014-02-12 Paolo Carlini <paolo.carlini@oracle.com>
1445
1446 PR c++/60047
1447 * method.c (implicitly_declare_fn): A constructor of a class with
1448 virtual base classes isn't constexpr (7.1.5p4).
1449
1450 2014-02-05 Jan Hubicka <hubicka@ucw.cz
1451
1452 * parser.c (synthesize_implicit_template_parm): Use grow_tree_vec.
1453
1454 2014-02-05 Jakub Jelinek <jakub@redhat.com>
1455
1456 PR c++/58703
1457 * parser.c (cp_parser_omp_declare_reduction): Save and free
1458 declarator_obstack.
1459
1460 2014-02-03 Marc Glisse <marc.glisse@inria.fr>
1461
1462 PR c++/53017
1463 PR c++/59211
1464 * tree.c (handle_init_priority_attribute): Call default_conversion on
1465 the attribute argument.
1466
1467 2014-02-03 Paolo Carlini <paolo.carlini@oracle.com>
1468
1469 PR c++/58871
1470 * method.c (synthesized_method_walk): If vbases is non-null but
1471 is_empty is true, likewise don't worry about the virtual bases.
1472
1473 2014-02-01 Paolo Carlini <paolo.carlini@oracle.com>
1474
1475 PR c++/51219
1476 * typeck2.c (process_init_constructor_record): Just skip unnamed
1477 bit-fields.
1478
1479 2014-01-31 Jason Merrill <jason@redhat.com>
1480
1481 PR c++/59469
1482 * pt.c (mark_decl_instantiated): Call mark_needed.
1483
1484 PR c++/58672
1485 * decl2.c (handle_tls_init): Handle null init fn.
1486
1487 PR c++/55800
1488 * decl2.c (get_tls_init_fn): Copy DECL_EXTERNAL from the variable.
1489
1490 2014-01-31 Paolo Carlini <paolo.carlini@oracle.com>
1491
1492 PR c++/59082
1493 * class.c (build_vfield_ref): Early return error_mark_node if
1494 TYPE_VFIELD (type) is null.
1495 (build_base_path): Check return value of build_vfield_ref.
1496
1497 2014-01-31 Jason Merrill <jason@redhat.com>
1498
1499 PR c++/59646
1500 * call.c (convert_like_real) [ck_aggr]: Set TARGET_EXPR_LIST_INIT_P.
1501 [ck_list]: Check for error_mark_node.
1502 (build_aggr_conv): Set LOOKUP_NO_NARROWING and check_narrowing.
1503
1504 PR c++/57043
1505 * pt.c (fn_type_unification): Don't do DEDUCE_EXACT check
1506 during partial ordering.
1507
1508 2014-01-31 Marek Polacek <polacek@redhat.com>
1509
1510 PR c/59963
1511 * typeck.c (build_function_call_vec): Add dummy arg_loc parameter.
1512
1513 2014-01-30 Jason Merrill <jason@redhat.com>
1514
1515 PR c++/57899
1516 * cp-tree.h (struct saved_scope): Add x_local_specializations.
1517 (local_specializations): New macro.
1518 * pt.c (local_specializations): Remove variable.
1519
1520 2014-01-30 Richard Sandiford <rdsandiford@googlemail.com>
1521
1522 PR c++/58708
1523 * parser.c (make_string_pack): Use double_int::from_buffer.
1524
1525 2014-01-30 Marek Polacek <polacek@redhat.com>
1526
1527 PR c/59940
1528 * typeck.c (build_ptrmemfunc1): Call convert_and_check with
1529 input_location.
1530 * cvt.c (cp_convert_and_check): Call warnings_for_convert_and_check
1531 with input_location.
1532 * call.c (build_conditional_expr_1): Call unsafe_conversion_p with
1533 loc parameter.
1534
1535 2014-01-30 Paolo Carlini <paolo.carlini@oracle.com>
1536
1537 PR c++/58843
1538 * typeck.c (lookup_destructor): Check dtor_type for error_mark_node.
1539
1540 2014-01-30 Paolo Carlini <paolo.carlini@oracle.com>
1541
1542 PR c++/58649
1543 * pt.c (lookup_template_class_1): Check start_enum return value
1544 for error_mark_node.
1545
1546 2014-01-30 Paolo Carlini <paolo.carlini@oracle.com>
1547
1548 * decl.c (duplicate_decls, typename_hash, typename_compare):
1549 Use TYPE_IDENTIFIER.
1550 * error.c (dump_type): Likewise.
1551 * mangle.c (dump_substitution_candidates): Likewise.
1552
1553 2014-01-30 Jason Merrill <jason@redhat.com>
1554
1555 PR c++/59633
1556 * decl2.c (attributes_naming_typedef_ok): New.
1557 * cp-tree.h: Declare it.
1558 * decl.c (grokdeclarator): Check it.
1559 * tree.c (no_linkage_check): Handle VECTOR_TYPE.
1560
1561 2014-01-29 Jason Merrill <jason@redhat.com>
1562
1563 PR c++/59707
1564 * call.c (add_builtin_candidate): Catch dependent types.
1565
1566 PR c++/59989
1567 * pt.c (expand_template_argument_pack): Correct
1568 non_default_args_count calculation.
1569
1570 PR c++/58466
1571 * pt.c (unify_pack_expansion): Call expand_template_argument_pack.
1572
1573 PR c++/59956
1574 * friend.c (do_friend): Pass the TEMPLATE_DECL to add_friend if we
1575 have a friend template in a class template.
1576 * pt.c (tsubst_friend_function): Look through it.
1577 (push_template_decl_real): A friend member template is
1578 primary.
1579
1580 2014-01-29 Paolo Carlini <paolo.carlini@oracle.com>
1581
1582 PR c++/58846
1583 * decl.c (get_dso_handle_node): Don't crash if dso_handle_node
1584 == error_mark_node.
1585
1586 2014-01-29 Paolo Carlini <paolo.carlini@oracle.com>
1587
1588 PR c++/58674
1589 * pt.c (instantiate_template_1): Check for error_mark_node the second
1590 argument too.
1591
1592 2014-01-29 Jason Merrill <jason@redhat.com>
1593
1594 PR c++/59916
1595 * optimize.c (maybe_thunk_body): Build a RETURN_EXPR for
1596 cdtor_returns_this case.
1597
1598 PR c++/59315
1599 * decl.c (cxx_maybe_build_cleanup): Call mark_used.
1600
1601 2014-01-29 Paolo Carlini <paolo.carlini@oracle.com>
1602
1603 PR c++/58702
1604 * semantics.c (finish_omp_reduction_clause): Check type for
1605 error_mark_node.
1606
1607 2014-01-28 Jason Merrill <jason@redhat.com>
1608
1609 PR c++/59791
1610 * pt.c (tsubst_decl) [VAR_DECL]: Allow in unevaluated context.
1611 (tsubst_copy): Use it if lookup fails.
1612
1613 PR c++/59818
1614 * pt.c (tsubst_function_type): Make sure we keep the same function
1615 quals.
1616
1617 PR c++/58701
1618 * semantics.c (build_anon_member_initialization): Stop walking
1619 when we run out of COMPONENT_REFs.
1620
1621 PR c++/58632
1622 * decl.c (lookup_and_check_tag): Ignore template parameters if
1623 scope == ts_current.
1624 * pt.c (check_template_shadow): Don't complain about the injected
1625 class name.
1626
1627 * decl.c (duplicate_decls): Tweak.
1628
1629 PR c++/53756
1630 * mangle.c (write_unqualified_name): Handle operator auto.
1631
1632 2014-01-27 Jason Merrill <jason@redhat.com>
1633
1634 PR c++/59823
1635 Core DR 1138
1636 * call.c (reference_binding): Pass LOOKUP_NO_TEMP_BIND for
1637 list-initialization. A conversion to rvalue ref that involves
1638 an lvalue-rvalue conversion is bad.
1639 (convert_like_real): Give helpful error message.
1640
1641 PR c++/54652
1642 * decl.c (duplicate_decls): Always use oldtype for TYPE_DECL.
1643
1644 PR c++/58504
1645 * pt.c (tsubst_copy_and_build) [TRAIT_EXPR]: Use tsubst for
1646 types.
1647
1648 PR c++/58606
1649 * pt.c (template_parm_to_arg): Call convert_from_reference.
1650 (tsubst_template_arg): Don't strip reference refs.
1651
1652 PR c++/58639
1653 * call.c (build_aggr_conv): Reject value-initialization of reference.
1654
1655 PR c++/58812
1656 PR c++/58651
1657 * call.c (convert_like_real): Give helpful error about excess braces
1658 for ck_rvalue of scalar type.
1659
1660 Core DR 1288
1661 * call.c (reference_binding): Only elide braces if the single
1662 element is reference-related.
1663
1664 PR c++/58814
1665 * typeck.c (cp_build_modify_expr): Make the RHS an rvalue before
1666 stabilizing.
1667
1668 PR c++/58837
1669 * typeck.c (cp_truthvalue_conversion): Use explicit comparison for
1670 FUNCTION_DECL.
1671
1672 PR c++/59097
1673 * decl.c (compute_array_index_type): Don't call
1674 maybe_constant_value for a non-integral expression.
1675
1676 2014-01-24 Balaji V. Iyer <balaji.v.iyer@intel.com>
1677
1678 * call.c (magic_varargs_p): Replaced flag_enable_cilkplus with
1679 flag_cilkplus.
1680 * cp-gimplify.c (cp_genericize): Likewise.
1681 * decl.c (grokfndecl): Likewise.
1682 * parser.c (cp_parser_postfix_expression): Likewise.
1683 (cp_parser_postfix_open_square_expression): Likewise.
1684 (cp_parser_direct_declarator): Likewise.
1685 (is_cilkplus_vector_p): Likewise.
1686 (cp_parser_omp_clause_name): Likewise.
1687 (cp_parser_omp_all_clauses): Likewise.
1688 * pt.c (apply_late_template_attributes): Likewise.
1689 * typeck.c (cp_build_array_ref): Likewise.
1690 (cp_build_compound_expr): Likewise.
1691 (check_return_expr): Likewise.
1692
1693 2014-01-24 Jason Merrill <jason@redhat.com>
1694
1695 PR c++/58550
1696 * decl.c (grokdeclarator): Turn pedwarn about auto return type in
1697 c++11 into error.
1698
1699 PR c++/59886
1700 PR c++/59659
1701 * typeck2.c (process_init_constructor_array): Don't create
1702 RANGE_EXPR yet.
1703
1704 2014-01-24 Jakub Jelinek <jakub@redhat.com>
1705
1706 * typeck2.c (split_nonconstant_init_1): Fix num_split_elts
1707 handling for RANGE_ARRAY case.
1708
1709 2014-01-24 Paolo Carlini <paolo.carlini@oracle.com>
1710
1711 PR c++/57524
1712 * name-lookup.c (push_using_directive): Use timevar_cond_start.
1713
1714 2014-01-23 Marek Polacek <polacek@redhat.com>
1715
1716 PR c/59846
1717 * typeck.c (cp_build_binary_op): Pass location to shorten_compare.
1718
1719 2014-01-23 Marek Polacek <polacek@redhat.com>
1720
1721 PR c/58346
1722 * typeck.c (pointer_diff): Give an error on arithmetic on pointer to
1723 an empty aggregate.
1724
1725 2014-01-23 Jason Merrill <jason@redhat.com>
1726
1727 PR c++/55189
1728 * cp-tree.h (struct language_function): Add infinite_loop and
1729 infinite_loops.
1730 (current_function_infinite_loop): New.
1731 * semantics.c (begin_maybe_infinite_loop, end_maybe_infinite_loop)
1732 (break_maybe_infinite_loop): New.
1733 (finish_while_stmt_cond, finish_while_stmt, begin_do_stmt)
1734 (finish_do_stmt, finish_for_cond, finish_for_stmt)
1735 (begin_range_for_stmt): Use them.
1736 * decl.c (finish_function): Don't warn about missing return
1737 if current_function_infinite_loop.
1738 * pt.c (instantiate_decl): Copy current_function_infinite_loop.
1739 * parser.c (cp_parser_jump_statement): Call break_maybe_infinite_loop.
1740
1741 * call.c (build_op_delete_call): Use make_tree_vector and
1742 release_tree_vector.
1743
1744 2014-01-23 Paolo Carlini <paolo.carlini@oracle.com>
1745
1746 PR c++/58980
1747 * parser.c (cp_parser_enum_specifier): Handle TYPENAME_TYPE as
1748 nested_name_specifier.
1749
1750 2014-01-23 Balaji V. Iyer <balaji.v.iyer@intel.com>
1751
1752 * parser.c (cp_parser_direct_declarator): When Cilk Plus is enabled
1753 see if there is an attribute after function decl. If so, then
1754 parse them now.
1755 (cp_parser_late_return_type_opt): Handle parsing of Cilk Plus SIMD
1756 enabled function late parsing.
1757 (cp_parser_gnu_attribute_list): Parse all the tokens for the vector
1758 attribute for a SIMD-enabled function.
1759 (cp_parser_omp_all_clauses): Skip parsing to the end of pragma when
1760 the function is used by SIMD-enabled function (indicated by NULL
1761 pragma token). Added 3 new clauses: PRAGMA_CILK_CLAUSE_MASK,
1762 PRAGMA_CILK_CLAUSE_NOMASK and PRAGMA_CILK_CLAUSE_VECTORLENGTH
1763 (cp_parser_cilk_simd_vectorlength): Modified this function to handle
1764 vectorlength clause in SIMD-enabled function and #pragma SIMD's
1765 vectorlength clause. Added a new bool parameter to differentiate
1766 between the two.
1767 (cp_parser_cilk_simd_fn_vector_attrs): New function.
1768 (is_cilkplus_vector_p): Likewise.
1769 (cp_parser_late_parsing_elem_fn_info): Likewise.
1770 (cp_parser_omp_clause_name): Added a check for "mask", "nomask"
1771 and "vectorlength" clauses when Cilk Plus is enabled.
1772 (cp_parser_omp_clause_linear): Added a new parameter of type bool
1773 and emit a sorry message when step size is a parameter.
1774 * parser.h (cp_parser::cilk_simd_fn_info): New field.
1775 * decl.c (grokfndecl): Added flag_enable_cilkplus along with
1776 flag_openmp.
1777 * pt.c (apply_late_template_attributes): Likewise.
1778
1779 2014-01-23 Jakub Jelinek <jakub@redhat.com>
1780
1781 PR middle-end/58809
1782 * semantics.c (finish_omp_reduction_clause): Reject
1783 BIT_AND_EXPR, BIT_IOR_EXPR and BIT_XOR_EXPR on COMPLEX_TYPEs.
1784
1785 2014-01-22 Ville Voutilainen <ville.voutilainen@gmail.com>
1786
1787 PR c++/59482
1788 * parser.c (cp_parser_class_head): Push the class before parsing
1789 the base-clause, pop after it.
1790
1791 2014-01-20 Eric Botcazou <ebotcazou@adacore.com>
1792
1793 * decl2.c (cpp_check): Revert prototype change.
1794
1795 2014-01-17 Paolo Carlini <paolo.carlini@oracle.com>
1796
1797 PR c++/59270
1798 PR c++/58811
1799 * init.c (build_value_init_noctor): Don't pass error_mark_node to
1800 build_value_init.
1801
1802 2014-01-17 Paolo Carlini <paolo.carlini@oracle.com>
1803
1804 PR c++/59269
1805 * init.c (build_value_init_noctor): Assert !TYPE_HAS_COMPLEX_DFLT
1806 only when errorcount == 0.
1807
1808 2014-01-17 Marek Polacek <polacek@redhat.com>
1809
1810 PR c++/59838
1811 * cvt.c (ocp_convert): Don't segfault on non-existing
1812 ENUM_UNDERLYING_TYPE.
1813
1814 2014-01-16 Jason Merrill <jason@redhat.com>
1815
1816 PR c++/59821
1817 * tree.c (bot_manip): Update the location of builtin_LINE and
1818 builtin_FILE calls.
1819
1820 2014-01-14 Jason Merrill <jason@redhat.com>
1821
1822 PR c++/59659
1823 * typeck2.c (massage_init_elt): New.
1824 (process_init_constructor_record)
1825 (process_init_constructor_union): Use it.
1826 (process_init_constructor_array): Use it. Use RANGE_EXPR.
1827 (split_nonconstant_init_1): Handle it.
1828 * semantics.c (cxx_eval_vec_init_1): Use force_rvalue.
1829
1830 2014-01-09 Balaji V. Iyer <balaji.v.iyer@intel.com>
1831
1832 PR c++/59631
1833 * parser.c (cp_parser_postfix_expression): Added a new if-statement
1834 and replaced an existing if-statement with else-if statement.
1835 Changed an existing error message wording to match the one from the C
1836 parser.
1837
1838 2014-01-08 Jason Merrill <jason@redhat.com>
1839
1840 PR c++/59614
1841 * class.c (abi_tag_data): Add tags field.
1842 (check_abi_tags): Initialize it.
1843 (find_abi_tags_r): Support collecting missing tags.
1844 (mark_type_abi_tags): Don't look at template args.
1845 (inherit_targ_abi_tags): New.
1846 (check_bases_and_members): Use it.
1847 * cp-tree.h (ABI_TAG_IMPLICIT): New.
1848 * mangle.c (write_abi_tags): Check it.
1849
1850 2014-01-07 Jason Merrill <jason@redhat.com>
1851
1852 PR c++/58856
1853 * pt.c (num_innermost_template_parms): New.
1854 (get_underlying_template): Use it.
1855
1856 PR c++/58965
1857 * mangle.c (write_guarded_var_name): Handle null DECL_NAME.
1858
1859 2014-01-07 Paolo Carlini <paolo.carlini@oracle.com>
1860
1861 * semantics.c (trait_expr_value, [CPTK_IS_BASE_OF]): Implement
1862 the letter of 20.11.6 about Base and Derived naming the same
1863 class type modulo cv-qualifiers.
1864
1865 2014-01-06 Adam Butcher <adam@jessamine.co.uk>
1866
1867 PR c++/59635
1868 * lambda.c (maybe_add_lambda_conv_op): Handle marking conversion
1869 function as unimplemented for generic lambdas with varargs.
1870
1871 PR c++/59636
1872 * parser.c (cp_parser_template_parameter): Early out with
1873 error_mark_node if parameter declaration was not parsed.
1874
1875 PR c++/59629
1876 * parser.c (cp_parser_lambda_expression): Save/reset/restore
1877 auto_is_implicit_function_template_parm_p around lambda body.
1878
1879 PR c++/59638
1880 * parser.c (cp_parser_init_declarator): Undo fully implicit
1881 template parameter list when declarator is not a function.
1882
1883 2014-01-03 Marc Glisse <marc.glisse@inria.fr>
1884
1885 PR c++/58950
1886 * cvt.c (convert_to_void): Handle VEC_PERM_EXPR and VEC_COND_EXPR.
1887
1888 2014-01-03 Tobias Burnus <burnus@net-b.de>
1889
1890 PR c++/58567
1891 * pt.c (tsubst_omp_for_iterator): Early return for error_mark_node.
1892
1893 2014-01-03 Paolo Carlini <paolo.carlini@oracle.com>
1894
1895 Core DR 1442
1896 PR c++/59165
1897 * parser.c (cp_parser_perform_range_for_lookup): Don't pass true
1898 as include_std to perform_koenig_lookup.
1899 (cp_parser_postfix_expression): Adjust.
1900 * pt.c (tsubst_copy_and_build): Likewise.
1901 * semantics.c (perform_koenig_lookup): Remove bool parameter.
1902 (omp_reduction_lookup): Adjust.
1903 * name-lookup.c (lookup_arg_dependent_1): Remove bool parameter.
1904 (lookup_arg_dependent): Likewise.
1905 (lookup_function_nonclass): Adjust.
1906 * name-lookup.h: Adjust declaration.
1907 * cp-tree.h: Likewise.
1908
1909 2014-01-02 Marc Glisse <marc.glisse@inria.fr>
1910
1911 PR c++/59087
1912 * parser.c (cp_parser_userdef_numeric_literal): Mention
1913 -fext-numeric-literals in the message.
1914
1915 2014-01-02 Marc Glisse <marc.glisse@inria.fr>
1916
1917 PR c++/59641
1918 * call.c (build_conditional_expr_1): Check the return value of
1919 force_rvalue.
1920
1921 2014-01-02 Marc Glisse <marc.glisse@inria.fr>
1922
1923 * call.c (convert_like_real): Check complain.
1924
1925 2014-01-02 Marc Glisse <marc.glisse@inria.fr>
1926
1927 PR c++/59378
1928 * typeck.c (build_x_vec_perm_expr): Handle non-dependent arguments
1929 in templates.
1930
1931 2014-01-02 Richard Sandiford <rdsandiford@googlemail.com>
1932
1933 Update copyright years
1934
1935 2014-01-02 Richard Sandiford <rdsandiford@googlemail.com>
1936
1937 * cp-array-notation.c, cp-cilkplus.c, vtable-class-hierarchy.c: Use
1938 the standard form for the copyright notice.
1939 \f
1940 Copyright (C) 2014 Free Software Foundation, Inc.
1941
1942 Copying and distribution of this file, with or without modification,
1943 are permitted in any medium without royalty provided the copyright
1944 notice and this notice are preserved.