+2001-03-19 Stan Shebs <shebs@apple.com>
+
+ * objc/objc-act.c (maybe_objc_method_name): Remove, never called.
+ * c-lang.c (maybe_objc_method_name): Ditto.
+ * c-tree.h (maybe_objc_method_name): Remove decl.
+
2001-03-19 Tom Tromey <tromey@redhat.com>
* gcc.c (init_gcc_specs): Fix comment.
return -1;
}
-tree
-maybe_objc_method_name (decl)
- tree decl ATTRIBUTE_UNUSED;
-{
- return 0;
-}
-
tree
maybe_building_objc_message_expr ()
{
extern void finish_file PARAMS ((void));
extern int maybe_objc_comptypes PARAMS ((tree, tree, int));
extern tree maybe_building_objc_message_expr PARAMS ((void));
-extern tree maybe_objc_method_name PARAMS ((tree));
extern int recognize_objc_keyword PARAMS ((void));
extern tree lookup_objc_ivar PARAMS ((tree));
\f
return complex_expr;
}
\f
-/* The selector of the current method,
- or NULL if we aren't compiling a method. */
-
-tree
-maybe_objc_method_name (decl)
- tree decl ATTRIBUTE_UNUSED;
-{
- if (method_context)
- return METHOD_SEL_NAME (method_context);
- else
- return 0;
-}
-
/* Transform a method definition into a function definition as follows:
- synthesize the first two arguments, "self" and "_cmd". */