On 09/27/2012 10:15 AM, Aurelien Jarno wrote: > +++ b/tcg/tcg.c > @@ -1658,6 +1658,9 @@ static void tcg_reg_alloc_movi(TCGContext *s, const > TCGArg *args, > if (NEED_SYNC_ARG(0)) { > temp_sync(s, args[0], s->reserved_regs); > } > + if (IS_DEAD_ARG(0)) { > + temp_dead(s, args[0]); > + } > }
Same comment re ordering the DEAD/SYNC tests. Otherwise, Reviewed-by: Richard Henderson <r...@twiddle.net> r~