mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-30 12:44:10 +08:00
opcodes: blackfin: fix decoding of vector shift insn w/saturation
The saturation bit was missed when decoding a vector shift insn leading to the output looking the same as the non-saturating insn. Signed-off-by: Robin Getz <robin.getz@analog.com> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
parent
b2459327a6
commit
0b7691fd6e
@ -1,3 +1,7 @@
|
||||
2010-09-22 Robin Getz <robin.getz@analog.com>
|
||||
|
||||
* bfin-dis.c (decode_dsp32shiftimm_0): Add missing "S" flag.
|
||||
|
||||
2010-09-22 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* bfin-dis.c (decode_CC2stat_0): Decode all ASTAT bits.
|
||||
|
@ -4461,7 +4461,7 @@ decode_dsp32shiftimm_0 (TIword iw0, TIword iw1, disassemble_info *outf)
|
||||
OUTS (outf, dregs (src1));
|
||||
OUTS (outf, " >>> ");
|
||||
OUTS (outf, imm5 (-immag));
|
||||
OUTS (outf, " (V)");
|
||||
OUTS (outf, " (V, S)");
|
||||
}
|
||||
else if (sop == 2 && sopcde == 1 && bit8 == 1)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user