From: Michael Tiemann Date: Sun, 15 Dec 1991 22:04:01 +0000 (+0000) Subject: Add missing handlers for v9 operands. X-Git-Tag: gdb-4_18~22702 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5f4d1571fad0434b0e6751aa10415c19a152b061;p=platform%2Fupstream%2Fbinutils.git Add missing handlers for v9 operands. --- diff --git a/binutils/sparc-pinsn.c b/binutils/sparc-pinsn.c index 003d4b6..bef74f5 100644 --- a/binutils/sparc-pinsn.c +++ b/binutils/sparc-pinsn.c @@ -304,10 +304,11 @@ memcpy(&insn,buffer, sizeof (insn)); stream); break; - case 'K': + case 'G': print_address ((bfd_vma) (memaddr - + (((int) insn.disp21 << 11) >> 11) * 4), + /* We use only 19 of the 21 bits. */ + + (((int) insn.disp21 << 13) >> 13) * 4), stream); break; @@ -315,6 +316,20 @@ memcpy(&insn,buffer, sizeof (insn)); fputs ("%amr", stream); break; + case '6': + case '7': + case '8': + case '9': + fprintf (stream, "fcc%c", *s - '6' + '0'); + break; + + case 'z': + fputs ("icc", stream); + break; + + case 'Z': + fputs ("xcc", stream); + break; #endif /* NO_V9 */ case 'M':