mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-19 22:20:08 +08:00
* config/elfos.h (ASM_OUTPUT_INTERNAL_LABEL): Display count unsigned.
From-SVN: r47620
This commit is contained in:
parent
4f88ccda2d
commit
344c6d1f13
@ -1,3 +1,7 @@
|
||||
2001-12-04 David Edelsohn <edelsohn@gnu.org>
|
||||
|
||||
* config/elfos.h (ASM_OUTPUT_INTERNAL_LABEL): Display count unsigned.
|
||||
|
||||
2001-12-04 Hans-Peter Nilsson <hp@axis.com>
|
||||
|
||||
* config/cris/cris.h (OPTIMIZATION_OPTIONS): Don't unset
|
||||
|
@ -134,11 +134,11 @@ Boston, MA 02111-1307, USA. */
|
||||
with a period is not put into the linker symbol table by the assembler. */
|
||||
|
||||
#undef ASM_OUTPUT_INTERNAL_LABEL
|
||||
#define ASM_OUTPUT_INTERNAL_LABEL(FILE, PREFIX, NUM) \
|
||||
do \
|
||||
{ \
|
||||
fprintf (FILE, ".%s%d:\n", PREFIX, NUM); \
|
||||
} \
|
||||
#define ASM_OUTPUT_INTERNAL_LABEL(FILE, PREFIX, NUM) \
|
||||
do \
|
||||
{ \
|
||||
fprintf (FILE, ".%s%u:\n", PREFIX, (unsigned) (NUM)); \
|
||||
} \
|
||||
while (0)
|
||||
|
||||
/* This is how to store into the string LABEL
|
||||
|
Loading…
Reference in New Issue
Block a user