* config/ia64/ia64.h (STRIP_NAME_ENCODING): Strip out '*' as well.

From-SVN: r44351
This commit is contained in:
Andrew MacLeod 2001-07-25 13:21:49 +00:00 committed by Andrew Macleod
parent a89dd0729b
commit ff3daa889a
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2001-07-25 Andrew MacLeod <amacleod@redhat.com>
* config/ia64/ia64.h (STRIP_NAME_ENCODING): Strip out '*' as well.
2001-07-25 Jan Hubicka <jh@suse.cz> 2001-07-25 Jan Hubicka <jh@suse.cz>
Richard Henderson <rth@redhat.com> Richard Henderson <rth@redhat.com>

View File

@ -1930,7 +1930,9 @@ do { \
that encode section info. */ that encode section info. */
#define STRIP_NAME_ENCODING(VAR, SYMBOL_NAME) \ #define STRIP_NAME_ENCODING(VAR, SYMBOL_NAME) \
(VAR) = (SYMBOL_NAME) + ((SYMBOL_NAME)[0] == SDATA_NAME_FLAG_CHAR) (VAR) = ((SYMBOL_NAME) \
+ (*(SYMBOL_NAME) == '*' || *(SYMBOL_NAME) == SDATA_NAME_FLAG_CHAR))
/* Position Independent Code. */ /* Position Independent Code. */