Commit 344c6d1f by David Edelsohn Committed by David Edelsohn

* config/elfos.h (ASM_OUTPUT_INTERNAL_LABEL): Display count unsigned.

From-SVN: r47620
parent 4f88ccda
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> 2001-12-04 Hans-Peter Nilsson <hp@axis.com>
* config/cris/cris.h (OPTIMIZATION_OPTIONS): Don't unset * config/cris/cris.h (OPTIMIZATION_OPTIONS): Don't unset
......
...@@ -134,11 +134,11 @@ Boston, MA 02111-1307, USA. */ ...@@ -134,11 +134,11 @@ Boston, MA 02111-1307, USA. */
with a period is not put into the linker symbol table by the assembler. */ with a period is not put into the linker symbol table by the assembler. */
#undef ASM_OUTPUT_INTERNAL_LABEL #undef ASM_OUTPUT_INTERNAL_LABEL
#define ASM_OUTPUT_INTERNAL_LABEL(FILE, PREFIX, NUM) \ #define ASM_OUTPUT_INTERNAL_LABEL(FILE, PREFIX, NUM) \
do \ do \
{ \ { \
fprintf (FILE, ".%s%d:\n", PREFIX, NUM); \ fprintf (FILE, ".%s%u:\n", PREFIX, (unsigned) (NUM)); \
} \ } \
while (0) while (0)
/* This is how to store into the string LABEL /* This is how to store into the string LABEL
......
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