diff options
Diffstat (limited to 'target')
-rw-r--r-- | target/ppc/int_helper.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/ppc/int_helper.c b/target/ppc/int_helper.c index d905f07..6960961 100644 --- a/target/ppc/int_helper.c +++ b/target/ppc/int_helper.c @@ -37,9 +37,9 @@ static inline void helper_update_ov_legacy(CPUPPCState *env, int ov) { if (unlikely(ov)) { - env->so = env->ov = 1; + env->so = env->ov = env->ov32 = 1; } else { - env->ov = 0; + env->ov = env->ov32 = 0; } } |