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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lj_ir.c b/src/lj_ir.c
index 8f22e085..457d9187 100644
--- a/src/lj_ir.c
+++ b/src/lj_ir.c
@@ -47,8 +47,8 @@ IRDEF(IRMODE)
47 47
48/* C call info for CALL* instructions. */ 48/* C call info for CALL* instructions. */
49LJ_DATADEF const CCallInfo lj_ir_callinfo[] = { 49LJ_DATADEF const CCallInfo lj_ir_callinfo[] = {
50#define IRCALLCI(name, nargs, kind, type, flags) \ 50#define IRCALLCI(cond, name, nargs, kind, type, flags) \
51 { (ASMFunction)name, \ 51 { (ASMFunction)IRCALLCOND_##cond(name), \
52 (nargs)|(CCI_CALL_##kind)|(IRT_##type<<CCI_OTSHIFT)|(flags) }, 52 (nargs)|(CCI_CALL_##kind)|(IRT_##type<<CCI_OTSHIFT)|(flags) },
53IRCALLDEF(IRCALLCI) 53IRCALLDEF(IRCALLCI)
54#undef IRCALLCI 54#undef IRCALLCI