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.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lj_ir.h b/src/lj_ir.h
index 3371a8a4..72a4d6b4 100644
--- a/src/lj_ir.h
+++ b/src/lj_ir.h
@@ -338,6 +338,9 @@ typedef enum {
338 IRT_U64, 338 IRT_U64,
339 /* There is room for 10 more types. */ 339 /* There is room for 10 more types. */
340 340
341 /* Native pointer type. */
342 IRT_PTR = LJ_64 ? IRT_P64 : IRT_P32,
343
341 /* Additional flags. */ 344 /* Additional flags. */
342 IRT_MARK = 0x20, /* Marker for misc. purposes. */ 345 IRT_MARK = 0x20, /* Marker for misc. purposes. */
343 IRT_ISPHI = 0x40, /* Instruction is left or right PHI operand. */ 346 IRT_ISPHI = 0x40, /* Instruction is left or right PHI operand. */