diff options
author | Alan Modra <amodra@gmail.com> | 2010-10-08 14:00:50 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2010-10-08 14:00:50 +0000 |
commit | 9ccb8af972518810c66317c6c942d2268bfb5123 (patch) | |
tree | 1acdeaaf802f3b87c42d584da4c113d548301124 /opcodes | |
parent | ec3d575a7a6516a1b3065312d228d706de6c49c7 (diff) | |
download | gdb-9ccb8af972518810c66317c6c942d2268bfb5123.zip gdb-9ccb8af972518810c66317c6c942d2268bfb5123.tar.gz gdb-9ccb8af972518810c66317c6c942d2268bfb5123.tar.bz2 |
Fix build with -DDEBUG=7
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 9 | ||||
-rw-r--r-- | opcodes/frv-opc.c | 3 | ||||
-rw-r--r-- | opcodes/or32-dis.c | 20 | ||||
-rw-r--r-- | opcodes/or32-opc.c | 6 |
4 files changed, 26 insertions, 12 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index fe700ed..b8535af 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,12 @@ +2010-10-08 Pierre Muller <muller@ics.u-strasbg.fr> + + Fix build with -DDEBUG=7 + * frv-opc.c: Regenerate. + * or32-dis.c (DEBUG): Don't redefine. + (find_bytes_big, or32_extract, or32_opcode_match, or32_print_register): + Adapt DEBUG code to some type changes throughout. + * or32-opc.c (or32_extract): Likewise. + 2010-10-07 Bernd Schmidt <bernds@codesourcery.com> * tic6x-dis.c (print_insn_tic6x): Correct decoding of fstg field diff --git a/opcodes/frv-opc.c b/opcodes/frv-opc.c index 3d0d1e0..e7107a8 100644 --- a/opcodes/frv-opc.c +++ b/opcodes/frv-opc.c @@ -34,6 +34,9 @@ This file is part of the GNU Binutils and/or GDB, the GNU debugger. #include "elf/frv.h" #include <stdio.h> +/* DEBUG appears below as argument of OP macro. */ +#undef DEBUG + /* Returns TRUE if {MAJOR,MACH} is a major branch of the FRV development tree. */ diff --git a/opcodes/or32-dis.c b/opcodes/or32-dis.c index d639fb3..a0dc92a 100644 --- a/opcodes/or32-dis.c +++ b/opcodes/or32-dis.c @@ -20,7 +20,9 @@ Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ +#ifndef DEBUG #define DEBUG 0 +#endif #include "dis-asm.h" #include "opcode/or32.h" @@ -41,7 +43,7 @@ find_bytes_big (unsigned char *insn_ch, unsigned long *insn) ((unsigned long) insn_ch[2] << 8) + ((unsigned long) insn_ch[3]); #if DEBUG - printf ("find_bytes_big3: %x\n", *insn); + printf ("find_bytes_big3: %lx\n", *insn); #endif } @@ -88,7 +90,7 @@ or32_extract (char param_ch, char *enc_initial, unsigned long insn) { unsigned long tmp = strtoul (enc, NULL, 16); #if DEBUG - printf (" enc=%s, tmp=%x ", enc, tmp); + printf (" enc=%s, tmp=%lx ", enc, tmp); #endif if (param_ch == '0') tmp = 15 - tmp; @@ -108,7 +110,7 @@ or32_extract (char param_ch, char *enc_initial, unsigned long insn) opc_pos--; param_pos--; #if DEBUG - printf ("\n ret=%x opc_pos=%x, param_pos=%x\n", ret, opc_pos, param_pos); + printf ("\n ret=%lx opc_pos=%x, param_pos=%x\n", ret, opc_pos, param_pos); #endif ret += ((insn >> opc_pos) & 0x1) << param_pos; @@ -117,12 +119,12 @@ or32_extract (char param_ch, char *enc_initial, unsigned long insn) && ret >> (letter_range (param_ch) - 1)) { #if DEBUG - printf ("\n ret=%x opc_pos=%x, param_pos=%x\n", + printf ("\n ret=%lx opc_pos=%x, param_pos=%x\n", ret, opc_pos, param_pos); #endif ret |= 0xffffffff << letter_range(param_ch); #if DEBUG - printf ("\n after conversion to signed: ret=%x\n", ret); + printf ("\n after conversion to signed: ret=%lx\n", ret); #endif } enc++; @@ -141,7 +143,7 @@ or32_extract (char param_ch, char *enc_initial, unsigned long insn) enc++; #if DEBUG - printf ("ret=%x\n", ret); + printf ("ret=%lx\n", ret); #endif return ret; } @@ -158,8 +160,8 @@ or32_opcode_match (unsigned long insn, char *encoding) zeros = or32_extract ('0', encoding, insn); #if DEBUG - printf ("ones: %x \n", ones); - printf ("zeros: %x \n", zeros); + printf ("ones: %lx \n", ones); + printf ("zeros: %lx \n", zeros); #endif if ((insn & ones) != ones) { @@ -194,7 +196,7 @@ or32_print_register (char param_ch, int regnum = or32_extract (param_ch, encoding, insn); #if DEBUG - printf ("or32_print_register: %c, %s, %x\n", param_ch, encoding, insn); + printf ("or32_print_register: %c, %s, %lx\n", param_ch, encoding, insn); #endif if (param_ch == 'A') (*info->fprintf_func) (info->stream, "r%d", regnum); diff --git a/opcodes/or32-opc.c b/opcodes/or32-opc.c index ff624e7..94a1ace 100644 --- a/opcodes/or32-opc.c +++ b/opcodes/or32-opc.c @@ -898,7 +898,7 @@ or32_extract (char param_ch, char *enc_initial, unsigned long insn) { unsigned long tmp = strtol (enc, NULL, 16); #if DEBUG - printf (" enc=%s, tmp=%x ", enc, tmp); + printf (" enc=%s, tmp=%lx ", enc, tmp); #endif if (param_ch == '0') tmp = 15 - tmp; @@ -918,7 +918,7 @@ or32_extract (char param_ch, char *enc_initial, unsigned long insn) opc_pos--; param_pos--; #if DEBUG - printf ("\n ret=%x opc_pos=%x, param_pos=%x\n", ret, opc_pos, param_pos); + printf ("\n ret=%lx opc_pos=%x, param_pos=%x\n", ret, opc_pos, param_pos); #endif if (ISLOWER (param_ch)) ret -= ((insn >> opc_pos) & 0x1) << param_pos; @@ -940,7 +940,7 @@ or32_extract (char param_ch, char *enc_initial, unsigned long insn) enc++; #if DEBUG - printf ("ret=%x\n", ret); + printf ("ret=%lx\n", ret); #endif return ret; } |