diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2003-06-04 17:33:51 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2003-06-04 17:33:51 +0000 |
commit | 74eda121a8933438065df8444ea5b3cdb53ad6f0 (patch) | |
tree | 3e46cc5c5f8807b11792938088c11bb162404dbb /gcc/config/mcore | |
parent | e3091a5f95cfd2130771ebf7cc8535c573d50875 (diff) | |
download | gcc-74eda121a8933438065df8444ea5b3cdb53ad6f0.zip gcc-74eda121a8933438065df8444ea5b3cdb53ad6f0.tar.gz gcc-74eda121a8933438065df8444ea5b3cdb53ad6f0.tar.bz2 |
alpha.c (print_operand_address): Fix format specifier warnings.
* alpha.c (print_operand_address): Fix format specifier warnings.
* alpha/elf.h (ASM_OUTPUT_ALIGNED_COMMON): Likewise.
* alpha/vms.h (ASM_OUTPUT_ALIGNED_COMMON): Likewise.
* arm/aof.h (ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL): Likewise.
* arm/pe.h (ASM_OUTPUT_COMMON): Likewise.
* avr.h (ASM_OUTPUT_COMMON, ASM_GENERATE_INTERNAL_LABEL,
ASM_OUTPUT_SKIP): Likewise.
* c4x.h (ASM_GENERATE_INTERNAL_LABEL): Likewise.
* dsp16xx.h (ASM_GENERATE_INTERNAL_LABEL): Likewise.
* h8300.h (ASM_GENERATE_INTERNAL_LABEL, ASM_OUTPUT_COMMON):
Likewise.
* i370.h (ASM_GENERATE_INTERNAL_LABEL): Likewise.
* i386/cygming.h (ASM_OUTPUT_COMMON): Likewise.
* i386/darwin.h (ASM_OUTPUT_COMMON): Likewise.
* i960.h (ASM_GENERATE_INTERNAL_LABEL): Likewise.
* m68k/hp320.h (PRINT_OPERAND_ADDRESS): Likewise.
* mcore.h (ASM_OUTPUT_ALIGNED_COMMON): Likewise.
* pdp11.h (ASM_GENERATE_INTERNAL_LABEL): Likewise.
* ptx4.h (ASM_OUTPUT_ALIGNED_COMMON): Likewise.
* sparc/freebsd.h (ASM_GENERATE_INTERNAL_LABEL): Likewise.
* svr3.h (ASM_OUTPUT_COMMON): Likewise.
From-SVN: r67453
Diffstat (limited to 'gcc/config/mcore')
-rw-r--r-- | gcc/config/mcore/mcore.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/mcore/mcore.h b/gcc/config/mcore/mcore.h index edc2098..796e9f3 100644 --- a/gcc/config/mcore/mcore.h +++ b/gcc/config/mcore/mcore.h @@ -1178,7 +1178,7 @@ extern long mcore_current_compilation_timestamp; { \ fputs ("\t.comm\t", FILE); \ assemble_name (FILE, NAME); \ - fprintf (FILE, ",%d\n", SIZE); \ + fprintf (FILE, ",%lu\n", (unsigned long)(SIZE)); \ } \ } \ while (0) |