diff options
author | Jason Merrill <jason@gcc.gnu.org> | 2000-03-28 19:58:46 -0500 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2000-03-28 19:58:46 -0500 |
commit | 867580ce463bb435a5f05bf9c1fcabf0ab0ddf73 (patch) | |
tree | 4c13db3659cab3432035db822e8a10c10aaff8bb | |
parent | acbedd7cc0bdf155b70b9b993bc343466c984ef6 (diff) | |
download | gcc-867580ce463bb435a5f05bf9c1fcabf0ab0ddf73.zip gcc-867580ce463bb435a5f05bf9c1fcabf0ab0ddf73.tar.gz gcc-867580ce463bb435a5f05bf9c1fcabf0ab0ddf73.tar.bz2 |
class.c (finish_struct): Use bitsize_zero_node.
* class.c (finish_struct): Use bitsize_zero_node.
* pt.c (instantiate_class_template): Likewise.
From-SVN: r32794
-rw-r--r-- | gcc/cp/ChangeLog | 47 | ||||
-rw-r--r-- | gcc/cp/class.c | 2 | ||||
-rw-r--r-- | gcc/cp/pt.c | 2 |
3 files changed, 29 insertions, 22 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index a787eb3..1b893439 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2000-03-28 Jason Merrill <jason@casey.cygnus.com> + + * class.c (finish_struct): Use bitsize_zero_node. + * pt.c (instantiate_class_template): Likewise. + 2000-03-28 Mark Mitchell <mark@codesourcery.com> Put RTTI entries at negative offsets in new ABI. @@ -121,30 +126,32 @@ Sat Mar 25 09:12:10 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu> 2000-03-20 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr> - * call.c (check_dtor_name,build_new_method_call): Use DECL_P and - TYPE_P macros. - * decl.c (push_class_binding,poplevel,pushtag,lookup_namespace_name, - make_typename_type,check_initializer,cp_finish_decl,xref_tag): Likewise. - * decl2.c (grokfield,build_expr_from_tree,build_expr_from_tree, - decl_namespace,arg_assoc_template_arg,arg_assoc, - validate_nonmember_using_decl,do_class_using_decl): Likewise. - * error.c (dump_template_argument,dump_expr,cp_file_of,cp_line_of, + * call.c (check_dtor_name, build_new_method_call): Use TYPE_P and + DECL_P macros. + * decl.c (push_class_binding, poplevel, pushtag, lookup_namespace_name, + make_typename_type, check_initializer, cp_finish_decl, + xref_tag): Likewise. + * decl2.c (grokfield, build_expr_from_tree, build_expr_from_tree, + decl_namespace, arg_assoc_template_arg, arg_assoc, + validate_nonmember_using_decl, do_class_using_decl): Likewise. + * error.c (dump_template_argument, dump_expr, cp_file_of, cp_line_of, args_to_string): Likewise. * friend.c (is_friend): Likewise. - * lex.c (note_got_semicolon,note_list_got_semicolon,is_global): Likewise. - * method.c (build_overload_nested_name,build_overload_value, - build_qualified_name,build_qualified_name,hack_identifier): Likewise. - * parse.y (typename_sub,typename_sub1): Likewise. - * pt.c (push_inline_template_parms_recursive,check_template_shadow, - process_partial_specialization,convert_template_argument, - template_args_equal,add_pending_template,lookup_template_class, - for_each_template_parm_r,maybe_fold_nontype_arg, - tsubst,instantiate_template,type_unification_real,unify, - instantiate_pending_templates,set_mangled_name_for_template_decl): + * lex.c (note_got_semicolon, note_list_got_semicolon, + is_global): Likewise. + * method.c (build_overload_nested_name, build_overload_value, + build_qualified_name, build_qualified_name, hack_identifier): Likewise. + * parse.y (typename_sub, typename_sub1): Likewise. + * pt.c (push_inline_template_parms_recursive, check_template_shadow, + process_partial_specialization, convert_template_argument, + template_args_equal, add_pending_template, lookup_template_class, + for_each_template_parm_r, maybe_fold_nontype_arg, + tsubst, instantiate_template, type_unification_real, unify, + instantiate_pending_templates, set_mangled_name_for_template_decl): Likewise. - * repo.c (repo_get_id,repo_template_used): Likewise. + * repo.c (repo_get_id, repo_template_used): Likewise. * search.c (lookup_field_1): Likewise. - * tree.c (walk_tree,get_type_decl,cp_tree_equal,member_p): Likewise. + * tree.c (walk_tree, get_type_decl, cp_tree_equal, member_p): Likewise. * xref.c (classname): Likewise. 2000-03-22 Mark Mitchell <mark@codesourcery.com> diff --git a/gcc/cp/class.c b/gcc/cp/class.c index a0bbf7f..881c66d 100644 --- a/gcc/cp/class.c +++ b/gcc/cp/class.c @@ -5430,7 +5430,7 @@ finish_struct (t, attributes) if (processing_template_decl) { finish_struct_methods (t); - TYPE_SIZE (t) = integer_zero_node; + TYPE_SIZE (t) = bitsize_zero_node; } else finish_struct_1 (t); diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c index bd4ec4e..83d738d 100644 --- a/gcc/cp/pt.c +++ b/gcc/cp/pt.c @@ -4757,7 +4757,7 @@ instantiate_class_template (type) CLASSTYPE_TAGS (type) = CLASSTYPE_TAGS (pattern); /* Pretend that the type is complete, so that we will look inside it during name lookup and such. */ - TYPE_SIZE (type) = integer_zero_node; + TYPE_SIZE (type) = bitsize_zero_node; return type; } |