aboutsummaryrefslogtreecommitdiff
path: root/src/lj_jit.h
diff options
context:
space:
mode:
authorMike Pall <mike>2010-12-31 03:56:30 +0100
committerMike Pall <mike>2010-12-31 03:56:30 +0100
commit1716540c55e8d432f17ea6c0666b1427a485ff4a (patch)
treeee192f7d8e0b4f296504b92226fbf8d9149acdd9 /src/lj_jit.h
parent1f269610925829f55ed3e88e4af2b6575598adbc (diff)
downloadluajit-1716540c55e8d432f17ea6c0666b1427a485ff4a.tar.gz
luajit-1716540c55e8d432f17ea6c0666b1427a485ff4a.tar.bz2
luajit-1716540c55e8d432f17ea6c0666b1427a485ff4a.zip
Refactoring of conversion ops, part 4: use CONV instead of TOINT/TONUM.
Also narrow CONV.int.num and CONV.i64.num.
Diffstat (limited to 'src/lj_jit.h')
-rw-r--r--src/lj_jit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_jit.h b/src/lj_jit.h
index c5902a61..cb7ce982 100644
--- a/src/lj_jit.h
+++ b/src/lj_jit.h
@@ -205,7 +205,7 @@ typedef struct HotPenalty {
205typedef struct BPropEntry { 205typedef struct BPropEntry {
206 IRRef1 key; /* Key: original reference. */ 206 IRRef1 key; /* Key: original reference. */
207 IRRef1 val; /* Value: reference after conversion. */ 207 IRRef1 val; /* Value: reference after conversion. */
208 IRRef mode; /* Mode for this entry (currently IRTOINT_*). */ 208 IRRef mode; /* Mode for this entry (currently IRCONV_*). */
209} BPropEntry; 209} BPropEntry;
210 210
211/* Number of slots for the backpropagation cache. Must be a power of 2. */ 211/* Number of slots for the backpropagation cache. Must be a power of 2. */