From 79a484863df590c3b7934246f10609f50c8b8654 Mon Sep 17 00:00:00 2001 From: dje Date: Tue, 4 Dec 2001 19:38:45 +0000 Subject: * 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 --- gcc/config/elfos.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'gcc/config/elfos.h') 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 -- cgit v1.2.1