aboutsummaryrefslogtreecommitdiff
path: root/src/lj_ir.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lj_ir.c')
-rw-r--r--src/lj_ir.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/lj_ir.c b/src/lj_ir.c
index 92be4149..abc275d1 100644
--- a/src/lj_ir.c
+++ b/src/lj_ir.c
@@ -46,6 +46,14 @@ IRDEF(IRMODE)
46 0 46 0
47}; 47};
48 48
49/* IR type sizes. */
50LJ_DATADEF const uint8_t lj_ir_type_size[IRT__MAX+1] = {
51#define IRTSIZE(name, size) size,
52IRTDEF(IRTSIZE)
53#undef IRTSIZE
54 0
55};
56
49/* C call info for CALL* instructions. */ 57/* C call info for CALL* instructions. */
50LJ_DATADEF const CCallInfo lj_ir_callinfo[] = { 58LJ_DATADEF const CCallInfo lj_ir_callinfo[] = {
51#define IRCALLCI(cond, name, nargs, kind, type, flags) \ 59#define IRCALLCI(cond, name, nargs, kind, type, flags) \