mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-02-13 05:20:44 +00:00
sim: bfin: do not extend accumulator in LSHIFT insns
The logical shift insn does not sign extend before shifting, so we shouldn't either. Signed-off-by: Robin Getz <robin.getz@analog.com> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
parent
a56a195412
commit
d5fcd950e4
@ -1,3 +1,8 @@
|
||||
2011-06-18 Robin Getz <robin.getz@analog.com>
|
||||
|
||||
* bfin-sim.c (decode_dsp32shift_0): Use get_unextended_acc
|
||||
rather than get_extended_acc in LSHIFT insns.
|
||||
|
||||
2011-06-18 Robin Getz <robin.getz@analog.com>
|
||||
|
||||
* bfin-sim.c (decode_macfunc): Handle MM when mmod is M_TFU.
|
||||
|
@ -5230,7 +5230,7 @@ decode_dsp32shift_0 (SIM_CPU *cpu, bu16 iw0, bu16 iw1)
|
||||
|
||||
HLs = !!HLs;
|
||||
TRACE_INSN (cpu, "A%i = LSHIFT A%i BY R%i.L;", HLs, HLs, src0);
|
||||
val = get_extended_acc (cpu, HLs);
|
||||
val = get_unextended_acc (cpu, HLs);
|
||||
|
||||
if (shft <= 0)
|
||||
val = lshiftrt (cpu, val, -shft, 40);
|
||||
|
Loading…
x
Reference in New Issue
Block a user