On 08/11/2014 09:23 AM, Tom Musta wrote: > +#if defined(TARGET_PPC64) > + tcg_gen_andi_tl(t0, t0, MASK(32, 63)); > +#endif
Err. this is just simple zero-extension. > tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0); Why not combine with the mov as tcg_gen_ext32u_tl which will just expand to a mov for PPC32. r~