objc-act.c (handle_impent): Remove leading '*' from objc_class_name.
authorDavid Billinghurst <David.Billinghurst@riotinto.com>
Mon, 18 Feb 2002 03:54:30 +0000 (03:54 +0000)
committerDavid Billinghurst <billingd@gcc.gnu.org>
Mon, 18 Feb 2002 03:54:30 +0000 (03:54 +0000)
2002-02-18  David Billinghurst <David.Billinghurst@riotinto.com>

* objc/objc-act.c (handle_impent): Remove leading '*'
from objc_class_name.

From-SVN: r49833

gcc/ChangeLog
gcc/objc/objc-act.c

index e1b054c..b4e8a5e 100644 (file)
@@ -1,3 +1,8 @@
+2002-02-18  David Billinghurst <David.Billinghurst@riotinto.com>
+
+       * objc/objc-act.c (handle_impent): Remove leading '*'
+       from objc_class_name. 
+
 2002-02-17  Richard Henderson  <rth@redhat.com>
 
        * config/alpha/alpha.c (some_small_symbolic_operand,
index 0a57d65..163b618 100644 (file)
@@ -8330,7 +8330,7 @@ handle_impent (impent)
 
       string = (char *) alloca (strlen (class_name) + 30);
 
-      sprintf (string, "*%sobjc_class_name_%s",
+      sprintf (string, "%sobjc_class_name_%s",
                (flag_next_runtime ? "." : "__"), class_name);
     }
   else if (TREE_CODE (impent->imp_context) == CATEGORY_IMPLEMENTATION_TYPE)