summaryrefslogtreecommitdiff
path: root/target-i386
diff options
context:
space:
mode:
Diffstat (limited to 'target-i386')
-rw-r--r--target-i386/op.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/target-i386/op.c b/target-i386/op.c
index 142b662635..6370045794 100644
--- a/target-i386/op.c
+++ b/target-i386/op.c
@@ -865,7 +865,7 @@ void OPPROTO op_decq_ECX(void)
void op_addl_A0_SS(void)
{
- A0 += (long)env->segs[R_SS].base;
+ A0 = (uint32_t)(A0 + env->segs[R_SS].base);
}
void op_subl_A0_2(void)