Re: [PATCH 03/13] target/i386: unify REP and REPZ/REPNZ generation

2024-12-15 Thread Richard Henderson
On 12/15/24 03:06, Paolo Bonzini wrote: It only differs in a single call to gen_jcc, so use a "bool" argument to distinguish the two cases; do not duplicate code. Signed-off-by: Paolo Bonzini --- target/i386/tcg/translate.c | 39 +++-- 1 file changed, 20 inser

[PATCH 03/13] target/i386: unify REP and REPZ/REPNZ generation

2024-12-15 Thread Paolo Bonzini
It only differs in a single call to gen_jcc, so use a "bool" argument to distinguish the two cases; do not duplicate code. Signed-off-by: Paolo Bonzini --- target/i386/tcg/translate.c | 39 +++-- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/targ