Re: [PATCH 1/3] target/ppc: Move ISA300 flag check out of do_helper_XX3.

2024-05-23 Thread Richard Henderson
On 5/23/24 02:48, Chinmay Rath wrote: Moving PPC2_ISA300 flag check out of do_helper_XX3 method in vmx-impl.c.inc so that the helper can be used with other instructions as well. Signed-off-by: Chinmay Rath --- target/ppc/translate/vsx-impl.c.inc | 16 +++- 1 file changed, 7 insert

[PATCH 1/3] target/ppc: Move ISA300 flag check out of do_helper_XX3.

2024-05-23 Thread Chinmay Rath
Moving PPC2_ISA300 flag check out of do_helper_XX3 method in vmx-impl.c.inc so that the helper can be used with other instructions as well. Signed-off-by: Chinmay Rath --- target/ppc/translate/vsx-impl.c.inc | 16 +++- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/tar