In libobjc/: 2011-06-07 Nicola Pero <nicola.pero@meta-innovation.com>

In libobjc/:
2011-06-07  Nicola Pero  <nicola.pero@meta-innovation.com>

	* encoding.c (method_get_number_of_arguments): Removed.
	(method_get_sizeof_arguments): Removed.

From-SVN: r174768
This commit is contained in:
Nicola Pero 2011-06-07 21:36:57 +00:00 committed by Nicola Pero
parent 69c3298059
commit 338efe0d54
2 changed files with 5 additions and 16 deletions

View file

@ -1,3 +1,8 @@
2011-06-07 Nicola Pero <nicola.pero@meta-innovation.com>
* encoding.c (method_get_number_of_arguments): Removed.
(method_get_sizeof_arguments): Removed.
2011-06-07 Nicola Pero <nicola.pero@meta-innovation.com>
* class.c (objc_next_class): Removed.

View file

@ -993,22 +993,6 @@ method_getNumberOfArguments (struct objc_method *method)
}
}
int
method_get_number_of_arguments (struct objc_method *mth)
{
return method_getNumberOfArguments (mth);
}
/* Return the size of the argument block needed on the stack to invoke
the method MTH. This may be zero, if all arguments are passed in
registers. */
int
method_get_sizeof_arguments (struct objc_method *mth)
{
const char *type = objc_skip_typespec (mth->method_types);
return atoi (type);
}
unsigned
objc_get_type_qualifiers (const char *type)
{