Commit 338efe0d by Nicola Pero Committed by Nicola Pero

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
parent 69c32980
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.
(class_pose_as): Removed.
(CLASSOF): Removed.
......
......@@ -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)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment