mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
477904ca75
This is the last of the correctness fixes I've been carrying around for the v850. Like the other recent fixes, this is another case where we haven't been as careful as we should WRT host vs target types. For the divq instruction both operands are 32 bit types. Yet in the simulator code we convert them from unsigned int to signed long by assignment. So 0xfffffffb (aka -5) turns into 4294967291 and naturally that changes the result of our division. The fix is simple, insert a cast to int32_t to force interpretation as a signed value. Testcase for the simulator is included. It has a trivial dependency on the bins patch. |
||
---|---|---|
.. | ||
aclocal.m4 | ||
ChangeLog-2021 | ||
configure | ||
configure.ac | ||
interp.c | ||
local.mk | ||
Makefile.in | ||
sim-main.h | ||
simops.c | ||
simops.h | ||
v850_sim.h | ||
v850-dc | ||
v850.igen |