mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-24 10:35:12 +08:00
* macro.c (macro_expand_body): Don't prepend macro number with zeroes.
This commit is contained in:
parent
df13624506
commit
a298424885
@ -1,3 +1,7 @@
|
|||||||
|
Mon May 1 08:54:23 2000 Catherine Moore <clm@cygnus.com>
|
||||||
|
|
||||||
|
* macro.c (macro_expand_body): Don't prepend macro number with zeroes.
|
||||||
|
|
||||||
Mon May 1 14:19:39 2000 Denis Chertykov <denisc@overta.ru>
|
Mon May 1 14:19:39 2000 Denis Chertykov <denisc@overta.ru>
|
||||||
|
|
||||||
* config/tc-avr.c: ATTRIBUTE_UNUSED added to the necessary places.
|
* config/tc-avr.c: ATTRIBUTE_UNUSED added to the necessary places.
|
||||||
|
@ -700,7 +700,7 @@ macro_expand_body (in, out, formals, formal_hash, comment_char, locals)
|
|||||||
|
|
||||||
char buffer[10];
|
char buffer[10];
|
||||||
src++;
|
src++;
|
||||||
sprintf (buffer, "%05d", macro_number);
|
sprintf (buffer, "%d", macro_number);
|
||||||
sb_add_string (out, buffer);
|
sb_add_string (out, buffer);
|
||||||
}
|
}
|
||||||
else if (in->ptr[src] == '&')
|
else if (in->ptr[src] == '&')
|
||||||
|
Loading…
Reference in New Issue
Block a user