DR 1286 PR c++/60328
[gcc.git] / gcc / cp / ChangeLog
1 2014-02-25 Jason Merrill <jason@redhat.com>
2
3 DR 1286
4 PR c++/60328
5 * pt.c (get_underlying_template): Fix equivalence calculation.
6
7 2014-02-25 Adam Butcher <adam@jessamine.co.uk>
8
9 PR c++/60311
10 * parser.c (function_being_declared_is_template_p): Return false when
11 processing a template parameter list.
12 (cp_parser_parameter_declaration_clause): Don't set
13 auto_is_implicit_function_template_parm_p when processing a
14 template parameter list.
15
16 * parser.c (synthesize_implicit_template_parm): Inject new template
17 argument list appropriately when a generic member function
18 of a class template is declared out-of-line.
19
20 PR c++/60065
21 * parser.c (cp_parser_direct_declarator): Don't save and
22 restore num_template_parameter_lists around call to
23 cp_parser_parameter_declaration_list.
24 (function_being_declared_is_template_p): New predicate.
25 (cp_parser_parameter_declaration_list): Use
26 function_being_declared_is_template_p as predicate for
27 inspecting current function template parameter list length
28 rather than num_template_parameter_lists.
29
30 2014-02-24 Jason Merrill <jason@redhat.com>
31
32 PR c++/60146
33 * pt.c (tsubst_omp_for_iterator): Don't let substitution of the
34 DECL_EXPR initialize a non-class iterator.
35
36 PR c++/60312
37 * parser.c (cp_parser_template_type_arg): Check for invalid 'auto'.
38
39 2014-02-21 Jason Merrill <jason@redhat.com>
40
41 PR c++/58170
42 * parser.c (cp_parser_type_name): Always check dependency.
43 (cp_parser_type_specifier_seq): Call
44 cp_parser_parse_and_diagnose_invalid_type_name.
45
46 PR c++/60108
47 * semantics.c (expand_or_defer_fn_1): Check DECL_DEFAULTED_FN.
48
49 PR c++/60185
50 * parser.c (cp_parser_default_argument): Clear
51 current_class_ptr/current_class_ref like tsubst_default_argument.
52
53 PR c++/60252
54 * lambda.c (maybe_resolve_dummy): Check lambda_function rather
55 than current_binding_level.
56
57 PR c++/60186
58 * typeck2.c (massage_init_elt): Call fold_non_dependent_expr_sfinae.
59
60 PR c++/60187
61 * parser.c (cp_parser_enum_specifier): Call
62 check_for_bare_parameter_packs.
63
64 PR c++/59347
65 * pt.c (tsubst_decl) [TYPE_DECL]: Don't try to instantiate an
66 erroneous typedef.
67
68 PR c++/60241
69 * pt.c (lookup_template_class_1): Update DECL_TEMPLATE_INSTANTIATIONS
70 of the partial instantiation, not the most general template.
71 (maybe_process_partial_specialization): Reassign everything on
72 that list.
73
74 PR c++/60216
75 * pt.c (register_specialization): Copy DECL_DELETED_FN to clones.
76 (check_explicit_specialization): Don't clone.
77
78 PR c++/60219
79 * pt.c (coerce_template_parms): Bail if argument packing fails.
80
81 PR c++/60224
82 * decl.c (cp_complete_array_type, maybe_deduce_size_from_array_init):
83 Don't get confused by a CONSTRUCTOR that already has a type.
84
85 PR c++/60227
86 * call.c (build_array_conv): Don't crash on VLA.
87
88 PR c++/60248
89 * mangle.c (mangle_decl): Don't make an alias for a TYPE_DECL.
90
91 PR c++/60252
92 * lambda.c (maybe_resolve_dummy): Don't try to capture this
93 in declaration context.
94
95 DR 1591
96 PR c++/60051
97 * pt.c (unify): Only unify if deducible. Handle 0-length list.
98
99 PR c++/60250
100 * parser.c (cp_parser_direct_declarator): Don't wrap a
101 type-dependent expression in a NOP_EXPR.
102
103 PR c++/60251
104 * lambda.c (is_normal_capture_proxy): Handle VLA capture.
105
106 PR c++/60167
107 PR c++/60222
108 PR c++/58606
109 * parser.c (cp_parser_template_argument): Restore dereference.
110 * pt.c (template_parm_to_arg): Dereference non-pack expansions too.
111 (process_partial_specialization): Handle deref.
112 (unify): Likewise.
113
114 2014-02-21 Adam Butcher <adam@jessamine.co.uk>
115
116 PR c++/60052
117 PR c++/60053
118 * parser.c (cp_parser_parameter_declaration_list): Correctly reset
119 implicit_template_scope upon leaving an out-of-line generic member
120 function definition.
121
122 2014-02-20 Kai Tietz <ktietz@redhat.com>
123
124 PR c++/58873
125 * parser.c (cp_parser_functional_cast): Treat NULL_TREE
126 valued type argument as error_mark_node.
127
128 PR c++/58835
129 * semantics.c (finish_fname): Handle error_mark_node.
130
131 2014-02-19 Jason Merrill <jason@redhat.com>
132
133 PR c++/60046
134 * pt.c (maybe_instantiate_noexcept): Don't instantiate exception
135 spec from template context.
136
137 2014-02-19 Jakub Jelinek <jakub@redhat.com>
138
139 PR debug/56563
140 * cp-objcp-common.c (cp_function_decl_explicit_p): Remove
141 FUNCTION_FIRST_USER_PARMTYPE (decl) != void_list_node check.
142
143 PR c++/60267
144 * pt.c (tsubst_expr): Handle ANNOTATE_EXPR.
145
146 2014-02-18 Paolo Carlini <paolo.carlini@oracle.com>
147
148 PR c++/60225
149 * semantics.c (ensure_literal_type_for_constexpr_object): Use
150 strip_array_types.
151
152 2014-02-18 Paolo Carlini <paolo.carlini@oracle.com>
153
154 PR c++/60215
155 * semantics.c (cxx_eval_constant_expression, [COMPONENT_REF]):
156 During error recovery allow_non_constant may be false.
157
158 2014-02-18 Adam Butcher <adam@jessamine.co.uk>
159
160 PR c++/60190
161 * parser.c (cp_parser_lambda_declarator_opt): Pop template parameter
162 scope whenever a template parameter list has been started, independent
163 of whether the function call operator was well-formed or not.
164
165 PR c++/60064
166 * parser.c (cp_parser_member_declaration): Pop fully implicit template
167 scope for generic friend declarations as well as for non-friends.
168
169 2014-02-12 Paolo Carlini <paolo.carlini@oracle.com>
170
171 PR c++/60047
172 * method.c (implicitly_declare_fn): A constructor of a class with
173 virtual base classes isn't constexpr (7.1.5p4).
174
175 2014-02-05 Jan Hubicka <hubicka@ucw.cz
176
177 * parser.c (synthesize_implicit_template_parm): Use grow_tree_vec.
178
179 2014-02-05 Jakub Jelinek <jakub@redhat.com>
180
181 PR c++/58703
182 * parser.c (cp_parser_omp_declare_reduction): Save and free
183 declarator_obstack.
184
185 2014-02-03 Marc Glisse <marc.glisse@inria.fr>
186
187 PR c++/53017
188 PR c++/59211
189 * tree.c (handle_init_priority_attribute): Call default_conversion on
190 the attribute argument.
191
192 2014-02-03 Paolo Carlini <paolo.carlini@oracle.com>
193
194 PR c++/58871
195 * method.c (synthesized_method_walk): If vbases is non-null but
196 is_empty is true, likewise don't worry about the virtual bases.
197
198 2014-02-01 Paolo Carlini <paolo.carlini@oracle.com>
199
200 PR c++/51219
201 * typeck2.c (process_init_constructor_record): Just skip unnamed
202 bit-fields.
203
204 2014-01-31 Jason Merrill <jason@redhat.com>
205
206 PR c++/59469
207 * pt.c (mark_decl_instantiated): Call mark_needed.
208
209 PR c++/58672
210 * decl2.c (handle_tls_init): Handle null init fn.
211
212 PR c++/55800
213 * decl2.c (get_tls_init_fn): Copy DECL_EXTERNAL from the variable.
214
215 2014-01-31 Paolo Carlini <paolo.carlini@oracle.com>
216
217 PR c++/59082
218 * class.c (build_vfield_ref): Early return error_mark_node if
219 TYPE_VFIELD (type) is null.
220 (build_base_path): Check return value of build_vfield_ref.
221
222 2014-01-31 Jason Merrill <jason@redhat.com>
223
224 PR c++/59646
225 * call.c (convert_like_real) [ck_aggr]: Set TARGET_EXPR_LIST_INIT_P.
226 [ck_list]: Check for error_mark_node.
227 (build_aggr_conv): Set LOOKUP_NO_NARROWING and check_narrowing.
228
229 PR c++/57043
230 * pt.c (fn_type_unification): Don't do DEDUCE_EXACT check
231 during partial ordering.
232
233 2014-01-31 Marek Polacek <polacek@redhat.com>
234
235 PR c/59963
236 * typeck.c (build_function_call_vec): Add dummy arg_loc parameter.
237
238 2014-01-30 Jason Merrill <jason@redhat.com>
239
240 PR c++/57899
241 * cp-tree.h (struct saved_scope): Add x_local_specializations.
242 (local_specializations): New macro.
243 * pt.c (local_specializations): Remove variable.
244
245 2014-01-30 Richard Sandiford <rdsandiford@googlemail.com>
246
247 PR c++/58708
248 * parser.c (make_string_pack): Use double_int::from_buffer.
249
250 2014-01-30 Marek Polacek <polacek@redhat.com>
251
252 PR c/59940
253 * typeck.c (build_ptrmemfunc1): Call convert_and_check with
254 input_location.
255 * cvt.c (cp_convert_and_check): Call warnings_for_convert_and_check
256 with input_location.
257 * call.c (build_conditional_expr_1): Call unsafe_conversion_p with
258 loc parameter.
259
260 2014-01-30 Paolo Carlini <paolo.carlini@oracle.com>
261
262 PR c++/58843
263 * typeck.c (lookup_destructor): Check dtor_type for error_mark_node.
264
265 2014-01-30 Paolo Carlini <paolo.carlini@oracle.com>
266
267 PR c++/58649
268 * pt.c (lookup_template_class_1): Check start_enum return value
269 for error_mark_node.
270
271 2014-01-30 Paolo Carlini <paolo.carlini@oracle.com>
272
273 * decl.c (duplicate_decls, typename_hash, typename_compare):
274 Use TYPE_IDENTIFIER.
275 * error.c (dump_type): Likewise.
276 * mangle.c (dump_substitution_candidates): Likewise.
277
278 2014-01-30 Jason Merrill <jason@redhat.com>
279
280 PR c++/59633
281 * decl2.c (attributes_naming_typedef_ok): New.
282 * cp-tree.h: Declare it.
283 * decl.c (grokdeclarator): Check it.
284 * tree.c (no_linkage_check): Handle VECTOR_TYPE.
285
286 2014-01-29 Jason Merrill <jason@redhat.com>
287
288 PR c++/59707
289 * call.c (add_builtin_candidate): Catch dependent types.
290
291 PR c++/59989
292 * pt.c (expand_template_argument_pack): Correct
293 non_default_args_count calculation.
294
295 PR c++/58466
296 * pt.c (unify_pack_expansion): Call expand_template_argument_pack.
297
298 PR c++/59956
299 * friend.c (do_friend): Pass the TEMPLATE_DECL to add_friend if we
300 have a friend template in a class template.
301 * pt.c (tsubst_friend_function): Look through it.
302 (push_template_decl_real): A friend member template is
303 primary.
304
305 2014-01-29 Paolo Carlini <paolo.carlini@oracle.com>
306
307 PR c++/58846
308 * decl.c (get_dso_handle_node): Don't crash if dso_handle_node
309 == error_mark_node.
310
311 2014-01-29 Paolo Carlini <paolo.carlini@oracle.com>
312
313 PR c++/58674
314 * pt.c (instantiate_template_1): Check for error_mark_node the second
315 argument too.
316
317 2014-01-29 Jason Merrill <jason@redhat.com>
318
319 PR c++/59916
320 * optimize.c (maybe_thunk_body): Build a RETURN_EXPR for
321 cdtor_returns_this case.
322
323 PR c++/59315
324 * decl.c (cxx_maybe_build_cleanup): Call mark_used.
325
326 2014-01-29 Paolo Carlini <paolo.carlini@oracle.com>
327
328 PR c++/58702
329 * semantics.c (finish_omp_reduction_clause): Check type for
330 error_mark_node.
331
332 2014-01-28 Jason Merrill <jason@redhat.com>
333
334 PR c++/59791
335 * pt.c (tsubst_decl) [VAR_DECL]: Allow in unevaluated context.
336 (tsubst_copy): Use it if lookup fails.
337
338 PR c++/59818
339 * pt.c (tsubst_function_type): Make sure we keep the same function
340 quals.
341
342 PR c++/58701
343 * semantics.c (build_anon_member_initialization): Stop walking
344 when we run out of COMPONENT_REFs.
345
346 PR c++/58632
347 * decl.c (lookup_and_check_tag): Ignore template parameters if
348 scope == ts_current.
349 * pt.c (check_template_shadow): Don't complain about the injected
350 class name.
351
352 * decl.c (duplicate_decls): Tweak.
353
354 PR c++/53756
355 * mangle.c (write_unqualified_name): Handle operator auto.
356
357 2014-01-27 Jason Merrill <jason@redhat.com>
358
359 PR c++/59823
360 Core DR 1138
361 * call.c (reference_binding): Pass LOOKUP_NO_TEMP_BIND for
362 list-initialization. A conversion to rvalue ref that involves
363 an lvalue-rvalue conversion is bad.
364 (convert_like_real): Give helpful error message.
365
366 PR c++/54652
367 * decl.c (duplicate_decls): Always use oldtype for TYPE_DECL.
368
369 PR c++/58504
370 * pt.c (tsubst_copy_and_build) [TRAIT_EXPR]: Use tsubst for
371 types.
372
373 PR c++/58606
374 * pt.c (template_parm_to_arg): Call convert_from_reference.
375 (tsubst_template_arg): Don't strip reference refs.
376
377 PR c++/58639
378 * call.c (build_aggr_conv): Reject value-initialization of reference.
379
380 PR c++/58812
381 PR c++/58651
382 * call.c (convert_like_real): Give helpful error about excess braces
383 for ck_rvalue of scalar type.
384
385 Core DR 1288
386 * call.c (reference_binding): Only elide braces if the single
387 element is reference-related.
388
389 PR c++/58814
390 * typeck.c (cp_build_modify_expr): Make the RHS an rvalue before
391 stabilizing.
392
393 PR c++/58837
394 * typeck.c (cp_truthvalue_conversion): Use explicit comparison for
395 FUNCTION_DECL.
396
397 PR c++/59097
398 * decl.c (compute_array_index_type): Don't call
399 maybe_constant_value for a non-integral expression.
400
401 2014-01-24 Balaji V. Iyer <balaji.v.iyer@intel.com>
402
403 * call.c (magic_varargs_p): Replaced flag_enable_cilkplus with
404 flag_cilkplus.
405 * cp-gimplify.c (cp_genericize): Likewise.
406 * decl.c (grokfndecl): Likewise.
407 * parser.c (cp_parser_postfix_expression): Likewise.
408 (cp_parser_postfix_open_square_expression): Likewise.
409 (cp_parser_direct_declarator): Likewise.
410 (is_cilkplus_vector_p): Likewise.
411 (cp_parser_omp_clause_name): Likewise.
412 (cp_parser_omp_all_clauses): Likewise.
413 * pt.c (apply_late_template_attributes): Likewise.
414 * typeck.c (cp_build_array_ref): Likewise.
415 (cp_build_compound_expr): Likewise.
416 (check_return_expr): Likewise.
417
418 2014-01-24 Jason Merrill <jason@redhat.com>
419
420 PR c++/58550
421 * decl.c (grokdeclarator): Turn pedwarn about auto return type in
422 c++11 into error.
423
424 PR c++/59886
425 PR c++/59659
426 * typeck2.c (process_init_constructor_array): Don't create
427 RANGE_EXPR yet.
428
429 2014-01-24 Jakub Jelinek <jakub@redhat.com>
430
431 * typeck2.c (split_nonconstant_init_1): Fix num_split_elts
432 handling for RANGE_ARRAY case.
433
434 2014-01-24 Paolo Carlini <paolo.carlini@oracle.com>
435
436 PR c++/57524
437 * name-lookup.c (push_using_directive): Use timevar_cond_start.
438
439 2014-01-23 Marek Polacek <polacek@redhat.com>
440
441 PR c/59846
442 * typeck.c (cp_build_binary_op): Pass location to shorten_compare.
443
444 2014-01-23 Marek Polacek <polacek@redhat.com>
445
446 PR c/58346
447 * typeck.c (pointer_diff): Give an error on arithmetic on pointer to
448 an empty aggregate.
449
450 2014-01-23 Jason Merrill <jason@redhat.com>
451
452 PR c++/55189
453 * cp-tree.h (struct language_function): Add infinite_loop and
454 infinite_loops.
455 (current_function_infinite_loop): New.
456 * semantics.c (begin_maybe_infinite_loop, end_maybe_infinite_loop)
457 (break_maybe_infinite_loop): New.
458 (finish_while_stmt_cond, finish_while_stmt, begin_do_stmt)
459 (finish_do_stmt, finish_for_cond, finish_for_stmt)
460 (begin_range_for_stmt): Use them.
461 * decl.c (finish_function): Don't warn about missing return
462 if current_function_infinite_loop.
463 * pt.c (instantiate_decl): Copy current_function_infinite_loop.
464 * parser.c (cp_parser_jump_statement): Call break_maybe_infinite_loop.
465
466 * call.c (build_op_delete_call): Use make_tree_vector and
467 release_tree_vector.
468
469 2014-01-23 Paolo Carlini <paolo.carlini@oracle.com>
470
471 PR c++/58980
472 * parser.c (cp_parser_enum_specifier): Handle TYPENAME_TYPE as
473 nested_name_specifier.
474
475 2014-01-23 Balaji V. Iyer <balaji.v.iyer@intel.com>
476
477 * parser.c (cp_parser_direct_declarator): When Cilk Plus is enabled
478 see if there is an attribute after function decl. If so, then
479 parse them now.
480 (cp_parser_late_return_type_opt): Handle parsing of Cilk Plus SIMD
481 enabled function late parsing.
482 (cp_parser_gnu_attribute_list): Parse all the tokens for the vector
483 attribute for a SIMD-enabled function.
484 (cp_parser_omp_all_clauses): Skip parsing to the end of pragma when
485 the function is used by SIMD-enabled function (indicated by NULL
486 pragma token). Added 3 new clauses: PRAGMA_CILK_CLAUSE_MASK,
487 PRAGMA_CILK_CLAUSE_NOMASK and PRAGMA_CILK_CLAUSE_VECTORLENGTH
488 (cp_parser_cilk_simd_vectorlength): Modified this function to handle
489 vectorlength clause in SIMD-enabled function and #pragma SIMD's
490 vectorlength clause. Added a new bool parameter to differentiate
491 between the two.
492 (cp_parser_cilk_simd_fn_vector_attrs): New function.
493 (is_cilkplus_vector_p): Likewise.
494 (cp_parser_late_parsing_elem_fn_info): Likewise.
495 (cp_parser_omp_clause_name): Added a check for "mask", "nomask"
496 and "vectorlength" clauses when Cilk Plus is enabled.
497 (cp_parser_omp_clause_linear): Added a new parameter of type bool
498 and emit a sorry message when step size is a parameter.
499 * parser.h (cp_parser::cilk_simd_fn_info): New field.
500 * decl.c (grokfndecl): Added flag_enable_cilkplus along with
501 flag_openmp.
502 * pt.c (apply_late_template_attributes): Likewise.
503
504 2014-01-23 Jakub Jelinek <jakub@redhat.com>
505
506 PR middle-end/58809
507 * semantics.c (finish_omp_reduction_clause): Reject
508 BIT_AND_EXPR, BIT_IOR_EXPR and BIT_XOR_EXPR on COMPLEX_TYPEs.
509
510 2014-01-22 Ville Voutilainen <ville.voutilainen@gmail.com>
511
512 PR c++/59482
513 * parser.c (cp_parser_class_head): Push the class before parsing
514 the base-clause, pop after it.
515
516 2014-01-20 Eric Botcazou <ebotcazou@adacore.com>
517
518 * decl2.c (cpp_check): Revert prototype change.
519
520 2014-01-17 Paolo Carlini <paolo.carlini@oracle.com>
521
522 PR c++/59270
523 PR c++/58811
524 * init.c (build_value_init_noctor): Don't pass error_mark_node to
525 build_value_init.
526
527 2014-01-17 Paolo Carlini <paolo.carlini@oracle.com>
528
529 PR c++/59269
530 * init.c (build_value_init_noctor): Assert !TYPE_HAS_COMPLEX_DFLT
531 only when errorcount == 0.
532
533 2014-01-17 Marek Polacek <polacek@redhat.com>
534
535 PR c++/59838
536 * cvt.c (ocp_convert): Don't segfault on non-existing
537 ENUM_UNDERLYING_TYPE.
538
539 2014-01-16 Jason Merrill <jason@redhat.com>
540
541 PR c++/59821
542 * tree.c (bot_manip): Update the location of builtin_LINE and
543 builtin_FILE calls.
544
545 2014-01-14 Jason Merrill <jason@redhat.com>
546
547 PR c++/59659
548 * typeck2.c (massage_init_elt): New.
549 (process_init_constructor_record)
550 (process_init_constructor_union): Use it.
551 (process_init_constructor_array): Use it. Use RANGE_EXPR.
552 (split_nonconstant_init_1): Handle it.
553 * semantics.c (cxx_eval_vec_init_1): Use force_rvalue.
554
555 2014-01-09 Balaji V. Iyer <balaji.v.iyer@intel.com>
556
557 PR c++/59631
558 * parser.c (cp_parser_postfix_expression): Added a new if-statement
559 and replaced an existing if-statement with else-if statement.
560 Changed an existing error message wording to match the one from the C
561 parser.
562
563 2014-01-08 Jason Merrill <jason@redhat.com>
564
565 PR c++/59614
566 * class.c (abi_tag_data): Add tags field.
567 (check_abi_tags): Initialize it.
568 (find_abi_tags_r): Support collecting missing tags.
569 (mark_type_abi_tags): Don't look at template args.
570 (inherit_targ_abi_tags): New.
571 (check_bases_and_members): Use it.
572 * cp-tree.h (ABI_TAG_IMPLICIT): New.
573 * mangle.c (write_abi_tags): Check it.
574
575 2014-01-07 Jason Merrill <jason@redhat.com>
576
577 PR c++/58856
578 * pt.c (num_innermost_template_parms): New.
579 (get_underlying_template): Use it.
580
581 PR c++/58965
582 * mangle.c (write_guarded_var_name): Handle null DECL_NAME.
583
584 2014-01-07 Paolo Carlini <paolo.carlini@oracle.com>
585
586 * semantics.c (trait_expr_value, [CPTK_IS_BASE_OF]): Implement
587 the letter of 20.11.6 about Base and Derived naming the same
588 class type modulo cv-qualifiers.
589
590 2014-01-06 Adam Butcher <adam@jessamine.co.uk>
591
592 PR c++/59635
593 * lambda.c (maybe_add_lambda_conv_op): Handle marking conversion
594 function as unimplemented for generic lambdas with varargs.
595
596 PR c++/59636
597 * parser.c (cp_parser_template_parameter): Early out with
598 error_mark_node if parameter declaration was not parsed.
599
600 PR c++/59629
601 * parser.c (cp_parser_lambda_expression): Save/reset/restore
602 auto_is_implicit_function_template_parm_p around lambda body.
603
604 PR c++/59638
605 * parser.c (cp_parser_init_declarator): Undo fully implicit
606 template parameter list when declarator is not a function.
607
608 2014-01-03 Marc Glisse <marc.glisse@inria.fr>
609
610 PR c++/58950
611 * cvt.c (convert_to_void): Handle VEC_PERM_EXPR and VEC_COND_EXPR.
612
613 2014-01-03 Tobias Burnus <burnus@net-b.de>
614
615 PR c++/58567
616 * pt.c (tsubst_omp_for_iterator): Early return for error_mark_node.
617
618 2014-01-03 Paolo Carlini <paolo.carlini@oracle.com>
619
620 Core DR 1442
621 PR c++/59165
622 * parser.c (cp_parser_perform_range_for_lookup): Don't pass true
623 as include_std to perform_koenig_lookup.
624 (cp_parser_postfix_expression): Adjust.
625 * pt.c (tsubst_copy_and_build): Likewise.
626 * semantics.c (perform_koenig_lookup): Remove bool parameter.
627 (omp_reduction_lookup): Adjust.
628 * name-lookup.c (lookup_arg_dependent_1): Remove bool parameter.
629 (lookup_arg_dependent): Likewise.
630 (lookup_function_nonclass): Adjust.
631 * name-lookup.h: Adjust declaration.
632 * cp-tree.h: Likewise.
633
634 2014-01-02 Marc Glisse <marc.glisse@inria.fr>
635
636 PR c++/59087
637 * parser.c (cp_parser_userdef_numeric_literal): Mention
638 -fext-numeric-literals in the message.
639
640 2014-01-02 Marc Glisse <marc.glisse@inria.fr>
641
642 PR c++/59641
643 * call.c (build_conditional_expr_1): Check the return value of
644 force_rvalue.
645
646 2014-01-02 Marc Glisse <marc.glisse@inria.fr>
647
648 * call.c (convert_like_real): Check complain.
649
650 2014-01-02 Marc Glisse <marc.glisse@inria.fr>
651
652 PR c++/59378
653 * typeck.c (build_x_vec_perm_expr): Handle non-dependent arguments
654 in templates.
655
656 2014-01-02 Richard Sandiford <rdsandiford@googlemail.com>
657
658 Update copyright years
659
660 2014-01-02 Richard Sandiford <rdsandiford@googlemail.com>
661
662 * cp-array-notation.c, cp-cilkplus.c, vtable-class-hierarchy.c: Use
663 the standard form for the copyright notice.
664 \f
665 Copyright (C) 2014 Free Software Foundation, Inc.
666
667 Copying and distribution of this file, with or without modification,
668 are permitted in any medium without royalty provided the copyright
669 notice and this notice are preserved.