aboutsummaryrefslogtreecommitdiff
path: root/src/lj_ir.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lj_ir.h')
-rw-r--r--src/lj_ir.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lj_ir.h b/src/lj_ir.h
index cd8df59d..8a655b64 100644
--- a/src/lj_ir.h
+++ b/src/lj_ir.h
@@ -318,9 +318,10 @@ IRTDEF(IRTENUM)
318 318
319 /* Native pointer type and the corresponding integer type. */ 319 /* Native pointer type and the corresponding integer type. */
320 IRT_PTR = LJ_64 ? IRT_P64 : IRT_P32, 320 IRT_PTR = LJ_64 ? IRT_P64 : IRT_P32,
321 IRT_PGC = LJ_GC64 ? IRT_P64 : IRT_P32,
322 IRT_IGC = LJ_GC64 ? IRT_I64 : IRT_INT,
321 IRT_INTP = LJ_64 ? IRT_I64 : IRT_INT, 323 IRT_INTP = LJ_64 ? IRT_I64 : IRT_INT,
322 IRT_UINTP = LJ_64 ? IRT_U64 : IRT_U32, 324 IRT_UINTP = LJ_64 ? IRT_U64 : IRT_U32,
323 /* TODO_GC64: major changes required for all uses of IRT_P32. */
324 325
325 /* Additional flags. */ 326 /* Additional flags. */
326 IRT_MARK = 0x20, /* Marker for misc. purposes. */ 327 IRT_MARK = 0x20, /* Marker for misc. purposes. */