Remove stray comment.

This commit is contained in:
Mike Pall 2012-05-09 17:53:05 +02:00
parent 649600ba66
commit c8a1f274af

View File

@ -334,7 +334,7 @@ static void loop_unroll(jit_State *J)
/* Check all loop-carried dependencies for type instability. */
if (!irt_sametype(t, irr->t)) {
if (irt_isinteger(t) && irt_isinteger(irr->t))
continue; //XXX
continue;
else if (irt_isnum(t) && irt_isinteger(irr->t)) /* Fix int->num. */
ref = tref_ref(emitir(IRTN(IR_CONV), ref, IRCONV_NUM_INT));
else if (irt_isnum(irr->t) && irt_isinteger(t)) /* Fix num->int. */