Approved by Jim Blandy:

2001-12-09  Fred Fish  <fnf@redhat.com>
	* gdbtypes.c (allocate_stub_method): Replace hand crafted type
	initialization with call to the init_type() function.
This commit is contained in:
Fred Fish 2001-12-10 06:13:11 +00:00
parent 46cd78fb46
commit 7e956337e5
2 changed files with 7 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2001-12-09 Fred Fish <fnf@redhat.com>
* gdbtypes.c (allocate_stub_method): Replace hand crafted type
initialization with call to the init_type() function.
2001-12-09 Andrew Cagney <ac131313@redhat.com>
* arch-utils.c (generic_register_raw_size): New function.

View File

@ -542,13 +542,11 @@ allocate_stub_method (struct type *type)
{
struct type *mtype;
mtype = alloc_type (TYPE_OBJFILE (type));
mtype = init_type (TYPE_CODE_METHOD, 1, TYPE_FLAG_STUB, NULL,
TYPE_OBJFILE (type));
TYPE_TARGET_TYPE (mtype) = type;
/* _DOMAIN_TYPE (mtype) = unknown yet */
/* _ARG_TYPES (mtype) = unknown yet */
TYPE_FLAGS (mtype) = TYPE_FLAG_STUB;
TYPE_CODE (mtype) = TYPE_CODE_METHOD;
TYPE_LENGTH (mtype) = 1;
return (mtype);
}