diff options
author | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-06-19 22:38:51 +0000 |
---|---|---|
committer | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-06-19 22:38:51 +0000 |
commit | 30b549263afbe0b17e18fc7d923c5fe136755800 (patch) | |
tree | 4c3c5d0ad1e286bab855f159cb29c249ba1ddc97 /gcc/config/svr4.h | |
parent | 28e105ab8a0e4dd1616d7e7b5ba786cb61e00ba1 (diff) | |
download | gcc-30b549263afbe0b17e18fc7d923c5fe136755800.tar.gz |
* 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
Diffstat (limited to 'gcc/config/svr4.h')
-rw-r--r-- | gcc/config/svr4.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 |