From: Ian Lance Taylor Date: Thu, 28 Oct 1993 21:43:14 +0000 (+0000) Subject: * a29k-dis.c (print_insn): Use 0x%08x, not 0x%8x. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d75a406d3c483b98512470ae916d8a64e72812cb;p=binutils-gdb.git * a29k-dis.c (print_insn): Use 0x%08x, not 0x%8x. --- diff --git a/opcodes/a29k-dis.c b/opcodes/a29k-dis.c index a0c57aca857..4a4152f315c 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; }