diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-04 21:18:48 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-04 21:18:48 +0000 |
commit | 4d1bb299480f7c961ee9562846cb394e10d7c13e (patch) | |
tree | d9dda02bdd845fbe2d66ddea44b76f0cbd845d8c /gcc/config/vax/vax.c | |
parent | 77aefdbb03577fa9814adac19c9b147e23b08e40 (diff) | |
download | gcc-4d1bb299480f7c961ee9562846cb394e10d7c13e.tar.gz |
* arm/aout.h (ASM_OUTPUT_SKIP): Fix cast for format specifier warning.
* arm.c (arm_output_function_prologue): Fix format specifiers.
* arm.h (ARM_PRINT_OPERAND_ADDRESS): Likewise.
* m68k.c (m68k_output_mi_thunk): Use more readable %wd instead of
HOST_WIDE_INT_PRINT_DEC.
* vax.c (vax_output_function_prologue): Fix format specifiers.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67464 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/vax/vax.c')
-rw-r--r-- | gcc/config/vax/vax.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/vax/vax.c b/gcc/config/vax/vax.c index 70c63e4821b..66b943be5f8 100644 --- a/gcc/config/vax/vax.c +++ b/gcc/config/vax/vax.c @@ -121,9 +121,9 @@ vax_output_function_prologue (file, size) size -= STARTING_FRAME_OFFSET; if (size >= 64) - asm_fprintf (file, "\tmovab %d(%Rsp),%Rsp\n", -size); + asm_fprintf (file, "\tmovab %wd(%Rsp),%Rsp\n", -size); else if (size) - asm_fprintf (file, "\tsubl2 $%d,%Rsp\n", size); + asm_fprintf (file, "\tsubl2 $%wd,%Rsp\n", size); } /* This is like nonimmediate_operand with a restriction on the type of MEM. */ |