From 30b549263afbe0b17e18fc7d923c5fe136755800 Mon Sep 17 00:00:00 2001 From: jason Date: Fri, 19 Jun 1998 22:38:51 +0000 Subject: * svr4.h (ASM_GENERATE_INTERNAL_LABEL): Cast arg to unsigned. * dwarf2out.c (ASM_OUTPUT_DWARF_DATA1): Likewise. Add parens to various macros. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@20619 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/config/svr4.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/config') diff --git a/gcc/config/svr4.h b/gcc/config/svr4.h index 104b1bbd668..47376974358 100644 --- a/gcc/config/svr4.h +++ b/gcc/config/svr4.h @@ -414,7 +414,7 @@ do { \ #undef ASM_GENERATE_INTERNAL_LABEL #define ASM_GENERATE_INTERNAL_LABEL(LABEL, PREFIX, NUM) \ do { \ - sprintf (LABEL, "*.%s%d", PREFIX, NUM); \ + sprintf (LABEL, "*.%s%d", PREFIX, (unsigned) (NUM)); \ } while (0) /* Output the label which precedes a jumptable. Note that for all svr4 -- cgit v1.2.1