diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/objc/objc-act.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e1b054c..b4e8a5e4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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, diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c index 0a57d65b..163b618 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) |