diff options
author | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-12-04 19:38:45 +0000 |
---|---|---|
committer | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-12-04 19:38:45 +0000 |
commit | 79a484863df590c3b7934246f10609f50c8b8654 (patch) | |
tree | 6d912a1774d3f722487e932c15156b535e03efa1 /gcc/config/elfos.h | |
parent | 2d87a73a4ec3f638325125cbfdbb3d2bb4639ad0 (diff) | |
download | gcc-79a484863df590c3b7934246f10609f50c8b8654.tar.gz |
* config/elfos.h (ASM_OUTPUT_INTERNAL_LABEL): Display count unsigned.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@47620 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/elfos.h')
-rw-r--r-- | gcc/config/elfos.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/config/elfos.h b/gcc/config/elfos.h index 503e141d778..e04e57db274 100644 --- a/gcc/config/elfos.h +++ b/gcc/config/elfos.h @@ -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 |