* sparc.h (ASM_OUTPUT_BYTE): Fix format specifier warning.
From-SVN: r45166
This commit is contained in:
parent
405bfc410e
commit
c3bef1a943
@ -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.
|
||||
|
@ -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. */
|
||||
|
Loading…
Reference in New Issue
Block a user