OSDN Git Service

2001-03-19 Stan Shebs <shebs@apple.com>
authorshebs <shebs@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 20 Mar 2001 02:57:28 +0000 (02:57 +0000)
committershebs <shebs@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 20 Mar 2001 02:57:28 +0000 (02:57 +0000)
        * 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.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40646 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/c-lang.c
gcc/c-tree.h
gcc/objc/objc-act.c

index 29edf0c..aa86eff 100644 (file)
@@ -1,3 +1,9 @@
+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.
index 53ebdab..22c9810 100644 (file)
@@ -145,13 +145,6 @@ maybe_objc_comptypes (lhs, rhs, reflexive)
 }
 
 tree
-maybe_objc_method_name (decl)
-    tree decl ATTRIBUTE_UNUSED;
-{
-  return 0;
-}
-
-tree
 maybe_building_objc_message_expr ()
 {
   return 0;
index 939ca3f..45ed4de 100644 (file)
@@ -148,7 +148,6 @@ extern void maybe_objc_check_decl           PARAMS ((tree));
 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
index d71ba59..c5db445 100644 (file)
@@ -6937,19 +6937,6 @@ expr_last (complex_expr)
   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".  */