aboutsummaryrefslogtreecommitdiff
path: root/target-sparc
diff options
context:
space:
mode:
authorblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>2007-10-10 19:11:54 +0000
committerblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>2007-10-10 19:11:54 +0000
commit90251fb96e9feba205ee4867cbfe21e0142ad341 (patch)
tree535f3e3e397b92d5adf9da7329bb42100f7a4e17 /target-sparc
parentcb33da57aaa368d575825d80d734374e3ef8c472 (diff)
Fix taddcctv and tsubcctv (David Matthews)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3379 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-sparc')
-rw-r--r--target-sparc/op.c2
-rw-r--r--target-sparc/translate.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/target-sparc/op.c b/target-sparc/op.c
index 613bcb09ab..e12347df1f 100644
--- a/target-sparc/op.c
+++ b/target-sparc/op.c
@@ -534,7 +534,7 @@ void OPPROTO op_tadd_T1_T0_ccTV(void)
((src1 & 0xffffffff) ^ (T0 & 0xffffffff))) & (1 << 31))
raise_exception(TT_TOVF);
#else
- if ((src1 & 0x03) || (T1 & 0x03))
+ if (((src1 ^ T1 ^ -1) & (src1 ^ T0)) & (1 << 31))
raise_exception(TT_TOVF);
#endif
diff --git a/target-sparc/translate.c b/target-sparc/translate.c
index 1a6d56ac40..27c22ede59 100644
--- a/target-sparc/translate.c
+++ b/target-sparc/translate.c
@@ -2027,10 +2027,12 @@ static void disas_sparc_insn(DisasContext * dc)
gen_movl_T0_reg(rd);
break;
case 0x22: /* taddcctv */
+ save_state(dc);
gen_op_tadd_T1_T0_ccTV();
gen_movl_T0_reg(rd);
break;
case 0x23: /* tsubcctv */
+ save_state(dc);
gen_op_tsub_T1_T0_ccTV();
gen_movl_T0_reg(rd);
break;