From: Michael Snyder Date: Tue, 13 Jan 2004 19:56:46 +0000 (+0000) Subject: 2004-01-13 Michael Snyder X-Git-Tag: cagney_bigcore-20040122-branchpoint~135 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f532f3fa70bca3497edbcc37771da41a033e871c;p=platform%2Fupstream%2Fbinutils.git 2004-01-13 Michael Snyder * sh-dis.c (print_insn_sh): Allocate 4 bytes for insn. --- diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index df95ada..747ca77 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,7 @@ +2004-01-13 Michael Snyder + + * sh-dis.c (print_insn_sh): Allocate 4 bytes for insn. + 2004-01-09 Paul Brook * arm-opc.h (arm_opcodes): Move generic mcrr after known diff --git a/opcodes/sh-dis.c b/opcodes/sh-dis.c index c0e1a2e..70fdffb 100644 --- a/opcodes/sh-dis.c +++ b/opcodes/sh-dis.c @@ -397,7 +397,7 @@ print_insn_sh (memaddr, info) { fprintf_ftype fprintf_fn = info->fprintf_func; void *stream = info->stream; - unsigned char insn[2]; + unsigned char insn[4]; unsigned char nibs[4]; int status; bfd_vma relmask = ~(bfd_vma) 0;