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:
parent
d5c73c26a3
commit
a3b9ba9f0e
|
@ -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. */
|
||||
|
|
Loading…
Reference in New Issue