aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1993-10-28 21:43:14 +0000
committerIan Lance Taylor <ian@airs.com>1993-10-28 21:43:14 +0000
commitd75a406d3c483b98512470ae916d8a64e72812cb (patch)
tree2cf8bcdbd280d8aff4b04e36e7e7c408a3e56e5b
parent803f7af5d20783631539304a7b3a68ec04b5790d (diff)
downloadgdb-d75a406d3c483b98512470ae916d8a64e72812cb.zip
gdb-d75a406d3c483b98512470ae916d8a64e72812cb.tar.gz
gdb-d75a406d3c483b98512470ae916d8a64e72812cb.tar.bz2
* a29k-dis.c (print_insn): Use 0x%08x, not 0x%8x.
-rw-r--r--opcodes/a29k-dis.c2
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;
}