diff options
author | Jim Wilson <wilson@tuliptree.org> | 2005-07-07 19:27:52 +0000 |
---|---|---|
committer | Jim Wilson <wilson@tuliptree.org> | 2005-07-07 19:27:52 +0000 |
commit | 0fd3a4776c8f607cc778cde80f9215089d36387e (patch) | |
tree | 0332cbbb13c41fc1834d3e17001dfd97936c7c81 /opcodes/sh64-dis.c | |
parent | 9968d831f9298e2dc60de7a77013c7b173441951 (diff) | |
download | gdb-0fd3a4776c8f607cc778cde80f9215089d36387e.zip gdb-0fd3a4776c8f607cc778cde80f9215089d36387e.tar.gz gdb-0fd3a4776c8f607cc778cde80f9215089d36387e.tar.bz2 |
Kaveh Ghazi's printf format attribute checking patch.
bfd:
* elf32-xtensa.c (vsprint_msg): Add format attribute. Fix
format bugs.
* vms.h (_bfd_vms_debug): Add format attribute.
(_bfd_vms_debug, _bfd_hexdump): Fix typos.
binutils:
* bucomm.h (report): Add format attribute.
* dlltool.c (inform): Likewise.
* dllwrap.c (display, inform, warn): Likewise.
* objdump.c (objdump_sprintf): Likewise.
* readelf.c (error, warn): Likewise. Fix format bugs.
gas:
* config/tc-tic30.c (debug): Add format attribute. Fix format
bugs.
include:
* dis-asm.h (fprintf_ftype): Add format attribute.
opcodes:
* arc-dis.c, arm-dis.c, cris-dis.c, crx-dis.c, d10v-dis.c,
d30v-dis.c, fr30-dis.c, h8300-dis.c, h8500-dis.c, i860-dis.c,
ia64-dis.c, ip2k-dis.c, m10200-dis.c, m10300-dis.c,
m88k-dis.c, mcore-dis.c, mips-dis.c, ms1-dis.c, or32-dis.c,
ppc-dis.c, sh64-dis.c, sparc-dis.c, tic4x-dis.c, tic80-dis.c,
v850-dis.c: Fix format bugs.
* ia64-gen.c (fail, warn): Add format attribute.
* or32-opc.c (debug): Likewise.
Diffstat (limited to 'opcodes/sh64-dis.c')
-rw-r--r-- | opcodes/sh64-dis.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/opcodes/sh64-dis.c b/opcodes/sh64-dis.c index 0227ab6..9bd21af 100644 --- a/opcodes/sh64-dis.c +++ b/opcodes/sh64-dis.c @@ -224,7 +224,7 @@ print_insn_shmedia (bfd_vma memaddr, struct disassemble_info *info) /* FIXME: We should also check register number constraints. */ if (op->name == NULL) { - fprintf_fn (stream, ".long 0x%08x", instruction); + fprintf_fn (stream, ".long 0x%08lx", instruction); return 4; } @@ -312,7 +312,7 @@ print_insn_shmedia (bfd_vma memaddr, struct disassemble_info *info) imm = temp & 0x3f; if (imm & (unsigned long) 0x20) imm |= ~(unsigned long) 0x3f; - fprintf_fn (stream, "%d", imm); + fprintf_fn (stream, "%ld", imm); break; /* A signed 6-bit number, multiplied by 32 when used. */ @@ -320,7 +320,7 @@ print_insn_shmedia (bfd_vma memaddr, struct disassemble_info *info) imm = temp & 0x3f; if (imm & (unsigned long) 0x20) imm |= ~(unsigned long) 0x3f; - fprintf_fn (stream, "%d", imm * 32); + fprintf_fn (stream, "%ld", imm * 32); break; /* A signed 10-bit number, multiplied by 8 when used. */ @@ -345,7 +345,7 @@ print_insn_shmedia (bfd_vma memaddr, struct disassemble_info *info) if (imm & (unsigned long) 0x200) imm |= ~(unsigned long) 0x3ff; imm <<= by_number; - fprintf_fn (stream, "%d", imm); + fprintf_fn (stream, "%ld", imm); break; /* A signed 16-bit number. */ @@ -353,7 +353,7 @@ print_insn_shmedia (bfd_vma memaddr, struct disassemble_info *info) imm = temp & 0xffff; if (imm & (unsigned long) 0x8000) imm |= ~((unsigned long) 0xffff); - fprintf_fn (stream, "%d", imm); + fprintf_fn (stream, "%ld", imm); break; /* A PC-relative signed 16-bit number, multiplied by 4 when @@ -370,19 +370,19 @@ print_insn_shmedia (bfd_vma memaddr, struct disassemble_info *info) /* An unsigned 5-bit number. */ case A_IMMU5: imm = temp & 0x1f; - fprintf_fn (stream, "%d", imm); + fprintf_fn (stream, "%ld", imm); break; /* An unsigned 6-bit number. */ case A_IMMU6: imm = temp & 0x3f; - fprintf_fn (stream, "%d", imm); + fprintf_fn (stream, "%ld", imm); break; /* An unsigned 16-bit number. */ case A_IMMU16: imm = temp & 0xffff; - fprintf_fn (stream, "%d", imm); + fprintf_fn (stream, "%ld", imm); break; default: |