* sparc.h (ASM_OUTPUT_BYTE): Fix format specifier warning.

From-SVN: r45166
This commit is contained in:
Kaveh R. Ghazi 2001-08-24 22:26:51 +00:00 committed by Kaveh Ghazi
parent 405bfc410e
commit c3bef1a943
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2001-08-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* sparc.h (ASM_OUTPUT_BYTE): Fix format specifier warning.
2001-08-24 Andreas Jaeger <aj@suse.de>, rkl@connect.org.uk
* cp/rtti.c (VPARAMS): Fix parameter.

View File

@ -3064,7 +3064,7 @@ do { \
/* This is how to output an assembler line for a numeric constant byte. */
#define ASM_OUTPUT_BYTE(FILE,VALUE) \
fprintf (FILE, "%s0x%x\n", ASM_BYTE_OP, (VALUE))
fprintf (FILE, "%s0x%x\n", ASM_BYTE_OP, (int)(VALUE))
/* This is how we hook in and defer the case-vector until the end of
the function. */