aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMike Pall <mike>2011-01-26 19:55:55 +0100
committerMike Pall <mike>2011-01-26 19:55:55 +0100
commit0622ad9adc8b0e1b1c576277fe41ba6a203389c6 (patch)
tree3d3aea9e0c172ea45ceba2844cfb983706b6252c /src
parent30db71e2e2ee3d12f506297e5c0daddb01ffb2c3 (diff)
downloadluajit-0622ad9adc8b0e1b1c576277fe41ba6a203389c6.tar.gz
luajit-0622ad9adc8b0e1b1c576277fe41ba6a203389c6.tar.bz2
luajit-0622ad9adc8b0e1b1c576277fe41ba6a203389c6.zip
Fix comments for BC_ITERN.
Diffstat (limited to 'src')
-rw-r--r--src/buildvm_ppc.dasc2
-rw-r--r--src/buildvm_x86.dasc2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/buildvm_ppc.dasc b/src/buildvm_ppc.dasc
index 909c6fc7..db89ac3d 100644
--- a/src/buildvm_ppc.dasc
+++ b/src/buildvm_ppc.dasc
@@ -3091,7 +3091,7 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop)
3091 break; 3091 break;
3092 3092
3093 case BC_ITERN: 3093 case BC_ITERN:
3094 | // RA = base*8, (RB = (nresults+1)*8 (2+1)*8, RC = (nargs+1)*8 (2+1)*8) 3094 | // RA = base*8, (RB = (nresults+1)*8, RC = (nargs+1)*8 (2+1)*8)
3095#if LJ_HASJIT 3095#if LJ_HASJIT
3096 | // NYI: add hotloop, record BC_ITERN. 3096 | // NYI: add hotloop, record BC_ITERN.
3097#endif 3097#endif
diff --git a/src/buildvm_x86.dasc b/src/buildvm_x86.dasc
index 3ffabe6f..1ef3d4d9 100644
--- a/src/buildvm_x86.dasc
+++ b/src/buildvm_x86.dasc
@@ -4743,7 +4743,7 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop, int cmov, int sse)
4743 break; 4743 break;
4744 4744
4745 case BC_ITERN: 4745 case BC_ITERN:
4746 | ins_A // RA = base, (RB = nresults+1 (2+1), RC = nargs+1 (2+1)) 4746 | ins_A // RA = base, (RB = nresults+1, RC = nargs+1 (2+1))
4747#if LJ_HASJIT 4747#if LJ_HASJIT
4748 | // NYI: add hotloop, record BC_ITERN. 4748 | // NYI: add hotloop, record BC_ITERN.
4749#endif 4749#endif