diff options
author | Mike Pall <mike> | 2012-07-04 21:14:37 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2012-07-04 21:15:15 +0200 |
commit | bd782cedd5079a49e30310837c899e98ce11c95c (patch) | |
tree | 2d32558ccf28fdb90897922f29844e06e08f6dbe /src/lj_crecord.c | |
parent | c22d698e17e4f73ee8a146248c49b6dce10d3b74 (diff) | |
download | luajit-bd782cedd5079a49e30310837c899e98ce11c95c.tar.gz luajit-bd782cedd5079a49e30310837c899e98ce11c95c.tar.bz2 luajit-bd782cedd5079a49e30310837c899e98ce11c95c.zip |
Bump some limits to accomodate SINK pass.
Diffstat (limited to 'src/lj_crecord.c')
-rw-r--r-- | src/lj_crecord.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_crecord.c b/src/lj_crecord.c index 18e1ee13..6cb565c3 100644 --- a/src/lj_crecord.c +++ b/src/lj_crecord.c | |||
@@ -654,7 +654,7 @@ static void crec_alloc(jit_State *J, RecordFFData *rd, CTypeID id) | |||
654 | CTInfo info = lj_ctype_info(cts, id, &sz); | 654 | CTInfo info = lj_ctype_info(cts, id, &sz); |
655 | CType *d = ctype_raw(cts, id); | 655 | CType *d = ctype_raw(cts, id); |
656 | TRef trid; | 656 | TRef trid; |
657 | if (sz == 0 || sz > 64 || (info & CTF_VLA) || ctype_align(info) > CT_MEMALIGN) | 657 | if (!sz || sz > 128 || (info & CTF_VLA) || ctype_align(info) > CT_MEMALIGN) |
658 | lj_trace_err(J, LJ_TRERR_NYICONV); /* NYI: large/special allocations. */ | 658 | lj_trace_err(J, LJ_TRERR_NYICONV); /* NYI: large/special allocations. */ |
659 | trid = lj_ir_kint(J, id); | 659 | trid = lj_ir_kint(J, id); |
660 | /* Use special instruction to box pointer or 32/64 bit integer. */ | 660 | /* Use special instruction to box pointer or 32/64 bit integer. */ |