aboutsummaryrefslogtreecommitdiff
path: root/sim/d10v/simops.c
diff options
context:
space:
mode:
authorMartin Hunt <hunt@redhat.com>1996-09-07 00:58:25 +0000
committerMartin Hunt <hunt@redhat.com>1996-09-07 00:58:25 +0000
commitea2155e858687fdef42d6aa0cacb9752d90f089a (patch)
treea169f051ee7711025803c9551c02793f949fcc07 /sim/d10v/simops.c
parent5e6c6406e6dc0b5a3f5c44cbc3ebe0e67def9069 (diff)
downloadgdb-ea2155e858687fdef42d6aa0cacb9752d90f089a.zip
gdb-ea2155e858687fdef42d6aa0cacb9752d90f089a.tar.gz
gdb-ea2155e858687fdef42d6aa0cacb9752d90f089a.tar.bz2
Fri Sep 6 17:56:17 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
* simops.c (OP_2600, OP_2601): Changed min and max comparisons to use signed register values.
Diffstat (limited to 'sim/d10v/simops.c')
-rw-r--r--sim/d10v/simops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sim/d10v/simops.c b/sim/d10v/simops.c
index faf7d7d..dc05f5e 100644
--- a/sim/d10v/simops.c
+++ b/sim/d10v/simops.c
@@ -1223,7 +1223,7 @@ OP_2600 ()
{
trace_input ("max", OP_REG, OP_REG, OP_VOID);
State.F1 = State.F0;
- if (State.regs[OP[1]] > State.regs[OP[0]])
+ if ((int16)State.regs[OP[1]] > (int16)State.regs[OP[0]])
{
State.regs[OP[0]] = State.regs[OP[1]];
State.F0 = 1;
@@ -1275,7 +1275,7 @@ OP_2601 ()
{
trace_input ("min", OP_REG, OP_REG, OP_VOID);
State.F1 = State.F0;
- if (State.regs[OP[1]] < State.regs[OP[0]])
+ if ((int16)State.regs[OP[1]] < (int16)State.regs[OP[0]])
{
State.regs[OP[0]] = State.regs[OP[1]];
State.F0 = 1;