Commit ff3daa88 by Andrew MacLeod Committed by Andrew Macleod

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

From-SVN: r44351
parent a89dd072
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>
Richard Henderson <rth@redhat.com>
......
......@@ -1930,7 +1930,9 @@ do { \
that encode section info. */
#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. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment