* a29k-dis.c (print_insn): Use 0x%08x, not 0x%8x.

This commit is contained in:
Ian Lance Taylor 1993-10-28 21:43:14 +00:00
parent 803f7af5d2
commit d75a406d3c
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}