]> gcc.gnu.org Git - gcc.git/blob - gcc/cp/ChangeLog
re PR c++/34068 (ICE using pseudo-destructor for invalid expression)
[gcc.git] / gcc / cp / ChangeLog
1 2007-11-11 Jakub Jelinek <jakub@redhat.com>
2
3 PR c++/34068
4 * semantics.c (finish_pseudo_destructor_expr): Handle
5 object == error_mark_node.
6
7 2007-11-10 Jakub Jelinek <jakub@redhat.com>
8
9 PR c++/32241
10 * pt.c (tsubst_copy_and_build) <case COMPONENT_REF>: If object_type
11 is not scalar type, let finish_class_member_access_expr handle
12 diagnostics. Pass BIT_NOT_EXPR argument to
13 finish_pseudo_destructor_expr. Handle SCOPE_REF properly.
14
15 2007-11-09 Douglas Gregor <doug.gregor@gmail.com>
16
17 PR c++/33510
18 * decl.c (cp_complete_array_type): If any of the initializer
19 elements are pack expansions, don't compute the array size yet.
20
21 2007-11-08 Andrew Pinski <pinskia@gmail.com>
22
23 PR c++/30297:
24 * tree.c (decl_linkage): Fields have no linkage.
25
26 2007-11-08 Daniel Jacobowitz <dan@codesourcery.com>
27
28 * class.c (build_ctor_vtbl_group): Lay out the new type and decl.
29
30 2007-11-07 Douglas Gregor <doug.gregor@gmail.com>
31
32 PR c++/33045
33 PR c++/33837
34 PR c++/33838
35 * semantics.c (finish_decltype_type): See through INDIRECT_REFs.
36 Be careful with ERROR_MARK_NODEs.
37 * parser.c (cp_parser_check_access_in_redeclaration): Handle NULL
38 argument.
39
40 2007-11-07 Jakub Jelinek <jakub@redhat.com>
41
42 PR c++/33501
43 * call.c (build_over_call): Don't check TREE_ADDRESSABLE
44 on incomplete type.
45
46 2007-11-06 Douglas Gregor <doug.gregor@gmail.com>
47
48 PR c++/33977
49 PR c++/33886
50 * tree.c (c_build_qualified_type): Define bridge to
51 cp_build_qualified_type.
52
53 2007-11-06 Douglas Gregor <doug.gregor@gmail.com>
54
55 PR c++/31439
56 PR c++/32114
57 PR c++/32115
58 PR c++/32125
59 PR c++/32126
60 PR c++/32127
61 PR c++/32128
62 PR c++/32253
63 PR c++/32566
64 * typeck.c (check_return_expr): Pass address of retval to
65 check_for_bare_parameter_packs.
66 * class.c (build_base_field): Tolerate bases that have no layout
67 due to errors.
68 (end_of_base): Ditto.
69 * tree.c (canonical_type_variant): Be careful with
70 ERROR_MARK_NODE.
71 * cp-tree.h (check_for_bare_parameter_packs): Now accepts a
72 tree*.
73 * pt.c (find_parameter_pack_data): Add set_packs_to_error field,
74 which states whether parameter packs should be replaced with
75 ERROR_MARK_NODE.
76 (find_parameter_packs_r): Pass addresses to cp_walk_tree wherever
77 possible. If set_packs_to_error is set true, replace the parameter
78 pack with ERROR_MARK_NODE. Manage our own pointer sets.
79 (uses_parameter_packs): Don't set parameter packs to
80 ERROR_MARK_NODE.
81 (check_for_bare_parameter_packs): Now takes a pointer to a tree,
82 which may be modified (if it is a parameter pack). Instructs
83 find_parameter_packs_r to replace parameter packs with
84 ERROR_MARK_NODE (so that they won't cause errors later on).
85 (process_template_parm): Pass pointer to
86 check_for_bare_parameter_packs.
87 (process_partial_specialization): Replace pack expansions before
88 the end of the template argument list with ERROR_MARK_NODE.
89 (push_template_decl_real): Pass pointer to
90 check_for_bare_parameter_packs. Replace parameter packs not at the
91 end of the template parameter list with ERROR_MARK_NODE.
92 (convert_template_argument): Be more careful about using DECL_NAME
93 on only declarations.
94 (unify): Can't unify against ERROR_MARK_NODE.
95 * semantics.c (finish_cond): Pass pointer to
96 check_for_bare_parameter_packs.
97 (finish_expr_stmt): Ditto.
98 (finish_for_expr): Ditto.
99 (finish_switch_cond): Pass pointer to
100 check_for_bare_parameter_packs, and call it before we put the
101 condition into the statement.
102 (finish_mem_initializers): Pass pointer to
103 check_for_bare_parameter_packs.
104 (finish_member_declaration): Ditto.
105 * parser.c (cp_parser_base_clause): Ditto.
106
107 2007-11-06 Jakub Jelinek <jakub@redhat.com>
108
109 PR target/33168
110 * decl.c (cp_finish_decl): Call make_rtl_for_nonlocal_decl already
111 with the final TREE_READONLY flag in place. processing_template_decl
112 is known to be 0 in this part of function.
113
114 PR c++/33894
115 * cp-tree.h: Update comment - TYPE_LANG_FLAG_0 is not
116 OMP_ATOMIC_DEPENDENT_P in OMP_ATOMIC.
117 * pt.c (tsubst_expr): Assert OMP_ATOMIC_DEPENDENT_P.
118 * semantics.c (finish_omp_atomic): Revert most of the
119 2007-02-05 changes, just keep the new representation of
120 OMP_ATOMIC_DEPENDENT_P OMP_ATOMIC.
121
122 2007-11-05 H.J. Lu <hongjiu.lu@intel.com>
123
124 PR c++/33871
125 * decl2.c (constrain_visibility): Clear DECL_ONE_ONLY if marked
126 local.
127
128 2007-11-05 Douglas Gregor <doug.gregor@gmail.com>
129
130 PR c++/33996
131 PR c++/33235
132 PR c++/33930
133 * typeck.c (merge_types): Don't lose rvalue references when
134 merging types.
135 * call.c (build_over_call): Don't elide move constructors just
136 because the copy constructor is trivial (!).
137 (compare_ics): If comparing cv-qualifiers fails, we can still order
138 based on binding lvalues vs. rvalues.
139
140 2007-11-05 Douglas Gregor <doug.gregor@gmail.com>
141
142 PR c++/33939
143 * pt.c (unify_pack_expansion): bring handling of function call
144 arguments into line with type_unification_real.
145
146 2007-11-05 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
147
148 * typeck.c (build_binary_op): Use pedwarn instead of error for
149 consistency.
150
151 2007-11-05 Jakub Jelinek <jakub@redhat.com>
152
153 PR c++/33836
154 * parser.c (cp_parser_unary_expression): For &&label call
155 cp_parser_non_integral_constant_expression and return error_mark_node
156 if it returned true.
157
158 PR c++/33969
159 * decl.c (grokdeclarator): Don't call build_memfn_type if type
160 is neither FUNCTION_TYPE nor METHOD_TYPE.
161
162 2007-11-02 Jakub Jelinek <jakub@redhat.com>
163
164 PR c++/33516
165 * parser.c (cp_parser_nested_name_specifier_opt): Use
166 TYPE_MAIN_VARIANT (new_scope) as scope if new_scope is an incomplete
167 typedef of currently open class.
168
169 2007-11-02 Paolo Carlini <pcarlini@suse.de>
170
171 PR c++/33495
172 * error.c (dump_expr): Deal specially with statements.
173
174 2007-11-01 Jason Merrill <jason@redhat.com>
175
176 PR c++/30897
177 * pt.c (push_template_decl_real): Set DECL_CONTEXT on template
178 template parms.
179 (lookup_template_class): Use it to get the outer template args
180 for instantiating one.
181
182 PR c++/29236
183 * pt.c (reduce_template_parm_level): tsubst the parameters
184 of a template template parm.
185
186 2007-11-01 Douglas Gregor <doug.gregor@gmail.com>
187
188 PR c++/33955
189 * pt.c (find_parameter_packs_r): Handle TYPENAME_TYPE.
190
191 2007-11-01 Jakub Jelinek <jakub@redhat.com>
192
193 PR c++/32384
194 * parser.c (cp_parser_postfix_dot_deref_expression): If
195 POSTFIX_EXPRESSION is type dependent, try to parse it as pseudo dtor
196 first and if that succeeds and type is SCALAR_TYPE_P, create
197 PSEUDO_DTOR_EXPR.
198
199 PR c++/32260
200 * rtti.c (enum_tinfo_kind): Fix TK_TYPE_INFO_TYPE comment.
201 (typeid_ok_p): Use the same alias set for abi::__type_info_pseudo
202 as for std::type_info.
203
204 2007-10-31 Paolo Carlini <pcarlini@suse.de>
205
206 PR c++/33494
207 * cxx-pretty-print.c (pp_cxx_typeid_expression,
208 pp_cxx_delete_expression): Change to static linkage.
209 * cxx-pretty-print.h: Adjust declarations.
210 * error.c (dump_expr, case EXPR_PACK_EXPANSION, TYPEID_EXPR,
211 MEMBER_REF, DOTSTAR_EXPR, DELETE_EXPR, VEC_DELETE_EXPR,
212 MODOP_EXPR): Forward to pp_expression.
213
214 * cxx-pretty-print.c (pp_cxx_expression, case NON_DEPENDENT_EXPR):
215 Fix typo.
216
217 2007-10-31 Christian Bruel <christian.bruel@st.com>
218 Mark Mitchell <mark@codesourcery.com>
219
220 PR c++/19531
221 * typeck.c (check_return_expr): Don't set named_return_value_okay_p
222 if retval is volatile.
223
224 2007-10-30 Jakub Jelinek <jakub@redhat.com>
225
226 PR c++/33616
227 * decl2.c (build_offset_ref_call_from_tree): Call
228 build_non_dependent_expr on object prior to building ADDR_EXPR from it
229 if FN is DOTSTAR_EXPR.
230
231 2007-10-30 Douglas Gregor <doug.gregor@gmail.com>
232
233 PR c++/31993
234 PR c++/32252
235 * pt.c (find_parameter_packs_r): Fix typo in comment.
236 (convert_template_argument): Look at the pattern of a pack
237 expansion to determine what kind of entity we're converting.
238 (coerce_template_parameter_pack): When we have coerced a non-type
239 template parameter pack, substitute into the type of that pack.
240 (tsubst_pack_expansion): When our substitution of a parameter pack
241 is a "trivial" substitution of itself, just substitute into the
242 pack expansion rather than actually expanding.
243
244 2007-10-29 Jakub Jelinek <jakub@redhat.com>
245
246 PR c++/33841
247 * class.c (check_bitfield_decl): Don't set field's type to error_mark_node
248 for non-integral type bitfields. Return true if bitfield is correct, false
249 error has been diagnosed.
250 (check_field_decls): If check_bitfield_decl returned false, call also
251 check_field_decl.
252
253 2007-10-28 Paolo Carlini <pcarlini@suse.de>
254 Mark Mitchell <mark@codesourcery.com>
255
256 PR c++/30659
257 * pt.c (do_decl_instantiation): If the VAR_DECL is not a
258 class member error out and return.
259
260 2007-10-27 Jakub Jelinek <jakub@redhat.com>
261
262 * error.c (reinit_cxx_pp): Initialize cxx_pp->enclosing_scope
263 to current_function_decl rather than 0.
264
265 PR c++/33844
266 * cxx-pretty-print.c (pp_cxx_pm_expression) <case MEMBER_REF>: Print
267 ->* rather than .*.
268 * error.c (dump_expr): Handle MEMBER_REF and DOTSTAR_EXPR.
269
270 2007-10-27 Jason Merrill <jason@redhat.com>
271
272 PR c++/5247
273 * call.c (convert_default_arg): Detect recursion.
274
275 2007-10-27 Jakub Jelinek <jakub@redhat.com>
276
277 PR c++/33842
278 * cxx-pretty-print.h (pp_cxx_offsetof_expression): New prototype.
279 * cxx-pretty-print.c (pp_cxx_primary_expression): Handle
280 OFFSETOF_EXPR.
281 (pp_cxx_offsetof_expression_1, pp_cxx_offsetof_expression): New
282 functions.
283 * error.c (dump_expr): Handle OFFSETOF_EXPR.
284
285 2007-10-26 Jason Merrill <jason@redhat.com>
286
287 PR c++/24791
288 * pt.c (get_template_info): New fn.
289 (template_class_depth): Use it.
290 (push_template_decl_real): Check that the template args of the
291 definition match the args of the previous declaration.
292
293 2007-10-26 Paolo Carlini <pcarlini@suse.de>
294
295 PR c++/31988
296 * decl2.c (coerce_new_type): Do not allow a default argument for
297 the first parameter.
298
299 2007-10-26 Douglas Gregor <doug.gregor@gmail.com>
300
301 PR c++/33839
302 * parser.c (cp_parser_decltype): Return ERROR_MARK_NODE if we
303 don't see the leading '('. Only lookup names if we get an
304 IDENTIFIER_NODE.
305
306 2007-10-26 Jakub Jelinek <jakub@redhat.com>
307
308 PR c++/33744
309 * parser.c (cp_parser_parenthesized_expression_list): Set
310 greater_than_is_operator_p to true in between the parens.
311
312 2007-10-26 Paolo Carlini <pcarlini@suse.de>
313
314 PR c++/31747
315 * decl.c (grokdeclarator): In case of conflicting specifiers
316 just return error_mark_node.
317
318 2007-10-26 Ollie Wild <aaw@google.com>
319
320 * expr.c (cxx_expand_expr): Removed.
321 * cp-tree.h (exx_expand_expr): Removed.
322 * cp-objcp-common.h (LANK_HOOKS_EXPAND_EXPR): Replace cxx_expand_expr
323 with c_expand_expr.
324
325 2007-10-25 Paolo Carlini <pcarlini@suse.de>
326
327 PR c++/33843
328 * cxx-pretty-print.c (pp_cxx_unqualified_id): Deal with BIT_NOT_EXPR.
329
330 2007-10-23 Jason Merrill <jason@redhat.com>
331
332 PR c++/25950 (DR 391)
333 * call.c (struct conversion): Remove check_copy_constructor_p.
334 (reference_binding): Always bind a reference directly to a
335 compatible class rvalue. Pass down LOOKUP_NO_TEMP_BIND during
336 temporary creation.
337 (check_constructor_callable): Remove.
338 (convert_like_real): Don't call it.
339 (initialize_reference): Don't call check_constructor_callable.
340 (standard_conversion): Check LOOKUP_NO_CONVERSION instead of
341 LOOKUP_CONSTRUCTOR_CALLABLE. Don't require a temporary for base
342 conversions if LOOKUP_NO_TEMP_BIND.
343 (implicit_conversion): Pass through LOOKUP_NO_TEMP_BIND.
344 (build_user_type_conversion_1): Pass through LOOKUP_NO_TEMP_BIND for
345 second conversion.
346 * cp-tree.h (LOOKUP_CONSTRUCTOR_CALLABLE): Remove.
347
348 2007-10-22 Jakub Jelinek <jakub@redhat.com>
349
350 PR c++/33372
351 * semantics.c (finish_omp_clauses): Check !type_dependent_expression_p
352 before checking if its type is integral.
353
354 2007-10-22 Jason Merrill <jason@redhat.com>
355
356 PR c++/33620
357 * class.c (finish_struct_bits): Copy TYPE_ATTRIBUTES.
358 * pt.c (apply_late_template_attributes): Splice out dependent
359 attributes from DECL_ATTRIBUTES.
360
361 * decl.c (cxx_maybe_build_cleanup): Use build_address.
362
363 2007-10-17 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
364
365 * typeck.c (build_binary_op) : Use appropriate warning option
366 instead of unnamed warning.
367
368 2007-10-16 Paolo Carlini <pcarlini@suse.de>
369
370 PR c++/31446
371 * pt.c (current_template_args): Do not change TREE_LIST elements
372 with a TREE_VALUE of error_mark_node.
373
374 2007-10-16 Mark Mitchell <mark@codesourcery.com>
375
376 * typeck.c (cp_apply_type_quals_to_decl): Expand documentation.
377 * decl.c (start_decl): Tidy.
378 (start_decl_1): Call cp_apply_type_quals_to_decl after completing
379 the type.
380 (grokdeclarator): Clarify comment.
381
382 2007-10-14 Andrew Pinski <pinskia@gmail.com>
383
384 PR c++/30303
385 * decl.c (grokfndecl): Return NULL after the "definition of
386 implicitly-declared" error happened.
387
388 2007-10-12 Simon Martin <simartin@users.sourceforge.net>
389
390 PR c++/26698
391 * call.c (build_user_type_conversion_1): Do not consider conversion
392 functions to convert a (possibly cv-qualified) object to the (possibly
393 cv-qualified) same object type (or a reference to it), to a (possibly
394 cv-qualified) base class of that type (or a reference to it).
395
396 2007-10-12 Paolo Carlini <pcarlini@suse.de>
397
398 * pt.c (tsubst): Use template_parm_level_and_index.
399
400 2007-10-12 Jakub Jelinek <jakub@redhat.com>
401
402 PR c++/32121
403 * parser.c (cp_parser_compound_statement): Handle label-declarations
404 at the beginning of the compound statement.
405 (cp_parser_block_declaration): Issue diagnostics about __label__
406 not at the beginning of a block.
407
408 2007-10-11 Paolo Carlini <pcarlini@suse.de>
409
410 PR c++/33461
411 * pt.c (coerce_template_parameter_pack): Do not pass error_mark_node
412 to convert_template_argument.
413 (coerce_template_parms): Return error_mark_node after fixed-length
414 error.
415 (tsubst_decl): Check for error_mark_node the return value of the
416 first tsubst in 'case VAR_DECL'.
417
418 2007-10-08 Ollie Wild <aaw@google.com>
419
420 * typeck2.c (digest_init): Call cplus_expand_constant after
421 convert_for_initialization.
422 * cp-objcp-common.h (LANG_HOOKS_EXPAND_CONSTANT): Removed.
423 * expr.c (cplus_expand_constant): Updated function description.
424
425 2007-10-04 Jason Merrill <jason@redhat.com>
426
427 PR c++/20416
428 * call.c (initialize_reference): Handle local static reference
429 temps properly.
430
431 2007-10-03 Jason Merrill <jason@redhat.com>
432
433 PR c++/32470
434 * name-lookup.c (push_namespace_with_attrs): Fold back into...
435 (push_namespace): Here.
436 (handle_namespace_attrs): New fn for the attr code.
437 (leave_scope): Don't pop_visibility.
438 * name-lookup.h (struct cp_binding_level): Remove has_visibility.
439 * parser.c (cp_parser_namespace_definition): Call
440 handle_namespace_attrs and pop_visibility as appropriate.
441
442 PR c++/11756
443 * mangle.c (write_type) [TYPEOF_TYPE]: Just sorry.
444
445 2007-10-03 Alexandre Oliva <aoliva@redhat.com>
446
447 * decl.c (duplicate_decls): Preserve linkage flags for mere
448 redeclarations of gnu_inline definitions.
449
450 2007-10-03 Jason Merrill <jason@redhat.com>
451
452 PR c++/15764
453 * decl.c (wrap_cleanups_r): New fn.
454 (wrap_temporary_cleanups): New fn.
455 (initialize_local_var): Call it.
456
457 2007-09-29 Jason Merrill <jason@redhat.com>
458
459 PR c++/33094
460 * decl.c (make_rtl_for_nonlocal_decl): It's ok for a member
461 constant to not have DECL_EXTERNAL if it's file-local.
462
463 2007-09-28 Ollie Wild <aaw@google.com>
464
465 Revert
466 2007-09-27 Ollie Wild <aaw@google.com>
467
468 * typeck2.c (digest_init): Call cplus_expand_constant after
469 convert_for_initialization.
470 * cp-objcp-common.h (LANG_HOOKS_EXPAND_CONSTANT): Removed.
471 * expr.c (cplus_expand_constant): Updated function description.
472
473 2007-09-28 Jason Merrill <jason@redhat.com>
474
475 PR c++/10179
476 * class.c (layout_empty_base): Take rli parameter, update
477 rli->record_align if empty base has user-specified alignment.
478 (build_base_field): Pass rli to it.
479
480 2007-09-28 Paolo Carlini <pcarlini@suse.de>
481
482 PR c++/33213
483 * error.c (dump_decl): Deal with TYPE_PACK_EXPANSION.
484
485 2007-09-28 Paolo Carlini <pcarlini@suse.de>
486
487 PR c++/33118
488 * error.c (dump_expr): Deal with ARGUMENT_PACK_SELECT.
489 (dump_type): Use dump_template_argument for TYPE_ARGUMENT_PACK.
490 (dump_parameters): Just call dump_type for argument packs too.
491
492 2007-09-28 Jakub Jelinek <jakub@redhat.com>
493
494 PR c++/31434
495 * tree.c (cp_build_qualified_type_real): Handle TYPE_PACK_EXPANSION
496 qualification by creating qualified PACK_EXPANSION_PATTERN and
497 then calling make_pack_expansion on it.
498
499 2007-09-27 Ollie Wild <aaw@google.com>
500
501 * typeck2.c (digest_init): Call cplus_expand_constant after
502 convert_for_initialization.
503 * cp-objcp-common.h (LANG_HOOKS_EXPAND_CONSTANT): Removed.
504 * expr.c (cplus_expand_constant): Updated function description.
505
506 2007-09-27 Jason Merrill <jason@redhat.com>
507
508 PR c++/33571
509 * decl2.c (is_late_template_attribute): Don't crash on unknown
510 attribute.
511
512 2007-09-27 Paolo Carlini <pcarlini@suse.de>
513
514 PR c++/33493
515 * error.c (dump_expr): Deal with DELETE_EXPR and VEC_DELETE_EXPR.
516 * cxx-pretty-print.c (pp_cxx_delete_expression): Add missing
517 spaces in the formatting.
518 * cxx-pretty-print.h (pp_cxx_delete_expression): Declare.
519
520 2007-09-27 Jakub Jelinek <jakub@redhat.com>
521
522 * error.c (cxx_print_error_function): Add third argument, pass
523 it over to lhd_print_error_function.
524 (cp_print_error_function): If diagnostic->abstract_origin, print
525 virtual backtrace.
526 * cp-tree.h (struct diagnostic_info): New forward decl.
527 (cxx_print_error_function): Add third argument.
528
529 2007-09-25 Simon Martin <simartin@users.sourceforge.net>
530
531 PR c++/33207
532 * name-lookup.c (pushtag): Do not create an implicit typedef before
533 the associated type declaration is known to be valid.
534
535 2007-09-25 Jakub Jelinek <jakub@redhat.com>
536
537 * tree.c (cxx_printable_name): Compare FUNCTION_DECL uids
538 rather than pointers.
539
540 2007-09-24 Danny Smith <dannysmith@user.sourceforge.net>
541
542 PR c++/14688
543 * search.c (check_final_overrider): Fail if
544 targetm.comp_type_attributes returns 0.
545
546 2007-09-24 Jason Merrill <jason@redhat.com>
547
548 PR c++/33239
549 * pt.c (resolve_typename_type): Don't look things up in the original
550 template if it would mean losing template arguments.
551
552 2007-09-24 Jakub Jelinek <jakub@redhat.com>
553
554 PR c++/33506
555 * cp-tree.h (cxx_type_hash_eq): New prototype.
556 * cp-objcp-common.h (LANG_HOOKS_TYPE_HASH_EQ): Redefine.
557 * tree.c (cxx_type_hash_eq): New function.
558
559 2007-09-24 Douglas Gregor <doug.gregor@gmail.com>
560
561 PR c++/33185
562 * tree.c (cp_build_qualified_type_real): Build a canonical
563 ARRAY_TYPE if the original ARRAY_TYPE was not a canonical type.
564
565 2007-09-24 Douglas Gregor <doug.gregor@gmail.com>
566
567 PR c++/33112
568 PR c++/33185
569 * tree.c (cplus_array_compare): Compare pointers, not types.
570 (build_cplus_array_type_1): Store new array type into the hash
571 table before building the canonical type; build the canonical type
572 correctly.
573 (cp_build_qualified_type_real): Put all of the array types with
574 cv-qualified element types into the C++ array hash table, built as
575 variants of the unqualified versions.
576
577 2007-09-23 Jason Merrill <jason@redhat.com>
578
579 PR c++/16370
580 * decl.c (grokdeclarator): Look through implicit TYPE_DECLs
581 for deprecation warnings.
582
583 2007-09-22 Jason Merrill <jason@redhat.com>
584
585 PR c++/15269
586 * call.c (build_over_call): Warn about deprecated virtuals.
587
588 PR c++/19407
589 * cp-tree.h (ATTR_IS_DEPENDENT): New macro.
590 (MAYBE_TAGGED_TYPE_P): Remove.
591 * pt.c (apply_late_template_attributes): Check ATTR_IS_DEPENDENT
592 instead of calling is_late_template_attribute again.
593 (tsubst_decl) [TYPE_DECL]: Just check if the name is the tag.
594 (tsubst): A typedef is a TYPE_NAME != TYPE_MAIN_DECL.
595 Don't crash on typedefs from non-template classes.
596 * decl2.c (grokfield): Don't sorry about attrs on template parms.
597 (is_late_template_attribute): All attributes applied to template
598 parms or typename types are dependent. Static.
599 (splice_template_attributes): Pass decl through.
600 (save_template_attributes): Likewise.
601
602 2007-09-20 Jakub Jelinek <jakub@redhat.com>
603
604 PR c++/33496
605 * pt.c (tsubst_copy) <case SIZEOF_EXPR>: Handle error_mark_node
606 returned from tsubst_pack_expansion.
607 (tsubst_copy_and_build) <case SIZEOF_EXPR>: Likewise.
608 (tsubst_copy_and_build) <case CONSTRUCTOR>: Likewise.
609
610 2007-09-20 Paolo Carlini <pcarlini@suse.de>
611
612 PR c++/33460
613 * semantics.c (finish_id_expression): Use consistently
614 context_for_name_lookup.
615 * decl.c (fixup_anonymous_aggr): Fix error message for
616 anonymous struct (vs union).
617
618 2007-09-19 Jason Merrill <jason@redhat.com>
619
620 PR c++/7586
621 * pt.c (tsubst): Handle typedefs by looking for the specialization.
622 (retrieve_specialization): Only tagged types use
623 DECL_TEMPLATE_INSTANTIATIONS.
624 (instantiate_class_template): Push nested classes too.
625 (tsubst_decl) [TYPE_DECL]: Only check for canonical decl for
626 tagged types.
627 * cp-tree.h (MAYBE_TAGGED_TYPE_P): New macro.
628 * init.c (is_aggr_type): Remove redundant tests.
629 * class.c (push_nested_class): Use CLASS_TYPE_P.
630
631 2007-09-20 Paolo Carlini <pcarlini@suse.de>
632
633 PR c++/33459
634 * init.c (build_zero_init): If, recursively, build_zero_init
635 returns a NULL_TREE, do not append it to the VEC of constructors.
636
637 2007-09-18 Jason Merrill <jason@redhat.com>
638
639 PR c++/17743
640 * pt.c (apply_late_template_attributes): Set processing_template_decl.
641 (tsubst_decl) [TYPE_DECL]: Preserve naming typedef, pass
642 ATTR_FLAG_TYPE_IN_PLACE.
643 (tsubst): Do unqualified lookup to find typedefs from current class.
644 [ARRAY_TYPE]: Propagate alignment info.
645 * decl2.c (is_late_template_attribute): Only defer handling of
646 attribute aligned if the expression is dependent.
647 (save_template_attributes): If we're deferring any attributes,
648 make this a naming typedef.
649
650 2007-09-18 Paolo Carlini <pcarlini@suse.de>
651
652 PR c++/33462 (again)
653 * cxx-pretty-print.c (pp_cxx_va_arg_expression): Print
654 va_arg instead of __builtin_va_arg.
655
656 2007-09-18 Paolo Carlini <pcarlini@suse.de>
657
658 PR c++/33462
659 * cxx-pretty-print.c (pp_cxx_va_arg_expression): Add.
660 (pp_cxx_primary_expression): Use it.
661 * cxx-pretty-print.h (pp_cxx_va_arg_expression): Declare.
662 * error.c (dump_expr): Use it.
663
664 2007-09-18 Paolo Carlini <pcarlini@suse.de>
665
666 PR c++/33463
667 * cxx-pretty-print.c (pp_cxx_postfix_expression): Split
668 out case TYPEID_EXPR to...
669 (pp_cxx_typeid_expression): ... here; use pp_cxx_left_paren
670 and pp_cxx_right_paren.
671 * cxx-pretty-print.h (pp_cxx_typeid_expression): Declare.
672 * error.c (dump_expr): Use it.
673
674 2007-09-18 Paolo Carlini <pcarlini@suse.de>
675
676 PR c++/33464
677 * cxx-pretty-print.c (pp_cxx_trait_expression): Add.
678 (pp_cxx_primary_expression): Use it.
679 * cxx-pretty-print.h (pp_cxx_trait_expression): Declare.
680 * error.c (dump_expr): Use it.
681
682 2007-09-16 Paolo Carlini <pcarlini@suse.de>
683
684 PR c++/33124
685 * init.c (build_new): Remove warning for zero-element
686 allocations.
687
688 2007-09-16 Nathan Sidwell <nathan@codesourcery.com>
689
690 PR c++/32756
691 * call.c (maybe_handle_implicit_object): Set this_p, clear
692 rvaluedness_matches_p.
693 (compare_ics): Do not compare rvaluedness matching when one of the
694 operands is an implicit object.
695
696 2007-09-14 Jason Merrill <jason@redhat.com>
697
698 PR c++/17743, c++/19163
699 * decl2.c (is_late_template_attribute): New fn.
700 (splice_template_attributes, save_template_attributes): New fns.
701 (cplus_decl_attributes): Call save_template_attributes.
702 * pt.c (apply_late_template_attributes): New fn.
703 (instantiate_class_template, tsubst_decl): Use it.
704 * cp-tree.h: Declare is_late_template_attribute.
705
706 2007-09-13 Tom Tromey <tromey@redhat.com>
707
708 * parser.c (cp_lexer_new_main): Don't use
709 c_lex_return_raw_strings.
710 (cp_lexer_get_preprocessor_token): Update. Add special case when
711 lexer is NULL.
712
713 2007-09-11 Jan Hubicka <jh@suse.cz>
714
715 * method.c (use_thunk): Use tree_rest_of_compilation
716 * cp-objecp-common.h (LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION): Kill.
717 (LANG_HOOKS_CALLGRAPH_EMIT_ASSOCIATED_THUNKS): Define.
718 * cp-tree.h (expand_body): Kill.
719 (emit_associated_thunks): Declare.
720 * semantics.c (emit_associated_thunks): Export.
721 (expand_body): Kill.
722
723 2007-09-09 David Daney <ddaney@avtrex.com>
724
725 PR c++/33324
726 * init.c (build_new_1): Use POINTER_PLUS_EXPR instead of MINUS_EXPR
727 to calculate cookie_ptr.
728
729 2007-09-08 Jason Merrill <jason@redhat.com>
730
731 PR c++/33342
732 * pt.c (most_specialized_class): Set processing_template_decl
733 while tsubsting partial spec args.
734
735 2007-09-06 Jason Merrill <jason@redhat.com>
736
737 * decl2.c (get_guard): Copy visibility from the guarded variable.
738
739 2007-09-06 Jan Hubicka <jh@suse.cz>
740
741 * semantics.c (expand_body): Do not mark arguments of clones used.
742
743 2007-09-06 Paolo Carlini <pcarlini@suse.de>
744
745 PR c++/32674
746 * decl.c (cp_finish_decl): When processing_template_decl,
747 deal correctly with init as TREE_LIST.
748
749 2007-09-06 Tom Tromey <tromey@redhat.com>
750
751 * decl.c (finish_function): Put return's location on line zero of
752 file.
753
754 2007-09-05 Jason Merrill <jason@redhat.com>
755
756 PR c++/15745
757 * except.c (prepare_eh_type): Use type_decays_to.
758
759 PR c++/15097
760 * init.c (build_delete): Use build_headof to get the address of the
761 complete object if we aren't using the deleting destructor.
762 * rtti.c (build_headof): No longer static.
763 * cp-tree.h: Declare it.
764
765 2007-09-06 Jakub Jelinek <jakub@redhat.com>
766
767 * decl.c (duplicate_decls): Set TREE_NOTHROW on __builtin_XX
768 decl if a prototype for XX is provided with throw().
769
770 PR c++/33289
771 * decl.c (builtin_function_1): Set DECL_ANTICIPATED also
772 on __*_chk non-__builtin_* decls.
773
774 2007-09-05 Paolo Carlini <pcarlini@suse.de>
775
776 PR c++/30302
777 * semantics.c (finish_id_expression): Use context_for_name_lookup
778 insted of DECL_CONTEXT, to see through anonymous structs and unions.
779 * class.c (finish_struct_anon): Deal correctly with anonymous
780 structs (vs unions, as GNU extension) in error messages.
781
782 2007-09-05 Jan Hubicka <jh@suse.cz>
783
784 * cp/sematics.c (expand_body): Remove unnecesary import_export_decl
785 call, DECL_EXTERNAL checks and current_function_decl saving.
786
787 2007-09-05 Paolo Carlini <pcarlini@suse.de>
788
789 PR c++/29731 (again)
790 * parser.c (cp_parser_primary_expression): Return error_mark_node
791 when a statement-expression is found in a template-argument list.
792
793 2007-09-04 Jason Merrill <jason@redhat.com>
794
795 * except.c (initialize_handler_parm): Use
796 fold_build_cleanup_point_expr.
797
798 PR c++/31419
799 * call.c (reference_binding): Don't look for user-defined conversions
800 to the same type.
801
802 PR c++/31411
803 * except.c (initialize_handler_parm): Put a CLEANUP_POINT_EXPR inside
804 the MUST_NOT_THROW_EXPR.
805
806 2007-09-04 Richard Sandiford <richard@codesourcery.com>
807
808 * decl.c (cp_finish_decl): Call determine_visibility before
809 make_rtl_for_nonlocal_decl.
810
811 2007-09-04 Jason Merrill <jason@redhat.com>
812
813 PR c++/14032
814 * pt.c (most_specialized_class): Substitute outer template
815 arguments into the arguments of a member template partial
816 specialization.
817 (strip_innermost_template_args): New fn.
818
819 2007-09-03 Daniel Jacobowitz <dan@codesourcery.com>
820
821 * Make-lang.in (g++spec.o): Remove SHLIB_MULTILIB.
822
823 2007-09-03 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
824
825 * call.c (name_as_c_string): Supply a TYPE for CONST_CAST.
826 * decl.c (cp_make_fname_decl): Likewise,
827 * parser.c (cp_parser_string_literal): Likewise,
828 * tree.c (pod_type_p, zero_init_p): Use CONST_CAST_TREE.
829 * typeck.c (cp_type_quals, cp_type_readonly, cp_has_mutable_p):
830 Likewise,
831
832 2007-09-02 Paolo Carlini <pcarlini@suse.de>
833
834 PR c++/33208
835 * typeck.c (build_unary_op): Fix error message for
836 Boolean expression as operand to operator--.
837
838 2007-09-01 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
839
840 * tree.c (pod_type_p, zero_init_p): Use strip_array_types.
841 * typeck.c (cp_type_quals, cp_type_readonly, cp_has_mutable_p):
842 Likewise.
843
844 2007-08-31 Douglas Gregor <doug.gregor@gmail.com>
845
846 PR c++/32597
847 * init.c (build_default_init): Make extern.
848 * cp-tree.h (build_default_init): Declare here.
849 * pt.c (tsubst_expr): When the instantiation of the initializer of
850 a variable results in an empty list, default-initialize the
851 variable.
852 (tsubst_copy_and_build): When the instantiation of the initializer
853 in a new expression results in an empty initializer list,
854 default-initialize it.
855
856 2007-08-31 Douglas Gregor <doug.gregor@gmail.com>
857
858 * mangle.c (write_type): Change mangling of rvalue reference from
859 `RR' to `O'.
860
861 2007-08-31 Jakub Jelinek <jakub@redhat.com>
862
863 * decl.c (duplicate_decls): Remove duplicated line.
864
865 2007-08-31 Paolo Carlini <pcarlini@suse.de>
866
867 PR c++/33210
868 * cxx-pretty-print.c (pp_cxx_unqualified_id): Deal with
869 BOUND_TEMPLATE_TEMPLATE_PARM.
870
871 2007-08-31 Paolo Carlini <pcarlini@suse.de>
872
873 PR c++/32113
874 * search.c (lookup_member): Check the name argument for
875 error_mark_node.
876
877 2007-08-31 Paolo Carlini <pcarlini@suse.de>
878
879 PR c++/33212
880 * parser.c (cp_parser_trait_expr): Check rerurn value of
881 cp_parser_type_id.
882
883 2007-08-30 Ollie Wild <aaw@google.com>
884
885 * cvt.c (cp_convert_to_pointer): Remove force parameter. Call
886 convert_ptrmem for pointer to member conversions.
887 (convert_to_pointer_force): Update cp_convert_to_pointer call.
888 (ocp_convert): Update cp_convert_to_pointer call.
889 * typeck.c (convert_ptrmem): Add conditional for null pointers to
890 members.
891 (build_static_cast_1): Check can_convert for conversions in either
892 direction.
893 (get_delta_difference_1): New function.
894 (get_delta_difference): Refactor to call get_delta_difference_1.
895
896 2007-08-30 Jakub Jelinek <jakub@redhat.com>
897
898 * decl.c (start_preparsed_function): Set
899 DECL_DISREGARD_INLINE_LIMITS for GNU_INLINE_P functions.
900
901 2007-08-28 Paolo Carlini <pcarlini@suse.de>
902
903 PR c++/33209
904 * error.c (dump_expr): Deal with TEMPLATE_TYPE_PARM and
905 BOUND_TEMPLATE_TEMPLATE_PARM.
906
907 2007-08-28 Jakub Jelinek <jakub@redhat.com>
908
909 PR c++/32596
910 PR c++/32400
911 * pt.c (check_explicit_specialization): Set DECL_INTERFACE_KNOWN
912 and DECL_NOT_REALLY_EXTERN if tmpl_func is not public.
913
914 2007-08-27 Jason Merrill <jason@redhat.com>
915
916 PR c++/29000
917 * pt.c (build_non_dependent_expr, type_dependent_expression_p):
918 Look inside STMT_EXPR.
919 * semantics.c (stmt_expr_value_expr): New fn.
920 * cp-tree.h: Declare it.
921
922 PR c++/28558
923 * decl.c (groktypename): Ignore attributes applied to class type.
924
925 2007-08-28 Richard Guenther <rguenther@suse.de>
926
927 * decl.c (duplicate_decls): Merge DECL_DISREGARD_INLINE_LIMITS.
928
929 2007-08-28 Gabriel Dos Reis <gdr@integrable-solutions.net>
930
931 * error.c (dump_expr): Handle COMPLEX_CST.
932 * cxx-pretty-print.c (pp_cxx_primary_expression): Likewise.
933 (pp_cxx_expression): Likewise.
934
935 2007-08-27 Alexandre Oliva <aoliva@redhat.com>
936
937 * decl.c (GNU_INLINE_P): New.
938 (duplicate_decls): Handle gnu_inline. Merge attributes and
939 some flags in overriding definitions.
940 (redeclaration_error_message): Handle gnu_inline.
941 (start_preparsed_function): Likewise.
942
943 2007-08-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
944
945 * call.c (sufficient_parms_p): Constify.
946 * class.c (same_signature_p): Likewise.
947 * cp-gimplify.c (is_invisiref_parm,
948 cxx_omp_privatize_by_reference): Likewise.
949 * cp-objcp-common.c (has_c_linkage): Likewise.
950 * cp-tree.h (NON_THUNK_FUNCTION_CHECK, THUNK_FUNCTION_CHECK,
951 sufficient_parms_p, same_signature_p, copy_fn_p, move_fn_p,
952 grok_ctor_properties, nothrow_libfn_p, skip_artificial_parms_for,
953 num_artificial_parms_for, comp_template_parms,
954 template_parameter_pack_p, any_dependent_template_arguments_p,
955 any_type_dependent_arguments_p, any_value_dependent_elements_p,
956 repo_export_class_p, cxx_omp_privatize_by_reference, pod_type_p,
957 zero_init_p, member_p, cp_lvalue_kind,
958 builtin_valid_in_constant_expr_p, decl_anon_ns_mem_p,
959 varargs_function_p, is_dummy_object, special_function_kind,
960 string_conv_p, type_unknown_p, comp_except_specs, compparms,
961 comp_cv_qualification, is_bitfield_expr_with_lowered_type,
962 unlowered_expr_type, ptr_reasonably_similar, cp_type_readonly,
963 cp_has_mutable_p, at_least_as_qualified_p,
964 invalid_nonstatic_memfn_p, lvalue_or_else, lvalue_p): Likewise.
965 * decl.c (copy_fn_p, move_fn_p, grok_ctor_properties): Likewise.
966 * except.c (nothrow_libfn_p): Likewise.
967 * method.c (skip_artificial_parms_for, num_artificial_parms_for):
968 Likewise.
969 * pt.c (comp_template_parms, template_parameter_pack_p,
970 any_type_dependent_arguments_p, any_value_dependent_elements_p,
971 any_dependent_template_arguments_p): Likewise.
972 * repo.c (repo_export_class_p): Likewise.
973 * semantics.c (anon_aggr_type_p): Likewise.
974 * tree.c (lvalue_p_1, real_lvalue_p, lvalue_p,
975 builtin_valid_in_constant_expr_p, decl_anon_ns_mem_p,
976 varargs_function_p, member_p, is_dummy_object, pod_type_p,
977 zero_init_p, special_function_p): Likewise.
978 * typeck.c (comp_array_types, type_unknown_p, comp_except_specs,
979 comp_array_types, at_least_as_qualified_p, comp_cv_qualification,
980 compparms, invalid_nonstatic_memfn_p,
981 is_bitfield_expr_with_lowered_type, unlowered_expr_type,
982 string_conv_p, ptr_reasonably_similar, cp_type_readonly,
983 cp_has_mutable_p, lvalue_or_else): Likewise.
984
985 2007-08-25 Paolo Bonzini <bonzini@gnu.org>
986
987 * decl.c (cp_tree_node_structure): Kill TINST_LEVEL case.
988 * cp-objcp-common.c (cp_tree_size): Ditto.
989 * tree.c (cp_walk_subtrees): Ditto
990 * cp-tree.def (TINST_LEVEL): Go away.
991 * cp-tree.h (struct tinst_level_s): Rename to struct tinst_level,
992 move together with other non-tree structs.
993 (enum cp_tree_node_structure_enum): Nuke TS_CP_TINST_LEVEL.
994 (union lang_tree_node): Eliminate tinst_level field.
995 (TINST_DECL, TINST_LOCATION, TINST_IN_SYSTEM_HEADER_P): Annihilate.
996 (current_instantiation, outermost_tinst_level): Return
997 a "struct tinst_level *".
998
999 * error.c (print_instantiation_partial_context): Change second
1000 parameter to a "struct tinst_level *". Replace accessor macros
1001 with field access.
1002 (print_instantiation_full_context): Likewise.
1003 * lex.c (in_main_input_context): Likewise.
1004
1005 * pt.c (struct pending_templates): New.
1006 (pending_templates, last_pending_template): Use it as a type.
1007 (current_tinst_level): Change typo to "struct tinst_level *"
1008 (reopen_tinst_level): Accept "struct tinst_level *", return decl.
1009 (add_pending_template): Construct a "struct pending_template".
1010 Replace TINST_LEVEL accessor macros with field access.
1011 (push_tinst_level): Likewise, using GGC_NEW instead of make_node.
1012 (pop_tinst_level): Likewise.
1013 (instantiate_pending_templates): Likewise. Factor common code used
1014 when an instantiation has been done.
1015 (outermost_tinst_level): Replace tree_last with loop.
1016 (current_instantiation): Return a "struct tinst_level *".
1017
1018 2007-08-24 Ollie Wild <aaw@google.com>
1019
1020 * name-lookup.c (add_decl_to_level): Remove addition to vtables chain.
1021 * name-lookup.h (cp_binding_level): Remove vtables member.
1022
1023 2007-08-24 Richard Guenther <rguenther@suse.de>
1024
1025 * tree.c (cp_cannot_inline_tree_fn): Remove.
1026 * cp-tree.h (cp_cannot_inline_tree_fn): Likewise.
1027 * cp-objcp-common.h (LANG_HOOKS_TREE_INLINING_CANNOT_INLINE_TREE_FN):
1028 Remove define.
1029
1030 2007-08-24 Jakub Jelinek <jakub@redhat.com>
1031
1032 PR c++/32567
1033 * typeck.c (build_unary_op) <case PREINCREMENT_EXPR>: Return
1034 error_mark_node right away if build_expr_type_conversion
1035 returned it.
1036
1037 PR c++/32898
1038 * name-lookup.c (set_decl_namespace): lookup_qualified_name failure
1039 is error_mark_node rather than NULL_TREE.
1040 * pt.c (check_explicit_specialization): Likewise.
1041
1042 PR c++/31941
1043 * error.c (resolve_virtual_fun_from_obj_type_ref): Handle
1044 TARGET_VTABLE_USES_DESCRIPTORS targets properly.
1045
1046 2007-08-22 Jason Merrill <jason@redhat.com>
1047
1048 PR c++/29365
1049 * pt.c (outermost_tinst_level): New function.
1050 * lex.c (in_main_input_context): New function.
1051 * cp-tree.h: Declare it.
1052 * decl2.c (constrain_class_visibility): Use it to avoid warning
1053 about uses of the anonymous namespace in the main input file.
1054
1055 2007-08-21 Jakub Jelinek <jakub@redhat.com>
1056
1057 * init.c (build_new_1): Use get_target_expr instead of save_expr.
1058
1059 2007-08-20 Pawel Sikora <pluto@pld-linux.org>
1060
1061 PR c++/7302
1062 * class.c (finish_struct_1): Warn when a class has virtual
1063 functions and accessible non-virtual destructor.
1064
1065 2007-08-20 Richard Guenther <rguenther@suse.de>
1066
1067 PR c++/22369
1068 PR c++/22451
1069 * call.c (build_new_method_call): Convert initializer to
1070 the basetype.
1071 * init.c (build_aggr_init): Do not fiddle with types.
1072 (build_vec_delete_1): Use correct type for POINTER_PLUS_EXPR.
1073 * except.c (build_throw): Do not drop qualifiers for the
1074 pointer type.
1075 * typeck.c (get_member_function_from_ptrfunc): Do not
1076 fiddle with types, instead convert.
1077 (build_ptrmemfunc1): Convert to the target type for
1078 initialization.
1079 (gfc_trans_allocate): Convert result to target type.
1080 * cp-objcp-common.c (cxx_get_alias_set): Pointers to
1081 pointer-to-member structures shall have alias set zero as well.
1082
1083 2007-08-20 Richard Guenther <rguenther@suse.de>
1084
1085 * cp-objcp-common.h (LANG_HOOKS_TREE_INLINING_AUTO_VAR_IN_FN_P):
1086 Remove.
1087 * cp-tree.h (cp_auto_var_in_fn_p): Remove.
1088 (nonstatic_local_decl_p): Likewise.
1089 * tree.c (cp_auto_var_in_fn_p): Remove.
1090 * decl.c (nonstatic_local_decl_p): Remove.
1091
1092 2007-08-20 Richard Guenther <rguenther@suse.de>
1093
1094 * cp-objcp-common.h (LANG_HOOKS_TREE_INLINING_WALK_SUBTREES):
1095 Remove define.
1096 * tree.h (cp_walk_tree): New define to walk_tree_1 with
1097 cp_walk_subtrees lh parameter.
1098 (cp_walk_tree_without_duplicates): New define to
1099 walk_tree_without_duplicates_1 with cp_walk_subtrees lh parameter.
1100 * tree.c (count_trees): Call
1101 cp_walk_tree_without_duplicates.
1102 (verify_stmt_tree): Call cp_walk_tree.
1103 (break_out_target_exprs): Likewise.
1104 (WALK_SUBTREE): Likewise.
1105 * cp-gimplify.c (cp_genericize): Likewise.
1106 * cp-pt.c (find_parameter_packs_r): Likewise.
1107 (uses_parameter_packs): Likewise.
1108 (make_pack_expansion): Likewise.
1109 (check_for_bare_parameter_packs): Likewise.
1110 (for_each_template_parm): Likewise.
1111 * decl.c (check_default_argument): Call
1112 cp_walk_tree_without_duplicates.
1113 * except.c (build_throw): Likewise.
1114 * decl2.c (type_visibility): Likewise.
1115 * semantics.c (expand_or_defer_fn): Likewise.
1116 (finalize_nrv): Call cp_walk_tree.
1117
1118 2007-08-20 Jakub Jelinek <jakub@redhat.com>
1119
1120 PR c++/33025
1121 * init.c (build_new_1): Rename placement_var variable to placement_expr.
1122 Initialize it with save_expr rather than get_temp_regvar.
1123
1124 2007-08-17 Andrew Pinski <andrew_pinski@playstation.sony.com>
1125
1126 PR c++/28989
1127 * tree.c (lvalue_p_1 <case SAVE_EXPR>): SAVE_EXPRs are never
1128 lvalues.
1129
1130 2007-08-17 Ollie Wild <aaw@google.com>
1131
1132 PR c++/31749
1133 * name-lookup.c (do_nonmember_using_decl): Shift implicit type
1134 declarations into appropriate slots for comparison. Fix type
1135 comparison.
1136
1137 2007-08-17 Paolo Carlini <pcarlini@suse.de>
1138
1139 PR c++/32112
1140 * error.c (dump_decl): Deal with UNBOUND_CLASS_TEMPLATE.
1141 * cxx-pretty-print.c (pp_cxx_unqualified_id): Likewise.
1142
1143 2007-08-17 Paolo Carlini <pcarlini@suse.de>
1144
1145 PR c++/32870
1146 * parser.c (cp_parser_class_head): Improve error message.
1147
1148 2007-08-16 Seongbae Park <seongbae.park@gmail.com>
1149
1150 * pt.c (instantiate_decl): Set input_location
1151 for the function end.
1152
1153 2007-08-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1154
1155 * cp-objcp-common.c (cxx_warn_unused_global_decl, cp_expr_size):
1156 Constify.
1157 * cp-tree.h (local_variable_p, nonstatic_local_decl_p,
1158 class_tmpl_impl_spec_p, cp_auto_var_in_fn_p, cp_type_quals,
1159 cxx_incomplete_type_diagnostic, cxx_incomplete_type_error,
1160 cxx_warn_unused_global_decl, cp_expr_size): Likewise.
1161 * decl.c (local_variable_p, nonstatic_local_decl_p): Likewise.
1162 * tree.c (class_tmpl_impl_spec_p, cp_auto_var_in_fn_p): Likewise.
1163 * typeck.c (cp_type_quals): Likewise.
1164 * typeck2.c (cxx_incomplete_type_diagnostic,
1165 cxx_incomplete_type_error): Likewise.
1166
1167 2007-08-16 Paolo Carlini <pcarlini@suse.de>
1168
1169 PR c++/31132
1170 * pt.c (tsubst_friend_function): When check_classfn
1171 returns error_mark_node likewise return it.
1172
1173 2007-08-15 Jakub Jelinek <jakub@redhat.com>
1174
1175 PR c++/32992
1176 * typeck.c (check_return_expr): Don't NRV optimize vars in
1177 anonymous unions.
1178 * decl.c (finish_function): Comment fix.
1179
1180 2007-08-15 Paolo Carlini <pcarlini@suse.de>
1181
1182 PR c++/33035
1183 * pt.c (push_template_decl_real): Depending on TYPE_P
1184 use either TYPE_CONTEXT or DECL_CONTEXT.
1185
1186 2007-08-14 Mark Mitchell <mark@codesourcery.com>
1187
1188 * semantics.c (finish_omp_clauses): Strip a NOP_EXPR if
1189 constructors and destructors return this.
1190
1191 2007-08-14 Paolo Carlini <pcarlini@suse.de>
1192
1193 PR c++/27211
1194 * decl2.c (check_classfn): Return error_mark_node in case of error;
1195 in that case, do not call add_method.
1196 * decl.c (start_decl): Deal with check_classfn returning
1197 error_mark_node.
1198 (grokfndecl): Likewise.
1199 * pt.c (tsubst_friend_function): Likewise.
1200
1201 2007-08-14 Andrew Pinski <pinskia@gmail.com>
1202
1203 PR c++/30428
1204 * typeck.c (build_binary_op): Disallow vector float types with
1205 BIT_IOR_EXPR, BIT_AND_EXPR, and BIT_XOR_EXPR.
1206
1207 2007-08-11 Ian Lance Taylor <iant@google.com>
1208
1209 * cp-objcp-common.c (cxx_get_alias_set): Change return type to
1210 alias_set_type.
1211 * cp/cp-tree.h (cxx_get_alias_set): Update declaration.
1212
1213 2007-08-10 Ollie Wild <aaw@google.com>
1214
1215 * name-lookup.c (do_nonmember_using_decl): Print an error for ambiguous
1216 type lookups.
1217 (ambiguous_decl): Construct tree of ambiguous types. Remove extaneous
1218 function parameter.
1219 (unqualified_namespace_lookup): Fix ambiguous_decl call.
1220 (lookup_using_namespace): Fix ambiguous_decl call.
1221 (qualified_lookup_using_namespace): Fix ambiguous_decl call.
1222
1223 2007-08-10 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1224
1225 * call.c (name_as_c_string): Use CONST_CAST.
1226 * decl.c (build_decl): Likewise.
1227 * parser.c (cp_parser_string_literal): Likewise.
1228
1229 2007-08-10 Paolo Carlini <pcarlini@suse.de>
1230
1231 PR c++/17763
1232 * error.c (dump_expr): Consistently use the *_cxx_*
1233 variants of the pretty-print functions.
1234
1235 2007-08-10 Paolo Carlini <pcarlini@suse.de>
1236
1237 PR c++/22256
1238 * decl.c (check_special_function_return_type): Just error
1239 on return type specified for conversion operator.
1240
1241 2007-08-09 Daniel Berlin <dberlin@dberlin.org>
1242
1243 * typeck2.c (readonly_error): Handle general expressions.
1244 * error.c (dump_expr): Handle POINTER_PLUS_EXPR
1245
1246 2007-08-06 Dan Hipschman <dsh@google.com>
1247
1248 * method.c (use_thunk): Use DECL_NAME instead of DECL_RTL to
1249 access function name.
1250
1251 2007-08-04 Alfred Minarik <a.minarik@aon.at>
1252
1253 PR pch/13676
1254 * lang-specs.h: Add .hp, .hxx, .hpp, .h, .HPP, .tcc as c++ header.
1255 * g++spec.c (lang_specific_driver): Check them.
1256
1257 2007-08-06 Paolo Carlini <pcarlini@suse.de>
1258
1259 PR c++/19532
1260 * pt.c (inline_needs_template_parms): Fix comment; change return type
1261 to bool.
1262
1263 2007-08-05 Volker Reichelt <v.reichelt@netcologne.de>
1264
1265 Revert:
1266 2007-03-26 Dirk Mueller <dmueller@suse.de>
1267
1268 * parser.c (cp_parser_member_declaration): Pedwarn
1269 about stray semicolons after member declarations.
1270
1271 2007-08-02 Lee Millward <lee.millward@gmail.com>
1272
1273 PR c++/30849
1274 PR c++/30850
1275 PR c++/30851
1276 * parser.c (cp_parser_asm_definition): Detect and discard asm
1277 statements with invalid inputs or outputs.
1278 (cp_parser_asm_operand_list): Return error mark node if any
1279 of the operands are invalid. Adjust documentation.
1280
1281 2007-08-02 Nick Clifton <nickc@redhat.com>
1282
1283 * typeck.c: Change copyright header to refer to version 3 of the
1284 GNU General Public License and to point readers at the COPYING3
1285 file and the FSF's license web page.
1286 * optimize.c, lang-specs.h, init.c, class.c, repo.c, decl.c,
1287 config-lang.in, cp-tree.def, call.c, decl.h, ptree.c,
1288 Make-lang.in, method.c, rtti.c, cp-objcp-common.c, g++spec.c,
1289 cp-objcp-common.h, except.c, error.c, operators.def, cvt.c,
1290 tree.c, mangle.c, cp-tree.h, dump.c, search.c, friend.c, expr.c,
1291 cp-gimplify.c, cxx-pretty-print.c, cp-lang.c, typeck2.c, pt.c,
1292 cxx-pretty-print.h, semantics.c, name-lookup.c, lex.c, decl2.c,
1293 name-lookup.h, parser.c: Likewise.
1294
1295 2007-08-01 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1296
1297 PR middle-end/32668
1298 * call.c (magic_varargs_p): Honor the "type generic" attribute.
1299
1300 2007-07-30 Paolo Carlini <pcarlini@suse.de>
1301
1302 PR c++/32108
1303 * semantics.c (finish_label_stmt): Reject the __label__
1304 extension outside function scopes.
1305
1306 2007-07-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1307
1308 * parser.c (eof_token): Un-constify.
1309 (cp_lexer_new_main, cp_lexer_new_from_tokens, VEC_alloc,
1310 cp_lexer_consume_token, cp_lexer_purge_token): Remove spurious
1311 casts.
1312
1313 2007-07-28 Kazu Hirata <kazu@codesourcery.com>
1314
1315 * pt.c, tree.c, typeck2.c: Fix comment typos.
1316
1317 2007-07-28 Simon Martin <simartin@users.sourceforge.net>
1318 Mark Mitchell <mark@codesourcery.com>
1319
1320 PR c++/30917
1321 * name-lookup.c (lookup_name_real): Non namespace-scope bindings can be
1322 hidden due to friend declarations in local classes.
1323
1324 2007-07-27 Douglas Gregor <doug.gregor@gmail.com>
1325
1326 * typeck.c (structural_comptypes): Compare DECLTYPE_TYPE nodes.
1327 * cp-tree.def (DECLTYPE_TYPE): New.
1328 * error.c (dump_type): Dump DECLTYPE_TYPE nodes.
1329 (dump_type_prefix): Ditto.
1330 (dump_type_suffix): Ditto.
1331 * tree.c (DECLTYPE_TYPE): Walk DECLTYPE_TYPE nodes.
1332 * mangle.c (write_type): Handle DECLTYPE_TYPE.
1333 * cp-tree.h (IS_AGGR_TYPE): DECLTYPE_TYPE nodes can be aggregate
1334 types.
1335 (DECLTYPE_TYPE_EXPR): New.
1336 (DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P): New.
1337 (finish_declared_type): Declare.
1338 * cxx-pretty-print.c (pp_cxx_type_specifier_seq): Print
1339 DECLTYPE_TYPE nodes.
1340 (pp_cxx_type_id): Ditto.
1341 * pt.c (for_each_template_parm_r): Walk DECLTYPE_TYPE children.
1342 (tsubst): Substitute into a DECLTYPE_TYPE node.
1343 (tsubst_copy): Ditto.
1344 (unify): Cannot deduce anything from TYPEOF_TYPE or DECLTYPE_TYPE
1345 nodes.
1346 (dependent_type_p_r): DECLTYPE_TYPE types are always dependent.
1347 * semantics.c (finish_typeof): TYPEOF_TYPE types need to use
1348 structural equality (because we can't hash the expressions).
1349 (finish_declared_type): New.
1350 * lex.c (reswords): Add "decltype" keyword.
1351 * parser.c cp_lexer_next_token_is_decl_specifier_keyword
1352 (cp_parser_postfix_expression): Add member_access_only_p to
1353 restrict postfix expression to member access expressions.
1354 (cp_parser_unary_expression): Update call to
1355 cp_parser_postfix_expression to reflect new parameter.
1356 (cp_parser_declared_type): New.
1357 (cp_parser_simple_type_specifier): Parse decltype types.
1358
1359 2007-07-27 Mark Mitchell <mark@codesourcery.com>
1360
1361 PR c++/32346
1362 * call.c (convert_for_arg_passing): Only widen bitfields to their
1363 declared types if necessary.
1364
1365 2007-07-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1366
1367 * parser.c (cp_parser_string_literal, cp_parser_sizeof_operand):
1368 Constify.
1369
1370 2007-07-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1371
1372 * decl.c (typename_hash, typename_compare): Constify.
1373 * mangle.c (hash_type, compare_type): Likewise.
1374 * pt.c (eq_local_specializations, hash_local_specialization):
1375 Likewise.
1376 * tree.c (cplus_array_hash, cplus_array_compare, list_hash_eq,
1377 list_hash): Likewise.
1378 * typeck2.c (pat_compare): Likewise.
1379
1380 2007-07-24 Nathan Sidwell <nathan@codesourcery.com>
1381
1382 * method.c (implicitly_declare_fn): Increase alignment if member
1383 function pointer format requires it.
1384
1385 2007-07-24 Paolo Carlini <pcarlini@suse.de>
1386
1387 PR c++/29001
1388 * typeck.c (check_return_expr): Do not pass a null argument
1389 to null_ptr_cst_p.
1390
1391 2007-07-24 Paolo Carlini <pcarlini@suse.de>
1392
1393 PR c++/32561
1394 * decl.c (redeclaration_error_message): Call DECL_ANON_UNION_VAR_P
1395 only on VAR_DECL.
1396
1397 2007-07-22 Nathan Sidwell <nathan@codesourcery.com>
1398
1399 PR c++/32839
1400 * typeck.c (convert_arguments): Only use default args if we have
1401 a function decl.
1402
1403 PR c++/30818
1404 * typeck.c (structural_comptypes): No need to check
1405 resolve_typename_type return value here.
1406 * cp-tree.h (TYPENAME_IS_RESOLVING_P): New.
1407 * pt.c (resolve_typename_type): Follow typename typedefs. Return
1408 original type rather than error_mark_node in case of failure.
1409 * parser.c (cp_parser_nested_name_specifier_opt): Adjust
1410 resolve_typename_type result check.
1411 (cp_parser_direct_declarator, cp_parser_head,
1412 cp_parser_constructor_declarator_p): Likewise.
1413
1414 2007-07-12 Kazu Hirata <kazu@codesourcery.com>
1415
1416 * pt.c (template_parms_variadic_p): Remove.
1417 * cp-tree.h: Remove the prototype for template_parms_variadic_p.
1418
1419 2007-07-12 Jakub Jelinek <jakub@redhat.com>
1420
1421 PR c++/30854
1422 * error.c (dump_expr) <case AGGR_INIT_EXPR>: Pass true as last
1423 argument to dump_aggr_init_expr_args instead of false.
1424
1425 2007-07-11 Douglas Gregor <doug.gregor@gmail.com>
1426
1427 * typeck.c (comptypes): When USE_CANONICAL_TYPES, use the
1428 canonical types; otherwise, fall back to structural type
1429 comparisons. If ENABLE_CHECKING and USE_CANONICAL_TYPES, give an
1430 internal compiler error if the canonical types are wrong.
1431
1432 2007-07-11 Paolo Carlini <pcarlini@suse.de>
1433
1434 PR c++/32560
1435 * parser.c (cp_parser_make_indirect_declarator): When the
1436 the code argument is ERROR_MARK return cp_error_declarator.
1437
1438 2007-07-09 Geoffrey Keating <geoffk@apple.com>
1439
1440 PR 32617
1441 * decl.c (cxx_init_decl_processing): Don't set
1442 force_align_functions_log.
1443 (grokfndecl): Honour ptrmemfunc_vbit_in_pfn.
1444 * typeck.c (cxx_alignof_expr): When alignof is used on a plain
1445 FUNCTION_DECL, return its alignment.
1446
1447 2007-07-09 Richard Guenther <rguenther@suse.de>
1448
1449 * decl.c (start_preparsed_function): Do not promote return type.
1450
1451 2007-07-08 Paolo Carlini <pcarlini@suse.de>
1452
1453 PR c++/30535
1454 * pt.c (unify): Never pass error_mark_node to template_decl_level.
1455
1456 2007-07-07 Mark Mitchell <mark@codesourcery.com>
1457
1458 PR c++/32232
1459 * pt.c (resolve_overloaded_unification): Robustify. Return a
1460 bool, not an int.
1461 (type_unification_real): Adjust accordingly.
1462
1463 2007-07-06 Richard Guenther <rguenther@suse.de>
1464
1465 * init.c (build_new_1): Use the correct pointer type.
1466 * typeck2.c (build_m_component_ref): Likewise.
1467
1468 2007-07-05 Mark Mitchell <mark@codesourcery.com>
1469
1470 PR c++/32245
1471 * init.c (build_zero_init): Always build an initializer for
1472 non-static storage.
1473 * typeck2.c (build_functional_cast): Use build_zero_init.
1474
1475 PR c++/32251
1476 * init.c (build_new_1): Always pass the allocation function to
1477 build_op_delete_call.
1478 * call.c (build_op_delete_call): Handle operator delete with a
1479 variable-argument list. Do not issue an error when no matching
1480 deallocation function is available for a new operator.
1481
1482 PR c++/31992
1483 * cp-tree.h (any_value_dependent_elements_p): Declare it.
1484 * decl.c (value_dependent_init_p): New function.
1485 (cp_finish_decl): Use it.
1486 * pt.c (value_dependent_expression_p): Use
1487 any_value_dependent_elements_p.
1488 * parser.c (cp_parser_primary_expression): Add comment about
1489 treating dependent qualified names as integral
1490 constant-expressions.
1491
1492 2007-07-04 Douglas Gregor <doug.gregor@gmail.com>
1493
1494 * decl.c (build_ptrmemfunc_type): Always use structural equality
1495 tests when comparing pointer-to-member-function types, because the
1496 handling of TYPE_GET_PTRMEMFUNC_TYPE currently defeats canonical
1497 types.
1498
1499 2007-07-03 Mark Mitchell <mark@codesourcery.com>
1500
1501 * init.c (build_new): Tweak comment.
1502
1503 2007-06-29 Dave Brolley <brolley@redhat.com>
1504
1505 PR c++/31743
1506 * parser.c (cp_parser_new_type_id): Don't reduce a named array
1507 type to its base type and number of elements here.
1508 * init.c (build_new): Call complete_type_or_else to ensure that the
1509 type is complete and to issue a diagnostic if it is not.
1510 (build_new_1): Don't call complete_type_or_else here.
1511
1512 2007-07-03 Richard Guenther <rguenther@suse.de>
1513
1514 PR c++/32609
1515 * class.c (fixed_type_or_null): Re-lookup the hashtable slot
1516 after recursing.
1517
1518 2007-07-02 Simon Baldwin <simonb@google.com>
1519
1520 * parser.c (cp_parser_elaborated_type_specifier): Added a warning
1521 for inner-style nested forward declarations that don't declare
1522 anything useful.
1523
1524 2007-07-02 Jakub Jelinek <jakub@redhat.com>
1525
1526 PR c++/31748
1527 * semantics.c (finish_omp_clauses): Use %qD instead of %qE for
1528 DECL_P in not a variable and appears more than once error messages.
1529
1530 2007-07-01 Ollie Wild <aaw@google.com>
1531
1532 * name-lookup.c (ambiguous_decl): Fix case when new->value is hidden.
1533 (select_decl): Remove function.
1534 (unqualified_namespace_lookup): Populate binding by calling
1535 ambiguous_decl. Remove select_decl call.
1536 (lookup_qualified_name): Remove select_decl call.
1537 * decl.c (lookup_and_check_tag): Check for ambiguous references.
1538 * parser.c (cp_parser_elaborated_type_specifier): Skip redundant error
1539 generation when name lookup is ambiguous.
1540
1541 2007-06-29 Douglas Gregor <doug.gregor@gmail.com>
1542
1543 PR c++/31724
1544 * init.c (build_new_1): Use structural equality on the copy of the
1545 array type.
1546
1547 2007-06-28 Geoffrey Keating <geoffk@apple.com>
1548
1549 * decl2.c (determine_visibility): Implement
1550 flag_visibility_ms_compat effect on type info.
1551 * decl.c (cxx_init_decl_processing): Implement
1552 global effect of flag_visibility_ms_compat.
1553
1554 2007-06-28 Geoffrey Keating <geoffk@apple.com>
1555
1556 * decl2.c (start_objects): Mark constructor-running function
1557 as artificial.
1558
1559 2007-06-26 Simon Martin <simartin@users.sourceforge.net>
1560
1561 PR c++/32111
1562 * decl.c (grokdeclarator): Reset friendp for member functions declared
1563 friend of their own class.
1564
1565 2007-06-23 Mark Mitchell <mark@codesourcery.com>
1566
1567 * decl2.c (determine_visibility): Don't look for dllexport here.
1568 (determine_visibility_from_class): Tidy.
1569
1570 2007-06-18 Simon Baldwin <simonb@google.com>
1571
1572 PR c++/31923
1573 * parser.c (cp_parser_single_declaration): Added check for storage
1574 class other than sc_none in parsed declaration, and a flag to indicate
1575 if the call is part of an explicit template specialization parse.
1576 * (cp_parser_explicit_specialization): Specialization check flag added
1577 to call to cp_parser_single_declaration(), set true.
1578 * (cp_parser_template_declaration_after_export): Specialization check
1579 flag added to call to cp_parser_single_declaration(), set false.
1580 * pt.c (check_explicit_specialization): Added code to copy visiblity
1581 and linkage from the templated function to the explicit specialization.
1582
1583 2007-06-15 Andrew Pinski <andrew_pinski@playstation.sony.com>
1584
1585 * typeck.c (build_binary_op): For templates build the
1586 expression in pieces to avoid the assert in build2_stat.
1587 (get_member_function_from_ptrfunc):
1588 Change over to using POINTER_PLUS_EXPR and convert
1589 the second operand to sizetype.
1590 * typeck2.c (build_m_component_ref): Likewise.
1591 * init.c (expand_virtual_init): Create a POINTER_PLUS_EXPR
1592 instead of PLUS_EXPR for pointers.
1593 (build_new_1): Likewise.
1594 (build_vec_delete_1): Likewise.
1595 (build_vec_delete): Likewise.
1596 * class.c (build_base_path): Likewise.
1597 (build_base_path): Likewise.
1598 (convert_to_base_statically): Likewise.
1599 (fixed_type_or_null): Handle POINTER_PLUS_EXPR.
1600 (get_vtbl_decl_for_binfo): Handle POINTER_PLUS_EXPR
1601 instead of PLUS_EXPR.
1602 (dfs_accumulate_vtbl_inits): Create a POINTER_PLUS_EXPR
1603 instead of PLUS_EXPR for pointers.
1604 * call.c (build_special_member_call): Likewise.
1605 * rtti.c (build_headof): Likewise.
1606 Use sizetype instead of ptrdiff_type_node.
1607 (tinfo_base_init): Create a POINTER_PLUS_EXPR
1608 instead of PLUS_EXPR for pointers.
1609 * except.c (expand_start_catch_block): Do a
1610 NEGATIVE and then a POINTER_PLUS_EXPR instead
1611 of a MINUS_EXPR.
1612 * cp-gimplify.c (cxx_omp_clause_apply_fn): Convert
1613 PLUS_EXPR on pointer types over to use
1614 POINTER_PLUS_EXPR and remove the conversion
1615 to the pointer types.
1616 * method.c (thunk_adjust): Use POINTER_PLUS_EXPR for
1617 adding to a pointer type. Use size_int instead of
1618 ssize_int. Convert the index to sizetype before
1619 adding it to the pointer.
1620
1621 2007-06-15 Mark Mitchell <mark@codesourcery.com>
1622
1623 * cp-tree.h (DECL_VAR_MARKED_P): Remove.
1624 (DECL_ANON_UNION_VAR_P): New macro.
1625 * class.c (fixed_type_or_null): Tidy. Use a hash table, rather
1626 than DECL_VAR_MARKED_P, to keep track of which variables we have
1627 seen.
1628 * decl.c (redeclaration_error_message): Complain about redeclaring
1629 anonymous union members at namespace scope.
1630 * decl2.c (build_anon_union_vars): Set DECL_ANON_UNION_VAR_P.
1631
1632 2007-06-14 Geoff Keating <geoffk@apple.com>
1633
1634 * decl2.c (determine_visibility): Ensure that functions with
1635 hidden types as parameters are hidden.
1636
1637 PR 31093
1638 * decl2.c (determine_visibility): Remove duplicate code for
1639 handling type info.
1640
1641 2007-06-12 Ian Lance Taylor <iant@google.com>
1642
1643 PR libstdc++/29286
1644 * init.c (avoid_placement_new_aliasing): New static function.
1645 (build_new_1): Call it.
1646
1647 2007-06-11 Rafael Avila de Espindola <espindola@google.com>
1648
1649 * cp-objcp-common.h (LANG_HOOKS_SIGNED_TYPE): Remove.
1650 (LANG_HOOKS_SIGNED_OR_UNSIGNED_TYPE): Remove.
1651
1652 2007-06-08 Jakub Jelinek <jakub@redhat.com>
1653
1654 PR c++/32177
1655 * semantics.c (finish_omp_for): Call fold_build_cleanup_point_expr
1656 on init, the non-decl cond operand and increment value.
1657
1658 2007-06-07 Simon Martin <simartin@users.sourceforge.net>
1659
1660 PR c++/30759
1661 * decl.c (check_initializer): Report an error when a brace enclosed
1662 initializer is used for a non-aggregate type in C++98.
1663 (redeclaration_error_message): Rewrote flag_cpp0x in terms of
1664 cxx_dialect.
1665 (grokdeclarator): Likewise.
1666 (move_fn_p): Likewise.
1667 * typeck.c (check_return_expr): Likewise.
1668 * call.c (reference_binding): Likewise.
1669 * error.c (cp_cpp_error): Likewise.
1670 * pt.c (check_default_tmpl_args): Likewise.
1671 (tsubst): Likewise.
1672 * lex.c (init_reswords): Likewise.
1673 * parser.c (p_parser_primary_expression): Likewise.
1674 (TOKEN_PRECEDENCE): Likewise.
1675 (cp_parser_init_declarator): Likewise.
1676 (cp_parser_ptr_operator): Likewise.
1677 (cp_parser_parameter_declaration): Likewise.
1678 (cp_parser_enclosed_template_argument_list): Likewise.
1679 (cp_parser_skip_to_end_of_template_parameter_list): Likewise.
1680 (cp_parser_next_token_ends_template_argument_p): Likewise.
1681
1682 2007-06-04 Simon Baldwin <simonb@google.com>
1683
1684 * decl.c (grokdeclarator): Readability change. Moved case labels
1685 into direct switch statement scope.
1686
1687 2007-06-04 Paolo Carlini <pcarlini@suse.de>
1688
1689 * call.c (convert_like_real): Remove pointless code.
1690
1691 2007-05-31 Mark Mitchell <mark@codesourcery.com>
1692
1693 * decl.c (get_atexit_fn_ptr_type): New function.
1694 (get_atexit_node): Use it.
1695 (start_cleanup_fn): Likewise.
1696 (register_dtor_fn): Use the object's destructor, instead of a
1697 separate cleanup function, where possible.
1698 * cp-tree.h (CPTI_ATEXIT_FN_PTR_TYPE): New enumerator.
1699 (atexit_fn_ptr_type_node): New macro.
1700 * decl2.c (build_cleanup): Use build_address.
1701
1702 2007-05-31 Daniel Berlin <dberlin@dberlin.org>
1703
1704 * typeck.c (build_binary_op): Include types in error.
1705
1706 2007-05-31 Jakub Jelinek <jakub@redhat.com>
1707
1708 PR c++/31806
1709 * decl.c (cp_finish_decl): Also clear was_readonly if a static var
1710 needs runtime initialization.
1711
1712 2007-05-31 Paolo Carlini <pcarlini@suse.de>
1713
1714 PR c++/32158
1715 * semantics.c (finish_trait_expr): Complete the types.
1716
1717 2007-05-30 Russell Yanofsky <russ@yanofsky.org>
1718 Douglas Gregor <doug.gregor@gmail.com>
1719 Pedro Lamarao <pedro.lamarao@mndfck.org>
1720 Howard Hinnant <howard.hinnant@gmail.com>
1721
1722 PR c++/7412
1723 PR c++/29939
1724 * typeck.c (comptypes): Don't consider rvalue and lvalue
1725 reference types to be equivalent.
1726 (check_return_expr): Move from certain lvalues when returning
1727 them.
1728 * decl.c (grokdeclarator): Implement reference collapsing.
1729 (copy_fn_p): Don't consider constructors taking rvalue references
1730 to be copy constructors.
1731 (move_fn_p): New.
1732 * call.c (conversion): New "rvaluedness_matches_p" member.
1733 (convert_class_to_reference): Require reference type as first
1734 parameter instead of base type.
1735 (reference_binding): Add logic to handle rvalue references.
1736 (implicit_conversion): Update inaccurate comment.
1737 (convert_like_real): Disable creation of temporaries that are
1738 impossible to initialize for types with move constructors.
1739 (build_over_call): Elide move constructors when possible.
1740 (maybe_handle_implicit_object): Set "rvaluedness_matches_p".
1741 (maybe_handle_ref_bind): Return conversion instead of type node.
1742 (compare_ics): Add logic to use "rvaluedness_matches_p" values to
1743 determine preferred conversion sequences.
1744 * cp-tree.h (TYPE_REF_IS_RVALUE): New.
1745 (LOOKUP_PREFER_RVALUE): New.
1746 (DECL_MOVE_CONSTRUCTOR_P): New.
1747 (struct cp_declarator): Add "reference" member for reference
1748 types, with new "rvalue_ref" flag.
1749 (cp_build_reference_type): Declare.
1750 (move_fn_p): Declare.
1751 * error.c (dump_type_prefix): Format rvalue reference types
1752 correctly in error messages.
1753 * except.c (build_throw): Move from certain lvalues when
1754 throwing.
1755 * mangle.c (write_type): Mangle rvalue references differently
1756 than regular references.
1757 * parser.c (make_reference_declarator): Add boolean parameter for
1758 rvalue references.
1759 (cp_parser_make_indirect_declarator): New.
1760 (cp_parser_new_declarator_opt): Call
1761 cp_parser_make_indirect_declarator.
1762 (cp_parser_conversion_declarator_opt): Ditto.
1763 (cp_parser_declarator): Ditto.
1764 (cp_parser_ptr_operator): Parse "&&" tokens into rvalue reference
1765 declarators.
1766 * pt.c (tsubst): Implement reference collapsing.
1767 (maybe_adjust_types_for_deduction): Implement special template
1768 parameter deduction rule for rvalue references.
1769 (type_unification_real): Update calls to
1770 maybe_adjust_types_for_deduction.
1771 (try_one_overload): Ditto.
1772 (unify_pack_expansion): Ditto.
1773 * tree.c (lvalue_p_1): Handle rvalue reference types.
1774 (cp_build_reference_type): New.
1775
1776 2007-05-30 Jakub Jelinek <jakub@redhat.com>
1777
1778 PR c++/31809
1779 * decl.c (cp_finish_decl): Clear TREE_READONLY flag on TREE_STATIC
1780 variables that need runtime initialization.
1781
1782 2007-05-28 Andrew Pinski <Andrew_pinski@playstation.sony.com>
1783
1784 PR c++/31339
1785 * typeck.c (build_unary_op <case PREINCREMENT_EXPR,
1786 case POSTINCREMENT_EXPR, case PREDECREMENT_EXPR,
1787 case POSTDECREMENT_EXPR>): Return the error_mark_node
1788 if either the real or imaginary parts would an
1789 error_mark_node.
1790
1791 2007-05-25 Simon Martin <simartin@users.sourceforge.net>
1792 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
1793
1794 PR c++/31745
1795 * parser.c (cp_parser_skip_to_closing_brace): Return true if the next
1796 token is a closing brace, false if there are no tokens left.
1797 (cp_parser_namespace_alias_definition): Only consume the next token if
1798 it is a closing brace.
1799
1800 * parser.c (cp_parser_class_specifier): Likewise.
1801
1802 2007-05-25 H.J. Lu <hongjiu.lu@intel.com>
1803
1804 * semantics.c (finish_member_declaration): Fix a typo in the
1805 last checkin.
1806
1807 2007-05-25 Douglas Gregor <doug.gregor@gmail.com>
1808
1809 PR c++/31431
1810 PR c++/31432
1811 PR c++/31434
1812 PR c++/31435
1813 PR c++/31437
1814 PR c++/31438
1815 PR c++/31442
1816 PR c++/31443
1817 PR c++/31444
1818 PR c++/31445
1819 * error.c (dump_type): Dump TYPE_ARGUMENT_PACK nodes.
1820 * cp-tree.h (check_for_bare_parameter_packs): Returns bool.
1821 * pt.c (check_for_bare_parameter_packs): Return bool indicated
1822 whether everything was okay. Fix indentation.
1823 (push_template_decl_real): Check for bare parameter packs in
1824 function parameters; where errors occur, mark the parameter types
1825 with ERROR_MARK_NODEs to avert ICEs.
1826 (coerce_template_parameter_pack): New.
1827 (coerce_template_parms): Moved parameter pack coercion into
1828 coerce_template_parameter_pack, and permit it anywhere in the
1829 template parameter list (not just at the end). Parameter and
1830 argument indices can vary (somewhat) separately now, so add
1831 PARM_IDX and ARG_IDX.
1832 (fn_type_unification): Don't set an argument pack as incomplete if
1833 no argument pack was deduced.
1834 (type_unification_real): If a type parameter is a parameter pack
1835 and has not otherwise been deduced, it will be deduced to an empty
1836 parameter pack.
1837 (more_specialized_fn): Use the actual lengths of the argument
1838 lists when comparing against expansions.
1839 * semantics.c (finish_member_declaration): If a field's type has
1840 bare parameter packs, error and set its type to ERROR_MARK_NODE.
1841
1842 2007-05-24 Danny Smith <dannysmith@users.sourceforge.net>
1843
1844 PR target/27067
1845 * mangle.c (mangle_decl): Call targetm.mangle_decl_assembler_name.
1846
1847 2007-05-22 Ollie Wild <aaw@google.com>
1848
1849 * name-lookup.c (ambiguous_decl): Adds check for hidden types.
1850 (unqualified_namespace_lookup): Adds check for hidden types.
1851
1852 2007-05-22 Ollie Wild <aaw@google.com>
1853
1854 * decl.c (duplicate_decls): Verify namespace names are unique.
1855
1856 2007-05-21 Mark Mitchell <mark@codesourcery.com>
1857
1858 * decl.c (cxx_maybe_build_cleanup): Handle
1859 __attribute__((cleanup)).
1860
1861 2007-05-19 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
1862
1863 * cvt.c (cp_convert_and_check): Don't check warnings if the
1864 conversion failed.
1865
1866 2007-05-18 Geoffrey Keating <geoffk@apple.com>
1867
1868 * mangle.c (write_real_cst): Use 'unsigned long' for %lx.
1869
1870 2007-05-14 Paolo Carlini <pcarlini@suse.de>
1871
1872 PR c++/29928
1873 * rtti.c (get_tinfo_decl_dynamic, get_typeid): Try to complete the
1874 type only if is a class type (5.2.8/4).
1875
1876 2007-05-14 Rafael Avila de Espindola <espindola@google.com>
1877
1878 * cp-objcp-common.h (LANG_HOOKS_UNSIGNED_TYPE): Remove.
1879 * decl.c (grokdeclarator): Use unsigned_type_for instead of
1880 c_common_unsigned_type.
1881
1882 2007-05-11 Silvius Rus <rus@google.com>
1883
1884 * cp/typeck.c (build_indirect_ref): Add call to
1885 strict_aliasing_warning.
1886 (build_reinterpret_cast_1): Condition call to
1887 strict_aliasing_warning.
1888
1889 2007-05-11 Jan Hubicka <jh@suse.cz>
1890
1891 * semantics.c (expand_or_defer_fn): Do not call c_record_cdtor_fn.
1892 * decl2.c (start_objects): ctors and dtors are no longer public.
1893 (cp_write_global_declarations): Do not call c_build_cdtor_fns.
1894
1895 2007-05-07 Andrew Pinski <andrew_pinski@playstation.sony.com>
1896
1897 * typeck.c (build_unary_op): Remove code that used to
1898 handle non lvalue increments/decrements.
1899
1900 2007-05-07 Mike Stump <mrs@apple.com>
1901
1902 * parser.c (check_empty_body): Add.
1903 (cp_parser_iteration_statement): Add call to check_empty_body.
1904
1905 2007-05-05 Geoffrey Keating <geoffk@apple.com>
1906
1907 PR 31775
1908 * mangle.c (write_mangled_name): Mangle static variable names.
1909 (write_unqualified_name): Use local-source-name for
1910 namespace-scope static variables.
1911
1912 2007-05-04 Dirk Mueller <dmueller@suse.de>
1913
1914 * cp-tree.h (DECL_MAIN_P): only if -ffreestanding is
1915 not in effect.
1916
1917 2007-05-02 Seongbae Park <seongbae.park@gmail.com>
1918
1919 PR c++/31663
1920 * decl2.c (constrain_class_visibility):
1921 Use strip_pointer_or_array_types instead of strip_array_types.
1922
1923 2007-04-28 Andrew Pinski <andrew_pinski@playstation.sony.com>
1924
1925 PR C++/30221
1926 * decl.c (reshape_init_r): Don't reshape the first element if it
1927 is a pointer to member function.
1928
1929 2007-04-27 Simon Baldwin <simonb@google.com>
1930
1931 * decl.c (grokparms): Changed message format from %qD to %qE.
1932
1933 2007-04-27 Douglas Gregor <doug.gregor@gmail.com>
1934
1935 * error.c (maybe_warn_variadic_templates): Variadic templates are
1936 now in C++0x, so only warn about them in C++98 mode.
1937
1938 2007-04-26 Andrew Pinski <andrew_pinski@playstation.sony.com>
1939
1940 PR C++/30016
1941 * typeck.c (build_reinterpret_cast_1): Only allow conversion to
1942 integeral types from vectors types.
1943
1944 2007-04-26 Jakub Jelinek <jakub@redhat.com>
1945
1946 PR c++/31598
1947 * semantics.c (finish_omp_clauses): Don't create CP_OMP_CLAUSE_INFO
1948 for type dependent OMP_CLAUSE_DECLs.
1949
1950 2007-04-24 Mark Mitchell <mark@codesourcery.com>
1951
1952 PR c++/31338
1953 * cp-tree.h (ARITHMETIC_TYPE): Include COMPLEX_TYPE.
1954 * typeck.c (type_after_usual_arithmetic_conversions): Adjust, as
1955 COMPLEX_TYPE is now an ARITHMETIC_TYPE.
1956 * init.c (build_zero_init): Adjust, as
1957 COMPLEX_TYPE is now a SCALAR_TYPE.
1958 * typeck2.c (digest_init): Allow brace-enclosed initializers for
1959 COMPLEX_TYPE, even though that is now a SCALAR_TYPE.
1960
1961 2007-04-25 Paolo Carlini <pcarlini@suse.de>
1962
1963 * semantics.c (classtype_has_nothrow_copy_or_assign_p): Adjust
1964 per N2255; rename as classtype_has_nothrow_assign_or_copy_p.
1965 (trait_expr_value): Adjust.
1966
1967 2007-04-23 Simon Baldwin <simonb@google.com>
1968
1969 * decl.c (grokparms): Added new error for duplicate function
1970 parameters names in function prototypes, to match gcc behavior.
1971
1972 2007-04-23 Jan Hubicka <jh@suse.cz>
1973
1974 * cp/decl2.c (finish_objects): Do not call target constructor/destructor
1975 bits dirrectly.
1976
1977 2007-04-21 Andrew Pinski <andrew_pinski@playstation.sony.com>
1978
1979 * cp-tree.h (lang_tree_node): Use GENERIC_NEXT
1980 instead of checking GIMPLE_STMT_P in chain_next.
1981
1982 2007-04-17 Mark Mitchell <mark@codesourcery.com>
1983
1984 PR c++/31513
1985 * call.c (convert_for_arg_passing): Convert bitfields to their
1986 declared types.
1987
1988 2007-04-17 Simon Martin <simartin@users.sourceforge.net>
1989
1990 PR c++/31517
1991 * pt.c (value_dependent_expression_p): Handle MODOP_EXPRs.
1992
1993 2007-04-16 Seongbae Park <seongbae.park@gmail.com>
1994
1995 PR c++/29365
1996 * cp/decl2.c (constrain_class_visibility):
1997 Do not warn about the use of anonymous namespace in the main input file.
1998
1999 2007-04-15 Mark Mitchell <mark@codesourcery.com>
2000
2001 * cp-tree.h (current_template_parms): Fix typo in comment.
2002
2003 2007-04-15 Kazu Hirata <kazu@codesourcery.com>
2004
2005 * cp-tree.h, error.c: Fix comment typos.
2006
2007 2007-04-13 Jason Merrill <jason@redhat.com>
2008
2009 PR c++/31074
2010 * call.c (reference_binding): Add c_cast_p parm. If true,
2011 add quals to TO as needed to make it reference-compatible.
2012
2013 2007-04-11 Jan Hubicka <jh@suse.cz>
2014
2015 * cp/class.c (convert_to_base_statically): Fold produced tree; verify
2016 that we are not processing template_decl.
2017
2018 2007-04-09 Mark Mitchell <mark@codesourcery.com>
2019
2020 PR c++/31449
2021 * class.c (build_base_path): Ensure that the converted pointer has
2022 the same cv-qualification as the input.
2023
2024 2007-04-09 Paolo Carlini <pcarlini@suse.de>
2025
2026 * tree.c (cp_tree_equal): Deal with TRAIT_EXPR.
2027
2028 2007-04-08 Steven Bosscher <steven@gcc.gnu.org>
2029
2030 * cp-objcp-common.h (LANG_HOOKS_TREE_INLINING_ADD_PENDING_FN_DECLS):
2031 Do not set it.
2032 (LANG_HOOKS_TREE_INLINING_ANON_AGGR_TYPE_P): Do not set it.
2033 * tree.c (cp_add_pending_fn_decls): Remove.
2034 * cp-tree.h (cp_add_pending_fn_decls): Remove prototype.
2035
2036 2007-04-07 Daniel Berlin <dberlin@dberlin.org>
2037
2038 Revert change removing staticp.
2039
2040 2007-04-06 Daniel Berlin <dberlin@dberlin.org>
2041
2042 * cp-objcp-common.c (cxx_staticp): Remove.
2043 * cp-objcp-common.h (LANG_HOOKS_STATICP): Remove.
2044 * cp-tree.h (cxx_staticp):
2045
2046 2007-04-04 Danny Smith <dannysmith.users.sourceforge.net>
2047
2048 * class.c (check_for_override): Don't remove dllmport attribute
2049 of virtual methods.
2050
2051 2007-04-03 Jakub Jelinek <jakub@redhat.com>
2052
2053 PR c++/30847
2054 * typeck.c (build_modify_expr): For COND_EXPR on LHS, if RHS has void
2055 type issue error and return early.
2056
2057 2007-03-30 Jason Merrill <jason@redhat.com>
2058
2059 PR c++/31187
2060 * typeck.c (cp_type_readonly): New fn.
2061 * cp-tree.h: Declare it.
2062 * decl.c (start_decl): Set implicit DECL_THIS_STATIC here.
2063 (cp_finish_decl): Not here.
2064
2065 2007-03-31 Richard Guenther <rguenther@suse.de>
2066
2067 * optimize.c (maybe_clone_body): Replace splay-tree usage by
2068 pointer-map.
2069
2070 2007-03-31 Douglas Gregor <doug.gregor@gmail.com>
2071
2072 PR c++/31138
2073 PR c++/31140
2074 PR c++/31141
2075 * parser.c (declarator_can_be_parameter_pack): New.
2076 (cp_parser_template_parameter): Only parse the `...' if the
2077 declarator can be a parameter pack.
2078 (cp_parser_parameter_declaration): Ditto. Also, handle when TYPE
2079 is NULL.
2080 * pt.c (find_parameter_packs_r): Look into the bounds on integer
2081 types (they could be used as array bounds).
2082 (check_for_bare_parameter_packs): Deal with TEMPLATE_PARM_INDEX.
2083 (tsubst_pack_expansion): Handle failure to expand parameter
2084 packs.
2085
2086 2007-03-30 Paolo Carlini <pcarlini@suse.de>
2087
2088 PR c++/26099
2089 * cp-tree.h (enum cp_trait_kind, struct tree_trait_expr,
2090 TRAIT_EXPR_TYPE1, TRAIT_EXPR_TYPE2, TRAIT_EXPR_KIND): Add.
2091 (enum cp_tree_node_structure_enum, union lang_tree_node): Update.
2092 (CLASS_TYPE_NON_UNION_P): Add.
2093 (struct lang_type_class): Add has_complex_dflt.
2094 (TYPE_HAS_COMPLEX_DFLT, TYPE_HAS_TRIVIAL_DFLT): Add.
2095 (locate_copy, locate_ctor, locate_dtor, finish_trait_expr): Declare.
2096 * cp-tree.def: Add TRAIT_EXPR.
2097 * cp-objcp-common.c (cp_tree_size): Add TRAIT_EXPR case.
2098 * lex.c (struct resword): Add __has_nothrow_assign,
2099 __has_nothrow_constructor, __has_nothrow_copy, __has_trivial_assign,
2100 __has_trivial_constructor, __has_trivial_copy,
2101 __has_trivial_destructor, __has_virtual_destructor, __is_abstract,
2102 __is_base_of, __is_class, __is_convertible_to, __is_empty, __is_enum,
2103 __is_pod, __is_polymorphic, __is_union.
2104 * parser.c (cp_parser_primary_expression): Deal with the new RIDs.
2105 (cp_parser_trait_expr): New.
2106 * semantics.c (finish_trait_expr, trait_expr_value
2107 classtype_has_nothrow_copy_or_assign_p): New.
2108 * method.c (locate_copy, locate_ctor, locate_dtor): Do not define
2109 as static.
2110 * decl.c (cp_tree_node_structure): Add TRAIT_EXPR.
2111 * class.c (check_bases, check_field_decl, check_bases_and_members):
2112 Deal with TYPE_HAS_COMPLEX_DFLT (t) too.
2113 * pt.c (uses_template_parms, tsubst_copy_and_build,
2114 value_dependent_expression_p, type_dependent_expression_p): Deal with
2115 TRAIT_EXPR.
2116 * tree.c (cp_walk_subtrees): Deal with TRAIT_EXPR.
2117
2118 2007-03-29 Richard Guenther <rguenther@suse.de>
2119
2120 * tree.c (cp_walk_subtrees): Do not set input_location.
2121
2122 2007-03-28 Simon Martin <simartin@users.sourceforge.net>
2123
2124 PR c++/29077
2125 * decl.c (grokfndecl): Properly setup decl if it is a constructor or a
2126 destructor.
2127
2128 2007-03-28 Douglas Gregor <doug.gregor@gmail.com>
2129
2130 * parser.c (struct cp_parser): Update comment for
2131 greater_than_is_operator_p.
2132 (cp_parser_primary_expression): In C++0x mode, a cast operator can
2133 be terminated with a `>>' token when !GREATER_THAN_IS_OPERATOR_P.
2134 (TOKEN_PRECEDENCE): In C++0x mode, `>>' is treated like `>' when
2135 !GREATER_THAN_IS_OPERATOR_P.
2136 (cp_parser_binary_expression): When -Wc++0x-compat, warn about
2137 `>>' operators that will become two `>' tokens in C++0x.
2138 (cp_parser_parameter_declaration): Treat `>>' like `>' in C++0x
2139 mode, allowing it to terminate default arguments.
2140 (cp_parser_enclosed_template_argument_list): In C++0x mode, treat
2141 `>>' like two consecutive `>' tokens.
2142 (cp_parser_skip_to_end_of_template_parameter_list): Ditto.
2143 (cp_parser_next_token_ends_template_argument_p): In C++0x, `>>'
2144 ends a template argument.
2145
2146 2007-03-28 Douglas Gregor <doug.gregor@gmail.com>
2147
2148 * decl.c (redeclaration_error_message): Complain when redeclaring
2149 a friend function with default template arguments (C++0x mode only).
2150 * cp-tree.h (check_default_tmpl_args): Declare.
2151 * pt.c (check_default_tmpl_args): In C++0x mode, permit default
2152 template arguments in function templates. Add support for checking
2153 the default template arguments of friend templates.
2154 (push_template_decl_real): Fix call to check_default_tmpl_args.
2155 (type_unification_real): If a template parameter has not been
2156 deduced but provides a default template argument, substitute into
2157 that default template argument.
2158 * parser.c (cp_parser_init_declarator): When declaring (but not
2159 defining!) a function template in C++0x mode, check for default
2160 template arguments.
2161
2162 2007-03-28 Douglas Gregor <doug.gregor@gmail.com>
2163
2164 PR c++/29993
2165 * decl.c (grokdeclarator): Deal with cv-qualified function type
2166 typedefs in the same way for member and non-member functions.
2167
2168 2007-03-26 Dirk Mueller <dmueller@suse.de>
2169
2170 * parser.c (cp_parser_member_declaration): Pedwarn
2171 about stray semicolons after member declarations.
2172
2173 2007-03-26 Paolo Carlini <pcarlini@suse.de>
2174
2175 PR c++/30500
2176 * pt.c (instantiate_decl): Set in_system_header.
2177
2178 2007-03-22 Mark Mitchell <mark@codesourcery.com>
2179
2180 * cp-tree.h (current_tempalte_parms): Improve documentation.
2181 * pt.c (current_template_args): Likewise.
2182
2183 PR c++/30863
2184 * parser.c (cp_parser_parse_and_diagnose_invalid_type_name): Do
2185 not consume tokens when failing.
2186
2187 2007-03-22 Jim Wilson <wilson@specifix.com>
2188 Mark Mitchell <mark@codesourcery.com>
2189
2190 PR c++/31273
2191 * call.c (standard_conversion): Use type_decays_to. Keep FCODE
2192 consistent with FROM.
2193
2194 2007-03-22 Gabriel Dos Reis <gdr@integrable-solutions.net>
2195
2196 * error.c (dump_expr): Handle dependent names that designate types.
2197 * cxx-pretty-print.c (pp_cxx_unqualified_id): Handle TYPENAME_TYPE.
2198
2199 2007-03-17 Kazu Hirata <kazu@codesourcery.com>
2200
2201 * cp-tree.def, parser.c, pt.c: Fix comment typos.
2202
2203 2007-03-16 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
2204
2205 * cvt.c (cp_convert_and_check) : Define.
2206 * cp-tree.h (cp_convert_and_check): Declare.
2207 * call.c (convert_conversion_warnings): Rename to
2208 conversion_null_warnings. The warning for floating-point to
2209 integer is handled by convert_and_check in convert_like_real.
2210 (convert_like_real): convert_conversion_warnings was renamed as
2211 conversion_null_warnings.
2212 * typeck.c (build_binary_op): Use cp_convert_and_check to warn for
2213 overflow and changes of value during conversion.
2214
2215 2007-03-15 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
2216
2217 PR c++/30891
2218 * parser.c (cp_parser_statement): If 'namespace' is found, this
2219 only can be a namespace alias definition, so parse it now.
2220 (cp_parser_namespace_alias_definition): if we find an open brace
2221 instead of '=', then this is actually a misplaced namespace
2222 definition.
2223
2224 2007-03-15 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
2225
2226 PR c++/24924
2227 * decl.c (cxx_init_decl_processing): Move command-line options
2228 processing to c-opts.c.
2229
2230 2007-03-15 Douglas Gregor <doug.gregor@gmail.com>
2231
2232 * ptree.c (cxx_print_type): Use formatting markup for integers
2233 when printing template parameter index/level/orig level.
2234 (cxx_print_xnode): Ditto.
2235 * cp-tree.h (TEMPLATE_PARM_PARAMETER_PACK): Use TREE_LANG_FLAG_0.
2236 (struct template_parm_index_s): Remove the PARAMETER_PACK member.
2237 Make INDEX, LEVEL, and ORIG_LEVEL integers instead of
2238 HOST_WIDE_INTs.
2239 (struct saved_scope): Make X_PROCESSING_TEMPLATE_DECL an int,
2240 rather than a HOST_WIDE_INT.
2241 Turn X_PROCESSING_EXPLICIT_INSTANTIATION, SKIP_EVALUATION, and
2242 NEED_POP_FUNCTION_CONTEXT into bool bitfields; reorder fields for
2243 better bit-packing.
2244 (struct language_function): Make RETURNS_VALUE, RETURNS_NULL,
2245 RETURNS_ABNORMALLY, IN_FUNCTION_TRY_HANDLER, and
2246 IN_BASE_INITIALIZER bool bitfields.
2247 (struct cp_declarator): Make KIND a 4-bit field. Make
2248 PARAMETER_PACK_P a bool bitfield just after KIND.
2249 * pt.c (uses_parameter_packs): Destroy the pointer set.
2250 (make_pack_expansion): Ditto.
2251 (check_for_bare_parameter_packs): Ditto.
2252 * name-lookup.c (push_to_top_level): Make need_pop a bool value.
2253
2254 2007-03-14 Andrew Pinski <andrew_pinski@playstation.sony.com>
2255
2256 PR c++/31165
2257 * call.c (convert_default_arg): Instead of copying the node,
2258 unshare it.
2259
2260 2007-03-15 Dirk Mueller <dmueller@suse.de>
2261
2262 PR c++/30860
2263 * call.c (convert_conversion_warnings): New..
2264 (convert_like_real): .. factored out from here.
2265 (convert_conversion_warnings): Add warning about
2266 false being converted to NULL in argument passing.
2267
2268 2007-03-14 Dirk Mueller <dmueller@suse.de>
2269
2270 * cp/semantics.c (c_finish_if_stmt): Call empty_if_body_warning.
2271 (finish_do_body): Warn about empty body in do/while statement.
2272
2273 2007-03-14 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
2274
2275 * class.c (warn_hidden): Add OPT_Woverloaded_virtual to warning.
2276
2277 2007-03-14 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
2278
2279 PR c/21438
2280 * typeck.c (build_binary_op): Call warn_for_div_zero instead of
2281 warning.
2282
2283 2007-03-13 Alexandre Oliva <aoliva@redhat.com>
2284
2285 * cp/repo.c (init_repo): Initialize random_seed saved options.
2286 (finish_repo): Adjust.
2287
2288 2007-03-13 Mark Mitchell <mark@codesourcery.com>
2289
2290 PR bootstrap/30899
2291 * Make-lang.in (doc/g++.1): Use $< to specify the location from
2292 which to copy.
2293
2294 2007-03-12 Seongbae Park <seongbae.park@gmail.com>
2295
2296 * decl.c (compute_array_index_type): New warning flag warn_vla.
2297
2298 2007-03-12 Mark Mitchell <mark@codesourcery.com>
2299
2300 PR c++/30108
2301 * call.c (convert_default_arg): Copy non-constant arguments.
2302
2303 2007-03-11 Mark Mitchell <mark@codesourcery.com>
2304
2305 PR c++/31038
2306 * parser.c (cp_parser_postfix_expression): Disallow compound
2307 literals in constant expressions.
2308
2309 PR c++/30328
2310 * semantics.c (finish_typeof): Use unlowered_expr_type.
2311
2312 2007-03-10 Mark Mitchell <mark@codesourcery.com>
2313
2314 PR c++/30274
2315 * cp-tree.h (unlowered_expr_type): New function.
2316 * typeck.c (is_bitfield_expr_with_lowered_type): Handle
2317 COMPOUND_EXPR, MODIFY_EXPR, and SAVE_EXPR.
2318 (unlowered_expr_type): New function.
2319 (build_unary_op): Disallow predecrements of bool bitfields.
2320 * call.c (build_conditional_expr): Use unlowered_expr_type.
2321 * pt.c (type_unification_real): Likewise.
2322
2323 2007-03-09 Douglas Gregor <doug.gregor@gmail.com>
2324
2325 PR c++/20599
2326 * typeck.c (check_return_expr): Check for bare parameter packs.
2327 (comptypes): Compare template parameter packs and
2328 type pack expansions.
2329 * decl.c (grokdeclarator): Deal with the declaration of function
2330 parameter packs.
2331 (grokparms): Verify that the (optional) function parameter pack is
2332 at the end of the parameter list.
2333 (xref_basetypes): Handle pack expansions in the base class.
2334 (cp_tree_node_structure): Handle ARGUMENT_PACK_SELECT.
2335 * cp-tree.def (TYPE_ARGUMENT_PACK): New.
2336 (NONTYPE_ARGUMENT_PACK): New.
2337 (TYPE_PACK_EXPANSION): New.
2338 (EXPR_PACK_EXPANSION): New.
2339 (ARGUMENT_PACK_SELECT): New.
2340 * cp-objcp-common.c (cp_tree_size): Compute size of
2341 (NON)TYPE_ARGUMENT_PACK, (TYPE|EXPR)_PACK_EXPANSION, and
2342 ARGUMENT_PACK_SELECT.
2343 * error.c (dump_template_argument): Print template argument packs.
2344 (dump_template_argument_list): Ditto.
2345 (dump_template_parameter): Dump `...' for template type parameter
2346 packs.
2347 (dump_type): Dump TYPE_PACK_EXPANSION nodes.
2348 (dump_parameters): Print function parameter packs.
2349 (dump_template_parms): Print template argument packs.
2350 (dump_expr): Dump EXPR_PACK_EXPANSION nodes.
2351 (maybe_warn_variadic_templates): New.
2352 * operators.def: Add ellipsis operator for EXPR_PACK_EXPANSION.
2353 * tree.c (cp_walk_subtrees): Walk BASELINK, TYPE_ARGUMENT_PACK,
2354 NONTYPE_ARGUMENT_PACK, TYPE_PACK_EXPANSION, EXPR_PACK_EXPANSION,
2355 CAST_EXPR.
2356 * mangle.c (write_type): Mangle TYPE_PACK_EXPANSION.
2357 (write_template_arg): Write argument packs as separate arguments.
2358 * cp-tree.h (struct template_parm_index_s): Add flag that
2359 indicates that the template parameter is actually a parameter
2360 pack.
2361 (struct tree_argument_pack_select): New.
2362 (enum cp_tree_node_structure_enum): Add TS_CP_ARGUMENT_PACK_SELECT.
2363 (union lang_tree_node): Add argument_pack_select.
2364 (FUNCTION_PARAMETER_PACK_P): New.
2365 (PACK_EXPANSION_P): New.
2366 (PACK_EXPANSION_PATTERN): New.
2367 (SET_PACK_EXPANSION_PATTERN): New.
2368 (PACK_EXPANSION_PARAMETER_PACKS): New.
2369 (ARGUMENT_PACK_P): New.
2370 (ARGUMENT_PACK_ARGS): New.
2371 (SET_ARGUMENT_PACK_ARGS): New.
2372 (ARGUMENT_PACK_INCOMPLETE_P): New.
2373 (ARGUMENT_PACK_EXPLICIT_ARGS): New.
2374 (TEMPLATE_PARM_PARAMETER_PACK): New.
2375 (TEMPLATE_TYPE_PARAMETER_PACK): New.
2376 (ARGUMENT_PACK_SELECT_FROM_PACK): New.
2377 (ARGUMENT_PACK_SELECT_INDEX): New.
2378 (ARGUMENT_PACK_SELECT_ARG): New.
2379 (struct cp_declarator): Add parameter_pack_p flag.
2380 (maybe_warn_variadic_templates): Declare.
2381 (process_template_parm): Add bool parameter IS_PARAMETER_PACK, to
2382 indicate a template parameter pack.
2383 (uses_parameter_packs): Declare.
2384 (template_parameter_pack_p): Declare.
2385 (template_parms_variadic_p): Declare.
2386 (make_pack_expansion): Declare.
2387 (check_for_bare_parameter_packs): Declare.
2388 * cxx-pretty-print.c (pp_cxx_unary_expression): Print
2389 sizeof... expressions.
2390 (pp_cxx_expression): Print pack expansions and non-type argument
2391 packs.
2392 (pp_cxx_exception_specification): Print pack expansions.
2393 (pp_cxx_direct_declarator): Print ellipsis for parameter packs.
2394 (pp_cxx_ctor_initializer): Print pack expansions.
2395 (pp_cxx_type_id): Print pack expansions.
2396 (pp_cxx_template_argument_list): Print argument packs.
2397 (pp_cxx_template_parameter): Print ellipsis for template parameter
2398 packs.
2399 * pt.c (comp_template_parms): Compare template parameter packs.
2400 (template_parameter_pack_p): New.
2401 (template_parms_variadic_p): New.
2402 (template_args_variadic_p): New.
2403 (make_ith_pack_parameter_name): New.
2404 (struct find_parameter_pack_data): New.
2405 (find_parameter_packs_r): New.
2406 (uses_parameter_packs): New.
2407 (make_pack_expansion): New.
2408 (check_for_bare_parameter_packs): New.
2409 (expand_template_argument_pack): New.
2410 (reduce_template_parm_level): Propagate parameter pack flag.
2411 (process_template_parm): Add is_parameter_pack parameter to state
2412 when the parameter is actually a parameter pack. Create template
2413 parameter packs when is_parameter_pack is true.
2414 (current_template_args): The argument for a template parameter
2415 pack is an argument pack containing a single pack expansion.
2416 (process_partial_specialization): When checking that non-type
2417 argument expressions do not involve template parameters, loop over
2418 the arguments in argument packs separately.
2419 (push_template_decl_real): Check that the type of the declaration
2420 does not have any bare parameter packs. Check that primary
2421 templates have no more than one parameter pack, and that it comes
2422 at the end of the template parameter list.
2423 (convert_template_argument): Handle coercions for pack expansion
2424 expressions by coercing the pattern then rebuilding the expansion.
2425 (coerce_template_parms): When coercing the arguments for a
2426 variadic template, pack "extra" arguments into an argument pack.
2427 (coerce_template_template_parms): Cannot coerce between parameter
2428 packs and non-pack parameters.
2429 (template_args_equal): Compare PACK_EXPANSION_P expressions.
2430 (comp_template_args): Expand all template arguments packs before
2431 comparing template argument lists.
2432 (mangle_class_name_for_template): Make argument packs as separate
2433 template arguments.
2434 (for_each_template_parm_r): No need to handle BASELINK.
2435 (instantiate_class_template): Handle pack expansions in the base
2436 class list.
2437 (tsubst_pack_expansion): New.
2438 (tsubst_template_args): Handle substitutions of argument packs and
2439 pack expansion into template argument lists.
2440 (tsubst_decl): Expand function parameter packs into separate
2441 function parameters.
2442 (tsubst_arg_types): Expand a type pack expansion into separate
2443 argument types.
2444 (tsubst_exception_specification): Handle pack expansions in
2445 exception specifiers.
2446 (tsubst): See through ARGUMENT_PACK_SELECT arguments when
2447 replacing a template parameter with its argument. If we encounter
2448 a substitution for an argument pack, just return the parameter
2449 itself.
2450 (tsubst_copy): sizeof(X...) returns the number of elements in
2451 parameter pack X. See through ARGUMENT_PACK_SELECT when the
2452 PARM_DECL is a parameter pack.
2453 (tsubst_expr): Expression pack expansions and argument packs
2454 cannot show up here; they will all be handled through function
2455 calls, sizeof, and template argument lists.
2456 (tsubst_copy_and_build): sizeof(X...) returns the number of
2457 elements in parameter pack X. Handle pack expansions in TREE_LIST
2458 and CONSTRUCTOR nodes.
2459 (fn_type_unification): Handle "incomplete" explicit template
2460 argument lists that specify some of the arguments for a template
2461 parameter pack.
2462 (type_unification_real): Unify arguments against pack expansions.
2463 (template_parm_level_and_index): New, helper function.
2464 (unify_pack_expansion): New.
2465 (unify): Unify argument packs on an argument-by-argument basis,
2466 handling variadic argument packs as well.
2467 (more_specialized_fn): Handle unification of function parameter
2468 packs. All things being equal, prefer non-variadic function
2469 templates to variadic function templates.
2470 (more_specialized_class): Prefer the variadic class template
2471 partial specialization that binds fewer arguments to a parameter
2472 pack.
2473 (regenerate_decl_from_template): Expand function parameter packs
2474 into separate parameters.
2475 (instantiate_decl): Ditto.
2476 (tsubst_initializer_list): Handle pack expansions for base-class
2477 initializers.
2478 (dependent_type_p_r): Determine dependent types in argument packs
2479 and pack expansions.
2480 (value_dependent_expression_p): Determine value-dependence of
2481 non-type argument packs.
2482 (dependent_template_arg_p): Handle argument packs.
2483 * semantics.c (finish_cond): Check for bare parameter packs.
2484 (finish_expr_stmt): Ditto.
2485 (finish_for_expr): Ditto.
2486 (finish_switch_cond): Ditto.
2487 (finish_mem_initializers): Ditto.
2488 * name-lookup.c (arg_assoc_type): Handle pack expansions and
2489 argument packs.
2490 * decl2.c (cp_build_parm_decl): Mark function parameter packs.
2491 * parser.c (make_declarator): Declarator is not an expansion.
2492 (make_pointer_declarator): Transfer parameter pack flag to outer
2493 declarator.
2494 (make_reference_declarator): Ditto.
2495 (make_ptrmem_declarator): Ditto.
2496 (make_call_declarator): Ditto.
2497 (make_array_declarator): Ditto.
2498 (cp_parser_postfix_expression): Allow pack expansion expressions
2499 in the argument list for a call expression.
2500 (cp_parser_parenthesized_expression_list): Add new parameter
2501 ALLOW_EXPANSION_P. When true, parse the ellipsis to mean "expand
2502 into separate arguments."
2503 (cp_parser_new_placement): Allow pack expansion expressions.
2504 (cp_parser_new_initializer): Ditto.
2505 (cp_parser_mem_initializer_list): Allow ellipsis to create a
2506 base-class initializer expansion.
2507 (cp_parser_mem_initializer): Ditto.
2508 (cp_parser_template_parameter_list): Keep track of whether the
2509 template parameter is a template parameter pack.
2510 (cp_parser_template_parameter): Parse the ellipsis to indicate a
2511 template parameter pack.
2512 (cp_parser_type_parameter): Ditto.
2513 (cp_parser_template_argument_list): Parse the ellipsis to indicate
2514 a pack expansion.
2515 (cp_parser_direct_declarator): Parse the ellipsis to indicate that
2516 this declarator is a parameter pack.
2517 (cp_parser_parameter_declaration): The ellipsis does not end the
2518 parameter declaration, because it might be a parameter pack. Parse
2519 the ellipsis to indicate a parameter pack.
2520 (cp_parser_initializer): Allow pack expansions.
2521 (cp_parser_initializer_list): Allow ellipsis to create an
2522 initializer expansion.
2523 (cp_parser_base_clause): Allow ellipsis to create a base specifier
2524 expansion.
2525 (cp_parser_type_id_list): Allow ellipsis to create an exception
2526 specifier expansion.
2527 (cp_parser_attribute_list): Don't allow pack expansions.
2528 (cp_parser_functional_cast): Allow pack expansions.
2529 (cp_parser_sizeof_operand): Allow ellipsis following "sizeof" to
2530 compute the length of a parameter pack.
2531 (cp_parser_next_token_ends_template_argument_p): An ellipsis can
2532 end a template argument.
2533 * tree.c (cp_walk_subtrees): Walk BASELINK, TYPE_ARGUMENT_PACK,
2534 NONTYPE_ARGUMENT_PACK, TYPE_PACK_EXPANSION, EXPR_PACK_EXPANSION,
2535 CAST_EXPR.
2536
2537 2007-03-09 Dirk Mueller <dmueller@suse.de>
2538
2539 * cp/call.c (build_new_op): Call warn_logical_operator.
2540
2541 2007-03-08 Volker Reichelt <reichelt@netcologne.de>
2542
2543 PR c++/30852
2544 * semantics.c (finish_offsetof): Handle COMPOUND_EXPR.
2545
2546 PR c++/30534
2547 * pt.c (any_template_arguments_need_structural_equality_p):
2548 Robustify.
2549
2550 2007-03-08 Alexandre Oliva <aoliva@redhat.com>
2551
2552 * decl.c (grokdeclarator): Disable warnings for anonymous
2553 bitfields.
2554
2555 2007-03-05 Volker Reichelt <reichelt@netcologne.de>
2556
2557 * typeck2.c (readonly_error): Always emit a hard error.
2558 Remove last argument.
2559 * cp-tree.h (readonly_error): Adjust prototype.
2560 * semantics.c (finish_asm_stmt): Adjust call to readonly_error.
2561 * typeck.c (build_unary_op): Likewise.
2562 (build_modify_expr): Likewise.
2563
2564 2007-03-04 Simon Martin <simartin@users.sourceforge.net>
2565
2566 PR c++/30895
2567 * tree.c (cp_tree_equal): Properly handle COMPLEX_CST trees.
2568
2569 2007-03-03 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
2570
2571 PR c++/15787
2572 * parser.c (struct cp_parser): New IN_IF_STMT.
2573 (cp_parser_statement_seq_opt): Handle an unexpected 'else',
2574 returning if parsing the body of an 'if' statement or issuing an
2575 error and continuing.
2576 (cp_parser_selection_statement): Set IN_IF_STMT bit when parsing
2577 body of 'if'.
2578 (cp_parser_jump_statement): Mask new IN_IF_STMT bit.
2579
2580 2007-03-02 Simon Martin <simartin@users.sourceforge.net>
2581
2582 PR c++/28253
2583 * class.c (update_vtable_entry_for_fn): Properly handle invalid overriders
2584 for thunks.
2585
2586 2007-03-02 Geoffrey Keating <geoffk@apple.com>
2587
2588 * g++spec.c (lang_specific_driver): Add -lstdc++ when compiling
2589 Objective-C++. Don't exit early if -shared-libgcc needs to be
2590 added.
2591
2592 2007-03-02 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
2593
2594 * typeck.c (common_base_type): Delete unused function.
2595
2596 2007-03-01 Brooks Moses <brooks.moses@codesourcery.com>
2597
2598 * Make-lang.in: Add dummy lang.install-pdf target.
2599
2600 2007-03-01 Simon Baldwin <simonb@google.com>
2601
2602 PR c++/23689
2603 * decl.c (check_tag_decl): Added new warning for typedef ignored
2604 when it precedes an otherwise valid non-typedef declaration.
2605
2606 2007-02-28 Sandra Loosemore <sandra@codesourcery.com>
2607
2608 * typeck.c (build_function_call): Store converted arguments
2609 in a stack-allocated array instead of building a list.
2610 (convert_arguments): Store arguments in the array passed in as an
2611 argument, and return the actual number of arguments.
2612 * call.c (build_call): Delete, and replace with...
2613 (build_call_n, build_call_a): New.
2614 (build_op_delete_call): Rewrite to avoid constructing argument lists.
2615 (build_over_call): Store converted arguments in a stack-allocated
2616 array instead of building a list.
2617 (build_cxx_call): Pass arguments in an array instead of as a list.
2618 (build_java_interface_fn_ref): Rewrite to avoid constructing
2619 argument lists.
2620 * tree.h: Update declarations to reflect above changes.
2621 * method.c (use_thunk): Use a stack-allocated array to hold
2622 the arguments instead of a list.
2623 * rtti.c (throw_bad_cast): Update call to cxx_call.
2624 (throw_bad_typeid): Likewise.
2625 (build_dynamic_cast_1): Likewise.
2626 * init.c (build_builtin_delete_call): Use build_call_n.
2627 * decl.c (expand_static_init): Likewise.
2628 * except.c (cp_protect_cleanup_actions): Likewise.
2629 * cp-gimplify.c (genericize_eh_spec_block): Likewise.
2630 (gimplify_must_not_throw_expr): Likewise.
2631 (cxx_omp_apply_fn): Use build_call_a.
2632
2633 2007-02-26 Mark Mitchell <mark@codesourcery.com>
2634
2635 * semantics.c (expand_or_defer_fn): Call c_record_cdtor_fn.
2636 * decl2.c (cp_write_gloabl_declarations): Call c_build_cdtor_fns.
2637
2638 2007-02-25 Mark Mitchell <mark@codesourcery.com>
2639
2640 * cp-tree.h (static_ctors): Remove.
2641 * cp-tree.h (static_dtors): Likewise.
2642 * cp-objcp-common.c (decl_shadowed_for_var_lookup): Adjust for
2643 refactoring of tree_map hierarchy.
2644 (decl_shadowed_for_var_insert): Likewise.
2645 * semantics.c (expand_body): Use c_expand_body.
2646 (expand_or_defer_fn): Don't update static_ctors or static_dtors.
2647 * decl2.c (static_ctors): Remove.
2648 (static_dtors): Likewise.
2649 (generate_ctor_or_dtor_function): Pass NULL_TREE to
2650 objc_generate_static_init_call. Do not call static_[cd]tors.
2651 (generate_ctor_and_dtor_functions_for_priority): Do not check for
2652 static_[cd]tors.
2653 (cp_write_global_declarations): Likewise.
2654
2655 2007-02-23 Richard Guenther <rguenther@suse.de>
2656
2657 * class.c (note_name_declared_in_class): Make declaration
2658 changes meaning a pedwarn.
2659
2660 2007-02-22 Michael Matz <matz@suse.de>
2661
2662 PR c++/29433
2663 * cp-tree.h (TFF_UNQUALIFIED_NAME): New formatting flag.
2664 * error.c (dump_aggr_type, dump_simple_decl, dump_decl,
2665 dump_function_decl): Guard emitting outer scopes by new flag.
2666 * cp-lang.c (cxx_dwarf_name): New function.
2667 (LANG_HOOKS_DWARF_NAME): Define to cxx_dwarf_name.
2668 * pt.c (classtype_mangled_name, mangle_class_name_for_template):
2669 Remove functions.
2670 (push_template_decl_real, lookup_template_class): Remove calls
2671 to above functions.
2672
2673 2007-02-19 Mark Mitchell <mark@codesourcery.com>
2674
2675 * call.c (build_new_method_call): Ensure that explicit calls of
2676 destructors have type "void".
2677
2678 2007-02-19 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
2679
2680 * typeck.c (build_binary_op): Replace -Wstring-literal-comparison
2681 and -Walways-true with -Waddress.
2682 * cvt.c (convert_to_void): Replace unconditional warning with
2683 -Waddress.
2684
2685 2007-02-18 Kazu Hirata <kazu@codesourcery.com>
2686
2687 * decl.c, tree.c: Fix comment typos.
2688
2689 2007-02-15 Andrew Pinski <andrew_pinski@playstation.sony.com>
2690
2691 PR C++/30158
2692 * semantics.c (finish_stmt_expr_expr): Set TREE_TYPE of the
2693 statement expression if we had an error mark node.
2694
2695 2007-02-15 Sandra Loosemore <sandra@codesourcery.com>
2696 Brooks Moses <brooks.moses@codesourcery.com>
2697 Lee Millward <lee.millward@codesourcery.com>
2698
2699 * cp-tree.def (AGGR_INIT_EXPR): Adjust documentation.
2700 Change class to tcc_vl_exp.
2701
2702 * call.c (build_call): Use build_call_list instead
2703 of build3.
2704 (build_over_call): Likewise.
2705 (build_new_method_call): Use build_min_non_dep_call_list
2706 instead of build_min_non_dep.
2707
2708 * error.c (dump_call_expr_args): New function.
2709 (dump_aggr_init_expr_args): New function.
2710 (dump_expr) <AGGR_INIT_EXPR, CALL_EXPR, INDIRECT_REF>: Use them.
2711 Update to use new CALL_EXPR and AGGR_INIT_EXPR accessor macros.
2712
2713 * cvt.c (convert_to_void): Use build_call_array instead
2714 of build3; use new AGGR_INIT_EXPR accessor macros.
2715
2716 * mangle.c (write_expression): Use TREE_OPERAND_LENGTH
2717 instead of TREE_CODE_LENGTH.
2718
2719 * dump.c (cp_dump_tree) <AGGR_INIT_EXPR>: Update to use new
2720 AGGR_INIT_EXPR accessor macros.
2721
2722 * cp-gimplify.c (cp_gimplify_init_expr): Use
2723 AGGR_INIT_EXPR_SLOT to set the slot operand.
2724
2725 * cp-tree.h (AGGR_INIT_EXPR_FN): New macro.
2726 (AGGR_INIT_EXPR_SLOT): New macro.
2727 (AGGR_INIT_EXPR_ARG): New macro.
2728 (aggr_init_expr_nargs): New macro.
2729 (AGGR_INIT_EXPR_ARGP): New macro.
2730 (aggr_init_expr_arg_iterator): New.
2731 (init_aggr_init_expr_arg_iterator): New.
2732 (next_aggr_init_expr_arg): New.
2733 (first_aggr_init_expr_arg): New.
2734 (more_aggr_init_expr_args_p): New.
2735 (FOR_EACH_AGGR_INIT_EXPR_ARG): New.
2736 (stabilize_aggr_init): New declaration.
2737 (build_min_non_dep_call_list): Likewise.
2738
2739 * tree.c (process_aggr_init_operands): New function.
2740 (build_aggr_init_array) New function.
2741 (build_cplus_new): Update to use new CALL_EXPR and
2742 AGGR_INIT_EXPR accessor macros. Replace use of build3 with
2743 build_aggr_init_array.
2744 (build_min_non_dep_call_list) New function.
2745 (build_min_nt): Assert input code parameter is not a variable
2746 length expression class.
2747 (build_min, build_min_non_dep): Likewise.
2748 (cp_tree_equal) <CALL_EXPR>: Iterate through the arguments
2749 to check for equality instead of recursing. Handle tcc_vl_exp
2750 tree code classes.
2751 (stabilize_call): Update to only handle CALL_EXPRs, not
2752 AGGR_INIT_EXPRs; use new CALL_EXPR accessor macros.
2753 (stabilize_aggr_init): New function.
2754 (stabilize_init): Use it.
2755
2756 * cxx-pretty-print.c (pp_cxx_postfix_expression)
2757 <AGGR_INIT_EXPR, CALL_EXPR>: Update to use new CALL_EXPR and
2758 AGGR_INIT_EXPR accessor macros and argument iterators.
2759
2760 * pt.c (tsubst_copy) <CALL_EXPR>: Replace build_nt with
2761 build_vl_exp. Iterate through the operands, recursively
2762 processing each one.
2763 (tsubst_copy_and_build) <CALL_EXPR>: Update to use new
2764 CALL_EXPR accessor macros.
2765 (value_dependent_expression_p) <default>: Handle tcc_vl_exp
2766 tree code classes. Use TREE_OPERAND_LENGTH instead of
2767 TREE_CODE_LENGTH.
2768
2769 * semantics.c (finish_call_expr): Use build_nt_call_list
2770 instead of build_nt.
2771 (simplify_aggr_init_expr): Update to use new AGGR_INIT_EXPR
2772 accessor macros. Use build_call_array to construct the
2773 CALL_EXPR node instead of build3
2774
2775 * decl2.c (build_offset_ref_call_from_tree): Use
2776 build_nt_call_list and build_min_non_dep_call_list instead
2777 of build_min_nt and build_min_non_dep.
2778
2779 * parser.c (cp_parser_postfix_expression) <CPP_OPEN_PAREN>:
2780 Use build_nt_call_list instead of build_min_nt.
2781
2782 2007-02-15 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
2783
2784 PR c++/28943
2785 * call.c (build_conditional_expr): Improve error message.
2786
2787 2007-02-13 Dirk Mueller <dmueller@suse.de>
2788
2789 * friend.c (do_friend): Annotate warning about friend
2790 declarations in templates with OPT_Wnon_template_friend.
2791 Convert informal message from warning() to inform().
2792
2793 2007-02-12 Simon Martin <simartin@users.sourceforge.net>
2794 Mark Mitchell <mark@codesourcery.com>
2795
2796 PR c++/14622
2797 * pt.c (do_decl_instantiation): Detect type mismatches in explicit
2798 instantiations for variables.
2799
2800 2007-02-12 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
2801
2802 PR middle-end/7651
2803 * cp-gimplify.c (gimplify_expr_stmt): Don't check extra_warnings.
2804 Check warn_unused_value just once.
2805
2806 2007-02-11 Mark Mitchell <mark@codesourcery.com>
2807
2808 PR c++/26988
2809 * pt.c (determine_specialization): Use skip_artificial_parms_for.
2810 (fn_type_unificiation): Likewise.
2811 (get_bindings): Likewise.
2812
2813 o2007-02-06 Mark Mitchell <mark@codesourcery.com>
2814
2815 PR target/29487
2816 * decl.c (finish_function): Use DECL_REPLACEABLE.
2817 * tree.c (cp_cannot_inline_tree_fn): Likewise.
2818
2819 2007-02-10 Gabriel Dos Reis <gdr@integrable-solutions.net>
2820
2821 * parser.c (cp_parser_primary_expression): Reformat overly long lines.
2822
2823 2007-02-10 Richard Henderson <rth@redhat.com>, Jakub Jelinek <jakub@redhat.com>
2824
2825 * decl.c (grokvardecl): Don't error if !have_tls.
2826 (grokdeclarator): Likewise.
2827 * parser.c (cp_parser_omp_threadprivate): Likewise.
2828
2829 2007-02-07 Jakub Jelinek <jakub@redhat.com>
2830
2831 PR c++/30703
2832 * cp-gimplify.c (cp_genericize_r): Don't dereference invisiref
2833 parameters and result decls in omp clauses.
2834 (cxx_omp_privatize_by_reference): Pass also invisiref PARM_DECLs
2835 by reference.
2836
2837 2007-02-05 Dirk Mueller <dmueller@suse.de>
2838
2839 PR bootstrap/30510
2840 * parser.c (cp_parser_class_specifier): Always initialize bases.
2841
2842 2007-02-05 Paolo Bonzini <bonzini@gnu.org>
2843
2844 * cp-tree.h (OMP_ATOMIC_CODE): Delete.
2845 (OMP_ATOMIC_DEPENDENT_P): Rewrite.
2846 * pt.c (tsubst_expr): Adjust for new format of dependent OMP_ATOMIC
2847 expressions.
2848 * semantics.c (finish_omp_atomic): Store a whole expression node
2849 in operand 1, and integer_zero_node in operand 0, for dependent
2850 OMP_ATOMIC. Rewrite to make flow easier to understand.
2851
2852 2007-02-03 Gabriel Dos Reis <gdr@integrable-solutions.net>
2853
2854 * decl.c (grokdeclarator): Use OPT_Wreturn_type instead of 0.
2855
2856 2007-02-04 Kazu Hirata <kazu@codesourcery.com>
2857
2858 * class.c, cp-tree.h, decl.c, decl2.c, g++spec.c, init.c,
2859 parser.c, pt.c, tree.c, typeck.c: Follow spelling conventions.
2860
2861 2007-02-03 Douglas Gregor <doug.gregor@gmail.com>
2862
2863 * parser.c (cp_lexer_get_preprocessor_token): Attach the C++0x
2864 keyword warning to -Wc++0x-compat.
2865
2866 2007-02-03 Gabriel Dos Reis <gdr@integrable-solutions.net>
2867
2868 * decl.c (grokdeclarator): Update documentation.
2869
2870 2007-02-02 Jakub Jelinek <jakub@redhat.com>
2871
2872 PR c++/30536
2873 * decl.c (grokdeclarator): If __thread is used together with
2874 a storage class other than extern and static, clear thread_p
2875 after issuing diagnostics and fall through to checking the
2876 storage class.
2877
2878 2007-01-30 Roger Sayle <roger@eyesopen.com>
2879
2880 * error.c (dump_type_suffix): Avoid use of cp_build_binary_op when
2881 calculating the size of an array (to avoid recursive errors).
2882
2883 2007-01-30 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
2884
2885 PR c++/24745
2886 * typeck.c (build_binary_op): Fix logic for warning. Move warning
2887 to -Wpointer-arith.
2888 * call.c (convert_like_real): Don't warn when converting to
2889 boolean type.
2890
2891 2007-01-29 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
2892
2893 * decl.c (pop_label): Replace warning with call to
2894 warn_for_unused_label.
2895
2896 2007-01-28 Andrew Pinski <pinskia@gmail.com>
2897
2898 PR C++/28988
2899 * semantics.c (finish_pseudo_destructor_expr): Check the
2900 destrutor name by calling check_dtor_name.
2901
2902 2007-01-24 Douglas Gregor <dgregor@osl.iu.edu>
2903
2904 * lex.c (D_CPP0X): Rename.
2905 (D_CXX0X): To this.
2906 (reswords): D_CPP0X -> D_CXX0X.
2907 (init_reswords): Ditto.
2908 * parser.c (cp_lexer_get_preprocessor_token): Warn about the use
2909 of C++0x keywords as identifiers.
2910
2911 2007-01-23 Simon Martin <simartin@users.sourceforge.net>
2912
2913 PR c++/27492
2914 * decl.c (duplicate_decls): Don't reset DECL_INVALID_OVERRIDER_P for
2915 function decls.
2916
2917 2007-01-23 Ian Lance Taylor <iant@google.com>
2918
2919 * typeck.c (convert_for_assignment): Only warn about a = b = c
2920 when converting to bool.
2921
2922 2007-01-23 Roger Sayle <roger@eyesopen.com>
2923
2924 * call.c (null_ptr_cst_p): Replace use of TREE_CONSTANT_OVERFLOW with
2925 TREE_OVERFLOW.
2926 * typeck.c (ignore_overflows): Remove the remaining uses of
2927 TREE_CONSTANT_OVERFLOW.
2928
2929 2007-01-20 Jan Hubicka <jh@suse.cz>
2930
2931 * decl2.c (start_objects, start_static_storage_duration_function):
2932 Do not make the functions uninlinable.
2933
2934 2007-01-17 Ian Lance Taylor <iant@google.com>
2935
2936 * class.c (add_method): Call VEC_reserve_exact rather than passing
2937 a negative size to VEC_reserve.
2938
2939 2007-01-11 Simon Martin <simartin@users.sourceforge.net>
2940
2941 PR c++/29573
2942 * tree.c (cp_tree_equal): Properly handle MODOP_EXPR trees.
2943
2944 2007-01-10 Mark Mitchell <mark@codesourcery.com>
2945
2946 PR c++/28999
2947 * decl.c (make_typename_type): If the qualified name is not a
2948 type, issue an error.
2949 * parser.c (cp_parser_elaborated_type_specifier): Fix comment
2950 formatting.
2951
2952 2007-01-08 Geoffrey Keating <geoffk@apple.com>
2953
2954 * rtti.c: Include target.h.
2955 (emit_support_tinfos): If ! targetm.cxx.library_rtti_comdat (),
2956 don't emit typeinfo for fundamental types as weak.
2957 * Make-lang.in (cp/rtti.o): Update and correct dependencies.
2958
2959 2007-01-08 Richard Guenther <rguenther@suse.de>
2960
2961 * cvt.c (cp_convert_to_pointer): Use build_int_cst_type.
2962
2963 2007-01-08 Mark Shinwell <shinwell@codesourcery.com>
2964
2965 * call.c (standard_conversion): Pass flag to
2966 vector_types_convertible_p to disallow emission of note.
2967 * typeck.c (convert_for_assignment): Pass flag to
2968 vector_types_convertible_p to allow emission of note.
2969 (ptr_reasonably_similar): Pass flag to vector_types_convertible_p
2970 to disallow emission of note.
2971
2972 2007-01-07 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
2973
2974 PR c++/28986
2975 * typeck.c (build_binary_op): Call overflow_warning if
2976 TREE_OVERFLOW_P is true for the result and not for any of the
2977 operands.
2978
2979 2007-01-06 Lee Millward <lee.millward@codesourcery.com>
2980
2981 PR c++/19439
2982 * class.c (add_method): Don't wait until template
2983 instantiation time to complain about duplicate methods.
2984
2985 2007-01-05 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
2986
2987 PR c/19978
2988 * semantics.c (finish_unary_op_expr): Warn only if result
2989 overflowed and operands did not.
2990
2991 2007-01-05 Ian Lance Taylor <iant@google.com>
2992
2993 * typeck.c (build_binary_op): Warn about comparing a non-weak
2994 address to NULL.
2995
2996 2007-01-05 Douglas Gregor <doug.gregor@gmail.com>
2997
2998 * pt.c (tsubst): Propagate the need for structural equality checks
2999 when reducing the level of template parameters.
3000
3001 2007-01-03 Kazu Hirata <kazu@codesourcery.com>
3002
3003 * pt.c: Fix a comment typo.
3004
3005 2007-01-02 Ian Lance Taylor <iant@google.com>
3006
3007 * semantics.c (maybe_convert_cond): Optionally warn when using an
3008 assignment as a condition.
3009 * typeck.c (convert_for_assignment): Optionally warn about
3010 assigning the result of an assignment to a bool.
3011
3012 2007-01-02 Douglas Gregor <doug.gregor@gmail.com>
3013
3014 * pt.c (canonical_template_parms): Correct typo in comment.
3015
3016 2007-01-02 Douglas Gregor <doug.gregor@gmail.com>
3017
3018 * typeck.c (structural_comptypes): Renamed from "comptypes".
3019 (comptypes): Use canonical type information to perform fast type
3020 comparison. When VERIFY_CANONICAL_TYPES, verify that the
3021 canonical type comparison returns the same results as we would see
3022 from the current, structural check. Support COMPARE_STRUCTURAL
3023 when we need structural checks.
3024 * decl.c (typename_compare): Fix comment.
3025 (build_typename_type): TYPENAME_TYPE nodes require structural
3026 equality checks, because they resolve different based on the
3027 current class type.
3028 (make_unbound_class_template): UNBOUND_CLASS_TEMPLATE nodes
3029 require structural equality checks (for now).
3030 (build_ptrmemfunc_type): Build the canonical pointer to member
3031 function type.
3032 (compute_array_index_type): Whenever we build a new index type
3033 to represent the size of an array in a template, we need to mark
3034 this index type as requiring structural equality. This goes for
3035 arrays with value-dependent sizes with the current ABI, or all
3036 arrays with ABI-1.
3037 * tree.c (cplus_array_hash): New.
3038 (struct cplus_array_info): New.
3039 (cplus_array_compare): New.
3040 (cplus_array_htab): New.
3041 (build_cplus_array_type_1): Use a hash table to cache the array
3042 types we build. Build the canonical array type for each array
3043 type.
3044 (cp_build_qualified_type_real): When building a cv-qualified array
3045 type, use the hash table of array types and build canonical array
3046 types as necessary.
3047 (bind_template_template_parm): BOUND_TEMPLATE_TEMPLATE_PARM nodes
3048 use structural equality (for now).
3049 * cp-tree.h (COMPARE_STRUCTURAL): New.
3050 * pt.c (canonical_template_parms): New.
3051 (canonical_type_parameter): New.
3052 (process_template_parm): Find the canonical type parameter.
3053 (lookup_template_class): When we have named the primary template
3054 type, set the canonical type for our template class to the primary
3055 template type. If any of the template arguments need structural
3056 equality checks, the template class needs structural equality
3057 checks.
3058 (tsubst): When reducing the level of a template template
3059 parameter, we require structural equality tests for the resulting
3060 parameter because its template parameters have not had their types
3061 canonicalized. When reducing a template type parameter, find the
3062 canonical reduced type parameter.
3063 (any_template_arguments_need_structural_equality_p): New.
3064
This page took 0.173271 seconds and 5 git commands to generate.