aboutsummaryrefslogtreecommitdiff
path: root/libobjc/encoding.c
diff options
context:
space:
mode:
authorNicola Pero <nicola.pero@meta-innovation.com>2011-06-07 21:36:57 +0000
committerNicola Pero <nicola@gcc.gnu.org>2011-06-07 21:36:57 +0000
commit338efe0d54885f66865f9c09f87ee413f7b6f1a2 (patch)
tree094bedf01058b1650a9e74043d755d066f221407 /libobjc/encoding.c
parent69c32980595cccd99407da9c9f38e07e25ddbbf2 (diff)
downloadgcc-338efe0d54885f66865f9c09f87ee413f7b6f1a2.zip
gcc-338efe0d54885f66865f9c09f87ee413f7b6f1a2.tar.gz
gcc-338efe0d54885f66865f9c09f87ee413f7b6f1a2.tar.bz2
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
Diffstat (limited to 'libobjc/encoding.c')
-rw-r--r--libobjc/encoding.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/libobjc/encoding.c b/libobjc/encoding.c
index d392193..bd8b67e 100644
--- a/libobjc/encoding.c
+++ b/libobjc/encoding.c
@@ -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)
{