diff options
| author | Mike Pall <mike> | 2012-05-09 17:53:05 +0200 |
|---|---|---|
| committer | Mike Pall <mike> | 2012-05-09 17:53:05 +0200 |
| commit | c8a1f274af31763d0b6366c35df4a6986ed396d0 (patch) | |
| tree | d5aa99698b5a5861e0579dc9e13003c18437a0e9 | |
| parent | 649600ba66cdfccfeec79790d50ed90b67fa1192 (diff) | |
| download | luajit-c8a1f274af31763d0b6366c35df4a6986ed396d0.tar.gz luajit-c8a1f274af31763d0b6366c35df4a6986ed396d0.tar.bz2 luajit-c8a1f274af31763d0b6366c35df4a6986ed396d0.zip | |
Remove stray comment.
| -rw-r--r-- | src/lj_opt_loop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_opt_loop.c b/src/lj_opt_loop.c index 923387cc..ee5c4d1e 100644 --- a/src/lj_opt_loop.c +++ b/src/lj_opt_loop.c | |||
| @@ -334,7 +334,7 @@ static void loop_unroll(jit_State *J) | |||
| 334 | /* Check all loop-carried dependencies for type instability. */ | 334 | /* Check all loop-carried dependencies for type instability. */ |
| 335 | if (!irt_sametype(t, irr->t)) { | 335 | if (!irt_sametype(t, irr->t)) { |
| 336 | if (irt_isinteger(t) && irt_isinteger(irr->t)) | 336 | if (irt_isinteger(t) && irt_isinteger(irr->t)) |
| 337 | continue; //XXX | 337 | continue; |
| 338 | else if (irt_isnum(t) && irt_isinteger(irr->t)) /* Fix int->num. */ | 338 | else if (irt_isnum(t) && irt_isinteger(irr->t)) /* Fix int->num. */ |
| 339 | ref = tref_ref(emitir(IRTN(IR_CONV), ref, IRCONV_NUM_INT)); | 339 | ref = tref_ref(emitir(IRTN(IR_CONV), ref, IRCONV_NUM_INT)); |
| 340 | else if (irt_isnum(irr->t) && irt_isinteger(t)) /* Fix num->int. */ | 340 | else if (irt_isnum(irr->t) && irt_isinteger(t)) /* Fix num->int. */ |
