From: David Billinghurst Date: Mon, 18 Feb 2002 03:54:30 +0000 (+0000) Subject: objc-act.c (handle_impent): Remove leading '*' from objc_class_name. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=aeb85a152cd80ead8a39d559f71acbc447e7df4e;p=gcc.git objc-act.c (handle_impent): Remove leading '*' from objc_class_name. 2002-02-18 David Billinghurst * objc/objc-act.c (handle_impent): Remove leading '*' from objc_class_name. From-SVN: r49833 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e1b054cde42..b4e8a5e410a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-02-18 David Billinghurst + + * objc/objc-act.c (handle_impent): Remove leading '*' + from objc_class_name. + 2002-02-17 Richard Henderson * config/alpha/alpha.c (some_small_symbolic_operand, diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c index 0a57d65b2ef..163b6182de3 100644 --- a/gcc/objc/objc-act.c +++ b/gcc/objc/objc-act.c @@ -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)