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 /gas/config/tc-tic30.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 'gas/config/tc-tic30.c')
-rw-r--r-- | gas/config/tc-tic30.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/gas/config/tc-tic30.c b/gas/config/tc-tic30.c index 514a995..b77a7b0 100644 --- a/gas/config/tc-tic30.c +++ b/gas/config/tc-tic30.c @@ -86,7 +86,7 @@ const pseudo_typeS md_pseudo_table[] = {0, 0, 0} }; -static int +static int ATTRIBUTE_PRINTF_1 debug (const char *string, ...) { if (flag_debug) @@ -439,9 +439,9 @@ tic30_operand (char *token) debug ("Expression type: %d\n", current_op->direct.direct_expr.X_op); - debug ("Expression addnum: %d\n", - current_op->direct.direct_expr.X_add_number); - debug ("Segment: %d\n", retval); + debug ("Expression addnum: %ld\n", + (long) current_op->direct.direct_expr.X_add_number); + debug ("Segment: %p\n", retval); input_line_pointer = save_input_line_pointer; @@ -609,9 +609,9 @@ tic30_operand (char *token) retval = expression (¤t_op->immediate.imm_expr); debug ("Expression type: %d\n", current_op->immediate.imm_expr.X_op); - debug ("Expression addnum: %d\n", - current_op->immediate.imm_expr.X_add_number); - debug ("Segment: %d\n", retval); + debug ("Expression addnum: %ld\n", + (long) current_op->immediate.imm_expr.X_add_number); + debug ("Segment: %p\n", retval); input_line_pointer = save_input_line_pointer; if (current_op->immediate.imm_expr.X_op == O_constant) @@ -1140,7 +1140,7 @@ md_apply_fix (fixS *fixP, debug ("Values in fixP\n"); debug ("fx_size = %d\n", fixP->fx_size); debug ("fx_pcrel = %d\n", fixP->fx_pcrel); - debug ("fx_where = %d\n", fixP->fx_where); + debug ("fx_where = %ld\n", fixP->fx_where); debug ("fx_offset = %d\n", (int) fixP->fx_offset); { char *buf = fixP->fx_frag->fr_literal + fixP->fx_where; @@ -1182,11 +1182,11 @@ md_undefined_symbol (char *name ATTRIBUTE_UNUSED) valueT md_section_align (segT segment, valueT size) { - debug ("In md_section_align() segment = %d and size = %d\n", - segment, size); + debug ("In md_section_align() segment = %p and size = %lu\n", + segment, (unsigned long) size); size = (size + 3) / 4; size *= 4; - debug ("New size value = %d\n", size); + debug ("New size value = %lu\n", (unsigned long) size); return size; } @@ -1196,7 +1196,7 @@ md_pcrel_from (fixS *fixP) int offset; debug ("In md_pcrel_from()\n"); - debug ("fx_where = %d\n", fixP->fx_where); + debug ("fx_where = %ld\n", fixP->fx_where); debug ("fx_size = %d\n", fixP->fx_size); /* Find the opcode that represents the current instruction in the fr_literal storage area, and check bit 21. Bit 21 contains whether the |