aboutsummaryrefslogtreecommitdiff
path: root/src/lj_ccall.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/lj_ccall.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lj_ccall.h b/src/lj_ccall.h
index 91983fee..8b0e796b 100644
--- a/src/lj_ccall.h
+++ b/src/lj_ccall.h
@@ -98,9 +98,9 @@ typedef double FPRArg;
98#elif LJ_TARGET_MIPS 98#elif LJ_TARGET_MIPS
99 99
100#define CCALL_NARG_GPR 4 100#define CCALL_NARG_GPR 4
101#define CCALL_NARG_FPR 2 101#define CCALL_NARG_FPR (LJ_ABI_SOFTFP ? 0 : 2)
102#define CCALL_NRET_GPR 2 102#define CCALL_NRET_GPR 2
103#define CCALL_NRET_FPR 2 103#define CCALL_NRET_FPR (LJ_ABI_SOFTFP ? 0 : 2)
104#define CCALL_SPS_EXTRA 7 104#define CCALL_SPS_EXTRA 7
105#define CCALL_SPS_FREE 1 105#define CCALL_SPS_FREE 1
106 106