diff options
author | David Billinghurst <David.Billinghurst@riotinto.com> | 2002-02-18 03:54:30 +0000 |
---|---|---|
committer | David Billinghurst <billingd@gcc.gnu.org> | 2002-02-18 03:54:30 +0000 |
commit | aeb85a152cd80ead8a39d559f71acbc447e7df4e (patch) | |
tree | e85fceabd47e6b1fbe27299a16629580589fa9aa /gcc/objc | |
parent | c02f5e295fc748655976cfc2ba98fc9660fd1a5c (diff) | |
download | gcc-aeb85a152cd80ead8a39d559f71acbc447e7df4e.zip gcc-aeb85a152cd80ead8a39d559f71acbc447e7df4e.tar.gz gcc-aeb85a152cd80ead8a39d559f71acbc447e7df4e.tar.bz2 |
objc-act.c (handle_impent): Remove leading '*' from objc_class_name.
2002-02-18 David Billinghurst <David.Billinghurst@riotinto.com>
* objc/objc-act.c (handle_impent): Remove leading '*'
from objc_class_name.
From-SVN: r49833
Diffstat (limited to 'gcc/objc')
-rw-r--r-- | gcc/objc/objc-act.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |