diff options
Diffstat (limited to 'src/lj_ir.c')
-rw-r--r-- | src/lj_ir.c | 4 |
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. */ |
49 | LJ_DATADEF const CCallInfo lj_ir_callinfo[] = { | 49 | LJ_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) }, |
53 | IRCALLDEF(IRCALLCI) | 53 | IRCALLDEF(IRCALLCI) |
54 | #undef IRCALLCI | 54 | #undef IRCALLCI |