diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2003-05-16 21:03:04 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2003-05-16 21:03:04 +0000 |
commit | 1bdfacf6ea02d9aed8b945aa79dd4482050ea858 (patch) | |
tree | c3ef30775b92ec05e62788b9f0dbf47cc8a7adea /gcc | |
parent | 5f1ed3b2483c4f8c40cd49698b9d5fc7ade9145d (diff) | |
download | gcc-1bdfacf6ea02d9aed8b945aa79dd4482050ea858.zip gcc-1bdfacf6ea02d9aed8b945aa79dd4482050ea858.tar.gz gcc-1bdfacf6ea02d9aed8b945aa79dd4482050ea858.tar.bz2 |
* fr30.c (fr30_print_operand): Fix format specifier warnings.
From-SVN: r66883
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/config/fr30/fr30.c | 8 |
2 files changed, 6 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 79afd55..293fe6d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,7 @@ 2003-05-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + * fr30.c (fr30_print_operand): Fix format specifier warnings. + * dsp16xx.c (print_operand_address): Fix format specifier warning. * dsp16xx.h (INCLUDE_DEFAULTS): Add missing initializers. diff --git a/gcc/config/fr30/fr30.c b/gcc/config/fr30/fr30.c index 0c143b3..1de1bfe 100644 --- a/gcc/config/fr30/fr30.c +++ b/gcc/config/fr30/fr30.c @@ -537,7 +537,7 @@ fr30_print_operand (file, x, code) val &= 0xff; - fprintf (file, "%d", val); + fprintf (file, HOST_WIDE_INT_PRINT_DEC, val); } return; @@ -547,7 +547,7 @@ fr30_print_operand (file, x, code) || INTVAL (x) > 32) output_operand_lossage ("fr30_print_operand: invalid %%x code"); else - fprintf (file, "%d", INTVAL (x) - 16); + fprintf (file, HOST_WIDE_INT_PRINT_DEC, INTVAL (x) - 16); return; case 'F': @@ -609,7 +609,7 @@ fr30_print_operand (file, x, code) debug_rtx (x); output_operand_lossage ("fr30_print_operand: unhandled MEM"); } - fprintf (file, "@(r14, #%d)", val); + fprintf (file, "@(r14, #" HOST_WIDE_INT_PRINT_DEC ")", val); } else { @@ -620,7 +620,7 @@ fr30_print_operand (file, x, code) debug_rtx (x); output_operand_lossage ("fr30_print_operand: unhandled MEM"); } - fprintf (file, "@(r15, #%d)", val); + fprintf (file, "@(r15, #" HOST_WIDE_INT_PRINT_DEC ")", val); } break; |