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
This commit is contained in:
David Billinghurst 2002-02-18 03:54:30 +00:00 committed by David Billinghurst
parent c02f5e295f
commit aeb85a152c
2 changed files with 6 additions and 1 deletions

View 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,

View 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)