aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/avr
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2003-05-16 23:41:12 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2003-05-16 23:41:12 +0000
commit7e53359d446a7904474486bfb7c1e947cca326f3 (patch)
treef221c79bd8721174ee68246d30b84d9a5bda8c36 /gcc/config/avr
parent79406520e945ecace14f56e3af4b88936153649c (diff)
downloadgcc-7e53359d446a7904474486bfb7c1e947cca326f3.zip
gcc-7e53359d446a7904474486bfb7c1e947cca326f3.tar.gz
gcc-7e53359d446a7904474486bfb7c1e947cca326f3.tar.bz2
avr.c (avr_output_function_prologue, [...]): Fix format specifier warnings.
* avr.c (avr_output_function_prologue, avr_output_function_epilogue, print_operand): Fix format specifier warnings. (init_cumulative_args): Mark parameter with ATTRIBUTE_UNUSED. * avr.h (FUNCTION_VALUE_REGNO_P): Fix signed/unsigned warnings. From-SVN: r66895
Diffstat (limited to 'gcc/config/avr')
-rw-r--r--gcc/config/avr/avr.c17
-rw-r--r--gcc/config/avr/avr.h2
2 files changed, 10 insertions, 9 deletions
diff --git a/gcc/config/avr/avr.c b/gcc/config/avr/avr.c
index 272ad53..5e4f1c0 100644
--- a/gcc/config/avr/avr.c
+++ b/gcc/config/avr/avr.c
@@ -650,7 +650,8 @@ avr_output_function_prologue (file, size)
last_insn_address = 0;
jump_tables_size = 0;
prologue_size = 0;
- fprintf (file, "/* prologue: frame size=%d */\n", size);
+ fprintf (file, "/* prologue: frame size=" HOST_WIDE_INT_PRINT_DEC " */\n",
+ size);
if (avr_naked_function_p (current_function_decl))
{
@@ -683,8 +684,8 @@ avr_output_function_prologue (file, size)
if (main_p)
{
fprintf (file, ("\t"
- AS2 (ldi,r28,lo8(%s - %d)) CR_TAB
- AS2 (ldi,r29,hi8(%s - %d)) CR_TAB
+ AS1 (ldi,r28) ",lo8(%s - " HOST_WIDE_INT_PRINT_DEC ")" CR_TAB
+ AS1 (ldi,r29) ",hi8(%s - " HOST_WIDE_INT_PRINT_DEC ")" CR_TAB
AS2 (out,__SP_H__,r29) CR_TAB
AS2 (out,__SP_L__,r28) "\n"),
avr_init_stack, size, avr_init_stack, size);
@@ -694,8 +695,8 @@ avr_output_function_prologue (file, size)
else if (minimize && (frame_pointer_needed || live_seq > 6))
{
fprintf (file, ("\t"
- AS2 (ldi, r26, lo8(%d)) CR_TAB
- AS2 (ldi, r27, hi8(%d)) CR_TAB), size, size);
+ AS1 (ldi, r26) ",lo8(" HOST_WIDE_INT_PRINT_DEC ")" CR_TAB
+ AS1 (ldi, r27) ",hi8(" HOST_WIDE_INT_PRINT_DEC ")" CR_TAB), size, size);
fprintf (file, (AS2 (ldi, r30, pm_lo8(.L_%s_body)) CR_TAB
AS2 (ldi, r31, pm_hi8(.L_%s_body)) CR_TAB)
@@ -789,7 +790,7 @@ avr_output_function_epilogue (file, size)
function_size += get_attr_length (last);
}
- fprintf (file, "/* epilogue: frame size=%d */\n", size);
+ fprintf (file, "/* epilogue: frame size=" HOST_WIDE_INT_PRINT_DEC " */\n", size);
epilogue_size = 0;
if (avr_naked_function_p (current_function_decl))
@@ -1130,7 +1131,7 @@ print_operand (file, x, code)
fprintf (file, reg_names[true_regnum (x) + abcd]);
}
else if (GET_CODE (x) == CONST_INT)
- fprintf (file, "%d", INTVAL (x) + abcd);
+ fprintf (file, HOST_WIDE_INT_PRINT_DEC, INTVAL (x) + abcd);
else if (GET_CODE (x) == MEM)
{
rtx addr = XEXP (x,0);
@@ -1495,7 +1496,7 @@ init_cumulative_args (cum, fntype, libname, fndecl)
CUMULATIVE_ARGS *cum;
tree fntype;
rtx libname;
- tree fndecl;
+ tree fndecl ATTRIBUTE_UNUSED;
{
cum->nregs = 18;
cum->regno = FIRST_CUM_REG;
diff --git a/gcc/config/avr/avr.h b/gcc/config/avr/avr.h
index 9b6999b..2c6699e 100644
--- a/gcc/config/avr/avr.h
+++ b/gcc/config/avr/avr.h
@@ -1224,7 +1224,7 @@ extern int avr_reg_order[];
data types, because none of the library functions returns such
types. */
-#define FUNCTION_VALUE_REGNO_P(N) ((N) == RET_REGISTER)
+#define FUNCTION_VALUE_REGNO_P(N) ((int) (N) == RET_REGISTER)
/* A C expression that is nonzero if REGNO is the number of a hard
register in which the values of called function may come back.