Re: [Qemu-devel] [PATCH v6 06/50] tcg: Add temp_global bit to TCGTemp

2017-10-17 Thread Emilio G. Cota
On Mon, Oct 16, 2017 at 10:25:25 -0700, Richard Henderson wrote: > From: Richard Henderson > > This avoids needing to test the index of a temp against nb_globals. > > Signed-off-by: Richard Henderson Reviewed-by: Emilio G. Cota E.

[Qemu-devel] [PATCH v6 06/50] tcg: Add temp_global bit to TCGTemp

2017-10-16 Thread Richard Henderson
From: Richard Henderson This avoids needing to test the index of a temp against nb_globals. Signed-off-by: Richard Henderson --- tcg/tcg.h | 12 tcg/optimize.c | 15 --- tcg/tcg.c | 11 --- 3 files changed, 24 insertions(+), 14 deletions(-) diff --gi