[PATCH 01/14] target/i386: use tcg_gen_ext_tl when applicable

2024-10-28 Thread Paolo Bonzini
Prefer it to gen_ext_tl in the common case where the destination is known. Reviewed-by: Richard Henderson Signed-off-by: Paolo Bonzini --- target/i386/tcg/translate.c | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/target/i386/tcg/translate.c b/target/i386/t

Re: [PATCH 01/14] target/i386: use tcg_gen_ext_tl when applicable

2024-10-20 Thread Richard Henderson
On 10/20/24 08:53, Paolo Bonzini wrote: Prefer it to gen_ext_tl in the common case where the destination is known. Signed-off-by: Paolo Bonzini --- target/i386/tcg/translate.c | 16 1 file changed, 8 insertions(+), 8 deletions(-) Reviewed-by: Richard Henderson r~

[PATCH 01/14] target/i386: use tcg_gen_ext_tl when applicable

2024-10-20 Thread Paolo Bonzini
Prefer it to gen_ext_tl in the common case where the destination is known. Signed-off-by: Paolo Bonzini --- target/i386/tcg/translate.c | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/target/i386/tcg/translate.c b/target/i386/tcg/translate.c index ef190416b49