summaryrefslogtreecommitdiff
path: root/src/lj_ir.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lj_ir.h')
-rw-r--r--src/lj_ir.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lj_ir.h b/src/lj_ir.h
index f0c51bf9..123d87c8 100644
--- a/src/lj_ir.h
+++ b/src/lj_ir.h
@@ -243,7 +243,7 @@ typedef struct CCallInfo {
243 _(lj_str_fromnum, 2, FN, STR, CCI_L) \ 243 _(lj_str_fromnum, 2, FN, STR, CCI_L) \
244 _(lj_tab_new1, 2, FS, TAB, CCI_L) \ 244 _(lj_tab_new1, 2, FS, TAB, CCI_L) \
245 _(lj_tab_dup, 2, FS, TAB, CCI_L) \ 245 _(lj_tab_dup, 2, FS, TAB, CCI_L) \
246 _(lj_tab_newkey, 3, S, PTR, CCI_L) \ 246 _(lj_tab_newkey, 3, S, P32, CCI_L) \
247 _(lj_tab_len, 1, FL, INT, 0) \ 247 _(lj_tab_len, 1, FL, INT, 0) \
248 _(lj_gc_step_jit, 2, FS, NIL, CCI_L) \ 248 _(lj_gc_step_jit, 2, FS, NIL, CCI_L) \
249 _(lj_gc_barrieruv, 2, FS, NIL, 0) \ 249 _(lj_gc_barrieruv, 2, FS, NIL, 0) \
@@ -311,7 +311,7 @@ typedef enum {
311 IRT_LIGHTUD, 311 IRT_LIGHTUD,
312 /* GCobj types are from here ... */ 312 /* GCobj types are from here ... */
313 IRT_STR, 313 IRT_STR,
314 IRT_PTR, /* IRT_PTR never escapes the IR (map of LJ_TUPVAL). */ 314 IRT_P32, /* IRT_P32 never escapes the IR (map of LJ_TUPVAL). */
315 IRT_THREAD, 315 IRT_THREAD,
316 IRT_PROTO, 316 IRT_PROTO,
317 IRT_FUNC, 317 IRT_FUNC,