Re: [PATCH 1/7] target/arm: Fix missing temp frees in do_vshll_2sh

2020-06-10 Thread Philippe Mathieu-Daudé
On 6/9/20 6:02 PM, Peter Maydell wrote: > The widenfn() in do_vshll_2sh() does not free the input 32-bit > TCGv, so we need to do this in the calling code. > > Signed-off-by: Peter Maydell > --- > target/arm/translate-neon.inc.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git

Re: [PATCH 1/7] target/arm: Fix missing temp frees in do_vshll_2sh

2020-06-09 Thread Richard Henderson
On 6/9/20 9:02 AM, Peter Maydell wrote: > The widenfn() in do_vshll_2sh() does not free the input 32-bit > TCGv, so we need to do this in the calling code. > > Signed-off-by: Peter Maydell Reviewed-by: Richard Henderson r~ > --- > target/arm/translate-neon.inc.c | 2 ++ > 1 file changed, 2

[PATCH 1/7] target/arm: Fix missing temp frees in do_vshll_2sh

2020-06-09 Thread Peter Maydell
The widenfn() in do_vshll_2sh() does not free the input 32-bit TCGv, so we need to do this in the calling code. Signed-off-by: Peter Maydell --- target/arm/translate-neon.inc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/target/arm/translate-neon.inc.c