From 1bdfacf6ea02d9aed8b945aa79dd4482050ea858 Mon Sep 17 00:00:00 2001 From: "Kaveh R. Ghazi" Date: Fri, 16 May 2003 21:03:04 +0000 Subject: [PATCH] * fr30.c (fr30_print_operand): Fix format specifier warnings. From-SVN: r66883 --- gcc/ChangeLog | 2 ++ gcc/config/fr30/fr30.c | 8 ++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 79afd55a55c..293fe6d9fce 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,7 @@ 2003-05-16 Kaveh R. Ghazi + * 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 0c143b34224..1de1bfe8d6b 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;