diff options
author | Ian Lance Taylor <ian@airs.com> | 1993-10-28 21:43:14 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1993-10-28 21:43:14 +0000 |
commit | d75a406d3c483b98512470ae916d8a64e72812cb (patch) | |
tree | 2cf8bcdbd280d8aff4b04e36e7e7c408a3e56e5b /opcodes | |
parent | 803f7af5d20783631539304a7b3a68ec04b5790d (diff) | |
download | gdb-d75a406d3c483b98512470ae916d8a64e72812cb.zip gdb-d75a406d3c483b98512470ae916d8a64e72812cb.tar.gz gdb-d75a406d3c483b98512470ae916d8a64e72812cb.tar.bz2 |
* a29k-dis.c (print_insn): Use 0x%08x, not 0x%8x.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/a29k-dis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/a29k-dis.c b/opcodes/a29k-dis.c index a0c57ac..4a4152f 100644 --- a/opcodes/a29k-dis.c +++ b/opcodes/a29k-dis.c @@ -317,7 +317,7 @@ print_insn (memaddr, info) } /* This used to be %8x for binutils. */ (*info->fprintf_func) - (info->stream, ".word 0x%8x", + (info->stream, ".word 0x%08x", (insn24 << 24) + (insn16 << 16) + (insn8 << 8) + insn0); return 4; } |