mirror of
https://github.com/LuaJIT/LuaJIT.git
synced 2025-02-08 15:34:09 +00:00
Fix typo in lj_ccallback.h
For future reference only, we aren't using this bit of code yet.
This commit is contained in:
parent
5c697cc772
commit
65906fbc49
@ -499,9 +499,9 @@ void lj_ccallback_mcode_free(CTState *cts)
|
||||
|
||||
#define CALLBACK_HANDLE_REGARG \
|
||||
if (isfp) { \
|
||||
if (nfpr < maxgpr) { sp = &cts->cb.fpr[nfpr++]; goto done; } \
|
||||
if (nfpr < CCALL_NARG_FPR) { sp = &cts->cb.fpr[nfpr++]; goto done; } \
|
||||
} else { \
|
||||
if (ngpr < CCALL_NARG_FPR) { sp = &cts->cb.gpr[ngpr++]; goto done; } \
|
||||
if (ngpr < maxgpr) { sp = &cts->cb.gpr[ngpr++]; goto done; } \
|
||||
}
|
||||
|
||||
#else
|
||||
|
Loading…
Reference in New Issue
Block a user