Re: [Qemu-devel] [PATCH v2 1/2] target-ppc: implement vnegw/d instructions

2016-10-19 Thread Richard Henderson
On 10/18/2016 11:06 PM, Nikunj A Dadhania wrote: +#define VNEG(name, element) \ +void helper_##name(ppc_avr_t *r, ppc_avr_t *b) \ +{ \ +int i;

[Qemu-devel] [PATCH v2 1/2] target-ppc: implement vnegw/d instructions

2016-10-19 Thread Nikunj A Dadhania
Vector Integer Negate Instructions: vnegw: Vector Negate Word vnegd: Vector Negate Doubleword Signed-off-by: Nikunj A Dadhania --- target-ppc/helper.h | 2 ++ target-ppc/int_helper.c | 12 target-ppc/translate/vmx-impl.inc.c