It must return 8 and place 8 in XER, but the current code uses i directly which is 9 at this point of the code.
Signed-off-by: Paolo Bonzini <pbonz...@redhat.com> --- target-ppc/int_helper.c | 1 + 1 file changed, 1 insertion(+) diff --git a/target-ppc/int_helper.c b/target-ppc/int_helper.c index 9c1c5cd..7955bf7 100644 --- a/target-ppc/int_helper.c +++ b/target-ppc/int_helper.c @@ -2573,6 +2573,7 @@ target_ulong helper_dlmzb(CPUPPCState *env, target_ulong high, } i++; } + i = 8; if (update_Rc) { env->crf[0] = 0x2; } -- 1.8.3.1