On Tue, Mar 27, 2012 at 11:46 PM, Richard Henderson <r...@twiddle.net> wrote: > On 03/27/12 02:24, Jia Liu wrote: >> Add MIPS DSP Branch instruction Support. >> >> Signed-off-by: Jia Liu <pro...@gmail.com> > > Reviewed-by: Richard Henderson <r...@twiddle.net> > >> + case OPC_BPOSGE32: >> + tcg_gen_setcondi_tl(TCG_COND_GT, bcond, t0, 31); > > Nit: It might be better to use TCG_COND_GE ... 32, since that's > both the name of the insn and its official documentation. Of > course that makes no difference to the correctness. >
Yeah, TCG_COND_GE looks better, I'll make it. > > r~ Regards, Jia.