Re: [PATCH v4 21/33] target/nios2: Use tcg_constant_tl

2022-03-08 Thread Richard Henderson
On 3/8/22 01:00, Peter Maydell wrote: On Tue, 8 Mar 2022 at 07:20, Richard Henderson wrote: Replace current uses of tcg_const_tl, and remove the frees. Signed-off-by: Richard Henderson --- @@ -675,8 +663,8 @@ static void divu(DisasContext *dc, uint32_t code, uint32_t flags) TCGv t

Re: [PATCH v4 21/33] target/nios2: Use tcg_constant_tl

2022-03-08 Thread Peter Maydell
On Tue, 8 Mar 2022 at 07:20, Richard Henderson wrote: > > Replace current uses of tcg_const_tl, and remove the frees. > > Signed-off-by: Richard Henderson > --- > @@ -675,8 +663,8 @@ static void divu(DisasContext *dc, uint32_t code, > uint32_t flags) > > TCGv t0 = tcg_temp_new(); > TC

[PATCH v4 21/33] target/nios2: Use tcg_constant_tl

2022-03-07 Thread Richard Henderson
Replace current uses of tcg_const_tl, and remove the frees. Signed-off-by: Richard Henderson --- target/nios2/translate.c | 36 1 file changed, 8 insertions(+), 28 deletions(-) diff --git a/target/nios2/translate.c b/target/nios2/translate.c index 38e16df459