]> gcc.gnu.org Git - gcc.git/blob - gcc/cp/ChangeLog
re PR target/25908 (vtables with vague linkage is not being marked as vague on darwin)
[gcc.git] / gcc / cp / ChangeLog
1 2006-03-01 Mike Stump <mrs@apple.com>
2
3 PR darwin/25908
4 * decl2.c (import_export_decl): Fix ABI breakage on darwin.
5
6 2006-02-24 Geoffrey Keating <geoffk@apple.com>
7
8 * except.c (expand_start_catch_block): Handle
9 flag_use_cxa_get_exception_ptr.
10
11 2006-02-22 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
12
13 PR c++/26291
14 * decl.c (grok_op_properties): Check for ellipsis in arguments of
15 operators.
16
17 2006-02-20 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
18
19 * Make-lang.in (C++): Remove.
20 (.PHONY): Remove C++.
21
22 2006-02-18 Mark Mitchell <mark@codesourcery.com>
23
24 PR c++/26266
25 * cp-tree.h (cp_finish_decl): Adjust declaration.
26 (grokbitfield): Likewise.
27 (finish_static_data_member_decl): Likewise.
28 * init.c (constant_value_1): Ensure processing_template_decl when
29 folding non-dependent initializers for static data members of
30 dependent types. Return error_mark_node for erroneous
31 initailizers.
32 * class.c (get_vtable_decl): Use finish_decl, not cp_finish_decl.
33 * decl.c (cp_make_fname_decl): Adjust call to cp_finish_decl.
34 (cp_finish_decl): Add init_const_expr_p parameter. Set
35 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P here.
36 (finish_decl): Adjust call to cp_finish_decl.
37 (compute_array_index_type): Robustify.
38 (start_method): Use finish_decl, not cp_finish_decl.
39 * rtti.c (emit_tinfo_decl): Likewise.
40 * except.c (initialize_handler_parm): Adjust call to
41 cp_finish_decl.
42 (expand_start_catch_block): Likewise.
43 * cvt.c (build_up_reference): Adjust call to cp_finish_decl.
44 * pt.c (instantiate_class_template): Adjust call to
45 finish_static_data_member_decl.
46 (tsubst_expr): Use finish_decl, not cp_finish_decl.
47 (instantiate_decl): Adjust call to cp_finish_decl.
48 * name-lookup.c (pushdecl_top_level_1): Use finish_decl, not
49 cp_finish_decl.
50 * decl2.c (finish_static_data_member_decl): Add init_const_expr_p
51 parameter.
52 (grokfield): Likewise.
53 * parser.c (cp_parser_condition): Check for constant initializers.
54 (cp_parser_init_declarator): Adjust calls to grokfield and
55 cp_finish_decl. Don't set
56 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P here.
57 (cp_parser_member_declaration): Likewise.
58 (cp_parser_objc_class_ivars): Likewise.
59
60 2006-02-14 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
61
62 * call.c (standard_conversion): Return NULL instead of 0.
63 (build_user_type_conversion_1): Likewise.
64 (tourney): Likewise.
65 * decl.c (redeclaration_error_message): Likewise.
66 * error.c (language_to_string): Likewise.
67
68 2006-02-13 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
69
70 * cp-tree.h (warn_hidden): Remove prototype.
71 * class.c (warn_hidden): Make static.
72
73 * cp-tree.h (build_type_conversion): Remove prototype.
74 * cvt.c (build_type_conversion): Add prototype, make static.
75
76 * cp-tree.h (push_tinst_level): Remove prototype.
77 (pop_tinst_level): Likewise.
78 * pt.c (push_tinst_level): Add prototype, make static.
79 (pop_tinst_level): Likewise.
80
81 2006-02-13 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
82
83 * decl.c (grokdeclarator): Return NULL_TREE instead of 0.
84 * typeck.c (unary_complex_lvalue): Likewise.
85
86 2006-02-13 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
87
88 * lex.c (parse_strconst_pragma): Return error_mark_node instead of
89 "(tree)-1" to indicate failure. Simplify.
90 (handle_pragma_interface): Test for error_mark_node instead of
91 "(tree)-1".
92 (handle_pragma_implementation): Likewise.
93
94 2006-02-13 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
95
96 PR c++/26151
97 * parser.c (cp_parser_decl_specifier_seq): Check for duplicate
98 decl-specifiers. Remove extra check for duplicate 'friend'.
99 * decl.c (grokdeclarator): Remove check for duplicate
100 decl-specifiers. Set longlong together with long_p.
101
102 2006-02-12 Jason Merrill <jason@redhat.com>
103
104 PR c++/24996
105 * except.c (build_throw): Add a CLEANUP_POINT_EXPR inside the
106 TRY_CATCH_EXPR or MUST_NOT_THROW_EXPR.
107
108 2006-02-10 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
109
110 * class.c (debug_class): Remove extern.
111 (debug_thunks): Likewise.
112
113 2006-02-09 Gabriel Dos Reis <gdr@integrable-solutions.net>
114
115 * typeck.c (string_conv_p): Don't test for flag_const_strings.
116
117 2006-02-08 Jason Merrill <jason@redhat.com>
118
119 PR c++/25979
120 * cp-gimplify.c (cp_gimplify_expr): Don't call
121 cp_gimplify_init_expr for MODIFY_EXPRs.
122 * typeck2.c (split_nonconstant_init_1): Use INIT_EXPR.
123
124 2006-02-08 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
125
126 PR c++/26071
127 * decl.c (grokdeclarator): Set dname also for destructor.
128
129 PR c++/26070
130 * decl.c (grokdeclarator): Clear storage_class together with staticp.
131
132 2006-02-07 Gabriel Dos Reis <gdr@integrable-solutions.net>
133
134 * cp-tree.h (tf_warning_or_error): Renamed from tf_warn_or_error.
135 (cp_build_qualified_type): Propogate renaming.
136 * call.c (convert_like_real): Likewise.
137 * cvt.c (cp_convert_to_pointer, convert_to_reference): Likewise.
138 * decl.c (make_typename_type, grokdeclarator): Likewise.
139 * pt.c (tsubst_friend_function, instantiate_class_template,
140 tsubst_default_argument, instantiate_decl,
141 tsubst_initializer_list, tsubst_enum): Likewise.
142 * semantics.c (finish_template_type): Likewise.
143 * typeck.c (build_ptrmemfunc, convert_for_assignment): Likewise.
144
145 2006-02-07 Dirk Mueller <dmueller@suse.com>
146
147 * typeck.c (build_binary_op): Annotate div-by-zero
148 warnings to make -Wno-div-by-zero have an effect.
149
150 2006-02-07 Mark Mitchell <mark@codesourcery.com>
151
152 PR c++/9737
153 * pt.c (coerce_template_template_parms): Do not templates with
154 excess default arguments to match template template parameters
155 with fewer parameters.
156 (coerce_template_parms): Add use_default_args parameter; use
157 default arguments only when true.
158 (lookup_template_class): Adjust call to coerce_template_parms.
159 (fn_type_unification): Likewise.
160 (unify): Likewise.
161 (get_bindings): Likewise.
162 (dependent_type_p): Add assertions.
163
164 2006-02-06 Roger Sayle <roger@eyesopen.com>
165
166 * decl.c (grokdeclarator): Don't bother checking for CHAR_TYPE.
167 * rtti.c (typeinfo_in_lib_p): Likewise.
168 * cp-tree.h (INTEGRAL_CODE_P, CP_INTEGRAL_TYPE_P): Likewise.
169 * name-lookup.c (arg_assoc_type): Likewise.
170
171 2006-02-04 Gabriel Dos Reis <gdr@integrable-solutions.net>
172
173 * cp-tree.h (tf_warn_or_error): New substituion flag.
174 (cp_build_qualified_type): Use it.
175 * call.c (convert_like_real): Likewise.
176 * cvt.c (cp_convert_to_pointer): Likewise.
177 (convert_to_reference): Likewise.
178 * decl.c (make_typename_type): Likewise.
179 (grokdeclarator): Likewise.
180 * pt.c (tsubst_friend_function): Likewise.
181 (tsubst_friend_class): Likewise.
182 (instantiate_class_template): Likewise.
183 (tsubst_default_argument): Likewise.
184 (instantiate_decl): Likewise.
185 (tsubst_initializer_list): Likewise.
186 (tsubst_enum): Likewise.
187 * semantics.c (finish_template_type): Likewise.
188 * typeck.c (build_ptrmemfunc): Likewise.
189 (convert_for_assignment): Likewise.
190
191 2006-02-03 Lee Millward <lee.millward@gmail.com>
192
193 * typeck.c (string_conv_p): Pass appropiate
194 OPT_Wxxxx values when calling warning().
195 (build_array_ref, cxx_mark_addressable): Likewise.
196 (check_return_expr): Likewise.
197
198 * init.c (perform_member_init): Likewise.
199 (sort_mem_initializers, emit_mem_initializers): Likewise.
200
201 * class.c (check_field_decls): Likewise.
202 (warn_about_ambiguous_bases): Likewise.
203
204 * decl.c (pop_label, poplevel): Likewise.
205 (duplicate_decls, grok_op_properties): Likewise.
206 (start_preparsed_function, finish_function): Likewise.
207
208 * name-lookup.c (pushdecl_maybe_friend): Likewise.
209 (pushdecl_maybe_friend): Likewise.
210
211 * parser.c (cp_parser_warn_min_max): Likewise.
212 (cp_parser_cast_expression): Likewise.
213
214 * method.c (lazily_declare_fn): Likewise.
215 * cvt.c (convert_to_void): Likewise.
216 * mangle.c (finish_mangling): Likewise.
217 * cp-gimplify.c (gimplify_expr_stmt): Likewise.
218
219 2006-02-03 Mark Mitchell <mark@codesourcery.com>
220
221 * name-lookup.c (do_class_using_decl): Use IDENTIFIER_TYPENAME_P,
222 not IDENTIFIER_OPNAME_P.
223
224 2006-01-31 Mark Mitchell <mark@codesourcery.com>
225
226 PR c++/25342
227 * cp-tree.h (DECL_TEMPLATE_SPECIALIZATIONS): Revise
228 documentation.
229 * pt.c (determine_specialization): Use INNERMOST_TEMPLATE_PARMS,
230 not TREE_VALUE.
231 (instantiate_class_template): Simplify.
232 (verify_class_unification): Remove.
233 (unify): Document parameters. Use INNERMOST_TEMPLATE_ARGS to
234 permit multiple levels of template arguments.
235 (more_specialized_class): Simplify.
236 (get_class_bindings): Pass full arguments to unify. Fold
237 verify_class_unification into this function. Return full
238 arguments.
239 (most_specialized_class): Adjust for changes to
240 get_class_bindings. Issue errors here for ambiguity. Return the
241 fully deduced arguments for the most specialized class, in
242 addition to the partial specialization.
243
244 2006-01-31 Ben Elliston <bje@au.ibm.com>
245
246 * mangle.c: Comment fix.
247
248 2006-01-29 Gabriel Dos Reis <gdr@integrable-solutions.net>
249
250 * Make-lang.in (cp-warn): Include CXX_COMPAT_WARN.
251 * repo.c (extract_string, afgets): Use cast when converting from
252 void *.
253
254 2006-01-29 Gabriel Dos Reis <gdr@integrable-solutions.net>
255
256 * call.c (alloc_conversion): Use cast when converting from void *.
257 (alloc_conversions): Likewise.
258 (add_candidate): Likewise.
259 (print_z_candidates): Likewise.
260 (add_warning): Likewise.
261 * pt.c (retrieve_local_specialization): Likewise.
262 (process_partial_specialization): Likewise.
263 (mangle_class_name_for_template): Likewise.
264 (tsubst_template_args): Likewise.
265 * typeck2.c (pat_calc_hash): Likewise.
266 (pat_compare): Likewise.
267 (abstract_virtuals_error): Likewise.
268 * class.c (method_name_cmp): Likewise.
269 (resort_method_name_cmp): Likewise.
270 (get_vfield_name): Likewise.
271 * decl2.c (generate_ctor_and_dtor_functions_for_priority): Likewise.
272 * lex.c (init_reswords): Likewise.
273 * rtti.c (create_pseudo_type_info): Likewise.
274 * search.c (dfs_lookup_base): Likewise.
275 (dfs_dcast_hint_pre): Likewise.
276 (dfs_dcast_hint_post): Likewise.
277 * tree.c (hash_tree_cons): Likewise.
278 * repo.c (extract_string): Likewise.
279 (afgets): Likewise.
280 * cp-objcp-common.c (decl_shadowed_for_var_lookup): Likewise.
281 * g++spec.c (lang_specific_driver): Likewise.
282
283 2006-01-28 Gabriel Dos Reis <gdr@integrable-solutions.net>
284
285 * call.c (joust): Pass option code to warning. Use inform for
286 explanation.
287 * class.c (check_bases): Likewise.
288 (maybe_warn_about_overly_private_class): Likewise.
289 (check_field_decls): Likewise.
290 (layout_empty_base): Likewise.
291 (layout_virtual_bases): Likewise.
292 (layout_class_type): Likewise.
293
294 2006-01-28 Mark Mitchell <mark@codesourcery.com>
295
296 PR c++/25999
297 * decl.c (start_preparsed_function): Call maybe_apply_pragma_weak
298 here, not ...
299 (start_function): ... here.
300
301 2006-01-28 Mark Mitchell <mark@codesourcery.com>
302
303 PR c++/25855
304 * class.c (resolve_address_of_overloaded_function): Adjust use of
305 return value from most_specialized_instantiation.
306 * pt.c (determine_specialization): Avoid multiple calls to
307 get_bindings.
308 (most_specialized_instantiation): When a tie occurs, set the
309 current presumed champion to the next template. Return the
310 TREE_LIST node containing the template, rather than the template
311 itself.
312 (most_specialized): Remove.
313 * name-lookup.c (push_overloaded_decl): When duplicate_decls
314 indicates a failed redeclaration, report that to callers.
315
316 2006-01-26 Jason Merrill <jason@redhat.com>
317
318 PR c++/16021
319 * name-lookup.c (parse_using_directive): Require strong using to
320 name a nested namespace.
321
322 2006-01-25 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
323
324 Revert:
325 * cp-tree.h (do_poplevel): Remove prototype.
326 * semantics.c (do_poplevel): Add prototype. Make static.
327
328 Revert:
329 * cp-tree.h (default_conversion): Remove prototype.
330 * typeck.c (default_conversion): Make static.
331
332 2006-01-25 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
333
334 * cp-tree.h (get_primary_binfo): Remove prototype.
335 (push_using_decl): Likewise.
336 (current_template_args): Likewise.
337 (more_specialized_class): Likewise.
338 (mark_class_instantiated): Likewise.
339 (default_conversion): Likewise.
340 (pfn_from_ptrmemfunc): Likewise.
341 * class.c (get_primary_binfo): Add prototype, make static, simplify.
342 * name-lookup.c (push_using_decl): Make static.
343 * pt.c (current_template_args): Likewise.
344 (more_specialized_class): Likewise.
345 (mark_class_instantiated): Likewise.
346 * typeck.c (default_conversion): Make static.
347 (pfn_from_ptrmemfunc): Add prototype, make static.
348
349 2006-01-24 Dirk Mueller <dmueller@suse.de>
350
351 * typeck.c (build_binary_op): Use OPT_Wfloat_equal in warning().
352
353 2006-01-24 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
354
355 PR c++/25552
356 * parser.c (cp_parser_unqualified_id): Check that destructor name
357 and scope match.
358 * call.c (check_dtor_name): Do not expect a BIT_NOT_EXPR.
359 Adjust comment. Return early if possible.
360 Use same_type_p to compare types.
361 * typeck.c (lookup_destructor): Adjust call to check_dtor_name.
362
363 2006-01-24 Mark Mitchell <mark@codesourcery.com>
364
365 * semantics.c: Remove outdated comment.
366
367 2006-01-23 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
368
369 * cp-tree.h (do_poplevel): Remove prototype.
370 * semantics.c (do_poplevel): Add prototype. Make static.
371
372 * cp-tree.h (original_type): Remove prototype.
373 * typeck.c (original_type): Make static.
374
375 * cp-tree.h (declare_global_var): Remove prototype.
376 * decl.c (declare_global_var): Make static.
377
378 * cp-tree.h (implicitly_declare_fn): Remove prototype.
379 * method.c (implicitly_declare_fn): Make static.
380
381 * cp-tree.h (fold_decl_constant_value): Remove prototype.
382 * pt.c (fold_decl_constant_value): Make static.
383
384 * cp-tree.h (build_x_delete): Remove prototype.
385 * init.c (build_vec_delete_1): Call build_op_delete_call directly
386 and not via build_x_delete.
387 (build_x_delete): Remove.
388
389 * cp-tree.h (get_vtt_name): Remove prototype.
390 * class.c (get_vtt_name): Remove.
391 (build_vtt): Call mangle_vtt_for_type instead of get_vtt_name.
392
393 2006-01-22 Gabriel Dos Reis <gdr@integrable-solutions.net>
394
395 * rtti.c (build_dynamic_cast): Fix comment.
396
397 2006-01-22 Gabriel Dos Reis <gdr@integrable-solutions.net>
398
399 PR c++/10891
400 * rtti.c (build_dynamic_cast): Reject dynamic_cast use if
401 -fno-rtti.
402
403 2006-01-21 Mark Mitchell <mark@codesourcery.com>
404
405 PR c++/25895
406 * class.c (build_base_path): Generate a NOP_EXPR instead of a
407 COMPONENT_REF if the base and derived classes are at the same
408 address.
409
410 PR c++/25856
411 * decl.c (begin_destructor_body): Robustify.
412
413 PR c++/25858
414 * parser.c (cp_parser_direct_declarator): Robustify.
415
416 2006-01-20 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
417
418 * parser.c (cp_lexer_next_token_is_keyword): Simplify.
419
420 * parser.c (clear_decl_specs): Remove prototype.
421
422 * parser.c (cp_parser_expression_fn): Remove.
423
424 * call.c (add_builtin_candidates): Remove superfluous return.
425 * name-lookup.c (do_toplevel_using_decl): Likewise.
426 * parser.c (cp_parser_type_specifier_seq): Likewise.
427 (cp_parser_save_default_args): Likewise.
428
429 2006-01-20 Dirk Mueller <dmueller@suse.com>
430
431 PR c++/5520
432 * semantics.c (finish_if_stmt): Call empty_body_warning.
433 * parser.c (cp_parser_implicitly_scoped_statement):
434 Mark empty statement with an empty stmt.
435
436 2006-01-19 Mark Mitchell <mark@codesourcery.com>
437
438 PR c++/22136
439 * name-lookup.c (do_class_using_decl): Don't try to look up base
440 classes in templates with dependent base types.
441
442 2006-01-19 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
443
444 PR c++/25854
445 * pt.c (maybe_process_partial_specialization): Return early on
446 error_mark_node.
447
448 2006-01-19 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
449
450 PR c++/16829
451 * decl.c (start_preparsed_function): Check default arguments
452 unconditionally.
453 * name-lookup.c (pushdecl_maybe_friend): Check default arguments
454 of all functions and function templates.
455 * parser.c (cp_parser_late_parsing_default_args): Check default
456 arguments.
457 * decl2.c (check_default_args): Set missing default arguments to
458 error_mark_node.
459
460 2006-01-18 Mark Mitchell <mark@codesourcery.com>
461
462 PR c++/25836
463 * cp-tree.h (push_class_stack): New function.
464 (pop_class_stack): Likewise.
465 * class.c (class_stack_node): Add hidden field.
466 (pushclass): Clear it.
467 (push_class_stack): New function.
468 (pop_class_stack): Likewise.
469 (currently_open_class): Ignore hidden classes.
470 (currently_open_derived_class): Likewise.
471 * name-lookup.c (push_to_top_level): Call push_class_stack.
472 (pop_from_top_level): Call pop_class_stack.
473
474 2006-01-18 Kazu Hirata <kazu@codesourcery.com>
475
476 * tree.c (find_tree_t, find_tree): Remove.
477 * cp-tree.h: Remove the prototype for find_tree.
478
479 2006-01-18 Jakub Jelinek <jakub@redhat.com>
480
481 * search.c (lookup_conversions_r): Fix a pasto.
482
483 2006-01-17 Eric Christopher <echristo@apple.com>
484
485 * call.c (convert_like_real): When issuing conversion
486 warnings, depend on OPT_Wconversion.
487 * cvt.c (build_expr_type_conversion): Ditto.
488
489 2006-01-17 Kazu Hirata <kazu@codesourcery.com>
490
491 * name-lookup.c (lookup_namespace_name): Remove.
492 * name-lookup.h: Remove the prototype for
493 lookup_namespace_name.
494
495 2006-01-17 Jakub Jelinek <jakub@redhat.com>
496
497 PR c/25682
498 * decl.c (compute_array_index_type): After issuing not an integral
499 constant-expression error, set size to 1 to avoid ICEs later on.
500
501 2006-01-16 Ian Lance Taylor <ian@airs.com>
502
503 * parser.c: Include "cgraph.h".
504 (cp_parser_asm_definition): Call cgraph_add_asm_node rather than
505 assemble_asm.
506
507 2006-01-16 Rafael �ila de Esp�dola <rafael.espindola@gmail.com>
508
509 * g++spec.c (lang_specific_spec_functions): Remove.
510
511 2006-01-15 Gabriel Dos Reis <gdr@integrable-solutions.net>
512
513 * decl.c (check_initializer): Fix thinko.
514
515 2006-01-14 Mark Mitchell <mark@codesourcery.com>
516
517 PR c++/25663
518 * parser.c (cp_parser_direct_declarator): Use cp_parser_error
519 instead of error.
520
521 2006-01-13 Jason Merrill <jason@redhat.com>
522
523 * pt.c (check_explicit_specialization): Use CP_DECL_CONTEXT even more.
524
525 * name-lookup.c (set_decl_namespace): Use CP_DECL_CONTEXT.
526 * pt.c (check_explicit_specialization): Likewise.
527
528 2006-01-12 Jason Merrill <jason@redhat.com>
529
530 PR libstdc++/24660
531 * pt.c (check_explicit_specialization): Handle namespace
532 association.
533 * name-lookup.c (set_decl_namespace): Likewise.
534
535 2006-01-12 Nathan Sidwell <nathan@codesourcery.com>
536
537 PR c++/24824
538 * class.c (handle_using_decl): Pass correct scope to
539 cp_emit_debug_info_for_using.
540
541 2006-01-11 Nathan Sidwell <nathan@codesourcery.com>
542
543 PR c++/25386
544 * tree.c (lvalue_p_1): Any part of a COMPONENT_REF affects
545 packedness.
546
547 2006-01-06 Gabriel Dos Reis <gdr@integrablesolutions.net>
548
549 * parser.c (cp_parser_primary_expression): Document the grammar
550 for the built-in offsetof, a GNU extension.
551
552 2006-01-04 Zdenek Dvorak <dvorakz@suse.cz>
553
554 PR c++/25632
555 * init.c (constant_value_1): Unshare use of DECL_INITIAL. Fix a typo
556 in condition.
557
558 2006-01-04 Chris Lattner <sabre@gnu.org>
559
560 * typeck2.c: update copyright to 2006
561 (split_nonconstant_init_1): Set TREE_CONSTANT to true.
562
563 2006-01-04 Mark Mitchell <mark@codesourcery.com>
564
565 PR c++/24782
566 * parser.c (cp_parser_nested_name_specifier_opt): Preserve access
567 checks, even when parsing tentatively.
568
569 2006-01-04 Richard Henderson <rth@redhat.com>
570
571 Merge from gomp branch.
572 * lex.c (handle_pragma_java_exceptions): Fix whitespace.
573 * parser.c (struct cp_token): Add pragma_kind.
574 (eof_token): Update to match.
575 (struct cp_lexer): Add in_pragma; rearrange next for better packing.
576 (cp_parser_initial_pragma): New.
577 (cp_lexer_new_main): Use it. Don't bother clearing
578 c_lex_return_raw_strings.
579 (cp_lexer_get_preprocessor_token): Always initialize keyword
580 and pragma_kind fields. Handle CPP_PRAGMA.
581 (cp_lexer_consume_token): Don't allow CPP_PRAGMA_EOL when
582 in_pragma is set.
583 (cp_lexer_handle_pragma): Remove. Update callers to cp_parser_pragma.
584 (cp_lexer_print_token) <CPP_PRAGMA>: Don't print as a string.
585 (cp_parser_skip_to_pragma_eol): New.
586 (cp_parser_error): Use it.
587 (cp_parser_skip_to_closing_parenthesis): Stop at CPP_PRAGMA_EOL;
588 rearrange with switch statement.
589 (cp_parser_skip_to_end_of_statement): Likewise.
590 (cp_parser_skip_to_end_of_block_or_statement): Likewise.
591 (cp_parser_skip_to_closing_brace): Likewise.
592 (cp_parser_skip_until_found): Likewise.
593 (cp_parser_statement): Add in_compound argument; update callers.
594 Use it to decide how to handle pragma parsing.
595 (cp_parser_labeled_statement): Add in_compound argument; pass
596 it on to cp_parser_statement.
597 (cp_parser_statement_seq_opt): Stop at CPP_PRAGMA_EOL.
598 (cp_parser_declaration_seq_opt): Likewise.
599 (cp_parser_parameter_declaration): Likewise.
600 (cp_parser_member_specification_opt): Likewise.
601 (cp_parser_function_definition_after_decl): Likewise.
602 (cp_parser_cache_group): Handle CPP_PRAGMA/CPP_PRAGMA_EOL pairs.
603 (cp_parser_pragma): New.
604 (pragma_lex): New.
605
606 2006-01-04 Dirk Mueller <dmueller@suse.com>
607
608 * decl.c (finish_constructor_body): create simple
609 compound stmt instead of a if(1) { } construct.
610
611 2006-01-03 Mark Mitchell <mark@codesourcery.com>
612
613 PR c++/25492
614 * name-lookup.c (push_class_level_binding): When a derived class
615 provides a type binding, eliminate any type binding from a base
616 class.
617
618 PR c++/25625
619 * repo.c (repo_emit_p): Always instantiate static data members
620 initialized by constant expressions, so that there values are
621 available.
622
623 2006-01-02 Mark Mitchell <mark@codesourcery.com>
624
625 PR c++/25635
626 * class.c (add_method): Set TYPE_HAS_CONVERSION for classes with a
627 conversion operator.
628 * decl.c (grokdeclarator): Do not set TYPE_HAS_CONVERSION here.
629
630 PR c++/25638
631 * class.c (add_method): Never associate more than one destructor
632 with a single class.
633
634 PR c++/25637
635 * cp-tree.h (do_friend): Adjust prototype.
636 * decl.c (grokfndecl): Make funcdef_flag a bool, not an int.
637 (grokdeclarator): Likewise. Refine check for invalid
638 declarations/definitions of member functions outside of their own
639 class.
640 * friend.c (do_friend): Make funcdef_flag a bool, not an int.
641
642 PR c++/25633
643 * parser.c (cp_parser_mem_initializer_list): Check result of
644 cp_parser_mem_initializer against error_mark_node, not NULL_TREE.
645 (cp_parser_mem_initializer): Return error_mark_node for failure.
646
647 PR c++/25634
648 * parser.c (cp_parser_template_parameter_list): Call
649 begin_template_parm_list and end_template_parm_list here.
650 (cp_parser_type_parameter): Not here.
651 (cp_parser_template_declaration_after_export): Or here.
652 (cp_parser_elaborated_type_specifier): Call
653 cp_parser_check_template_parameters.
654
655 * tree.c (build_target_expr_with_type): Use force_target_expr.
656
657 * decl2.c (mark_used): Fix typo in comment.
658
659 2006-01-02 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
660
661 * parser.c (cp_parser_using_declaration): Skip name-lookup on
662 invalid scope.
663
664 2005-12-30 Gabriel Dos Reis <gdr@integrable-solutions.net>
665
666 * cxx-pretty-print.c (pp_cxx_constant): New. Print
667 string-literal in parens if input program says so.
668 (pp_cxx_primary_expression): Hand off constant printing to
669 pp_cxx_constant.
670 (pp_cxx_pretty_printer_init): Set pp->c_base.constant.
671 (pp_cxx_expression): Use pp_cxx_constant for literals.
672 * error.c (dump_expr): Use pp_constant for literals.
673
674 2005-12-29 Nathan Sidwell <nathan@codesourcery.com>
675
676 * method.c (make_thunk): Don't set comdat_linkage here.
677 (use_thunk): Make thunk one only here, if thunk target is
678 DECL_ONE_ONLY.
679
680 2005-12-26 Mark Mitchell <mark@codesourcery.com>
681
682 PR c++/25439
683 * decl.c (grokdeclarator): Remove dead code.
684 * ptree.c (cxx_print_xnode): Handle BASELINK.
685 * parser.c (make_id_declarator): Add sfk parameter.
686 (cp_parser_direct_declarator): Do not pass TYPE_DECLs to
687 make_id_declarator.
688 (cp_parser_declarator_id): Simplify BASELINKs here.
689 (cp_parser_member_declaration): Adjust calls to
690 make_id_declarator.
691
692 2005-12-26 Mark Mitchell <mark@codesourcery.com>
693
694 PR c++/23171, c++/23172, c++/25417.
695 * typeck.c (build_unary_op): Create temporary variables for
696 compound literals whose addresses are taken.
697 * init.c (expand_aggr_init_1): Use COMPOUND_LITERAL_P.
698 * decl.c (reshape_init_vector): Likewise.
699 (reshape_init): Give it external linkage.
700 (check_initializer): Use COMPOUND_LITERAL_P.
701 (initialize_artificial_var): Allow the initializer to be a
702 CONSTRUCTOR.
703 * call.c (make_temporary_var_for_ref_to_temp): Use
704 create_temporary_var.
705 * cp-tree.h (COMPOUND_LITERAL_P): New macro.
706 (rehape_init): Declare.
707 * typeck2.c (digest_init): Use COMPOUND_LITERAL_P.
708 * semantics.c (finish_compound_literal): Use reshape_init.
709
710 2005-12-23 Mark Mitchell <mark@codesourcery.com>
711
712 PR c++/24671
713 * pt.c (instantiate_template): Handle SFINAE.
714
715 2005-12-23 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
716
717 * decl.c (grokdeclarator): Improve diagnostic for friend
718 declarations of class members.
719
720 2005-12-22 Mark Mitchell <mark@codesourcery.com>
721
722 PR c++/25369
723 * tree.c (really_overloaded_fn): Tweak comment.
724 * pt.c (tsubst_call_declarator_parms): Remove.
725 (tsubst_copy): Call mark_used on the member referenced by an
726 OFFSET_REF.
727 * semantics.c (finish_qualified_id_expr): Simplify.
728 * decl2.c (mark_used): Accept BASELINKs.
729
730 PR c++/25364
731 * typeck.c (build_unary_op): Pass DECLs not names to
732 build_offset_refs.
733 * init.c (build_offset_ref): Do not do name lookup. Do not call
734 mark_used.
735 * call.c (build_call): Simplify and tidy.
736 * semantics.c (finish_qualified_id_expr): Call mark_used.
737
738 2005-12-22 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
739
740 PR c++/23333
741 * parser.c (cp_parser_pure_specifier): Check for PURE_ZERO to
742 identify a single '0'.
743
744 2005-12-20 Mark Mitchell <mark@codesourcery.com>
745
746 PR c++/21228
747 * decl.c (use_eh_spec_block): New function.
748 (store_parm_decls): Use it.
749 (finish_function): Likewise.
750
751 2005-12-19 Mark Mitchell <mark@codesourcery.com>
752
753 PR c++/24278
754 * init.c (expand_member_init): Print messages about baseclasses
755 using %T rather than %D.
756
757 PR c++/24915
758 * class.c (add_method): Do not treat templates as identical unless
759 their return types are the same.
760
761 2005-12-12 Mark Mitchell <mark@codesourcery.com>
762
763 PR c++/25300
764 * tree.c (build_qualified_name): Return error_mark_node for
765 erroneous input.
766
767 2005-12-10 Mark Mitchell <mark@codesourcery.com>
768
769 PR c++/25337
770 * pt.c (tsubst_copy_and_build): Permit dependent types for the
771 object in a class member access expression.
772
773 2005-12-10 Terry Laurenzo <tlaurenzo@gmail.com>
774
775 PR java/9861
776 * mangle.c (write_bare_function_type): Mangle return type for
777 methods of Java classes
778
779 2005-12-08 Th�dore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
780
781 * call.c (build_conditional_expr): Print types in error messages.
782
783 2005-12-07 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
784
785 * expr.c (cxx_expand_expr): Call gcc_unreachable instead of abort.
786
787 2005-12-07 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
788
789 * cp-gimplify.c (gimplify_cp_loop): Use fold_build3.
790
791 2005-12-07 Rafael �ila de Esp�dola <rafael.espindola@gmail.com>
792
793 * Make-lang.in (c++.all.build, c++.install-normal): Remove.
794
795 2005-12-07 Rafael �ila de Esp�dola <rafael.espindola@gmail.com>
796
797 * Make-lang.in: Remove all dependencies on s-gtype.
798
799 2005-12-06 Aldy Hernandez <aldyh@redhat.com>
800
801 PR C++/24138
802 * decl.c (reshape_init_array_1): Handle max_index of -1.
803
804 2005-12-06 Roger Sayle <roger@eyesopen.com>
805
806 * typeck.c (build_binary_op): Issue warning if either operand of a
807 comparison operator is a string literal, except for testing equality
808 or inequality against NULL.
809
810 2005-12-06 Roger Sayle <roger@eyesopen.com>
811
812 PR c++/25263
813 * decl.c (compute_array_index_type): Check that itype is an
814 INTEGER_CST node before testing/clearing TREE_OVERFLOW.
815
816 2005-12-05 Daniel Berlin <dberlin@dberlin.org>
817
818 * ptree.c (cxx_print_decl): Update to check for decl_common
819 structure.
820
821 2005-12-02 Mark Mitchell <mark@codesourcery.com>
822
823 PR c++/24173
824 * decl.c (duplicate_decls): Don't rely on DECL_TEMPLATE_INFO after
825 clobbering newdecl.
826
827 2005-12-02 Richard Guenther <rguenther@suse.de>
828
829 * semantics.c (simplify_aggr_init_expr): Use buildN instead
830 of build.
831
832 2005-12-02 Gabriel Dos Reis <gdr@integrable-solutions.net>
833
834 * parser.c (cp_lexer_new_main): Usr GGC_RESIZEVEC instead of
835 ggc_realloc.
836 (cp_parser_template_argument_list): Use XRESIZEVEC instead of
837 xrealloc.
838 * class.c (pushclass): Likewise.
839
840 2005-12-02 Gabriel Dos Reis <gdr@integrable-solutions.net>
841
842 * decl2.c (get_priority_info): Use XNEW, not xmalloc.
843 * decl.c (push_switch): Likewise.
844 * lex.c (handle_pragma_implementation): Likewise.
845 * cp-objcp-common.c (decl_shadowed_for_var_insert): Use GGC_NEW,
846 not ggc_alloc.
847 (cxx_initialize_diagnostics): Use XNEW, not xmalloc.
848 * class.c (init_class_processing): Use XNEWVEC, not xmalloc.
849 * g++spec.c (lang_specific_driver): Likewise.
850 * mangle.c (save_partially_mangled_name): Likewise.
851 * parser.c (cp_lexer_new_main): Use GGC_NEWVEC, not ggc_alloc.
852 (cp_parser_template_argument_list): Use XNEWVEC, nto xmalloc.
853 (cp_parser_sizeof_operand): Likewise.
854 * repo.c (open_repo_file, open_repo_file): Likewise.
855
856 2005-12-01 Gabriel Dos Reis <gdr@integrable-solutions.net>
857
858 * parser.c (cp_parser_make_typename_type): Call make_typename_type
859 with tf_none instead of magic value 0.
860 (cp_parser_explicit_instantiation): Call do_type_instantiation
861 with tf_error instead of magic value 1.
862 (cp_parser_elaborated_type_specifier): Call make_typename_type
863 with tf_error instead of magic value 1.
864 (cp_parser_class_name): Likewise.
865 (cp_parser_lookup_name): Likewise.
866
867 2005-12-01 Gabriel Dos Reis <gdr@integrable-solutions.net>
868
869 * parser.c (cp_parser_declaration): Set token2.type to CPP_EOF,
870 not RID_MAX.
871
872 2005-11-30 Jason Merrill <jason@redhat.com>
873
874 PR c++/21123
875 * cp-gimplify.c (cp_genericize_r): Don't dereference invisible reference
876 parms in a thunk.
877
878 2005-11-30 Ben Elliston <bje@au.ibm.com>
879
880 * typeck.c (build_x_unary_op): Correct spelling in error message.
881
882 2005-11-28 Nathan Sidwell <nathan@codesourcery.com>
883
884 PR c++/21166
885 * class.c (check_field_decls): Only set DECL_PACKED on a field
886 when its natural alignment is > BITS_PER_UNIT.
887
888 2005-11-27 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
889
890 PR c++/24979
891 * cp-tree.h (DECL_MAIN_P): Remove duplicate definition.
892
893 2005-11-26 Richard Henderson <rth@redhat.com>
894
895 * lex.c: Update for pragma_lex rename.
896 * parser.c: Likewise.
897
898 2005-11-25 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
899
900 PR c++/9278
901 * decl.c (grokparms): Do not allow typedef-names in a '(void)'
902 parmlist.
903
904 2005-11-25 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
905
906 * typeck2.c (process_init_constructor_union): Remove check for
907 unnamed union members.
908
909 2005-11-25 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
910
911 * name-lookup.c (lookup_name_real): Merge two if's.
912
913 2005-11-25 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
914
915 * pt.c (instantiate_class_template): Clean-up.
916
917 2005-11-25 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
918
919 * pt.c (template_class_depth_real): Remove. Move functionality to ...
920 (template_class_depth): ... here, replacing count_specializations
921 with 0. Adjust comment.
922
923 2005-11-24 Richard Guenther <rguenther@suse.de>
924 Dirk Mueller <dmueller@suse.de>
925
926 PR c++/14024
927 * typeck.c (build_reinterpret_cast_1): Use
928 strict_aliasing_warning.
929
930 2005-11-23 Gabriel Dos Reis <gdr@integrable-solutions.net>
931
932 PR c++/24235
933 * pt.c (check_instantiated_args): Reword diagnostic message about
934 template argument involving local types.
935
936 2005-11-23 Gabriel Dos Reis <gdr@integrable-solutions.net>
937
938 PR c++/21667
939 * typeck.c (build_array_ref): Avoid code duplicate. Use common
940 C/C++ diagnostic function warn_array_subscript_with_type_char.
941
942 2005-11-21 Gabriel Dos Reis <gdr@integrable-solutions.net>
943
944 PR c++/22238
945 * error.c (resolve_virtual_fun_from_obj_type_ref): New.
946 (dump_expr): Use it in <case CALL_EXPR>.
947
948 2005-11-21 Richard Henderson <rth@redhat.com>
949
950 * cp-objcp-common.h, name-lookup.c, name-lookup.h: Revert 11-18 patch.
951
952 * name-lookup.c (lookup_name): Remove prefer_type argument.
953 (lookup_name_prefer_type): New.
954 * decl.c (lookup_and_check_tag): Use them.
955 * pt.c (tsubst_friend_class): Likewise.
956 (lookup_template_class): Likewise.
957 (tsubst_copy_and_build): Likewise.
958 * name-lookup.h (lookup_name_prefer_type): New.
959 (lookup_name): Remove declaration.
960
961 2005-11-18 Mark Mitchell <mark@codesourcery.com>
962
963 PR c++/8355
964 * decl.c (grokfndecl): Set up DECL_TEMPLATE_INFO before calling
965 set_decl_namespace.
966 * name-lookup.c (set_decl_namespace):
967
968 2005-11-18 Mike Stump <mrs@apple.com>
969
970 * cp-objcp-common.h (LANG_HOOKS_LOOKUP_NAME): Add.
971 * name-lookup.c (lookup_name_two): Remove.
972 (lookup_name_one): Add.
973 * name-lookup.h (lookup_name_two): Remove.
974 (lookup_name_one): Add.
975
976 2005-11-15 Jason Merrill <jason@redhat.com>
977
978 PR c++/24580
979 * method.c (locate_copy): Also use skip_artificial_parms here.
980 (synthesize_exception_spec): Use CLASS_TYPE_P rather than checking
981 for RECORD_TYPE.
982 (locate_ctor): Abort if we fail to find a default constructor.
983
984 2005-11-15 Mike Stump <mrs@apple.com>
985
986 * name-lookup.c (lookup_name_two): Add.
987 * name-lookup.h: Likewise.
988
989 2005-11-15 Mark Mitchell <mark@codesourcery.com>
990
991 PR c++/24667
992 * typeck.c (check_for_casting_away_constness): Use the diag_fn.
993 (build_const_cast_1): Call it, for C-style casts.
994
995 2005-11-14 Mark Mitchell <mark@codesourcery.com>
996
997 PR c++/24687
998 * pt.c (check_explicit_specialization): Don't check for C linkage.
999 (push_template_decl_real): Likewise.
1000 * parser.c (cp_parser_explicit_specialization): Check here.
1001 (cp_parser_template_declaration_after_export): And here.
1002
1003 * parser.c (cp_lexer_get_preprocessor_token): Initialize keyword
1004 field.
1005
1006 2005-11-14 Jason Merrill <jason@redhat.com>
1007
1008 PR c++/24580
1009 * method.c (locate_ctor): Skip all artificial parms, not just
1010 'this'.
1011
1012 2005-11-14 Mark Mitchell <mark@codesourcery.com>
1013
1014 * parser.c (eof_token): Add initializer for ambiguous_p.
1015
1016 2005-11-13 Mark Mitchell <mark@codesourcery.com>
1017
1018 PR c++/24817
1019 * decl.c (check_redeclaration_exception_specification): New
1020 function.
1021 (duplicate_decls): Use it.
1022 * error.c (fndecl_to_string): Print the template parameter list.
1023
1024 PR c++/20293
1025 * cxx-pretty-print.c (pp_cxx_statement): Print qualifying scopes
1026 for namespaces.
1027 (pp_cxx_original_namespace_definition): Likewise.
1028 * name-lookup.c (ambiguous_decl): Don't issue error messages;
1029 instead return lists of ambiguous candidates.
1030 (select_decl): Handle ambiguous namespace lookups.
1031 * parser.c (cp_token): Add ambiguous_p.
1032 (cp_lexer_get_preprocessor_token): Set it.
1033 (cp_parser_diagnose_invalid_type_name): Avoid duplicate messages
1034 when a qualified name uses an invalid scope.
1035 (cp_parser_primary_expression): Print ambiguous candidates.
1036 (cp_parser_type_parameter): Adjust comment to reflect new
1037 parameter name for cp_parser_lookup_name.
1038 (cp_parser_template_argument): Likewise.
1039 (cp_parser_elaborated_type_specifier): Likewise.
1040 (cp_parser_namespace_name): Likewise.
1041 (cp_parser_class_name): Print ambiguous candidates.
1042 (cp_parser_lookup_name): Rename ambiguous_p parameter to
1043 ambiguous_decls. Use it to return a list of ambiguous candiates
1044 when a lookup is ambiguous.
1045 (cp_parser_lookup_name_simple): Adjust comment to reflect new
1046 parameter name for cp_parser_lookup_name.
1047
1048 2005-11-12 Jakub Jelinek <jakub@redhat.com>
1049
1050 PR c++/24780
1051 * typeck.c (complete_type): Set TYPE_NEEDS_CONSTRUCTING
1052 and TYPE_HAS_NONTRIVIAL_DESTRUCTOR flags for all variants
1053 of array type.
1054
1055 PR c++/24761
1056 * pt.c (tsubst_copy_asm_operands): New function.
1057 (tsubst_expr) <case ASM_EXPR>: Use it.
1058
1059 2005-11-08 Jakub Jelinek <jakub@redhat.com>
1060
1061 PR c++/19450
1062 * decl.c (redeclaration_error_message): Issue diagnostics about
1063 olddecl and newdecl disagreement on __thread property.
1064 (grokdeclarator): Set DECL_TLS_MODEL on class static variables.
1065
1066 2005-11-08 Jason Merrill <jason@redhat.com>
1067
1068 PR c++/21123
1069 * method.c (use_thunk): Use build_cplus_new instead of
1070 force_target_expr.
1071
1072 2005-11-06 Jason Merrill <jason@redhat.com>
1073 James A. Morrison <phython@gcc.gnu.org>
1074
1075 PR c++/17256
1076 * decl2.c (cp_finish_file): Fix conditions for undefined warning.
1077 Set TREE_NO_WARNING instead of TREE_PUBLIC.
1078 * pt.c (instantiate_pending_templates): Set DECL_INITIAL to avoid
1079 a warning on a function we didn't instantiate because of excessive
1080 recursion.
1081
1082 2005-11-06 Mark Mitchell <mark@codesourcery.com>
1083
1084 * class.c (record_subobject_offsets): Don't record offsets past
1085 biggest empty class for non-empty base classes.
1086 (layout_class_type): Use TYPE_SIZE_UNIT, not TYPE_SIZE, when
1087 keeping track of the size of emptyclasses.
1088
1089 PR c++/21308
1090 * class.c (sizeof_biggest_empty_class): New variable.
1091 (record_subobject_offsets): Don't record offsets past biggest
1092 empty class for data members. Replace vbases_p parameter with
1093 is_data_member parameter.
1094 (build_base_field): Adjust call.
1095 (layout_class_type): Likewise. Maintain
1096 sizeof_biggest_empty_class.
1097
1098 2005-11-05 Kazu Hirata <kazu@codesourcery.com>
1099
1100 * decl2.c, init.c, typeck.c: Fix comment typos.
1101
1102 2005-11-04 Richard Guenther <rguenther@suse.de>
1103
1104 PR c++/22487
1105 * init.c (build_vec_init): Build comparison of matching
1106 types.
1107
1108 2005-11-03 Josh Conner <jconner@apple.com>
1109
1110 PR c++/19989
1111 pt.c (tsubst): Accept zero-length array if tf_error is set
1112 in complain flags. Change error message for negative-
1113 length array.
1114
1115 2005-11-04 Joseph S. Myers <joseph@codesourcery.com>
1116
1117 * cp-tree.h (cp_cpp_error), error.c (cp_cpp_error): Take va_list*
1118 parameter.
1119
1120 2005-11-03 Joseph S. Myers <joseph@codesourcery.com>
1121
1122 PR c++/17964
1123 * error.c (cp_cpp_error): New function.
1124 * cp-tree.h (cp_cpp_error): Declare.
1125 * parser.c (cp_lexer_new_main): Set CPP option client_diagnostic
1126 and error callback after lexing.
1127
1128 2005-11-03 Mark Mitchell <mark@codesourcery.com>
1129
1130 PR c++/21627
1131 * pt.c (register_specialization): Update inline flags on clones.y
1132
1133 2005-11-03 Andrew Pinski <pinskia@physics.uc.edu>
1134
1135 PR c++/24582
1136 * decl.c (declare_local_label): Return 0 for variables
1137 with error_mark_node as their types.
1138
1139 2005-11-02 Mark Mitchell <mark@codesourcery.com>
1140
1141 PR c++/22434
1142 * call.c (build_conditional_expr): Do bad conversions, if there's
1143 no other choice.
1144
1145 PR c++/24560
1146 * parser.c (cp_parser_postfix_dot_deref_expression): Improve error
1147 message for use of overloaded functions on LHS of "." operator.
1148
1149 PR c++/19253
1150 * parser.c (cp_parser_postfix_expression): Use
1151 cp_parser_elaborated_type_specifier to handle typename-types in
1152 functional casts.
1153 (cp_parser_enclosed_argument_list): Skip ahead to the end of the
1154 template argument list if the closing ">" is not found.
1155
1156 PR c++/24569
1157 * pt.c (instantiate_decl): Use cp_finish_decl, not
1158 finish_static_data_member_decl.
1159
1160 2005-10-28 Andrew Pinski <pinskia@physics.uc.edu>
1161
1162 * decl.c (grokfndecl): Remove the setting
1163 of the return type of the function type
1164 of main after erroring about must returning
1165 int.
1166
1167 2005-10-28 Andrew Pinski <pinskia@physics.uc.edu>
1168
1169 PR C++/23229
1170 * decl.c (grokfndecl): Create a new function type
1171 after erroring out about main not returning int.
1172
1173 2005-10-28 Josh Conner <jconner@apple.com>
1174
1175 PR c++/22153
1176 * parser.c (cp_parser_member_declaration): Detect and handle
1177 a template specialization.
1178
1179 2005-10-28 Andrew Pinski <pinskia@physics.uc.edu>
1180
1181 PR C++/23426
1182 * decl.c (start_decl): Check that the decl is an
1183 error_mark_node before getting the type.
1184 Remove the check for the decl's type being an
1185 error_mark_node.
1186
1187 2005-10-21 Mark Mitchell <mark@codesourcery.com>
1188
1189 PR c++/24260
1190 * parser.c (cp_parser_init_declarator): Pass attributes to
1191 grokfield.
1192
1193 2005-10-20 Mark Mitchell <mark@codesourcery.com>
1194
1195 PR c++/22618
1196 * search.c (accessible_p): Check access in the outermost set of
1197 template parameters.
1198
1199 2005-10-20 Richard Guenther <rguenther@suse.de>
1200
1201 * decl.c (grokdeclarator): Fix ambiguous pedwarn message.
1202
1203 2005-10-18 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
1204
1205 PR c++/22293
1206 * decl.c (grokdeclarator): Reject unqualified destructors in
1207 friend declarations.
1208
1209 2005-10-18 Mark Mitchell <mark@codesourcery.com>
1210
1211 PR c++/23293
1212 * pt.c (convert_template_argument): Use canonical type variants in
1213 template specializations.
1214
1215 2005-10-18 Nathan Sidwell <nathan@codesourcery.com>
1216
1217 PR c++/21383
1218 * name-lookup.c (arg_assoc): Template args can be null in a
1219 template-id-expr.
1220
1221 PR c++/22604
1222 * class.c (update_vtable_entry_for_fn): Don't process invalid
1223 covariant overriders.
1224
1225 PR c++/23118
1226 * cp-tree.h (add_method): Add return value.
1227 * class.c (add_method): Return success indicator.
1228 * semantics.c (finish_member_declaration): Don't add an invalid
1229 method to the method list.
1230
1231 2005-10-17 Mark Mitchell <mark@codesourcery.com>
1232
1233 PR c++/21908
1234 * call.c (build_new_method_call): Do not show VTT parameters to
1235 the user.
1236
1237 2005-10-17 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
1238
1239 PR c++/23440
1240 * parser.c (cp_parser_statement): If the parser reached CPP_EOF,
1241 only complain about missing statement.
1242
1243 2005-10-17 Nathan Sidwell <nathan@codesourcery.com>
1244
1245 PR c++/24386
1246 * cp-tree.h (BASELINK_QUALIFIED_P): New.
1247 * pt.c (tsubst_copy_and_build): <CALL_EXPR case>: Use it.
1248 * typeck.c (finish_class_member_access_expr): Set it.
1249
1250 PR c++/21353
1251 * decl.c (check_default_argument): Don't check
1252 processing_template_decl or uses_template_parms here.
1253 (grokparms): Only call check_default_argument when not processing
1254 a template decl.
1255 * parser.c (cp_parser_late_parsing_default_arg): Call
1256 check_default_argument when not processing a template decl.
1257
1258 2005-10-16 Mark Mitchell <mark@codesourcery.com>
1259
1260 PR c++/24389
1261 * decl2.c (mark_used): Use uses_template_parms instead of
1262 dependent_type_p.
1263 * init.c (constant_value_1): Handle uninstantiated templates
1264 specially.
1265 * pt.c (instantiate_decl): Add sanity check.
1266
1267 2005-10-16 Mark Mitchell <mark@codesourcery.com>
1268
1269 PR c++/22173
1270 * typeck.c (check_template_keyword): Fix thinko.
1271
1272 2005-10-16 Andrew Pinski <pinskia@physics.uc.edu>
1273
1274 PR c++/23959
1275 * decl.c (pop_switch): Only call c_do_switch_warnings
1276 when not processing templates.
1277
1278 2005-10-16 Mark Mitchell <mark@codesourcery.com>
1279
1280 PR c++/22173
1281 * cp-tree.h (QUALIFIED_NAME_IS_TEMPLATE): New macro.
1282 (check_template_keyword): New function.
1283 (finish_id_expression): Change prototoype.
1284 (finish_qualified_id_expr): Change prototype.
1285 (build_qualified_name): New function.
1286 (finish_class_member_access_expr): Change prototype.
1287 * init.c (build_offset_ref): Use build_qualified_name.
1288 * mangle.c (write_expression): Likewise.
1289 * parser.c (cp_parser_primary_expression): Remove qualifying_class
1290 parameter. Add address_p and template_arg_p. Use
1291 build_qualified_name.
1292 (cp_parser_id_expression): Default *template_p to
1293 template_keyword_p. Check for invalid uses of the template
1294 keyword.
1295 (cp_parser_postfix_expression): Eliminate special handling for
1296 qualified names. Adjust call to cp_parser_primary_expression.
1297 (cp_parser_postfix_dot_deref_expression): Adjust call to
1298 cp_parser_id_expression and finish_class_member_access_expr.
1299 (cp_parser_template_argument_list): Add comment.
1300 (cp_parser_template_argument): Adjust use of
1301 cp_parser_primary_expression. Remove call to
1302 finish_qualified_id_expr.
1303 (cp_parser_lookup_name): Use build_qualified_name.
1304 * pt.c (tsubst): Use build_qualified_name.
1305 (tsubst_qualified_id): Likewise. Adjust call to
1306 finish_qualified_id_expr.
1307 (tsubst_copy): Use build_qualified_name.
1308 (tsubst_copy_and_build): Adjusts call to finish_id_expression and
1309 finish_class_member_access_expr.
1310 * semantics.c (finish_non_static_data_member): Use
1311 build_qualified_name.
1312 (finish_qualified_id_expr): Add template_p and template_arg_p
1313 parameters.
1314 (finish_id_expression): Remove qualifiying_class parameter. Add
1315 template_p, done, address_p, and template_arg_p. Use
1316 build_qualified_name. Adjust calls to
1317 finish_class_member_acess_expr.
1318 * tree.c (build_qualified_name): New function.
1319 * typeck.c (check_template_keyword): New function.
1320 (finish_class_member_access_expr): Add template_p argument. Check
1321 for invalid uses of the template keyword.
1322
1323 2005-10-15 Mark Mitchell <mark@codesourcery.com>
1324
1325 PR c++/21347
1326 * class.c (maybe_warn_about_overly_private_class): Lazy
1327 constructors are public.
1328
1329 2005-10-14 Mark Mitchell <mark@codesourcery.com>
1330
1331 PR c++/19565
1332 * call.c (convert_like_real): Rely on convert_and_check to issue
1333 warnings about overflow and conversion to unsigned.
1334 * decl.c (finish_enum): Use the location of the enumerators, not
1335 the closing brace of the enumeration, when reporting warnings
1336 about conversions.
1337 (build_enumerator): Use error_mark_node for erroneous values.
1338 * typeck2.c (digest_init): Remove reference to "signature pointer"
1339 from comment.
1340
1341 2005-10-14 Nathan Sidwell <nathan@codesourcery.com>
1342
1343 PR c++/17796
1344 * optimize.c (update_cloned_parm): Add FIRST parameter. Use it.
1345 (maybe_clone_body): Track the first clone.
1346
1347 2005-10-13 Nathan Sidwell <nathan@codesourcery.com>
1348
1349 PR c++/23984
1350 * class.c (build_base_path): The vtable is always the first thing
1351 in the vtt.
1352
1353 2005-10-13 Mark Mitchell <mark@codesourcery.com>
1354
1355 PR c++/20721
1356 * cp-tree.h (DECL_NONTRIVIALLY_INITIALIZED_P): New macro.
1357 * decl.c (duplicate_decls): Merge it into new declarations.
1358 (decl_jump_unsafe): Use it, rather than DECL_INITIAL.
1359 (cp_finish_decl): Set it, when appropriate.
1360
1361 PR c++/22180
1362 * call.c (build_new_method_call): Correct pretty-printing of
1363 destructor names.
1364 * pt.c (tsubst_qualified_id): Recognize invalid uses of "~T" as an
1365 identifier.
1366
1367 PR c++/23694
1368 * decl.c (start_method): Return error_mark_node for errors.
1369
1370 PR c++/23307
1371 * pt.c (push_template_decl_real): Complain about attempts to
1372 declare template variables.
1373
1374 PR c++/22352
1375 * pt.c (tsubst_template_parms): Set processing_template_decl while
1376 processing the parameters.
1377 (tsubst_decl): Set processing_template_decl when substituting into
1378 a TEMPLATE_DECL.
1379
1380 PR c++/22405
1381 * pt.c (most_specialized_instantiation): Robustify.
1382
1383 PR c++/22464
1384 * semantics.c (finish_id_expression): Issue errors about uses of
1385 local variables in containing functions even in templates.
1386
1387 2005-10-12 Danny Smith <dannysmith@users.sourceforge.net>
1388
1389 PR target/21801
1390 PR target/23589
1391 * class.c (finish_struct_1): Call
1392 targetm.cxx.adjust_class_at_definition.
1393
1394
1395 2005-10-12 Nathan Sidwell <nathan@codesourcery.com>
1396
1397 PR c++/21592
1398 * pt.c (build_non_dependent_expr): Don't wrap a COMPONENT_REF
1399 with already looked up member functions. Assert we're not
1400 returning a NON_DEPENDENT_EXPR with unknown type.
1401 * typeck.c (finish_class_member_access_expr): We can get
1402 non-template-id-expr baselinks. If the lookup finds a baselink,
1403 remember it even inside templates.
1404
1405 PR c++/23797
1406 * parser.c (cp_parser_functional_cast): Cope when TYPE is not a
1407 TYPE_DECL. Use dependent_type_p to check type.
1408 * pt.c (uses_template_parms_p): Use dependent_type_p for a
1409 TYPE_DECL.
1410 (type_dependent_expression_p): Assert we've not been given a
1411 TYPE_DECL.
1412
1413 PR c++/21117
1414 * decl.c (check_function_type): Correctly overwrite incomplete
1415 return type with void type.
1416 * typeck.c (check_return_expr): If the function's return type is
1417 void, don't try and convert a return expr.
1418
1419 2005-10-12 David Edelsohn <edelsohn@gnu.org>
1420
1421 PR c++/23730
1422 * call.c (build_object_call): If BINFO is NULL, bypass
1423 lookup_fnfields and set fns to NULL_TREE.
1424
1425 2005-10-12 Paolo Bonzini <bonzini@gnu.org>
1426
1427 PR c++/24052
1428 * error.c (dump_expr): Pass LABEL_DECL to dump_decl. Print
1429 an ADDR_EXPR of a LABEL_DECL as &&.
1430
1431 2005-10-12 Nathan Sidwell <nathan@codesourcery.com>
1432
1433 PR c++/19964
1434 * class.c (walk_subobject_offsets): Don't walk error_mark_node.
1435
1436 2005-10-11 Ian Lance Taylor <ian@airs.com>
1437
1438 PR c++/8057
1439 * cvt.c (convert_to_void): Don't warn about unused values when
1440 processing a template declaration.
1441
1442 2005-10-11 Mark Mitchell <mark@codesourcery.com>
1443
1444 PR c++/21089
1445 * call.c (convert_like_real): Use decl_constant_value, not
1446 integral_constant_value.
1447 * init.c (constant_value_1): New function.
1448 (integral_constant_value): Use it.
1449 (decl_constant_value): Likewise.
1450 * typeck.c (decay_conversion): Use decl_constant_value, not
1451 integral_constant_value.
1452
1453 PR c++/21369
1454 * parser.c (cp_parser_elaborated_type_specifier): Don't treat
1455 class types as templates if the type is not appearing as part of a
1456 type definition or declaration.
1457
1458 2005-10-10 Mark Mitchell <mark@codesourcery.com>
1459
1460 PR c++/24277
1461 * pt.c (instantiate_decl): Call finish_static_data_member_decl for
1462 static data members.
1463
1464 2005-10-10 Giovanni Bajo <giovannibajo@gcc.gnu.org>
1465 Mark Mitchell <mark@codesourcery.com>
1466
1467 PR c++/23437
1468 * parser.c (cp_parser_template_argument_list): Do not treat
1469 contents of argument list as part of a constant expression.
1470
1471 2005-10-10 Mark Mitchell <mark@codesourcery.com>
1472
1473 PR c++/24139
1474 * decl.c (grokdeclarator): Do not require template parameter lists
1475 for explicitly specialized class.
1476 * error.c (dump_aggr_type): Do not dump template arguments for
1477 non-primary specializations.
1478 (dump_function_name): Likewise.
1479
1480 PR c++/24275
1481 * pt.c (instantiate_decl): Instantiate the initializer of
1482 a static data member in the namespace containing the class
1483 containing the static data member.
1484
1485 2005-10-08 James A. Morrison <phython@gcc.gnu.org>
1486
1487 PR c++/22172
1488 * parser.c (cp_parser_postfix_expression) <RID_TYPENAME>: Treat nontype
1489 scopes as nondependent.
1490
1491 2005-10-06 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
1492
1493 * call.c (resolve_args): Remove redundant test.
1494
1495 2005-10-05 Paolo Bonzini <bonzini@gnu.org>
1496
1497 PR tree-optimization/21419
1498 PR tree-optimization/24146
1499 PR tree-optimization/24151
1500
1501 * semantics.c (finish_asm_stmt): Call readonly_error if outputs are
1502 read-only. Set ASM_VOLATILE_P for asms without outputs.
1503
1504 2005-10-05 Nathan Sidwell <nathan@codesourcery.com>
1505
1506 PR c++/23513
1507 * call.c (joust): Adjust length count to more_specialized_fn.
1508 * pt.c (more_specialized_fn): Cope with non-static member vs
1509 non-member.
1510
1511 2005-10-04 Andrew Pinski <pinskia@physics.uc.edu>
1512
1513 PR middle-end/23125
1514 * decl.c (make_rtl_for_nonlocal_decl): Use set_user_assembler_name
1515 instead of change_decl_assembler_name.
1516
1517 2005-10-03 Alexandre Oliva <aoliva@redhat.com>
1518
1519 * error.c (dump_type) <UNKNOWN_TYPE>: Print reworded message.
1520
1521 2005-10-03 Mark Mitchell <mark@codesourcery.com>
1522
1523 PR c++/17775
1524 * repo.c: Include flags.h.
1525 (finish_repo): Add -frandom-seed to the arguments.
1526
1527 2005-10-02 Mark Mitchell <mark@codesourcery.com>
1528
1529 PR c++/22621
1530 * parser.c (cp_parser_template_argument): Don't turn "T::f" into
1531 "(*this).T::f".
1532 * pt.c (convert_nontype_argument): Remove ??? comment.
1533
1534 PR c++/23840
1535 * tree.c (lvalue_p_1): A VA_ARG_EXPR with class type is an lvalue,
1536 when class rvalues are lvalues.
1537
1538 2005-09-28 Mark Mitchell <mark@codesourcery.com>
1539
1540 PR c++/16782
1541 * decl.c (grokdeclarator): Always pedwarn about overqualified
1542 member names.
1543
1544 2005-09-27 Mark Mitchell <mark@codesourcery.com>
1545
1546 PR c++/22147
1547 * name-lookup.c (maybe_process_template_type_declaration): Don't
1548 treat forward declarations of classes as templates just because
1549 we're processing_template_decl.
1550 * pt.c (tsubst_decl): Clear DECL_TEMPLATE_INFO for friend
1551 functions.
1552
1553 2005-09-26 Jason Merrill <jason@redhat.com>
1554
1555 PR c++/13764
1556 * cp-tree.h (FUNCTION_NEEDS_BODY_BLOCK): New macro.
1557 * name-lookup.c (pushdecl_maybe_friend): Check it.
1558 * decl.c (begin_function_body): Do nothing if it's false.
1559 (finish_function_body): Ditto.
1560 (outer_curly_brace_block): New fn.
1561 (finish_function): Use it.
1562
1563 2005-09-26 Richard Guenther <rguenther@suse.de>
1564
1565 PR middle-end/15855
1566 * decl2.c (do_static_destruction): Remove.
1567 (finish_static_initialization_or_destruction): Likewise.
1568 (DECL_EFFECTIVE_INIT_PRIORITY): New macro.
1569 (NEEDS_GUARD_P): Likewise.
1570 (do_static_initialization): Rename to
1571 do_static_initialization_or_destruction. Process all
1572 initializers/destructors and handle common conditionalizing.
1573 (start_static_initialization_or_destruction): Rename to
1574 one_static_initialization_or_destruction. Handle only
1575 decl-specific conditionalizing.
1576 (cp_finish_file): Call do_static_initialization_or_destruction.
1577
1578 2005-09-22 Jakub Jelinek <jakub@redhat.com>
1579
1580 PR c++/21983
1581 * class.c (find_final_overrider): Move diagnostic about no unique final
1582 overrider to...
1583 (update_vtable_entry_for_fn): ... here.
1584
1585 2005-09-21 Mark Mitchell <mark@codesourcery.com>
1586
1587 PR c++/23993
1588 * init.c (integral_constant_value): Use DECL_INTEGRAL_CONSTANT_VAR_P.
1589
1590 2005-09-21 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
1591
1592 PR c++/23965
1593 * call.c (resolve_args): Return error_mark_node on arguments
1594 whose TREE_TYPE is error_mark_node.
1595
1596 2005-09-20 Jakub Jelinek <jakub@redhat.com>
1597
1598 PR c++/23947
1599 * rtti.c (get_pseudo_ti_init): Recompute ti pointer after
1600 get_tinfo_ptr calls.
1601
1602 2005-09-16 Mark Mitchell <mark@codesourcery.com>
1603
1604 PR c++/23914
1605 * parser.c (cp_parser_enclosed_template_argument_list): Make sure
1606 skip_evaluation is false when processing template arguments.
1607
1608 PR c++/21514
1609 * pt.c (check_instantiated_args): Treat uses of anonymous types as
1610 causing type-deduction failure.
1611
1612 2005-09-15 Jason Merrill <jason@redhat.com>
1613
1614 PR c++/23357
1615 * cp-tree.def (SIZEOF_EXPR, ALIGNOF_EXPR): Change code class to
1616 tcc_expression.
1617
1618 2005-09-15 Mark Mitchell <mark@codesourcery.com>
1619
1620 PR c++/23896
1621 * pt.c (tsubst_aggr_type): Make sure skip_evaluation is false when
1622 processing template arguments.
1623
1624 * pt.c (check_explicit_instantiation_namespace): Fix typo.
1625
1626 PR c++/13140
1627 * decl.c (check_class_member_definition_namespace): New function.
1628 (grokfndecl): Use it.
1629 (grokvardecl): Likewise.
1630 (grokdecl): Improve documentation.
1631 * pt.c (check_explicit_instantiation_namespace): New function.
1632 (register_specialization): Call check_specialization_namespace
1633 when replacing an implicitly instantiated function.
1634 (check_explicit_specialization): Ensure that DECL_CONTEXT is set
1635 correctly for namespace-scope specializations.
1636 (do_decl_instantiation): Use
1637 check_explicit_instantiation_namespace.
1638 (do_type_instantiation): Likewise.
1639
1640 2005-09-15 Nathan Sidwell <nathan@codesourcery.com>
1641
1642 PR c++/23725
1643 * error.c (dump_decl): <USING_DECL case> Use USING_DECL_SCOPE.
1644
1645 2005-09-13 Bastian Blank <waldi@debian.org>
1646
1647 PR c++/16171
1648 * mangle.c (find_substitution): Do not use special substitutions
1649 for identifiers not in std::.
1650
1651 2005-09-13 Mark Mitchell <mark@codesourcery.com>
1652
1653 PR c++/23839
1654 * typeck.c (cxx_mark_addressable): Only check DECL_HARD_REGISTER
1655 for VAR_DECLs.
1656
1657 2005-09-13 Mark Mitchell <mark@codesourcery.com>
1658
1659 PR c++/23842
1660 * pt.c (tsubst_default_argument): Do treat default argument
1661 expressions as occurring in the context of the function called.
1662
1663 2005-09-12 Mark Mitchell <mark@codesourcery.com>
1664
1665 PR c++/23841
1666 * parser.c (cp_parser_primary_expression): Recognize the closing
1667 ">" of a template-argument-list after a floating-point literal as
1668 the end of a cast expression.
1669
1670 2005-09-12 Mark Mitchell <mark@codesourcery.com>
1671
1672 PR c++/23789
1673 * cvt.c (perform_qualification_conversions): Don't create
1674 unnecessary NOP_EXPRs.
1675 * pt.c (tsubst_template_arg): Use fold_non_dependent_expr.
1676
1677 2005-09-12 Ian Lance Taylor <ian@airs.com>
1678
1679 PR g++/7874
1680 * cp-tree.h (struct lang_decl_flags): Add hidden_friend_p
1681 bitfield. Make dummy bitfield one bit smaller.
1682 (DECL_HIDDEN_FRIEND_P): Define.
1683 (pushdecl_maybe_friend): Declare.
1684 (pushdecl_top_level_maybe_friend): Declare.
1685 * decl.c (duplicate_decls): Add newdecl_is_friend parameter.
1686 Change prototype and all callers. Add assertion that a
1687 DECL_ARTIFICIAL FUNCTION_DECL is not DECL_HIDDEN_FRIEND_P. Set
1688 DECL_ANTICIPATED and DECL_HIDDEN_FRIEND_P in duplicated decl if
1689 appropriate.
1690 * name-lookup.c (supplement_binding): Don't ignore a
1691 DECL_HIDDEN_FRIEND_P.
1692 (pushdecl_maybe_friend): Break out contents of pushdecl. Add
1693 is_friend parameter. Set DECL_ANTICIPATED and
1694 DECL_HIDDEN_FRIEND_P for a friend function.
1695 (pushdecl): Just call pushdecl_maybe_friend.
1696 (pushdecl_with_scope): Add is_friend parameter. Change prototype
1697 and all callers.
1698 (pushdecl_namespace_level): Likewise.
1699 (push_overloaded_decl): Likewise. Check DECL_HIDDEN_FRIEND_P as
1700 well as DECL_ANTICIPATED when checking for a builtin.
1701 (do_nonmember_using_decl): Check DECL_HIDDEN_FRIEND_P as well as
1702 DECL_ANTICIPATED when checking for a builtin.
1703 (do_nonmember_using_decl): Likewise.
1704 (pushdecl_top_level_1): Add is_friend parameter. Change all
1705 callers.
1706 (pushdecl_top_level_maybe_friend): New function.
1707 (remove_hidden_names): New function.
1708 (struct arg_lookup): Add args field.
1709 (friend_of_associated_class_p): New static function.
1710 (arg_assoc_namespace): Ignore hidden functions which are not
1711 friends of an associated class of some argument.
1712 (lookup_arg_dependent): Remove hidden functions from list passed
1713 in. Initialize k.args.
1714 * name-lookup.h (remove_hidden_names): Declare.
1715 * friend.c (do_friend): Call pushdecl_maybe_friend instead of
1716 pushdecl.
1717 * call.c (add_function_candidate): Change DECL_ANTICIPATED test to
1718 an assertion, with a check for DECL_HIDDEN_FRIEND_P.
1719 (build_new_function_call): Add koenig_p parameter. Change
1720 prototype and callers.
1721 * pt.c (register_specialization): Add is_friend parameter. Change
1722 all callers.
1723 (push_template_decl_real): Change is_friend parameter to bool.
1724 Change prototype and all callers.
1725 (tsubst_friend_class): Call pushdecl_top_level_maybe_friend
1726 instead of pushdecl_top_level.
1727
1728 2005-09-11 Richard Henderson <rth@redhat.com>
1729
1730 * decl2.c (build_anon_union_vars): Copy attributes from the base addr.
1731 * pt.c (tsubst_decl): Substitute in DECL_VALUE_EXPR.
1732
1733 2005-09-09 Gabriel Dos Reis <gdr@integrable-solutions.net>
1734
1735 * parser.c (cp_parser_translation_unit): Simplify. The while-block
1736 was actually executed at most once.
1737
1738 2005-09-09 Richard Henderson <rth@redhat.com>
1739
1740 PR debug/20998
1741 * cp-tree.def (ALIAS_DECL): Remove.
1742 * cp-lang.c (cp_init_ts): Remove support for it.
1743 * error.c (dump_decl): Likewise.
1744 * name-lookup.c (pushdecl): Likewise.
1745 * semantics.c (finish_id_expression): Likewise.
1746 * decl2.c (build_anon_union_vars): Use a VAR_DECL with
1747 DECL_VALUE_EXPR instead.
1748
1749 2005-09-09 Mark Mitchell <mark@codesourcery.com>
1750
1751 PR c++/22252
1752 * decl.c (start_preparsed_function): Do not pay attention to
1753 #pragma interface for implicitly-defined methods.
1754 * decl2.c (cp_finish_file): Do not complain about uses of inline
1755 functions that have bodies, even if we decided not to emit the
1756 body in this translation unit.
1757 * semantics.c (note_decl_for_pch): Do not mess with linkage.
1758 (expand_or_defer_fn): Make inline, non-template functions COMDAT
1759 at this point.
1760
1761 2005-09-08 Richard Henderson <rth@redhat.com>
1762
1763 PR debug/23190
1764 * decl.c (wrapup_globals_for_namespace): Call
1765 emit_debug_global_declarations.
1766 * decl2.c (cp_finish_file): Likewise.
1767
1768 2005-09-08 Mark Mitchell <mark@codesourcery.com>
1769
1770 PR c++/23691
1771 * decl2.c (mark_used): Instantiate static data members initialized
1772 by constants, even in a template.
1773
1774 2005-09-08 Andrew Pinski <pinskia@physics.uc.edu>
1775
1776 PR obj-c++/16816
1777 * parser.c (cp_parser_objc_selector_expression): Treat CPP_SCOPE as
1778 two CPP_COLON.
1779
1780 2005-09-07 Richard Guenther <rguenther@suse.de>
1781
1782 * cp-gimplify.c (cp_gimplify_expr): Create empty CONSTRUCTOR
1783 for EMPTY_CLASS_EXPR.
1784
1785 2005-09-06 Jakub Jelinek <jakub@redhat.com>
1786
1787 PR c/23075
1788 * typeck.c (check_return_expr): Add no_warning argument. Set
1789 *no_warning to true if "return-statement with no value, in function
1790 returning" warning has been issued.
1791 * cp-tree.h (check_return_expr): Adjust prototype.
1792 * semantics.c (finish_return_stmt): Set TREE_NO_WARNING if
1793 check_return_expr set *no_warning to true.
1794
1795 2005-09-06 Mark Mitchell <mark@codesourcery.com>
1796
1797 * cp-tree.h (rvalue): New function.
1798 * call.c (build_conditional_expr): Use it.
1799 * init.c (build_new_1): Likewise.
1800 * rtti.c (build_dynamic_cast_1): Likewise.
1801 * tree.c (rvalue): New function.
1802 * typeck.c (build_unary_op): Use it.
1803 (build_static_cast_1): Likewise.
1804
1805 PR c++/9782
1806 * init.c (build_new_1): Make sure the entire array type is
1807 complete, not just its element types.
1808
1809 2005-09-06 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
1810
1811 * decl.c (check_elaborated_type_specifier): Remove redundant check.
1812
1813 2005-09-06 Jakub Jelinek <jakub@redhat.com>
1814
1815 PR c++/23056
1816 * typeck.c (ignore_overflows): New helper function.
1817 (build_static_cast_1): Use it.
1818
1819 2005-09-06 Kazu Hirata <kazu@codesourcery.com>
1820
1821 * cp-tree.h, decl.c, decl2.c, semantics.c: Fix comment typos.
1822 Follow spelling conventions.
1823
1824 2005-09-05 Mark Mitchell <mark@codesourcery.com>
1825
1826 PR c++/23667
1827 * pt.c (tsubst_decl): Clear DECL_TEMPLATE_INSTANTIATED when
1828 copying a VAR_DECL.
1829
1830 2005-09-05 Mark Mitchell <mark@codesourcery.com>
1831
1832 PR c++/21440
1833 * semantics.c (finish_stmt_expr_expr): Add an explicit
1834 initialization to the last statement in the statement-expression.
1835 * (finish_stmt_expr): Adjust accordingly.
1836
1837 2005-09-03 Mark Mitchell <mark@codesourcery.com>
1838
1839 PR c++/23699
1840 * decl2.c (mark_used): Always instantiate static data members
1841 initialized by constant expressions.
1842 * pt.c (instantiate_decl): Instantiate the initializers for static
1843 data members initialized by constant expressions.
1844
1845 PR c++/21687
1846 * semantics.c (expand_or_defer_fn): Do not call ggc_collect when
1847 finishing processing for a template function in a local class.
1848 Revert:
1849 2005-09-02 Mark Mitchell <mark@codesourcery.com>
1850 * parser.c (cp_parser_class_specifier): Push/pop GC contexts
1851 around functions in local classes.
1852
1853 2005-09-02 Mark Mitchell <mark@codesourcery.com>
1854
1855 PR c++/21687
1856 * parser.c (cp_parser_class_specifier): Push/pop GC contexts
1857 around functions in local classes.
1858
1859 2005-08-31 Andrew Pinski <pinskia@physics.uc.edu>
1860
1861 PR obj-c++/23640
1862 * decl2.c (cp_finish_file): If this is obj-c++ and we need a static
1863 init, call generate_ctor_or_dtor_function.
1864
1865 2005-08-31 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
1866
1867 PR c++/13377
1868 * parser.c (cp_parser_lookup_name): Pass LOOKUP_COMPLAIN to
1869 lookup_name_real on final parse.
1870
1871 2005-08-31 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
1872
1873 PR c++/23639
1874 * semantics.c (qualified_name_lookup_error): Do not complain again
1875 on invalid scope.
1876
1877 2005-08-30 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
1878
1879 PR c++/23586
1880 * parser.c (cp_parser_namespace_name): Move diagnostic for
1881 invalid namespace-name to here from ...
1882 * name-lookup.c (do_namespace_alias): ... here and ...
1883 (do_using_directive): ... here. Remove dead code.
1884
1885 2005-08-28 Mark Mitchell <mark@codesourcery.com>
1886
1887 PR c++/23099
1888 * cp-tree.h (saved_scope): Add skip_evaluation.
1889 * decl.c (start_decl): Use DECL_INITIALIZED_IN_CLASS_P, not
1890 DECL_INITIAL, to determine whether or not a static data member was
1891 initialized in the class-specifier.
1892 (cp_finish_decl): Add comment.
1893 * init.c (integral_constant_value): Subtitute into the
1894 initializers for static data members in templates.
1895 * name-lookup.c (push_to_top_level): Save skip_evaluation.
1896 (pop_from_top_level): Restore it.
1897 * pt.c (instantiate_class_template): Do not substitute into the
1898 intializers of static data members when instantiating a class.
1899 (regenerate_decl_from_template): Simplify.
1900 (instantiate_decl): Tidy. Substitute into the initializer for a
1901 static data member even when the definition of the data member is
1902 not available.
1903
1904 2005-08-26 Mark Mitchell <mark@codesourcery.com>
1905
1906 PR c++/19004
1907 * pt.c (uses_template_parms): Handle IDENTIFIER_NODE.
1908 (type_dependent_expression_p): Allow BASELINKs whose associated
1909 functions are simply a FUNCTION_DECL.
1910
1911 PR c++/23491
1912 * cp-tree.h (build_vec_init): Adjust prototype.
1913 * init.c (perform_member_init): Adjust call to build_vec_init.
1914 (build_aggr_init): Likewise.
1915 (build_new_1): Do not call build_default_init for array types.
1916 (build_vec_init): Add explicit_default_init_p parameter. Perform
1917 default initialization of vector elements when set.
1918 * typeck.c (build_modify_expr): Adjust call to build_vec_init.
1919
1920 2005-08-25 Nathan Sidwell <nathan@codesourcery.com>
1921
1922 PR c++/20817
1923 * typeck.c (build_x_unary_op): Make sure OFFSET_REF is not for a
1924 ->*.
1925
1926 2005-08-24 Nathan Sidwell <nathan@codesourcery.com>
1927
1928 PR c++/22454
1929 * parser.c (cp_lexer_peek_nth_token): Relax assert.
1930
1931 2005-08-23 Nathan Sidwell <nathan@codesourcery.com>
1932
1933 PR c++/23044
1934 * pt.c (tsubst_qualified_id): A SCOPE_REF can still remain.
1935
1936 2005-08-22 James E Wilson <wilson@specifix.com>
1937
1938 PR tree-optimization/23426
1939 * decl.c (grokdeclarator): Use TYPE_SIZE_UNIT not TYPE_SIZE for
1940 array size check.
1941
1942 2005-08-22 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
1943
1944 PR c++/22233
1945 * pt.c (push_template_decl_real): Return error_mark_node if the
1946 number of template parameters does not match previous definition.
1947
1948 2005-08-22 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
1949
1950 PR c++/23089
1951 * decl.c (require_complete_types_for_parms): Mark incomplete types
1952 as invalid.
1953
1954 2005-08-19 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
1955
1956 * parser.c (cp_parser_nth_token_starts_template_argument_list_p):
1957 Fix typo in leading comment.
1958
1959 2005-08-15 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1960
1961 * name-lookup.c, ptree.c: Delete HOST_PTR_PRINTF.
1962
1963 2005-08-15 Fariborz Jahanian <fjahanian@apple.com>
1964
1965 * cp-tree.h (can_convert_arg, fn_type_unification): New argument.
1966 * call.c (add_template_candidate_real): Pass down 'flags' to
1967 fn_type_unification.
1968 (can_convert_arg): New 'flags' argument. Pass it to call to
1969 implicit_conversion instead of LOOKUP_NORMAL.
1970 (can_convert): Add LOOKUP_NORMAL to call to can_convert_arg.
1971 * class.c (resolve_address_of_overloaded_function): Ditto.
1972 (resolve_address_of_overloaded_function): Ditto.
1973 * decl.c (reshape_init, check_default_argument): Ditto.
1974 * typeck.c (build_ptrmemfunc): Ditto.
1975 * pt.c (type_unification_real): Add 'flags' argument.
1976 (fn_type_unification): Pass 'flags' to type_unification_real.
1977 (type_unification_real): Pass new 'flags' argument to call to
1978 can_convert_arg.
1979
1980 2005-08-12 Giovanni Bajo <giovannibajo@libero.it>
1981 Nathan Sidwell <nathan@codesourcery.com>
1982
1983 PR c++/21799
1984 PR c++/8271
1985 * pt.c (unify) <METHOD_TYPE>: Check this-pointer cv-qualifiers
1986 explicitly.
1987
1988 2005-08-12 Nathan Sidwell <nathan@codesourcery.com>
1989
1990 PR c++/21799
1991 Revert my 2005-07-08 patch
1992 * pt.c (type_unification_real): Remove is_method_argument and
1993 assoicated checks.
1994 (fn_type_unification, unify): Adjust type_unification_real calls.
1995
1996 2005-08-11 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
1997
1998 PR c++/23266
1999 * decl2.c (grokfield): Check that method is not static before
2000 marking it as pure.
2001
2002 2005-08-11 Nathan Sidwell <nathan@codesourcery.com>
2003
2004 PR c++/23219
2005 * name-lookup.c (pushtag): Process the template type before
2006 altering the identifier lookup fields. Remove unreachable code
2007 creating an empty stub decl.
2008
2009 2005-08-10 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
2010
2011 PR c++/20646
2012 * decl.c (grokdeclarator): Reset storage_class after error.
2013
2014 2005-08-08 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
2015
2016 PR c++/22508
2017 * init.c (build_new_1): Check for empty candidate list.
2018
2019 2005-08-06 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
2020
2021 PR c++/23191
2022 * pt.c (tsubst) <case METHOD_TYPE>: Check for error_mark_node
2023 before calling build_exception_variant.
2024
2025 2005-08-06 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
2026
2027 PR c++/19498
2028 * pt.c (tsubst_decl) <case TEMPLATE_DECL>: Return ERROR_MARK_NODE
2029 if substitution of template args did not succeed.
2030
2031 2005-08-06 Michael Matz <matz@suse.de>
2032
2033 * method.c (use_thunk): Call init_insn_lengths.
2034
2035 2005-08-05 James A. Morrison <phython@gcc.gnu.org>
2036
2037 PR c++/22514
2038 * name-lookup.c (cp_emit_debug_info_for_using): Do nothing if
2039 sorrycount or errorcount are nonzero.
2040
2041 2005-08-05 Mark Mitchell <mark@codesourcery.com>
2042
2043 * name-lookup.c (pushtag): Remove accidental commit from:
2044 2004-12-21 Mark Mitchell <mark@codesourcery.com>
2045 PR c++/19063
2046 * decl.c (grokdeclarator): Return error_mark_node, not
2047 void_type_node, to indicate errors.
2048 * parser.c (cp_parser_template_parameter_list): Robustify.
2049 (cp_parser_template_parameter): Likewise.
2050
2051 2005-08-01 Kazu Hirata <kazu@codesourcery.com>
2052
2053 * class.c, decl.c, name-lookup.c, pt.c, typeck.c, typeck2.c:
2054 Fix comment typos.
2055
2056 2005-07-29 Kazu Hirata <kazu@codesourcery.com>
2057
2058 * method.c: Fix a comment typo.
2059
2060 2005-07-28 Mark Mitchell <mark@codesourcery.com>
2061
2062 PR c++/22545
2063 * call.c (add_builtin_candidate): Adjust for changes in
2064 representation of pointer-to-member types.
2065
2066 2005-07-28 Mike Stump <mrs@apple.com>
2067
2068 * pt.c (check_explicit_specialization): Add visibility logic.
2069 (lookup_template_class): Likewise.
2070 (instantiate_class_template): Likewise.
2071
2072 2005-07-27 Devang Patel <dpatel@apple.com>
2073
2074 * name-lookup.c (pushtag): Do no set DECL_IGNORED_P bit.
2075
2076 2005-07-25 Ian Lance Taylor <ian@airs.com>
2077
2078 * ptree.c (cxx_print_identifier): Print a leading space if the
2079 indent level is 0.
2080
2081 2005-07-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2082
2083 * call.c (convert_for_arg_passing): Check function pointers when
2084 -Wmissing-format-attribute is activated.
2085 * typeck.c (convert_for_assignment): Likewise.
2086
2087 2005-07-22 Manfred Hollstein <mh@suse.com>
2088
2089 * parser.c (cp_parser_declaration): Fix unitialised warnings.
2090
2091 2005-07-21 Andrew Pinski <pinskia@physics.uc.edu>
2092
2093 * class.c (build_base_path): Fix typo.
2094
2095 2005-07-21 Andrew Pinski <pinskia@physics.uc.edu>
2096
2097 PR C++/22358
2098 * class.c (build_base_path): Convert BINFO_OFFSET to the correct type.
2099
2100 2005-07-21 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
2101
2102 * call.c: Fix comment typo(s).
2103 * cxx-pretty-print.h: Likewise.
2104 * name-lookup.c: Likewise.
2105 * parser.c: Likewise.
2106
2107 2005-07-20 Douglas Gregor <doug.gregor@gmail.com>
2108
2109 PR c++/2922
2110 * semantics.c (perform_koenig_lookup): For dependent calls, just
2111 return the set of functions we've found so far. Later, it will be
2112 augmented by those found through argument-dependent lookup.
2113 * name-lookup.c (lookup_arg_dependent): Implement DR 164 by removing
2114 the optimization that skips namespaces where the functions were
2115 originally found.
2116
2117 2005-07-20 Giovanni Bajo <giovannibajo@libero.it>
2118
2119 Make CONSTRUCTOR use VEC to store initializers.
2120 * call.c (convert_default_arg): Update call to digest_init.
2121 * class.c (dump_class_hierarchy, dump_array): Update to cope with
2122 VEC in CONSTRUCTOR_ELTS.
2123 * cp-tree.h (EMPTY_CONSTRUCTOR_P): Likewise.
2124 (finish_compound_literal, digest_init): Update declaration.
2125 * decl.c (struct reshape_iter): New data type.
2126 (reshape_init_array): Rename to...
2127 (reshape_init_array_1): Update to cope with VEC in CONSTRUCTOR_ELTS.
2128 (reshape_init): Rewrite from scratch. Split parts into...
2129 (reshape_init_array, reshape_init_vector, reshape_init_class,
2130 reshape_init_r): New functions.
2131 (check_initializer): Update call to reshape_init. Remove obsolete
2132 code.
2133 (initialize_artificial_var, cp_complete_array_type): Update to cope
2134 with VEC in CONSTRUCTOR_ELTS.
2135 * decl2.c (grokfield): Update calls to digest_init.
2136 (mark_vtable_entries): Update to cope with VEC in CONSTRUCTOR_ELTS.
2137 * error.c (dump_expr_init_vec): New function.
2138 (dump_expr): Use dump_expr_init_vec.
2139 * init.c (build_zero_init, build_vec_init): Update to cope with VEC
2140 in CONSTRUCTOR_ELTS.
2141 (expand_default_init): Update call to digest_init.
2142 * parser.c (cp_parser_postfix_expression): Use a VEC for the
2143 initializers.
2144 (cp_parser_initializer_list): Build a VEC of initializers.
2145 * pt.c (tsubst_copy, tsubst_copy_and_build): Update to cope with VEC
2146 in CONSTRUCTOR_ELTS.
2147 * rtti.c (tinfo_base_init, generic_initializer, ptr_initializer,
2148 ptm_initializer, class_initializer, get_pseudo_ti_init): Use
2149 build_constructor_from_list instead of build_constructor.
2150 * semantics.c (finish_compound_literal): Update call to digest_init.
2151 * tree.c (stabilize_init): Update to cope with VEC in
2152 CONSTRUCTOR_ELTS.
2153 * typeck.c (build_ptrmemfunc1): Likewise.
2154 * typeck2.c: (cxx_incomplete_type_error, split_nonconstant_init_1):
2155 Likewise.
2156 (store_init_value): Use build_constructor_from_list and update call
2157 to digest_init.
2158 (digest_init): Rewrite.
2159 (process_init_constructor): Rewrite from scratch. Split into...
2160 (process_init_constructor_array, picflag_from_initializer,
2161 process_init_constructor_record, process_init_constructor_union):
2162 New functions.
2163 (PICFLAG_ERRONEOUS, PICFLAG_NOT_ALL_CONSTANT, PICFLAG_NOT_ALL_SIMPLE):
2164 New macros.
2165 (build_functional_cast): Use build_constructor_from_list instead of
2166 build_constructor.
2167
2168 2005-07-18 Mark Mitchell <mark@codesourcery.com>
2169
2170 PR c++/22263
2171 * cp-tree.h (instantiate_decl): Change prototype.
2172 * decl2.c (mark_used): Adjust accordingly.
2173 * pt.c (do_decl_instantiation): Likewise.
2174 (instantiate_class_member): Likewise.
2175 (instantiate_decl): Rename undefined_ok as expl_inst_class_mem_p.
2176 Clear DECL_INTERFACE_KNOWN for an explicitly instantiated template
2177 that has no definition available.
2178 (instantiate_pending_templates): Adjust call to instantiate_decl.
2179
2180 2005-07-17 Mark Mitchell <mark@codesourcery.com>
2181
2182 PR c++/22139
2183 * cp-tree.h (DECL_TEMPLATE_INFO): Improve documentation.
2184 * decl.c (duplicate_decls): Re-register template specializations
2185 for functions that have DECL_TEMLPLATE_INFO, even if they do not
2186 have DECL_TEMPLATE_INSTANTIATION set.
2187
2188 2005-07-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2189
2190 * call.c (diagnostic_fn_t): New.
2191 (build_temp, convert_like_real): Use diagnostic_fn_t.
2192
2193 2005-07-15 Mark Mitchell <mark@codesourcery.com>
2194
2195 PR c++/22204
2196 * repo.c (repo_emit_p): Robustify.
2197
2198 2005-07-14 Daniel Berlin <dberlin@dberlin.org>
2199
2200 Fix PR c++/22452
2201 * tree.c (decl_linkage): Don't check DECL_COMDAT on CONST_DECL.
2202
2203 2005-07-15 Mark Mitchell <mark@codesourcery.com>
2204
2205 PR c++/22132
2206 * call.c (implicit_conversion): Add c_cast_p parameter.
2207 (standard_conversion): Likewise. Allow conversions between
2208 differently-qualified pointer types when performing a C-style
2209 cast.
2210 (add_function_candidate): Adjust callee.
2211 (build_builtin_candidate): Likewise.
2212 (build_user_type_conversion_1): Likewise.
2213 (conditional_conversion): Likewise.
2214 (can_convert_arg): Likewise.
2215 (can_convert_arg_bad): Likewise.
2216 (perform_implicit_conversion): Likewise.
2217 * cp-tree.h (comp_ptr_ttypes_const): Declare.
2218 * typeck.c (comp_ptr_ttypes_const): Give it external linkage.
2219 Return bool.
2220
2221 2005-07-12 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
2222 Nathan Sidwell <nathan@codesourcery.com>
2223
2224 PR c++/20172
2225 * pt.c (tsubst_template_parms): Check for invalid non-type
2226 parameters.
2227
2228 2005-07-09 Andrew Pinski <pinskia@physics.uc.edu>
2229
2230 * cp-lang.c (shadowed_var_for_decl, decl_shadowed_for_var_lookup,
2231 decl_shadowed_for_var_insert): Move over to cp-objcp-common.c.
2232 (cp_init_ts): Call init_shadowed_var_for_decl.
2233 Remove include of gt-cp-cp-lang.h.
2234 * cp-objcp-common.c (shadowed_var_for_decl,
2235 decl_shadowed_for_var_lookup, decl_shadowed_for_var_insert): Moved from
2236 cp-lang.c.
2237 (init_shadowed_var_for_decl): New function to initialize
2238 shadowed_var_for_decl.
2239 Include gt-cp-cp-objcp-common.h.
2240 * Make-lang.in (gt-cp-lang.h): Remove.
2241 (gt-cp-cp-objcp-common.h): Add.
2242 (cp/cp-lang.o): Remove dependancy on gt-cp-lang.h.
2243 (cp/cp-objcp-common.o): Add dependancy on gt-cp-cp-objcp-common.h.
2244 * config-lang.in (gtfiles): Remove cp-lang.c and Add cp-objcp-common.c.
2245 * cp-tree (init_shadowed_var_for_decl): Add prototype.
2246
2247 2005-07-08 Daniel Berlin <dberlin@dberlin.org>
2248
2249 * Make-lang.in: Add gt-cp-lang.h.
2250 (cp-lang.o): Ditto.
2251 * class.c (create_vtable_ptr): Stop setting DECL_ASSEMBLER_NAME on
2252 the field.
2253 * config-lang.in: Add cp-lang.c to gtfiles.
2254 * cp-lang.c: Include hashtab.h.
2255 (cp_init_ts): New function.
2256 (LANG_HOOK_INIT_TS): Use macro.
2257 (decl_shadowed_for_var_lookup): New function.
2258 (decl_shadowed_for_var_insert): Ditto.
2259 * cp-tree.h (THUNK_FUNCTION_CHECK): Use decl_common.
2260 (NON_THUNK_FUNCTION_CHECK): Ditto.
2261 (DECL_NAMESPACE_ASSOCIATIONS): Use decl_non_common.
2262 (DECL_INIT_PRIORITY): Ditto.
2263 (DECL_HAS_SHADOWED_FOR_VAR_P): Ditto.
2264 (DECL_SHADOWED_FOR_VAR): Use hashtable.
2265 (SET_DECL_SHADOWED_FOR_VAR): Ditto.
2266 * decl.c (duplicate_decls): Update for new/updated structures.
2267 (poplevel): Use SET_DECL_SHADOWED_FOR_VAR.
2268 * decl2.c (start_static_initialization_or_destruction): Deal with
2269 priority.
2270 * pt.c (tsubst_decl): Check TS_DECL_WRTL before doing
2271 SET_DECL_RTL.
2272 * tree.c (handle_init_priority_attribute): Handle priority.
2273
2274 2005-07-08 Nathan Sidwell <nathan@codesourcery.com>
2275
2276 PR c++/21799
2277 * pt.c (type_unification_real): Add is_method argument. Use it
2278 for this pointer unification.
2279 (fn_type_unification): Adjust type_unification_real call.
2280 (unify): Likewise.
2281
2282 2005-07-07 Nathan Sidwell <nathan@codesourcery.com>
2283
2284 * pt.c (type_unification_real): Remove allow_incomplete argument.
2285 Remove unreachable code.
2286 (fn_type_unification): Adjust call to type_unification_real.
2287 (unify): Likewise.
2288
2289 2005-07-05 Paolo Bonzini <bonzini@gnu.org>
2290
2291 * Makefile.in (class.o, decl2.o): Adjust dependencies.
2292 * class.c: Include tree-dump.h.
2293 * decl2.c: Include tree-dump.h.
2294
2295 2005-07-02 Gabriel Dos Reis <gdr@integrable-solutions.net>
2296
2297 * dump.c: Use dump_string_field.
2298
2299 2005-07-03 Joseph S. Myers <joseph@codesourcery.com>
2300
2301 * cp-tree.h (GCC_DIAG_STYLE): #undef before defining. Change
2302 minimum GCC version for format checking to 4.1.
2303
2304 2005-07-02 Kazu Hirata <kazu@codesourcery.com>
2305
2306 * Make-lang.in (cc1plus-checksum.c): Use
2307 build/genchecksum$(build_exeext), not build/genchecksum$(exeext).
2308
2309 2005-07-02 Joseph S. Myers <joseph@codesourcery.com>
2310
2311 * name-lookup.c, parser.c: Use %q, %< and %> to quote in
2312 diagnostics.
2313
2314 2005-07-02 Zack Weinberg <zack@codesourcery.com>
2315 Joseph S. Myers <joseph@codesourcery.com>
2316
2317 * error.c (location_of): Add comment.
2318 (locate_error, cp_error_at, cp_warning_at, cp_pedwarn_at): Remove.
2319 * cp-tree.h (cp_error_at, cp_warning_at, cp_pedwarn_at): Remove.
2320 * call.c, class.c, decl.c, decl2.c, friend.c, init.c,
2321 name-lookup.c, parser.c, pt.c, search.c, semantics.c, typeck.c,
2322 typeck2.c: Use '+' flag instead of %J, cp_error_at, cp_warning_at
2323 or cp_pedwarn_at. Mark up some diagnostic strings with N_.
2324
2325 2005-06-30 Daniel Berlin <dberlin@dberlin.org>
2326
2327 * decl.c (require_complete_types_for_parms): Call relayout_decl
2328 instead of layout_decl.
2329
2330 2005-06-30 Zack Weinberg <zack@codesourcery.com>
2331 Jakub Jelinek <jakub@redhat.com>
2332
2333 * cp-lang.c: No need to include cxx-pretty-print.h.
2334 * error.c (cp_printer): Update signature. No need to process
2335 flags.
2336 (print_instantiation_partial_context): Output last newline
2337 with pp_base_newline.
2338 * Make-lang.in: Update dependencies.
2339
2340 2005-06-30 Steven Bosscher <stevenb@suse.de>
2341
2342 * decl.c (start_decl): Replace DECL_THREAD_LOCAL with
2343 DECL_THREAD_LOCAL_P.
2344 (cp_finish_decl): Likewise.
2345 (grokvardecl): Set the default DECL_TLS_MODEL here.
2346
2347 2005-06-28 Joseph S. Myers <joseph@codesourcery.com>
2348
2349 * cvt.c (ocp_convert): Use invalid_conversion hook.
2350 * typeck.c (build_binary_op): Use invalid_binary_op hook.
2351 (build_unary_op): Use invalid_unary_op hook.
2352
2353 2005-06-28 Paul Brook <paul@codesourcery.com>
2354
2355 * Make-lang.in (cp/except.o): Depend on $(TARGET_H)
2356 * except.c: Include target.h.
2357 (init_exception_processing): Initialize unwind_resume_libfunc.
2358 * doc/tm.texi: Document TARGET_ASM_TTYPE
2359
2360 2005-06-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2361
2362 * call.c (build_over_call): Pass in named argument list to
2363 `check_function_arguments'.
2364 * typeck.c (build_function_call): Likewise.
2365
2366 2005-06-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2367
2368 * cp-tree.h (lang_check_failed): Add noreturn attribute.
2369
2370 2005-06-25 Kelley Cook <kcook@gcc.gnu.org>
2371
2372 * all files: Update FSF address in copyright headers.
2373
2374 2005-06-23 Jason Merrill <jason@redhat.com>
2375
2376 PR c++/19317
2377 * semantics.c (simplify_aggr_init_expr): Use
2378 CALL_EXPR_RETURN_SLOT_OPT, not CALL_EXPR_HAS_RETURN_SLOT_ADDR.
2379
2380 2005-06-23 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
2381
2382 * pt.c (register_specialization): Remove superfluous assertion.
2383
2384 2005-06-18 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2385
2386 * call.c (convert_like_real): Add format attribute.
2387 * typeck.c (check_for_casting_away_constness,
2388 build_static_cast_1): Likewise.
2389 * typeck2.c (readonly_error, cxx_incomplete_type_diagnostic):
2390 Likewise.
2391
2392 2005-06-17 Geoffrey Keating <geoffk@apple.com>
2393
2394 PR c++/17413
2395 * pt.c (type_unification_real): Apply template type deduction even
2396 to procedure parameters that are not dependent on a template
2397 parameter.
2398
2399 2005-06-16 Nathan Sidwell <nathan@codesourcery.com>
2400
2401 * rtti.c (get_tinfo_decl): Avoid caching tinfo_descs when it might
2402 change.
2403 (create_pseudo_type_info): First parameter is an int.
2404
2405 2005-06-15 Nathan Sidwell <nathan@codesourcery.com>
2406
2407 PR c++/20678
2408 * error.c (dump_expr) <COMPONENT_REF case>: Check DECL_NAME is not
2409 null.
2410
2411 * Make-lang.in: Reformat some long lines.
2412 (gt-cp-rtti.h): New target.
2413 (cp/rtti.o): Add dependency.
2414 * config-lang.in (gtfiles): Add cp/rtti.c.
2415 * cp-tree.h (CPTI_TI_DESC_TYPE, CPTI_BLTN_DESC_TYPE,
2416 CPTI_PTR_DESC_TYPE, CPTI_ARY_DESC_TYPE, CPTI_FUNC_DESC_TYPE,
2417 CPTI_ENUM_DESC_TYPE, CPTI_CLASS_DESC_TYPE,
2418 CPTI_SI_CLASS_DESC_TYPE, CPTI_VMI_CLASS_DESC_TYPE,
2419 CPTI_PTM_DESC_TYPE, CPTI_BASE_DESC_TYPE): Remove.
2420 (ti_desc_type_node, bltn_desc_type_node, ptr_desc_type_node,
2421 ary_desc_type_node, func_desc_type_node, enum_desc_type_node,
2422 class_desc_type_node, si_class_desc_type_node,
2423 vmi_class_desc_type_node, ptm_desc_type_node,
2424 base_desc_type_node): Remove.
2425 * decl.c: Adjust documentation of global trees.
2426 * rtti.c (TINFO_PSEUDO_TYPE, TINFO_VTABLE_DECL,
2427 TINFO_REAL_NAME): Remove.
2428 (struct tinfo_s): New.
2429 (enum tinfo_kind): New.
2430 (tinfo_descs): New.
2431 (get_tinfo_decl): Adjust use of tinfo descriptor.
2432 (tinfo_base_init, generic_initializer, ptr_initializer,
2433 ptm_initializer, class_initializer): Likewise.
2434 (get_pseudo_ti_init): Take descriptor index. Adjust.
2435 (create_pseudo_type_info): Likewise.
2436 (get_pseudo_ti_desc): Return descriptor index. Adjust.
2437 (create_tinfo_types): Adjust use of create_pseudo_type_info.
2438 (emit_tinfo_decl): Adjust use of tinfo descriptor.
2439
2440 2005-06-14 Roger Sayle <roger@eyesopen.com>
2441
2442 * decl.c (grokdeclarator): Only check TREE_OVERFLOW on INTEGER_CST.
2443
2444 2005-06-13 Geoffrey Keating <geoffk@apple.com>
2445
2446 * Make-lang.in (c++.install-man): Doesn't really depend on installdirs.
2447 (rule for installing g++.1 manpage): Does depend on installdirs.
2448
2449 2005-06-13 Nathan Sidwell <nathan@codesourcery.com>
2450
2451 PR c++/20789
2452 * decl.c (cp_finish_decl): Clear runtime runtime initialization if
2453 in-class decl's initializer is bad.
2454
2455 PR c++/21929
2456 * parser.c (struct cp_parser): Document that scope could be
2457 error_mark.
2458 (cp_parser_diagnose_invalid_type_name): Cope with error_mark for
2459 scope.
2460 (cp_parser_nested_name_specifier): Return NULL_TREE on error.
2461 (cp_parser_postfix_expression): Deal with null or error_mark
2462 scope.
2463 (cp_parser_elaborated_type_specifier): Adjust
2464 cp_parser_nested_name_specifier call.
2465
2466 * parser (cp_parser_skip_to_end_of_block_or_statement): Cleanup.
2467
2468 2005-06-12 Roger Sayle <roger@eyesopen.com>
2469
2470 PR c++/21930
2471 * error.c (dump_expr): UNARY_PLUS_EXPR need not handle void types.
2472 Treat CONVERT_EXPR identically to NOP_EXPR.
2473
2474 2005-06-10 Aldy Hernandez <aldyh@redhat.com>
2475
2476 PR c++/10611
2477 * cvt.c (build_expr_type_conversion): Same.
2478 * typeck.c (build_binary_op): Handle vectors.
2479 (common_type): Same.
2480 (type_after_usual_arithmetic_conversions): Same.
2481
2482 2005-06-08 Nathan Sidwell <nathan@codesourcery.com>
2483
2484 PR c++/19497
2485 * cp-tree.def (USING_DECL): Update documentation.
2486 * cp-tree.h (DECL_DEPENDENT_P): New.
2487 (USING_DECL_DECLS, USING_DECL_SCOPE): New.
2488 * class.c (handle_using_decl): Move most of the processing to ...
2489 * name-lookup.c (do_class_using_decl): ... here. Make stricter.
2490 (push_using_decl): Use USING_DECL_SCOPE.
2491 (cp_emit_debug_info_for_using): Make extern.
2492 * cxx-pretty-print.c (pp_cxx_statement) <USING_DECL case>: Adjust.
2493 * name-lookup.h (cp_emit_debug_info_for_using): Declare.
2494 * pt.c (tsubst_decl) <USING_DECL case>: Use do_class_using_decl
2495 when tsubsting.
2496 (tsubst_expr): Use USING_DECL_SCOPE.
2497 * search.c (lookup_field_1): Use DECL_DEPENDENT_P.
2498 * semantics.c (finish_member_declaration): Likewise.
2499
2500 2005-06-08 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
2501
2502 PR c++/19894
2503 * pt.c (tsubst): Reject pointer-to-member of type void.
2504
2505 PR c++/20563
2506 * parser.c (cp_parser_label_declaration): Deal with invalid/missing
2507 identifiers.
2508
2509 2005-06-07 Nathan Sidwell <nathan@codesourcery.com>
2510
2511 * cp-tree.def (DEFAULT_ARG): Adjust documentation.
2512 * cp-tree.h (DEFARG_INSTANTIATIONS): New.
2513 (struct tree_default_arg): Add instantiations member.
2514 * parser.c (cp_parser_late_parsing_default_args): Adjust to use a
2515 VEC.
2516 * pt.c (tsubst_arg_types): Likewise.
2517
2518 * parser.c (cp_parser_late_parsing_default_args): Fix overeager
2519 assert in previous patch.
2520
2521 2005-06-06 Jakub Jelinek <jakub@redhat.com>
2522
2523 * error.c (locate_error): Use gmsgid instead of msgid for argument
2524 name.
2525 (cp_error_at, cp_warning_at, cp_pedwarn_at): Likewise.
2526
2527 2005-06-06 Nathan Sidwell <nathan@codesourcery.com>
2528
2529 PR 21903
2530 * cp-tree.def (DEFAULT_ARG): Document TREE_CHAIN use.
2531 * parser.c (cp_parser_late_parsing_default_args): Propagate parsed
2532 argument to any early instantiations.
2533 * pt.c (tsubst_arg_types): Chain early instantiation of default arg.
2534
2535 PR c++/20637
2536 * cp-tree.h (add_method): Add using_decl parameter.
2537 * class.c (add_method): Add using_decl parameter. Adjust error
2538 messages.
2539 (handle_using_decl): Pass the using decl to add_method.
2540 (clone_function_decl): Adjust add_member calls.
2541 * decl2.c (check_classfn): Likewise.
2542 * method.c (lazily_declare_fn): Likewise.
2543 * semantics.c (finish_member_declaration): Likewise.
2544
2545 * method.c (synthesize_method): Use inform, not warning.
2546
2547 2005-06-06 Hans-Peter Nilsson <hp@axis.se>
2548
2549 * config-lang.in (target_libs): Remove target-gperf.
2550
2551 2005-06-05 Mark Mitchell <mark@codesourcery.com>
2552
2553 PR c++/21619
2554 * cp-tree.h (DECL_IS_BUILTIN_CONSTANT_P): New macro.
2555 * parser.c (cp_parser_postfix_expression): Allow non-constant
2556 expressions as arguments to __builtin_constant_p.
2557 * tree.c (builtin_valid_in_constant_expr_p): Use
2558 DECL_IS_BUILTIN_CONSTANT_P.
2559
2560 2005-06-03 Mark Mitchell <mark@codesourcery.com>
2561
2562 PR c++/21853
2563 * typeck.c (casts_away_constness_r): Do not drop cv-qualifiers on
2564 the pointed-to type for a pointer-to-member.
2565
2566 PR c++/21336
2567 * cp-tree.h (grok_op_properties): Remove friendp parameter.
2568 * decl.c (grokfndecl): Adjust call.
2569 (grok_op_properties): Determine the class of which the function is
2570 a member by looking at its DECL_CONTEXT, not current_class_type.
2571 * pt.c (tsubst_decl): Adjust call to grok_op_properties.
2572
2573 2005-06-02 Nathan Sidwell <nathan@codesourcery.com>
2574
2575 * method.c (synthesize_method): Add addtional arg to warning call.
2576
2577 PR c++/21280
2578 * Make-lang.in (method.o): Add diagnostic.h
2579 * decl.c (start_preparsed_function): Use decl's location for file
2580 info.
2581 * decl2.c (cp_finish_file): Set input_location before synthesizing
2582 a function.
2583 (mark_used): When deferring a synthesized function, save current
2584 location. Do not set function's location when actually
2585 synthesizing it.
2586 * method.c: #include diagnostic.h.
2587 (synthesize_method): Set the functions source location. Show
2588 needed location if errors are emitted.
2589
2590 * decl.c (start_decl): Simplify specialization handling. Remove
2591 unneeded CLASSTYPE_TEMPLATE_INSTANTIATION check.
2592 * mangle.c (discriminator_for_local_entity): Use VEC_index.
2593
2594 PR c++/20350
2595 * decl.c (duplicate_decls): Copy all of DECL_USE_TEMPLATE.
2596
2597 PR c++/21151
2598 * name-lookup.c (pushtag): Push local class even in a template.
2599
2600 2005-05-31 Nathan Sidwell <nathan@codesourcery.com>
2601
2602 PR c++/21165
2603 * init.c (integral_constant_value): Check the type of the
2604 initializer, not the decl.
2605
2606 2005-05-30 Mark Mitchell <mark@codesourcery.com>
2607
2608 PR c++/21784
2609 * name-lookup.c (do_nonmember_using_decl): Ignore builtin
2610 functions, even when the used name is not a function.
2611
2612 2005-05-30 Kazu Hirata <kazu@cs.umass.edu>
2613
2614 * operators.def, optimize.c: Update copyright.
2615
2616 2005-05-28 Mark Mitchell <mark@codesourcery.com>
2617
2618 PR c++/21210
2619 * call.c (standard_conversion): Permit conversions to complex
2620 types if conversion to the corresponding scalar type would be
2621 permitted.
2622
2623 PR c++/21340
2624 * method.c (implicitly_declare_fn): Clear processing_template_decl
2625 when generating implicit declaration.
2626
2627 2005-05-27 Mark Mitchell <mark@codesourcery.com>
2628
2629 PR c++/21614
2630 * typeck.c (get_member_function_from_ptrfunc): Do not attempt
2631 conversions to base classes of incomplete types.
2632
2633 2005-05-27 Ian Lance Taylor <ian@airs.com>
2634
2635 * semantics.c (add_stmt): Add C++ frontend specific version.
2636 * cp-tree.h (STMT_IS_FULL_EXPR_P): Define.
2637 (stmts_are_full_exprs_p): Declare.
2638
2639 2005-05-27 Roger Sayle <roger@eyesopen.com>
2640 Giovanni Bajo <giovannibajo@gcc.gnu.org>
2641
2642 * cp-tree.def (UNARY_PLUS_EXPR): New C++ unary tree code.
2643 * parser.c (cp_parser_unary_expression): Use UNARY_PLUS_EXPR instead
2644 of CONVERT_EXPR.
2645 (cp_parser_unary_expression): Likewise.
2646 * typeck.c (build_unary_op): Likewise.
2647 * call.c (add_builtin_candidate, build_new_op): Likewise.
2648 * error.c (dump_expr): Likewise.
2649 * pt.c (tsubst_copy, tsubst_copy_and_build): Likewise.
2650 * decl.c (ambi_op_p, grok_op_properties): Likewise.
2651 * dump.c (dump_op): Likewise.
2652 * lex.c (init_operators): Likewise.
2653 * operators.def ("+"): Likewise.
2654 * cp-gimplify.c (cp_gimplify_expr): Handle UNARY_PLUS_EXPR like a
2655 conversion, if the result and argument types differ.
2656 * tree.c (fold_if_not_in_template): Fold UNARY_PLUS_EXPR much
2657 like a NOP_EXPR when !processing_template_decl.
2658
2659 * cxx-pretty-print.c (pp_cxx_cast_expression): Prototype.
2660 (pp_cxx_unary_expression): Handle new UNARY_PLUS_EXPR tree code.
2661
2662 2005-05-27 Nathan Sidwell <nathan@codesourcery.com>
2663
2664 PR c++/21455
2665 * typeck.c (get_delta_difference): Cope with incomplete but equal
2666 classes. Reorder if.
2667
2668 PR c++/21681
2669 * parser.c (cp_parser_late_parsing_for_member): Disable access
2670 checking for template functions.
2671
2672 2005-05-26 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
2673
2674 PR c++/21768
2675 * pt.c (redeclare_class_template): Change error message according
2676 to coding conventions.
2677
2678 2005-05-26 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
2679
2680 * call.c (build_op_delete_call): Fix quoting in error message.
2681
2682 2005-05-25 Richard Henderson <rth@redhat.com>
2683
2684 PR libgcj/21692
2685 * cp-tree.h (make_alias_for): Declare.
2686 * decl2.c (build_java_method_aliases): New.
2687 (cp_finish_file): Call it.
2688 * method.c (make_alias_for): Split out from ...
2689 (make_alias_for_thunk): ... here.
2690
2691 2005-05-25 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
2692
2693 PR c++/21686
2694 * semantics.c (finish_id_expression): Fix quoting in error message.
2695
2696 2005-05-25 DJ Delorie <dj@redhat.com>
2697
2698 * decl.c (duplicate_decls): Move warning control from if() to
2699 warning(OPT_*).
2700 * name-lookup.c (parse_using_directive): Likewise.
2701 * parser.c (cp_parser_elaborated_type_specifier): Likewise.
2702 (cp_parser_init_declarator): Likewise.
2703 * tree.c (handle_com_interface_attribute): Likewise.
2704
2705 2005-05-24 Ziemowit Laski <zlaski@apple.com>
2706
2707 * class.c (layout_class_type): Do not issue C++ ABI warnings
2708 for ObjC structs.
2709 * decl.c (objc_mark_locals_volatile): Streamline by calling
2710 objc_volatilize_decl().
2711 * parser.c (cp_parser_objc_message_expression): Allow simple
2712 type specifiers (instead of merely type names) as message
2713 receivers.
2714 * pt.c (template_args_equal): Do not call objc_comptypes().
2715 * typeck.c (composite_pointer_type): If both pointers are
2716 ObjC-esque, arbitrarily choose the first; do not call
2717 objc_comptypes().
2718 (comptypes): Do not call objc_comptypes().
2719 (convert_for_assignment): Call objc_compare_types().
2720 (comp_ptr_ttypes_real): Call objc_type_quals_match() before
2721 concluding that types do not match.
2722
2723 2005-05-24 Andrew Pinski <pinskia@physics.uc.edu>
2724
2725 PR C++/21645
2726 * optimize.c (update_cloned_parm): Copy the TYPE also from the
2727 original one.
2728
2729 2005-05-19 Jakub Jelinek <jakub@redhat.com>
2730
2731 PR c++/21495
2732 * decl.c (grokdeclarator): Fix "storage class specified for"
2733 error reporting.
2734
2735 2005-05-19 Kazu Hirata <kazu@cs.umass.edu>
2736
2737 * parser.c: Fix comment typos.
2738
2739 2005-05-18 Geoffrey Keating <geoffk@apple.com>
2740
2741 * Make-lang.in (cc1plus-dummy): New.
2742 (cc1plus-checksum.c): New.
2743 (cc1plus-checksum.o): New.
2744 (cc1plus): Add cc1plus-checksum.o.
2745
2746 2005-05-17 H.J. Lu <hongjiu.lu@intel.com>
2747
2748 PR C++/19664
2749 * decl2.c (determine_visibility): Don't set visibility to
2750 hidden if it has been set explicitly by user.
2751
2752 2005-05-17 Ziemowit Laski <zlaski@apple.com>
2753 Mike Stump <mrs@apple.com>
2754
2755 Yet more Objective-C++...
2756
2757 * cp-objcp-common.h (cxx_get_alias_set): Move from
2758 here...
2759 (cxx_warn_unused_global_decl): Likewise.
2760 (cp_expr_size): Likewise.
2761 (cp_tree_size): Likewise.
2762 (cp_var_mod_type_p): Likewise.
2763 (cxx_initialize_diagnostics): Likewise.
2764 (cxx_types_compatible_p): Likewise.
2765 * cp-tree.h: to here.
2766 (do_poplevel): Add.
2767 * lex.c (D_OBJC): Add.
2768 (init_reswords): Add.
2769 * Make-lang.in (cp/pt.o): Add cp/cp-objcp-common.h.
2770 * parser.c: Add c-common.h include.
2771 * pt.c: Add c-common.h and cp-objcp-common.h includes.
2772 (template_args_equal): Use objc_comptypes as well.
2773 (tsubst_copy_and_build): Use objcp_tsubst_copy_and_build as well.
2774 * semantics.c (do_poplevel): Remove static.
2775
2776 * decl.c (objc_mark_locals_volatile): Don't change decls that are
2777 already ok.
2778 * decl2.c (generate_ctor_or_dtor_function): Add code to initialize
2779 Objective C++ early enough.
2780 * lex.c (struct resword reswords): Add Objective-C++ support.
2781 * parser.c (cp_lexer_get_preprocessor_token): Add Objective-C++.
2782 (cp_parser_objc_message_receiver): Add.
2783 (cp_parser_objc_message_args): Likewise.
2784 (cp_parser_objc_message_expression): Likewise.
2785 (cp_parser_objc_encode_expression): Likewise.
2786 (cp_parser_objc_defs_expression): Likewise.
2787 (cp_parser_objc_protocol_expression): Likewise.
2788 (cp_parser_objc_selector_expression): Likewise.
2789 (cp_parser_objc_expression): Likewise.
2790 (cp_parser_objc_visibility_spec): Likewise.
2791 (cp_parser_objc_method_type): Likewise.
2792 (cp_parser_objc_protocol_qualifiers): Likewise.
2793 (cp_parser_objc_typename): Likewise.
2794 (cp_parser_objc_selector_p): Likewise.
2795 (cp_parser_objc_selector): Likewise.
2796 (cp_parser_objc_method_keyword_params): Likewise.
2797 (cp_parser_objc_method_tail_params_opt): Likewise.
2798 (cp_parser_objc_interstitial_code): Likewise.
2799 (cp_parser_objc_method_signature): Likewise.
2800 (cp_parser_objc_method_prototype_list): Likewise.
2801 (cp_parser_objc_method_definition_list): Likewise.
2802 (cp_parser_objc_class_ivars): Likewise.
2803 (cp_parser_objc_identifier_list): Likewise.
2804 (cp_parser_objc_alias_declaration): Likewise.
2805 (cp_parser_objc_class_declaration): Likewise.
2806 (cp_parser_objc_protocol_declaration): Likewise.
2807 (cp_parser_objc_protocol_refs_opt): Likewise.
2808 (cp_parser_objc_superclass_or_category): Likewise.
2809 (cp_parser_objc_class_interface): Likewise.
2810 (cp_parser_objc_class_implementation): Likewise.
2811 (cp_parser_objc_end_implementation): Likewise.
2812 (cp_parser_objc_declaration): Likewise.
2813 (cp_parser_objc_try_catch_finally_statement): Likewise.
2814 (cp_parser_objc_synchronized_statement): Likewise.
2815 (cp_parser_objc_throw_statement): Likewise.
2816 (cp_parser_objc_statement): Likewise.
2817 (cp_parser_primary_expression): Add Objective-C++.
2818 (cp_parser_statement): Likewise.
2819 (cp_parser_declaration): Likewise.
2820 (cp_parser_simple_type_specifier): Likewise.
2821 (cp_parser_type_name): Likewise.
2822 (cp_parser_parameter_declaration_list): Likewise.
2823 (cp_parser_member_declaration) Likewise.
2824 * tree.c: Include debug.h.
2825 * typeck.c (composite_pointer_type): Add Objective-C++ support.
2826 (finish_class_member_access_expr): Likewise.
2827 (build_function_call): Allow objc to rewrite FUNCTION_DECLs.
2828 (build_modify_expr): Allow objc to generate write barriers.
2829
2830 * Make-lang.in (cp/tree.o): Add debug.h.
2831 * tree.c (lvalue_p_1, case CONST_DECL): Add.
2832
2833 2005-05-18 Jan Hubicka <jh@suse.cz>
2834
2835 * method.c: Include tree-pass.h
2836 (use_thunk): Lower body before expanding.
2837
2838 2005-05-17 Jakub Jelinek <jakub@redhat.com>
2839
2840 PR c++/21454
2841 * decl.c (maybe_deduce_size_from_array_init): Call
2842 cp_apply_type_quals_to_decl after completing array type.
2843
2844 2005-05-16 Richard Henderson <rth@redhat.com>
2845
2846 * decl.c (build_library_fn_1): Move setting TREE_NOTHROW ...
2847 (build_library_fn): ... here.
2848
2849 2005-05-12 Ian Lance Taylor <ian@airs.com>
2850
2851 * cp-tree.h (cp_stmt_codes): Don't define.
2852 (statement_code_p): Declare.
2853 (STATEMENT_CODE_P): Define.
2854 * lex.c (statement_code_p): Define.
2855 (cxx_init): Use actual codes in stmt_codes initializer, not
2856 cp_stmt_codes macro. Initialize statement_code_p directly, rather
2857 than using INIT_STATEMENT_CODES.
2858
2859 2005-05-09 Mark Mitchell <mark@codesourcery.com>
2860
2861 * typeck.c (build_unary_op): Do not resort to address arithmetic
2862 when taking the address of a COMPONENT_REF.
2863
2864 2005-05-08 Kazu Hirata <kazu@cs.umass.edu>
2865
2866 * class.c (vtbl_init_data_s): Change the type of fns to
2867 VEC(tree,gc)*.
2868 (build_vtbl_initializer, add_vcall_offset, add_vcall_offset):
2869 Use VEC instead of VARRAY.
2870
2871 2005-05-07 Richard Sandiford <rsandifo@redhat.com>
2872
2873 * mangle.c: Remove a reference to the MIPS -mint64 option.
2874
2875 2005-05-07 Kazu Hirata <kazu@cs.umass.edu>
2876
2877 * decl.c (wrapup_globals_for_namespace): Use VEC instead of
2878 VARRAY.
2879 * name-lookup.c (add_decl_to_level, begin_scope): Likewise.
2880 * name-lookup.h (cp_binding_level): Change the type of
2881 static_decls to VEC(tree,gc)*.
2882
2883 * mangle.c (globals): Change the type of substitutions to
2884 VEC(tree,gc)*.
2885 (dump_substitution_candidates, add_substitution,
2886 find_substitution, finish_mangling, init_mangle): Use VEC
2887 instead of VARRAY.
2888
2889 2005-05-06 Kazu Hirata <kazu@cs.umass.edu>
2890
2891 * decl2.c (spew_debug): Remove.
2892
2893 * decl2.c (ssdf_decls, start_static_storage_duration_function,
2894 generate_ctor_or_dtor_function): Use VEC instead of VARRAY.
2895
2896 * decl2.c (pending_statics, note_vague_linkage_var,
2897 cp_finish_file): Use VEC instead of VARRAY.
2898 (pending_statics_used): Remove.
2899
2900 2005-05-05 Kazu Hirata <kazu@cs.umass.edu>
2901
2902 * decl2.c (deferred_fns, note_vague_linkage_fn,
2903 cp_finish_file): Use VEC instead of VARRAY.
2904
2905 2005-05-05 Mark Mitchell <mark@codesourcery.com>
2906
2907 PR c++/21352
2908 * pt.c (build_non_dependent_expr): Use is_overloaded_fn.
2909
2910 2005-05-05 Kazu Hirata <kazu@cs.umass.edu>
2911
2912 * pt.c: Fix a comment typo.
2913
2914 2005-05-04 Kazu Hirata <kazu@cs.umass.edu>
2915
2916 * cp-tree.h (language_function): Change the type of
2917 x_local_names to VEC.
2918 * decl.c (push_local_name): Adjust uses of local_names.
2919
2920 2005-05-03 Kazu Hirata <kazu@cs.umass.edu>
2921
2922 * friend.c, lex.c, mangle.c, repo.c: Update copyright.
2923
2924 2005-05-02 Kazu Hirata <kazu@cs.umass.edu>
2925
2926 * class.c (local_classes, init_class_processing): Use VEC
2927 instead of VARRAY.
2928 * cp-tree.h (local_classes): Likewise.
2929 * mangle.c (discriminator_for_local_entity): Likewise.
2930 * name-lookup.c (pushtag): Likewise.
2931
2932 * class.c (current_lang_depth, push_lang_context,
2933 pop_lang_context): Use VEC instead of VARRAY.
2934 * cp-tree.h (saved_scope): Use VEC for lang_base instead of
2935 VARRAY.
2936 * name-lookup.c (push_to_top_level): Use VEC instead of
2937 VARRAY.
2938
2939 2005-05-02 Paolo Bonzini <bonzini@gnu.org>
2940
2941 * semantics.c (finish_call_expr): Call resolve_overloaded_builtin
2942 for BUILT_IN_MD built-ins.
2943
2944 2005-05-02 Michael Matz <matz@suse.de>
2945
2946 PR c++/19542
2947 * cp-tree.h (cp_tree_index): Remove CPTI_NULL, to be defined in C
2948 common frontend.
2949 (null_node): Remove.
2950 * lex.c (cxx_init): Move null_node initialisation to C common frontend.
2951
2952 2005-04-25 Ian Lance Taylor <ian@airs.com>
2953
2954 * cp-tree.def: Add EXPR_STMT.
2955 * cp-tree.h (cp_stmt_codes): Add EXPR_STMT.
2956 (EXPR_STMT_EXPR): Define.
2957 * cp-gimplify.c: Include "flags.h".
2958 (gimplify_expr_stmt): New static function.
2959 (cp_gimplify_expr): Handle EXPR_STMT.
2960 * cxx-pretty-print.c (pp_cxx_statement): Use pp_cxx_expression
2961 rather than pp_expression.
2962 (pp_cxx_statement): Handle EXPR_STMT.
2963 * dump.c (cp_dump_tree): Handle EXPR_STMT.
2964 * lex.c (cxx_init): Don't use c_common_stmt_codes in stmt_codes
2965 initializer.
2966
2967 2005-04-25 Andrew Pinski <pinskia@physics.uc.edu>
2968
2969 PR C++/21188
2970 * rtti.c (ifnonnull): Cast the zero comparison operand
2971 to the correct type.
2972
2973 2005-04-24 Jakub Jelinek <jakub@redhat.com>
2974
2975 PR middle-end/20991
2976 * class.c: Include cgraph.h.
2977 (cp_fold_obj_type_ref): Set node->local.vtable_method.
2978 * Make-lang.in (cgraph.o): Depend on $(CGRAPH_H).
2979
2980 2005-04-12 Markus F.X.J. Oberhumer <markus@oberhumer.com>
2981
2982 * mangle.c (write_builtin_type): Handle integer types which are
2983 not one of the shared integer type nodes and emit a "vendor
2984 extended builtin type" with an encoding in the form of "u5int96".
2985
2986 2005-04-24 Ian Lance Taylor <ian@airs.com>
2987
2988 * cp-tree.def (USING_STMT): Change class to tcc_statement.
2989 (TRY_BLOCK, EH_SPEC_BLOCK, HANDLER, CLEANUP_STMT): Likewise.
2990 (IF_STMT, FOR_STMT, WHILE_STMT, DO_STMT): Likewise.
2991 (BREAK_STMT, CONTINUE_STMT, SWITCH_STMT): Likewise.
2992
2993 2005-04-23 DJ Delorie <dj@redhat.com>
2994
2995 * call.c, class.c, cvt.c, decl.c, decl2.c, except.c, friend.c,
2996 init.c, lex.c, mangle.c, method.c, name-lookup.c, parser.c,
2997 repo.c, rtti.c, tree.c, typeck.c, typeck2.c: Adjust warning()
2998 callers.
2999
3000 2005-04-22 Per Bothner <per@bothner.com>
3001
3002 * decl.c (make_rtl_for_nonlocal_decl): Don't try get_fileinfo if
3003 input_filename is NULL, as it is for (say) __PRETTY_FUNCTION__.
3004
3005 2005-04-22 Alexandre Oliva <aoliva@redhat.com>
3006
3007 PR c++/21087
3008 * name-lookup.c (push_overloaded_decl): Do not overload with
3009 non-duplicate anticipated built-in.
3010
3011 2005-04-21 Kazu Hirata <kazu@cs.umass.edu>
3012
3013 * cp-tree.h (THROW_NAME, AUTO_VTABLE_NAME, AUTO_TEMP_FORMAT,
3014 VTABLE_BASE, VTABLE_NAME_PREFIX, STATIC_NAME_FORMAT): Remove.
3015
3016 2005-04-21 Nathan Sidwell <nathan@codesourcery.com>
3017
3018 * cp-tree.h: Adjust for new VEC API.
3019 Define VEC(tree_pair_s,gc).
3020 (struct save_scope): Adjust.
3021 (struct lang_type_class): Adjust.
3022 (unemitted_tinfo_decls): Adjust.
3023 * class.c (add_method, resort_type_method_vec,
3024 finish_struct_methods, struct find_final_overrider_data,
3025 dfs_find_final_overrider_pre, find_final_overrider,
3026 get_vcall_index, warn_hidden, walk_subobject_offsets,
3027 check_methods, fixup_inline_methods, end_of_class,
3028 warn_about_ambiguous_bases, finish_struct, build_vtbl_initializer,
3029 add_vcall_offset): Adjust.
3030 * decl.c (xref_basetypes, finish_method): Adjust.
3031 * decl2.c (check_classfn): Adjust.
3032 * init.c (sort_mem_initializers, push_base_cleanups): Adjust.
3033 * method.c (do_build_copy_constructor): Adjust.
3034 * name-lookup.c (new_class_binding, store_binding,
3035 store_bindings, store_class_bindings): Adjust.
3036 * name-lookup.h: Define VEC(cxx_saved_binding,gc),
3037 VEC(cp_class_binding,gc).
3038 (struct cp_binding_level): Adjust.
3039 * parser.c: Define VEC(cp_token_position,heap).
3040 (struct cp_lexer): Adjust.
3041 (cp_lexer_new_main, cp_lexer_new_from_tokens, cp_lexer_destroy,
3042 cp_lexer_save_tokens): Adjust.
3043 * pt.c (retrieve_specialization,
3044 check_explicit_specialization): Adjust.
3045 * rtti.c (unemitted_tinfo_decls): Adjust.
3046 (init_rtti_processing, get_tinfo_decl, get_pseudo_ti_init,
3047 get_pseudo_ti_desc): Adjust.
3048 * search.c (dfs_access_in_type, lookup_conversion_operator,
3049 lookup_fnfields_1, dfs_walk_once, dfs_walk_once_accessible,
3050 dfs_get_pure_virtuals, lookup_conversions_r, binfo_for_vbase): Adjust.
3051 * semantics.c: Define VEC(deferred_access,gc).
3052 (push_deferring_access_checks): Adjust.
3053 * typeck2.c (abstract_virtuals_error): Adjust.
3054
3055 2005-04-20 Ian Lance Taylor <ian@airs.com>
3056
3057 * cp-tree.def: Add STMT_EXPR.
3058 * cp-tree.h (STMT_EXPR_NO_SCOPE): Define.
3059 (STMT_EXPR_STMT): Define.
3060 * cxx-pretty-print.c (pp_cxx_primary_expression): Handle
3061 STMT_EXPR.
3062 (pp_cxx_expression): Likewise.
3063 (pp_cxx_statement): Call pp_cxx_statement, not pp_statement.
3064 * dump.c (cp_dump_tree): Handle STMT_EXPR.
3065
3066 2005-04-18 Kazu Hirata <kazu@cs.umass.edu>
3067
3068 * decl.c (expand_static_init): Call build2 and build3 instead
3069 of build.
3070
3071 * cp-tree.h (VPTR_NAME, VPTR_NAME_P): Remove.
3072
3073 2005-04-17 Ian Lance Taylor <ian@airs.com>
3074
3075 * cp-tree.def: Add SIZEOF_EXPR, ARROW_EXPR and ALIGNOF_EXPR.
3076 * cxx-pretty-print.c (pp_cxx_postfix_expression): Handle
3077 ARROW_EXPR.
3078 (pp_cxx_unary_expression): Handle SIZEOF_EXPR and ALIGNOF_EXPR.
3079 (pp_cxx_expression): Handle ARROW_EXPR, SIZEOF_EXPR, and
3080 ALIGNOF_EXPR.
3081 * typeck.c (cxx_sizeof_or_alignof_type): Update call to
3082 c_sizeof_or_alignof_type for change in parameter type.
3083
3084 2005-04-16 Mark Mitchell <mark@codesourcery.com>
3085
3086 PR c++/21025
3087 * typeck.c (cxx_sizeof_or_alignof_type): Check whether the type to
3088 which sizeof/alignof is dependent, rather than just whether we are
3089 processing_template_decl.
3090
3091 2005-04-17 Kazu Hirata <kazu@cs.umass.edu>
3092
3093 * cp-tree.h (LOOKUP_GLOBAL): Remove.
3094 (LOOKUP_ONLYCONVERTING, DIRECT_BIND, LOOKUP_NO_CONVERSION,
3095 LOOKUP_DESTRUCTOR, LOOKUP_NO_TEMP_BIND, LOOKUP_PREFER_TYPES,
3096 LOOKUP_PREFER_NAMESPACES, LOOKUP_CONSTRUCTOR_CALLABLE): Adjust
3097 their values.
3098
3099 2005-04-15 Richard Henderson <rth@redhat.com>
3100
3101 PR middle-end/14311
3102 * semantics.c (finish_call_expr): Call resolve_overloaded_builtin.
3103
3104 2005-04-15 Kazu Hirata <kazu@cs.umass.edu>
3105
3106 * cp-tree.h (lang_type_class): Remove redefined. Move
3107 java_interface into where redefined was. Increment the width
3108 of dummy.
3109 (TYPE_REDEFINED): Remove.
3110
3111 2005-04-14 Kazu Hirata <kazu@cs.umass.edu>
3112
3113 * cp-tree.h (SET_TMPL_ARG, ENUM_TI_TEMPLATE, ENUM_TI_ARGS,
3114 CLASSTYPE_TEMPLATE_LEVEL): Remove.
3115
3116 2005-04-11 Mark Mitchell <mark@codesourcery.com>
3117
3118 * decl2.c (determine_visibility): Don't use export_class_data.
3119 (import_export_decl): Honor TARGET_CXX_CLASS_DATA_ALWAYS_WEAK and
3120 TARGET_CXX_DETERMINE_CLASS_DATA_VISIBILITY.
3121
3122 2005-04-09 Kazu Hirata <kazu@cs.umass.edu>
3123
3124 * cp-tree.h (cxx_alignof): Remove.
3125
3126 * cp-tree.h (DECL_ARRAY_DELETE_OPERATOR_P): Remove.
3127
3128 * cp-tree.h (EXCEPTION_CLEANUP_NAME, B_SET, B_CLR, B_TST,
3129 CONV_STATIC_CAST): Remove.
3130
3131 * pt.c (UNIFY_ALLOW_MAX_CORRECTION): Remove.
3132
3133 * cp-tree.h (VF_BINFO_VALUE, VF_BASETYPE_VALUE): Remove.
3134
3135 * cp-tree.h (cp_deprecated): Remove.
3136
3137 2005-04-08 Ian Lance Taylor <ian@airs.com>
3138
3139 * cp-tree.def: Define FOR_STMT, WHILE_STMT, DO_STMT, BREAK_STMT,
3140 CONTINUE_STMT, SWITCH_STMT.
3141 * cp-tree.h (cp_stmt_codes): Add FOR_STMT, WHILE_STMT, DO_STMT,
3142 BREAK_STMT, CONTINUE_STMT, SWITCH_STMT.
3143 (WHILE_COND, WHILE_BODY): Define.
3144 (DO_COND, DO_BODY): Define.
3145 (FOR_INIT_STMT, FOR_COND, FOR_EXPR, FOR_BODY): Define.
3146 (SWITCH_STMT_COND, SWITCH_STMT_BODY, SWITCH_STMT_TYPE): Define.
3147 * cp-gimplify.c (enum bc_t): Define.
3148 (struct cp_gimplify_ctx, ctxp): Define.
3149 (push_context, pop_context): New static functions.
3150 (begin_bc_block, finish_bc_block): New static functions.
3151 (build_bc_goto): New static function.
3152 (gimplify_cp_loop, gimplify_for_stmt): New static functions.
3153 (gimplify_while_stmt, gimplify_do_stmt): Likewise.
3154 (gimplify_switch_stmt): Likewise.
3155 (cp_gimplify_expr): Handle FOR_STMT, WHILE_STMT, DO_STMT,
3156 SWITCH_STMT, CONTINUE_STMT, BREAK_STMT.
3157 (cp_genericize): Call push_context and pop_context.
3158 * semantics.c (finish_break_stmt): Just call build_stmt
3159 (BREAK_STMT) rather than build_break_stmt.
3160 (finish_continue_stmt): Corresponding change.
3161 * decl.c (pop_switch): Update call to c_do_switch_warnings for new
3162 parameters.
3163 * cxx-pretty-print.c (pp_cxx_statement): Handle SWITCH_STMT,
3164 WHILE_STMT, DO_STMT, FOR_STMT, BREAK_STMT, CONTINUE_STMT.
3165 * dump.c (cp_dump_tree): Likewise.
3166
3167 2005-04-08 Mark Mitchell <mark@codesourcery.com>
3168
3169 PR c++/20905
3170 * parser.c (cp_parser_type_specifier_seq): Add is_condition
3171 parameter.
3172 (cp_parser_new_type_id): Pass it.
3173 (cp_parser_condition): Likewise.
3174 (cp_parser_conversion_type_id): Likewise.
3175 (cp_parser_type_id): Likewise.
3176 (cp_parser_type_specifier_seq): In a condition, do not allow
3177 invalid type-specifier combinations.
3178 (cp_parser_exception_declaration): Adjust call to
3179 cp_parser_type_specifier_seq.
3180
3181 * cp-tree.def (TINST_LEVEL): Document TINST_IN_SYSTEM_HEADER_P.
3182 * cp-tree.h (struct tinst_level): Add in_system_header_p.
3183 (TINST_IN_SYSTEM_HEADER_P): New macro.
3184 (make_tinst_level): Remove.
3185 * pt.c (lookup_template_class): Preserve DECL_IN_SYSTEM_HEADER on
3186 the instantiated class.
3187 (push_tinst_level): Do not use make_tinst_level. Set
3188 TINST_IN_SYSTEM_HEADER_P.
3189 (pop_tinst_level): Likewise.
3190 (instantiate_class_template): Set in_system_header.
3191 (instantiate_pending_templates): Likewise.
3192 * tree.c (make_tinst_level): Remove.
3193
3194 2005-04-06 Joseph S. Myers <joseph@codesourcery.com>
3195
3196 * decl.c (start_decl): Apply pending #pragma weak regardless of
3197 scope.
3198
3199 2005-04-06 Mark Mitchell <mark@codesourcery.com>
3200
3201 PR c++/20212
3202 * pt.c (regenerate_decl_from_template): Copy attributes for
3203 parameters from the pattern to the instantiation.
3204
3205 2005-04-05 Mark Mitchell <mark@codesourcery.com>
3206
3207 PR c++/20734
3208 * cp-tree.def (OFFSET_REF): Correct comments.
3209 * init.c (build_offset_ref): Remove misleading comment.
3210 * typeck.c (build_unary_op): Handle pointer-to-member creation
3211 here, rather than ...
3212 (unary_complex_lvalue): ... here.
3213
3214 2005-04-06 Jason Merrill <jason@redhat.com>
3215
3216 PR c++/19312
3217 * tree.c (stabilize_init): Don't bother trying to stabilize
3218 something with no side-effects.
3219
3220 2005-04-05 Mark Mitchell <mark@codesourcery.com>
3221
3222 PR c++/20763
3223 * decl.c (grokdeclarator): Correct attribute handling.
3224
3225 2005-04-05 Mark Mitchell <mark@codesourcery.com>
3226
3227 PR c++/19159
3228 * decl2.c (import_export_decl): Use non-COMDAT external linkage
3229 for virtual tables, typeinfo, etc. that will be emitted in only
3230 one translation unit on systems without weak symbols.
3231
3232 2005-04-04 Mark Mitchell <mark@codesourcery.com>
3233
3234 PR c++/20679
3235 * parser.c (cp_parser_template_name): Fix thinko.
3236
3237 2005-04-04 Nathan Sidwell <nathan@codesourcery.com>
3238
3239 PR c++/20746
3240 * method.c (use_thunk): Protect covariant pointer return
3241 adjustments from NULL pointers.
3242
3243 2005-04-04 Jan Hubicka <jh@suse.cz>
3244
3245 * decl2.c (finish_objects): Revert my previous patch.
3246 (cp_finish_file): Likewise.
3247
3248 2005-04-03 Kazu Hirata <kazu@cs.umass.edu>
3249
3250 * pt.c: Fix comment typos.
3251
3252 2005-04-03 Nathan Sidwell <nathan@codesourcery.com>
3253
3254 PR c++/20723
3255 * pt.c (more_specialized_fn): Member functions are unordered wrt
3256 non-members. Conversion operators are unordered wrt other
3257 functions.
3258
3259 2005-04-01 Nathan Sidwell <nathan@codesourcery.com>
3260
3261 * call.c (add_template_candidates_real): Remove length parameter
3262 from fn_type_unification call.
3263 * class.c (resolve_address_of_overloaded_function): Likewise
3264 * cp-tree.h (fn_type_unification): Remove length parameter.
3265 * pt.c (get_bindings_overload): Remove.
3266 (get_bindings_real): Rename to ...
3267 (get_bindings): ... here. Remove length and strict
3268 parameters. Change return type flag to boolean. Remove original
3269 forwarding function.
3270 (determine_specialization): Adjust get_bindings call.
3271 (fn_type_unification): Remove length parameter. Adjust.
3272 (type_unification_real): Remove length parameter. Adjust.
3273 (resolve_overloaded_unification): Adjust get_bindings call.
3274 (try_one_overload): Simplify confusing cascaded if control flow.
3275 (unify): Remove length paramter from type_unification_real call.
3276 (most_specialized_instantiation): Adjust get_bindings calls.
3277 (most_specialized): Likewise.
3278
3279 2005-03-31 Nathan Sidwell <nathan@codesourcery.com>
3280
3281 PR c++/19203, implement DR 214
3282 * call.c (joust): Use more_specialized_fn.
3283 * cp-tree.h (DEDUCE_ORDER): Remove.
3284 (more_specialized): Replace with ...
3285 (more_specialized_fn): ... this.
3286 * pt.c (maybe_adjust_types_for_deduction): Remove DEDUCE_ORDER
3287 case.
3288 (type_unification_real): Remove DEDUCE_ORDER case.
3289 (more_specialized): Replace with ...
3290 (more_specialized_fn): ... this. Implement DR 214.
3291 (most_specialized_instantiation): Use get_bindings_real directly.
3292
3293 2005-03-31 Gabriel Dos Reis <gdr@integrable-solutions.net>
3294
3295 PR c++/18644
3296 * call.c (build_new_op): Remove check for -Wsynth.
3297
3298 2005-03-31 Jan Hubicka <jh@suse.cz>
3299
3300 * decl2.c (finish_objects): Mark ctor as needed.
3301 (cp_finish_file): Output variables only in nonunit-at-a-time.
3302
3303 2005-03-29 Richard Henderson <rth@redhat.com>
3304
3305 PR c/20519
3306 * decl.c (cp_complete_array_type): Rename from complete_array_type.
3307 Use the new complete_array_type in c-common.c. Update all callers.
3308 * cp-tree.h (cp_complete_array_type): Update to match.
3309
3310 2005-03-24 Geoffrey Keating <geoffk@apple.com>
3311
3312 * typeck.c (build_static_cast_1): Allow scalar_cast between
3313 any integral, floating, or enumeration type.
3314
3315 2005-03-24 Steven Bosscher <stevenb@suse.de>
3316
3317 * typeck.c (comptypes): First determine if the types are compatible
3318 from a target-independent point of view. Check target attributes
3319 last.
3320
3321 * class.c (build_base_path):
3322 (build_vbase_offset_vtbl_entries):
3323 (add_vcall_offset): Replace fold (buildN (...)) with fold_buildN.
3324 * error.c (dump_expr): Likewise.
3325 * init.c (build_zero_init, expand_cleanup_for_base,
3326 build_vec_delete_1): Likewise.
3327 * mangle.c (write_integer_cst): Likewise.
3328 * method.c (thunk_adjust): Likewise.
3329 * pt.c (convert_nontype_argument, tsubst, unify): Likewise.
3330 * tree.c (cxx_print_statistics, array_type_nelts_total): Likewise.
3331 * typeck.c (build_ptrmemfunc_access_expr,
3332 (get_member_function_from_ptrfunc): Likewise.
3333
3334 2005-03-23 Joseph S. Myers <joseph@codesourcery.com>
3335
3336 * cp-objcp-common.h (LANG_HOOKS_TRUTHVALUE_CONVERSION): Remove.
3337
3338 2005-03-23 Joseph S. Myers <joseph@codesourcery.com>
3339
3340 * cp-tree.h (perform_integral_promotions): Remove.
3341 (default_conversion): Add.
3342
3343 2005-03-22 Mark Mitchell <mark@codesourcery.com>
3344
3345 * parser.c (cp_parser_warn_min_max): New function.
3346 (cp_parser_binary_expression): Use it.
3347 (cp_parser_assignment_operator_opt): Likewise.
3348 (cp_parser_operator): Likewise.
3349
3350 2005-03-22 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
3351
3352 PR c++/19980
3353 * decl.c (start_preparsed_function): Robustify.
3354
3355 2005-03-22 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
3356
3357 PR c++/20499
3358 * parser.c (cp_parser_class_head): Return NULL_TREE when
3359 encountering a redefinition.
3360
3361 2005-03-22 Nathan Sidwell <nathan@codesourcery.com>
3362
3363 PR c++/20465
3364 PR c++/20381
3365 * typeck.c (build_ptrmemfunc): Allow OFFSET_REF when processing a
3366 template.
3367
3368 2005-03-21 Paolo Carlini <pcarlini@suse.de>
3369
3370 PR c++/20461
3371 PR c++/20536
3372 * init.c (emit_mem_initializers): Don't crash on undefined
3373 types.
3374
3375 2005-03-21 Paolo Carlini <pcarlini@suse.de>
3376
3377 PR c++/20147
3378 * semantics.c (finish_stmt_expr_expr): Return immediately
3379 if error_operand_p (expr).
3380
3381 2005-03-21 Joseph S. Myers <joseph@codesourcery.com>
3382
3383 * cp-tree.h (lvalue_or_else, lvalue_p): New.
3384 * typeck.c (lvalue_or_else): New. Call lvalue_error.
3385
3386 2005-03-19 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
3387
3388 PR c++/20240
3389 * decl.c (decls_match): Compare context of VAR_DECL.
3390
3391 2005-03-19 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
3392
3393 PR c++/20333
3394 * parser.c (cp_parser_postfix_expression) <case RID_TYPENAME>:
3395 Check the return value of cp_parser_nested_name_specifier.
3396
3397 2005-03-18 Dale Johannesen <dalej@apple.com>
3398
3399 * cp/tree.c (cp_tree_equal): Handle SSA_NAME.
3400
3401 2005-03-18 Paolo Carlini <pcarlini@suse.de>
3402
3403 PR c++/20463
3404 * parser.c (cp_parser_diagnose_invalid_type_name):
3405 Check TYPE_BINFO (current_class_type) before attempting
3406 to emit inform messages.
3407
3408 2005-03-17 Paolo Carlini <pcarlini@suse.de>
3409
3410 PR c++/19966
3411 * cp-tree.h (grok_op_properties): Change return type to void.
3412 * decl.c (grok_op_properties): Return early - don't check the
3413 arity - in case of a static member or an operator that cannot
3414 be non-member; tidy a bit.
3415
3416 2005-03-17 Nathan Sidwell <nathan@codesourcery.com>
3417
3418 PR c++/20186
3419 * pt.c (contains_dependent_cast_p): Remove.
3420 (fold_non_dependent_expr): Don't use it.
3421 (value_dependent_expression_p): Use a switch statement.
3422 reference_exprs can be dependent.
3423
3424 2005-03-14 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
3425
3426 PR c++/4403
3427 PR c++/9783, DR433
3428 * name-lookup.c (pushtag): Skip template parameter scope when
3429 scope is ts_global. Don't push tag into template parameter
3430 scope.
3431 * pt.c (instantiate_class_template): Reorder friend class
3432 template substitution to handle non-dependent friend class
3433 that hasn't been previously declared.
3434
3435 2005-03-14 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
3436
3437 Friend class name lookup 5/n
3438 PR c++/1016
3439 * cp-tree.h (pushtag): Adjust declaration.
3440 * decl.c (lookup_and_check_tag): Call lookup_type_scope if
3441 lookup_name fails.
3442 (xref_tag): Adjust call to pushtag. Make hidden class visible.
3443 (start_enum): Adjust call to pushtag.
3444 * name-lookup.c (ambiguous_decl): Ignore hidden names.
3445 (qualify_lookup): Change return type to bool.
3446 (hidden_name_p): New function.
3447 (lookup_namespace_name, unqualified_namespace_lookup,
3448 lookup_name_real): Use it.
3449 (lookup_type_scope): Update comments.
3450 (maybe_process_template_type_declaration): Change parameter name
3451 from globalize to is_friend.
3452 (pushtag): Change globalize parameter of type int to tag_scope.
3453 Hide name if introduced by friend declaration.
3454 * name-lookup.h (hidden_name_p): Add declaration.
3455 * parser.c (cp_parser_lookup_name): Don't deal with hidden name
3456 here.
3457 * pt.c (push_template_decl_real): Make hidden class template
3458 visible.
3459 (lookup_template_class, instantiate_class_template): Adjust call
3460 to pushtag.
3461 * semantics.c (begin_class_definition): Likewise.
3462 * rtti.c (init_rtti_processing, build_dynamic_cast_1,
3463 tinfo_base_init, emit_support_tinfos): Use ts_current instead of
3464 ts_global.
3465
3466 2005-03-13 Mark Mitchell <mark@codesourcery.com>
3467
3468 PR c++/20157
3469 * pt.c (determine_specialization): Reject non-specializations.
3470
3471 2005-03-11 Per Bothner <per@bothner.com>
3472
3473 * cp-tree.h (struct cp_declarator): New id_loc field.
3474 * cp/parser.c (cp_lexer_get_preprocessor_token): Set cp_token's
3475 location using c_lex_with_flags, instead of input_location.
3476 (cp_parser_direct_declarator): Set declarator's id_loc from
3477 cp_token's id_loc.
3478
3479 2005-03-10 Jakub Jelinek <jakub@redhat.com>
3480
3481 PR c++/18384, c++/18327
3482 * decl.c (reshape_init_array): Use UHWI type for max_index_cst
3483 and index. Convert max_index to size_type_node if it isn't
3484 host_integerp (, 1).
3485
3486 2005-03-09 Mark Mitchell <mark@codesourcery.com>
3487
3488 PR c++/20208
3489 * pt.c (tsubst_decl): Apply array-to-pointer and
3490 function-to-pointer conversions to function arguments.
3491 (regenerate_decl_from_template): Likewise.
3492
3493 2005-03-09 Paolo Carlini <pcarlini@suse.de>
3494
3495 PR c++/16859
3496 * decl.c (complete_array_type): In pedantic mode, return
3497 3 for an empty initializer list as the initializer for an
3498 array of unknown bound (8.5.1/4).
3499 (maybe_deduce_size_from_array_init): Fix final test to use
3500 the above.
3501
3502 2005-03-08 Nathan Sidwell <nathan@codesourcery.com>
3503
3504 PR c++/20186
3505 * pt.c (contains_dependent_cast_p): New.
3506 (fold_non_dependent_expr): Call it.
3507
3508 2005-03-08 Mark Mitchell <mark@codesourcery.com>
3509
3510 PR c++/20142
3511 * cp-tree.h (target_type): Remove.
3512 * decl.c (layout_var_decl): Remove #if 0'd code.
3513 (cp_finish_decl): Remove dead code.
3514 * init.c (build_vec_init): When determining whether or not the
3515 element type has an asignment operator, look through all array
3516 dimensions.
3517 * typeck.c (target_type): Remove.
3518
3519 2005-03-07 Mark Mitchell <mark@codesourcery.com>
3520
3521 * class.c (finish_struct_1): Do not warn about non-virtual
3522 destructors in Java classes.
3523
3524 2005-03-05 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
3525
3526 PR c++/19311
3527 * init.c (build_offset_ref): Don't build non-dependent SCOPE_REF.
3528 * pt.c (build_non_dependent_expr): Don't build NON_DEPENDENT_EXPR
3529 for OFFSET_TYPE.
3530 * typeck.c (build_x_unary_op): Don't build non-dependent SCOPE_REF.
3531 Also set PTRMEM_OK_P for NON_DEPENDENT_EXPR.
3532 (build_unary_op): Handle building ADDR_EXPR of OFFSET_REF inside
3533 template.
3534
3535 2005-03-02 Alexandre Oliva <aoliva@redhat.com>
3536
3537 * name-lookup.c (push_overloaded_decl): Don't error if the new
3538 decl matches the old one.
3539 * decl.c (redeclaration_error_message): Likewise.
3540
3541 2005-03-01 Per Bothner <per@bothner.com>
3542
3543 * decl.c (finish_function): Use SET_EXPR_LOCATION instead of
3544 unavailable annotate_with_file_line, if USE_MAPPED_LOCATION.
3545
3546 2005-03-01 Nathan Sidwell <nathan@codesourcery.com>
3547
3548 PR c++/20232
3549 * class.c (update_vtable_entry_for_fn): Don't crash on invalid
3550 covariancy.
3551
3552 * cp-tree.g (THUNK_TARGET): Expand comment.
3553 * method.c (use_thunk): Make sure we also use the target, if that
3554 is a thunk.
3555
3556 2005-02-27 Jakub Jelinek <jakub@redhat.com>
3557
3558 PR c++/20206
3559 * decl.c (cxx_comdat_group): Put thunks for
3560 TARGET_USE_LOCAL_THUNK_ALIAS_P (function) functions into the same
3561 comdat group as the thunk target.
3562
3563 2005-02-24 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
3564
3565 * call.c, class.c, cp-tree.h, decl2.c, error.c, init.c, mangle.c,
3566 parser.c: Fix comment typo(s).
3567
3568 2005-02-24 Jakub Jelinek <jakub@redhat.com>
3569
3570 PR c++/20175
3571 * decl.c (reshape_init): Don't warn about missing braces if STRING_CST
3572 initializes a char/wchar_t array.
3573
3574 2005-02-23 Mark Mitchell <mark@codesourcery.com>
3575
3576 PR c++/19878
3577 * decl.c (grokvardecl): Set DECL_INTERFACE_KNOWN for declarations
3578 with internal linkage.
3579
3580 2005-02-23 Alexandre Oliva <aoliva@redhat.com>
3581
3582 * decl.c (grokvardecl): Don't exempt anonymous types from having
3583 linkage for variables that have linkage other than "C".
3584
3585 2005-02-23 Kazu Hirata <kazu@cs.umass.edu>
3586
3587 * cp-objcp-common.h, error.c: Update copyright.
3588
3589 2005-02-22 Mark Mitchell <mark@codesourcery.com>
3590
3591 PR c++/20073
3592 * decl.c (start_decl_1): Don't clear TREE_READONLY.
3593 (cp_finish_decl): Likewise.
3594 (complete_vars): Call cp_apply_type_quals_to_decl.
3595 * typeck.c (cp_apply_type_quals): Avoid setting TREE_READONLY in
3596 cases where that's not valid.
3597
3598 PR c++/19991
3599 * init.c (integral_constant_value): Iterate if the value of a decl
3600 is itself a constant.
3601
3602 PR c++/20152
3603 * parser.c (cp_parser_class_head): Check for redefintions here.
3604 * semantics.c (begin_class_definition): Not here.
3605
3606 PR c++/20153
3607 * decl2.c (build_anon_union_vars): Add type parameter.
3608 (finish_anon_union): Pass it.
3609
3610 PR c++/20148
3611 * error.c (dump_expr): Do not print the body of a BIND_EXPR.
3612 Handle STATEMENT_LIST.
3613
3614 PR c++/19883
3615 * parser.c (cp_parser_direct_declarator): Always complain about
3616 non-constant array bounds when in a function scope.
3617 * semantics.c (finish_id_expression): Do not mark dependent names
3618 as non-constant.
3619
3620 2005-02-21 Douglas Gregor <dgregor@cs.indiana.edu>
3621
3622 PR c++/19076
3623 PR c++/6628
3624 * cp-tree.h (cp_apply_type_quals_to_decl): Declared.
3625 * decl.c (grokdeclarator): Pedwarn about qualifying a function
3626 type.
3627 Add qualifiers when declaring a typedef of a function type.
3628 Member function pointers pick up the qualifiers of the typedef
3629 used to declare them.
3630 Don't complain about creating cv-qualified function types.
3631 Complain about qualified function typedefs that are used to
3632 declare non-static member functions or free functions.
3633 Use cp_apply_type_quals_to_decl.
3634 (start_preparsed_function): Use cp_apply_type_quals_to_decl.
3635 (grokclassfn): Use cp_apply_type_quals_to_decl.
3636 * error.c (dump_type_suffix): Print qualifiers for function
3637 types.
3638 * pt.c (tsubst_decl): Use cp_apply_type_quals_to_decl.
3639 (tsubst): When substituting a function type into a member
3640 pointer type, pass along the qualifiers.
3641 (unify): Unify member pointers to member function pointers.
3642 * tree.c (cp_build_qualified_type_real): Function types may be
3643 qualified. This includes restrict qualifiers.
3644 * typeck.c (cp_apply_type_quals_to_decl): New function to replace
3645 use of c_apply_type_quals_to_decl. Drops qualifiers that are being
3646 added to function types.
3647
3648 2005-02-20 Zack Weinberg <zack@codesourcery.com>
3649
3650 PR 18785
3651 * cp-objcp-common.h (LANG_HOOKS_TO_TARGET_CHARSET): Set to
3652 c_common_to_target_charset. Delete bogus comment.
3653
3654 2005-02-18 Richard Henderson <rth@redhat.com>
3655
3656 PR libstdc++/10606
3657 * except.c (do_get_exception_ptr): New.
3658 (expand_start_catch_block): Use it.
3659
3660 2005-02-19 Jakub Jelinek <jakub@redhat.com>
3661
3662 * decl.c (start_decl_1): Only check TYPE_NEEDS_CONSTRUCTING
3663 if type is not error_mark_node.
3664
3665 2005-01-20 Giovanni Bajo <giovannibajo@gcc.gnu.org>
3666
3667 PR c++/19508
3668 * decl2.c (grokfield): Do not apply attributes to template parameters
3669 as they are ignored by tsubst anyway.
3670
3671 2005-02-18 Jakub Jelinek <jakub@redhat.com>
3672
3673 PR c++/19813
3674 * decl.c (start_decl_1): Clear TREE_READONLY flag if
3675 its type has TYPE_NEEDS_CONSTRUCTING.
3676 (complete_vars): Likewise.
3677
3678 2005-02-17 Alexandre Oliva <aoliva@redhat.com>
3679
3680 PR c++/20028
3681 * class.c (finish_struct): Initialize TYPE_SIZE_UNIT of a
3682 template along with TYPE_SIZE.
3683
3684 PR c++/20022
3685 * semantics.c (perform_deferred_access_checks): Use
3686 get_deferred_access_checks to get the top of the stack.
3687
3688 2005-02-15 Alexandre Oliva <aoliva@redhat.com>
3689
3690 PR c++/17788
3691 * class.c (add_implicitly_declared_members, check_field_decl)
3692 (check_field_decls, check_bases): Remove arguments, tests and
3693 assignments of cant_have_default_ctor-related variables.
3694
3695 2005-02-15 Alexandre Oliva <aoliva@redhat.com>
3696
3697 * decl2.c (mark_used): Set the source location of the used decl to
3698 the current input location here...
3699 * method.c (synthesize_method): ... not here. Set input_location
3700 from the decl instead.
3701
3702 2005-02-14 Nathan Sidwell <nathan@codesourcery.com>
3703
3704 PR c++/19608
3705 * parser.c (cp_parser_late_parsing_for_member): Use
3706 current_function_decl as scope to push to and from.
3707
3708 PR c++/19884
3709 * pt.c (check_explicit_specialization): Make sure namespace
3710 binding lookup found an overloaded function.
3711 (lookup_template_function): Just assert FNS is an overloaded
3712 function.
3713
3714 PR c++/19895
3715 * decl.c (grokdeclarator): Check for error mark node in ptrmem
3716 construction.
3717
3718 2005-02-14 Alexandre Oliva <aoliva@redhat.com>
3719
3720 PR c++/17816
3721 * decl.c (redeclaration_error_message): Report redefinition of
3722 pure virtual function.
3723
3724 2005-02-14 Nathan Sidwell <nathan@codesourcery.com>
3725
3726 PR c++/19891
3727 * class.c (build_simple_base_path): Build the component_ref
3728 directly.
3729 (update_vtable_entry_for_fn): Walk the covariant's binfo chain
3730 rather than using lookup_base.
3731 * search.c (dfs_walk_once): Add non-recursive assert check.
3732 * typeck.c (build_class_member_access_expr): It is possible for
3733 the member type to be both const and volatile.
3734
3735 2005-02-12 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
3736
3737 PR c++/14479
3738 PR c++/19487
3739 * pt.c (maybe_check_template_type): Remove.
3740 * cp-tree.h (maybe_check_template_type): Remove prototype.
3741 * name-lookup.c (maybe_process_template_type_declaration): Don't
3742 use maybe_check_template_type.
3743
3744 2005-02-11 Richard Henderson <rth@redhat.com>
3745
3746 PR c++/19632
3747 * pt.c (get_mostly_instantiated_function_type): Save and restore
3748 flag_access_control instead of push/pop_access_scope.
3749
3750 2005-02-10 Mark Mitchell <mark@codesourcery.com>
3751
3752 PR c++/19755
3753 * decl.c (reshape_init): Issue warnings about missing braces.
3754
3755 2005-02-11 Kazu Hirata <kazu@cs.umass.edu>
3756
3757 * cp-tree.def, except.c, ptree.c: Update copyright.
3758
3759 2005-02-09 Mark Mitchell <mark@codesourcery.com>
3760
3761 PR c++/19811
3762 * call.c (build_op_delete_call): Check COMPLETE_TYPE_P before
3763 attempting name lookup.
3764
3765 * parser.c (cp_parser_unqualified_id): Initialize type_decl.
3766
3767 PR c++/19787
3768 * call.c (initialize_reference): Robustify.
3769
3770 PR ++/19732
3771 * decl.c (grokdeclarator): Check for invalid use of destructor
3772 names.
3773
3774 PR c++/19762
3775 * parser.c (cp_parser_unqualified_id): Avoid creating destructor
3776 names with invalid types.
3777
3778 PR c++/19826
3779 * parser.c (cp_parser_direct_declarator): Allow type-dependent
3780 expressions as array bounds.
3781
3782 PR c++/19739
3783 * parser.c (cp_parser_attributes_list): Allow empty lists.
3784
3785 2005-02-08 Mark Mitchell <mark@codesourcery.com>
3786
3787 PR c++/19733
3788 * class.c (add_method): Don't set TYPE_HAS_DESTRUCTOR.
3789 (check_bases): Give warnings about a base class with a
3790 non-virtual destructor, even if it is implicit.
3791 (finish_struct_bits): Don't copy TYPE_HAS_DESTRUCTOR.
3792 (maybe_warn_about_overly_private_class): Don't use
3793 TYPE_HAS_DESTRUCTOR.
3794 (finish_struct_methods): Don't set TYPE_HAS_DESTRUCTOR.
3795 (check_for_override): Give it external linkage.
3796 (add_implicitly_declared_members): Generate destructors lazily.
3797 (check_field_decls): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR, not
3798 TYPE_HAS_DESTRUCTOR.
3799 (check_bases_and_members): Call check_methods before
3800 check_field_decls.
3801 (check_bases_and_members): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR, not
3802 TYPE_HAS_DESTRUCTOR.
3803 (finish_struct_1): Do not use TYPE_HAS_DESTRUCTOR.
3804 * cp-tree.def (PSEUDO_DTOR_EXPR): Document.
3805 * cp-tree.h (TYPE_HAS_DESTRUCTOR): Remove.
3806 (lang_type_class): Add lazy_destructor.
3807 (CLASSTYPE_LAZY_DESTRUCTOR): New macro.
3808 (CLASSTYPE_DESTRUCTORS): Robustify.
3809 (TYPE_HAS_DESTRUCTOR): Remove.
3810 (check_for_override): Declare.
3811 (build_vbase_delete): Remove.
3812 * cvt.c (convert_to_void): Issue errors about pseudo-destructor
3813 expressions.
3814 * decl.c (cxx_maybe_build_cleanup): Remove dead code.
3815 * except.c (dtor_nothrow): Lazily create destructors if necessary.
3816 (build_throw): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
3817 * init.c (build_delete): Lazily create destructors, if necessary.
3818 (build_vbase_delete): Remove.
3819 * method.c (locate_dtor): Simplify.
3820 (implicitly_declare_fn): Add support for destructors.
3821 * parser.c (cp_parser_lookup_name): Lazily create destructors, if
3822 necessary.
3823 * pt.c (check_explicit_specialization): Don't use
3824 TYPE_HAS_DESTRUCTOR.
3825 (instantiate_class_template): Likewise.
3826 * ptree.c (cxx_print_type): Don't print TYPE_HAS_DESTRUCTOR.
3827 * rtti.c (emit_support_tinfos): Robustify.
3828 * search.c (lookup_fnfields_1): Lazily create destructors.
3829 * typeck.c (build_class_member_access_expr): Remove
3830 PSEUDO_DTOR_EXPR handling.
3831 (lookup_destructor): Likewise.
3832
3833 2005-02-08 Kazu Hirata <kazu@cs.umass.edu>
3834
3835 * cxx-pretty-print.c, cxx-pretty-print.h, decl.h: Update
3836 copyright.
3837
3838 2005-02-07 Mark Mitchell <mark@codesourcery.com>
3839
3840 * parser.c (cp_lexer_start_debugging): Avoid arithmetic operations
3841 on boolean variables.
3842 (cp_lexer_stop_debugging): Likewise.
3843
3844 2005-02-03 Giovanni Bajo <giovannibajo@gcc.gnu.org>
3845
3846 PR c++/17401
3847 * parser.c (cp_parser_pure_specifier): Emit a specific error
3848 message with an invalid pure specifier.
3849 * decl2.c (grok_function_init): Remove.
3850 (grokfield): An initializer for a method is a always a pure
3851 specifier.
3852
3853 2005-02-02 Matt Austern <austern@apple.com>
3854
3855 PR c++/19628
3856 * cp-tree.h (builtin_valid_in_constant_expr_p): Declare.
3857 * parser.c (cp_parser_postfix_expression): Accept function call in
3858 constant expression if builtin_valid_in_constant_expr_p is true
3859 for that function.
3860 * pt.c (value_dependent_expression_p): Handle CALL_EXPRs properly.
3861 * semantics.c (finish_id_expression): Accept function call in constant
3862 expression if builtin_valid_in_constant_expr_p is true for that
3863 function.
3864 * tree.c (builtin_valid_in_constant_expr_p): New.
3865
3866 2005-02-02 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
3867
3868 PR c++/17413
3869 * pt.c (check_instantiated_args): Improve error message.
3870 Fix logic when to print its second part.
3871
3872 2005-02-02 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
3873
3874 * cp-tree.h (complete_type_or_else): Remove macro.
3875 (complete_type_or_diagnostic): Rename to complete_type_or_else
3876 and remove last argument.
3877 * typeck.c (complete_type_or_diagnostic): Rename to
3878 complete_type_or_else and remove last argument.
3879
3880 2005-02-02 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
3881
3882 * cp-tree.h (commonparms): Remove prototype.
3883 (convert_arguments): Likewise.
3884 (PFN_FROM_PTRMEMFUNC): Remove.
3885 * typeck.c (commonparms): Make static.
3886 (convert_arguments): Add prototype. Make static.
3887 (PFN_FROM_PTRMEMFUNC): Replace by pfn_from_ptrmemfunc.
3888
3889 2005-01-31 Mark Mitchell <mark@codesourcery.com>
3890
3891 * parser.c (cp_parser_primary_expression): Don't complain about
3892 floating-point literals in integral constant expressions when
3893 !pedantic.
3894
3895 2005-02-01 Alexandre Oliva <aoliva@redhat.com>
3896
3897 * parser.c (cp_parser_template_id): Revert comment patch too.
3898
3899 PR c++/18757
3900 PR c++/19366
3901 PR c++/19499
3902 * parser.c (cp_parser_template_id): Revert 2004-12-09's patch.
3903 Issue an error when creating the template id.
3904 * pt.c (fn_type_unification): Return early if the explicit
3905 template arg list is an error_mark_node.
3906
3907 2005-01-31 Mark Mitchell <mark@codesourcery.com>
3908
3909 * decl.c (build_enumerator): Do not issue duplicate error messages
3910 about invalid enumeration constants.
3911 * parser.c (cp_parser_non_integral_constant_expression): Always
3912 set parser->non_integral_constant_expression_p.
3913 (cp_parser_primary_expression): Add cast_p parameter. Issue
3914 errors about invalid uses of floating-point literals in
3915 cast-expressions.
3916 (cp_parser_postfix_expression): Add cast_p parameter.
3917 (cp_parser_open_square_expression): Pass it.
3918 (cp_parser_parenthesized_expression_list): Add cast_p parameter.
3919 (cp_parser_unary_expression): Likewise.
3920 (cp_parser_new_placement): Pass it.
3921 (cp_parser_direct_new_declarator): Likewise.
3922 (cp_parser_new_initializer): Likewise.
3923 (cp_parser_cast_expression): Add cast_p parameter.
3924 (cp_parser_binary_expression): Likewise.
3925 (cp_parser_question_colon_clause): Likewise.
3926 (cp_parser_assignment_expression): Likewise.
3927 (cp_parser_expression): Likewise.
3928 (cp_parser_constant_expression): If an integral constant
3929 expression is invalid, return error_mark_node.
3930 (cp_parser_expression_statement): Pass cast_p.
3931 (cp_parser_condition): Likewise.
3932 (cp_parser_iteration_statement): Likewise.
3933 (cp_parser_jump_statement): Likewise.
3934 (cp_parser_mem_initializer): Likewise.
3935 (cp_parser_template_argument): Likewise.
3936 (cp_parser_parameter_declaration): Likewise.
3937 (cp_parser_initializer): Likewise.
3938 (cp_parser_throw_expression): Likewise.
3939 (cp_parser_attribute_list): Likewise.
3940 (cp_parser_simple_cast_expression): Likewise.
3941 (cp_parser_functional_cast): Likewise.
3942 (cp_parser_late_parsing_default_args): Likewise.
3943 (cp_parser_sizeof_operand): Save/restore
3944 non_integral_constant_expression_p.
3945
3946 2005-01-31 Mike Stump <mrs@apple.com>
3947
3948 * parser.c (cp_lexer_new_main): Get the first token, first, before
3949 doing anything.
3950
3951 2005-01-31 Mark Mitchell <mark@codesourcery.com>
3952
3953 * decl.c (start_decl): Add missing parentheses.
3954
3955 2005-01-30 Mark Mitchell <mark@codesourcery.com>
3956
3957 PR c++/19555
3958 * cp-tree.h (DECL_USE_TEMPLATE): Expand documentation.
3959 * decl.c (duplicate_decls): Do not discard
3960 DECL_IMPLICIT_INSTANTIATION when merging declarations.
3961 (start_decl): Do not SET_DECL_TEMPLATE_SPECIALIZATION for
3962 variables that do not have DECL_USE_TEMPLATE.
3963
3964 PR c++/19395
3965 * decl.c (grokdeclarator): Refactor code so that qualified names
3966 are never allowed as the declarator in a typedef.
3967
3968 PR c++/19367
3969 * name-lookup.c (do_nonmember_using_decl): Avoid overloading
3970 builtin declarations.
3971
3972 PR c++/19457
3973 * call.c (convert_like_real): Inline call to
3974 dubious_conversion_warnings here.
3975 * cp-tree.h (dubious_conversion_warnings): Remove.
3976 * semantics.c (finish_unary_op_expr): Copy INTEGER_CSTs before
3977 setting TREE_NEGATED_INT.
3978 * typeck.c (dubious_conversion_warnings): Remove.
3979
3980 PR c++/19349
3981 * name-lookup.c (pushdecl_namespace_level): Avoid accessing free'd
3982 memory.
3983
3984 2005-01-28 Mark Mitchell <mark@codesourcery.com>
3985
3986 PR c++/19253
3987 * parser.c (cp_parser_diagnose_invalid_type_name): Commit to
3988 tentative parses.
3989
3990 PR c++/19667
3991 * pt.c (redeclare_class_template): Robustify.
3992
3993 2005-01-27 Steven Bosscher <stevenb@suse.de>
3994
3995 * decl.c (finish_case_label): Use SWITCH_STMT accessor macros
3996 instead of SWITCH_EXPR ones.
3997 * pt.c (tsubst_expr): Likewise.
3998 * semantics.c (begin_switch_stmt, finish_switch_cond,
3999 finish_switch_stmt): Likewise.
4000
4001 2005-01-26 J"orn Rennecke <joern.rennecke@st.com>
4002
4003 PR c++/18370
4004 * parser.c (cp_parser_initializer_clause): Initialize *non_constant_p.
4005
4006 2005-01-25 Andrew Pinski <pinskia@physics.uc.edu>
4007
4008 * class.c (abort_fndecl_addr): New variable.
4009 (build_vtbl_initializer): If we have a pure virtual function
4010 share the abort function's address.
4011 Include gt-cp-class.h at the end.
4012 * config-lang.in (gtfiles): Add cp/class.c.
4013
4014 2005-01-25 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
4015
4016 * cxx-pretty-print.c (pp_cxx_statement): Add prototype. Make static.
4017 (pp_cxx_function_definition): Make static.
4018 * cxx-pretty-print.h (pp_cxx_statement): Remove prototype.
4019 (pp_cxx_function_definition): Likewise.
4020
4021 2005-01-25 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
4022
4023 * name-lookup.c (print_binding_level): Make static.
4024 (constructor_name_full): Make static inline.
4025 (current_decl_namespace): Make static.
4026 * name-lookup.h (constructor_name_full): Remove prototype.
4027 (print_binding_level): Likewise.
4028 (current_decl_namespace): Likewise.
4029
4030 2005-01-25 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
4031
4032 * decl.h (debug_bindings_indentation): Remove.
4033
4034 2005-01-23 Kazu Hirata <kazu@cs.umass.edu>
4035
4036 * typeck.c: Fix a comment typo.
4037
4038 2005-01-21 Giovanni Bajo <giovannibajo@gcc.gnu.org>
4039
4040 PR c++/19208
4041 * pt.c (fold_decl_constant_value): Always call fold_non_dependent_expr
4042 at least once.
4043 (tsubst): Use fold_decl_constant_value in place of a bare call to
4044 integral_constant_value.
4045
4046 2005-01-20 Kazu Hirata <kazu@cs.umass.edu>
4047
4048 * typeck.c (more_qualified_p): Remove.
4049 * cp-tree.h: Remove the corresponding prototype.
4050
4051 2005-01-19 Matt Austern <austern@apple.com>
4052
4053 * typeck.c (comptypes): Handle return code from objc_comptypes
4054 correctly.
4055
4056 2005-01-19 Kazu Hirata <kazu@cs.umass.edu>
4057
4058 * cp-tree.h, name-lookup.h: Remove unused prototypes.
4059
4060 2005-01-19 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
4061
4062 PR c++/19375
4063 * semantics.c (finish_id_expression): Disable access checking for
4064 already lookuped FIELD_DECL.
4065
4066 2005-01-18 Kazu Hirata <kazu@cs.umass.edu>
4067
4068 * decl.c (delete_block): Remove.
4069 * cp-tree.h: Remove the corresponding prototype.
4070
4071 * decl.c (vtable_decl_p, vtype_decl_p, walk_globals_data,
4072 walk_vtables_r, walk_vtables, walk_globals_r, walk_globals):
4073 Remove.
4074 * cp-tree.h: Remove the corresponding prototypes.
4075
4076 * tree.c (count_functions, bound_pmf_p, cp_is_overload_p,
4077 cp_update_decl_after_saving, name_p): Remove.
4078 * cp-tree.h: Remove the corresponding prototypes.
4079
4080 2005-01-18 Andrew Pinski <pinskia@physics.uc.edu>
4081
4082 PR c/19472
4083 * semantics.c (finish_asm_stmt): Strip nops off
4084 input memory operands.
4085
4086 2005-01-18 Kazu Hirata <kazu@cs.umass.edu>
4087
4088 * Make-lang.in, call.c, cvt.c, init.c, rtti.c, tree.c,
4089 typeck2.c: Update copyright.
4090
4091 2005-01-16 Kazu Hirata <kazu@cs.umass.edu>
4092
4093 * class.c (get_enclosing_class): Remove.
4094 * cp-tree.h: Remove the corresponding prototypes.
4095
4096 * cvt.c (convert_lvalue): Remove.
4097 * cp-tree.h: Remove the corresponding prototype.
4098
4099 * pt.c (tinst_for_decl): Remove.
4100 * cp-tree.h: Remove the corresponding prototypes.
4101
4102 * tree.c (hash_chainon): Remove.
4103 * cp-tree.h: Remove the corresponding prototypes.
4104
4105 2005-01-15 Jakub Jelinek <jakub@redhat.com>
4106
4107 PR c++/19263
4108 * typeck2.c (split_nonconstant_init_1) <case VECTOR_TYPE>: Put a copy
4109 of CONSTRUCTOR's node into MODIFY_EXPR, as the original is modified.
4110
4111 2005-01-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4112
4113 * Make-lang.in (cp-warn): Don't append $(WERROR).
4114
4115 2005-01-10 Kazu Hirata <kazu@cs.umass.edu>
4116
4117 * cp-tree.h: Fix a comment typo.
4118
4119 2005-01-07 Nathan Sidwell <nathan@codesourcery.com>
4120
4121 PR c++/19298
4122 * pt.c (tsubst_qualified_id): Call convert_from_reference.
4123
4124 2005-01-06 Mark Mitchell <mark@codesourcery.com>
4125
4126 PR c++/19244
4127 * class.c (add_implicitly_declared_members): Remove dead code.
4128 * decl.c (grokfndecl): Add sfk parameter. Use it do set
4129 DECL_CONSTRUCTOR_P.
4130 (grokdeclarator): Adjust calls to grokfndecl.
4131 * method.c (implicitly_declare_fn): Improve documentation.
4132 * parser.c (cp_parser_direct_declarator): Do not consider a
4133 function to be a constructor if the containing class was
4134 originally anonymous.
4135
4136 2005-01-06 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
4137
4138 PR c++/17154
4139 * search.c (lookup_field_1): Handle using declaration in
4140 class template partial specialization.
4141
4142 2005-01-06 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
4143
4144 PR c++/19258
4145 * pt.c (push_access_scope): Handle friend defined in class.
4146 (pop_access_scope): Likewise.
4147
4148 2005-01-06 Nathan Sidwell <nathan@codesourcery.com>
4149
4150 PR c++/19270
4151 * pt.c (tsubst_copy) <ARRAY_REF case>: Handle separately.
4152 (tsubst_copy_and_build) <ARRAY_REF case>: Remove obsolete
4153 array-new handling code. Use build_x_binary_op.
4154
4155 2005-01-05 Nathan Sidwell <nathan@codesourcery.com>
4156
4157 PR c++/19030
4158 * cp-tree.h (start_decl): Take pointer to pushed scope, not bool.
4159 * name-lookup.h (push_scope): Return pushed scope, not flag.
4160 * name-lookup.c (push_scope): Return scope that should be popped,
4161 not a flag.
4162 * decl.c (start_decl): Adjust.
4163 (grokfndecl): Adjust scope push and pop.
4164 * decl2.c (check_classfn): Likewise.
4165 * parser.c (cp_parser_condition, cp_parser_conversion_function_id,
4166 cp_parser_init_declarator, cp_parser_direct_declarator,
4167 cp_parser_class_specifier, cp_parser_class_head,
4168 cp_parser_lookup_name,
4169 cp_parser_constructor_declarator_p): Likewise.
4170 * pt.c (instantiate_class_template,
4171 resolve_typename_type): Likewise.
4172
4173 2005-01-03 Volker Reichelt <reichelt@igpm.rwth-aaachen.de>
4174
4175 PR c++/14136
4176 * parser.c (cp_parser_unqualified_id): Do not issue error message
4177 for typedef-name as destructor declarator when performing an
4178 uncommitted tentative parse.
4179
4180 2005-01-01 Steven Bosscher <stevenb@suse.de>
4181
4182 PR middle-end/17544
4183 * decl.c (finish_function): Fix comment. Annotate the compiler
4184 generated return with the current file name and line 0.
This page took 0.203606 seconds and 6 git commands to generate.