In the NO_UNDERSCORES case we need an extra `*' in ASM_GENERATE_INTERNAL_LABEL

otherwise using the macro in dbxout.c, eats the initial `.'. Probably someone
forgot that one, because the `*' is present in other implementations.
... tv said go for it.
This commit is contained in:
christos 1999-01-07 10:22:49 +00:00
parent d5c73c26a3
commit a3b9ba9f0e
1 changed files with 1 additions and 1 deletions

View File

@ -149,7 +149,7 @@ Boston, MA 02111-1307, USA. */
#undef ASM_GENERATE_INTERNAL_LABEL
#define ASM_GENERATE_INTERNAL_LABEL(BUF,PREFIX,NUMBER) \
sprintf ((BUF), ".%s%d", (PREFIX), (NUMBER))
sprintf ((BUF), "*.%s%d", (PREFIX), (NUMBER))
/* This is how to output an internal numbered label where
PREFIX is the class of label and NUM is the number within the class. */