|
@@ -654,7 +654,7 @@ static void crec_alloc(jit_State *J, RecordFFData *rd, CTypeID id)
|
|
|
CTInfo info = lj_ctype_info(cts, id, &sz);
|
|
|
CType *d = ctype_raw(cts, id);
|
|
|
TRef trid;
|
|
|
- if (sz == 0 || sz > 64 || (info & CTF_VLA) || ctype_align(info) > CT_MEMALIGN)
|
|
|
+ if (!sz || sz > 128 || (info & CTF_VLA) || ctype_align(info) > CT_MEMALIGN)
|
|
|
lj_trace_err(J, LJ_TRERR_NYICONV); /* NYI: large/special allocations. */
|
|
|
trid = lj_ir_kint(J, id);
|
|
|
/* Use special instruction to box pointer or 32/64 bit integer. */
|