aboutsummaryrefslogtreecommitdiff
path: root/sim/d10v/simops.c
diff options
context:
space:
mode:
authorMichael Meissner <gnu@the-meissners.org>1996-09-20 01:42:15 +0000
committerMichael Meissner <gnu@the-meissners.org>1996-09-20 01:42:15 +0000
commitc12f5c678e2b93fa915a30698f952aedf57865b7 (patch)
treea4a60f03ddf3651a466d0f26e9da536de5b44493 /sim/d10v/simops.c
parent81dc176f58906e0e61ce2e298513ae3b15717fec (diff)
downloadgdb-c12f5c678e2b93fa915a30698f952aedf57865b7.zip
gdb-c12f5c678e2b93fa915a30698f952aedf57865b7.tar.gz
gdb-c12f5c678e2b93fa915a30698f952aedf57865b7.tar.bz2
Make sure cmp{,eq,u}i use correct casts
Diffstat (limited to 'sim/d10v/simops.c')
-rw-r--r--sim/d10v/simops.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sim/d10v/simops.c b/sim/d10v/simops.c
index a1af4f9..801ad80 100644
--- a/sim/d10v/simops.c
+++ b/sim/d10v/simops.c
@@ -874,9 +874,9 @@ OP_1403 ()
void
OP_401 ()
{
- trace_input ("cmpeqi.s", OP_REG, OP_CONSTANT16, OP_VOID);
+ trace_input ("cmpeqi.s", OP_REG, OP_CONSTANT4, OP_VOID);
State.F1 = State.F0;
- State.F0 = (State.regs[OP[0]] == SEXT4(OP[1])) ? 1 : 0;
+ State.F0 = (State.regs[OP[0]] == (reg_t)SEXT4(OP[1])) ? 1 : 0;
trace_output (OP_FLAG);
}
@@ -886,7 +886,7 @@ OP_2000000 ()
{
trace_input ("cmpeqi.l", OP_REG, OP_CONSTANT16, OP_VOID);
State.F1 = State.F0;
- State.F0 = (State.regs[OP[0]] == OP[1]) ? 1 : 0;
+ State.F0 = (State.regs[OP[0]] == (reg_t)OP[1]) ? 1 : 0;
trace_output (OP_FLAG);
}
@@ -896,7 +896,7 @@ OP_601 ()
{
trace_input ("cmpi.s", OP_REG, OP_CONSTANT4, OP_VOID);
State.F1 = State.F0;
- State.F0 = ((int16)(State.regs[OP[0]]) < SEXT4(OP[1])) ? 1 : 0;
+ State.F0 = ((int16)(State.regs[OP[0]]) < (int16)SEXT4(OP[1])) ? 1 : 0;
trace_output (OP_FLAG);
}
@@ -926,7 +926,7 @@ OP_23000000 ()
{
trace_input ("cmpui", OP_REG, OP_CONSTANT16, OP_VOID);
State.F1 = State.F0;
- State.F0 = (State.regs[OP[0]] < OP[1]) ? 1 : 0;
+ State.F0 = (State.regs[OP[0]] < (reg_t)OP[1]) ? 1 : 0;
trace_output (OP_FLAG);
}