mirror of
https://github.com/LuaJIT/LuaJIT.git
synced 2025-02-07 23:24:09 +00:00
Merge branch 'master' into v2.1
This commit is contained in:
commit
0dcd2d1292
@ -784,6 +784,10 @@ static void cp_push_type(CPDecl *decl, CTypeID id)
|
|||||||
cp_push(decl, info & ~CTMASK_CID, size); /* Copy type. */
|
cp_push(decl, info & ~CTMASK_CID, size); /* Copy type. */
|
||||||
break;
|
break;
|
||||||
case CT_ARRAY:
|
case CT_ARRAY:
|
||||||
|
if ((ct->info & (CTF_VECTOR|CTF_COMPLEX))) {
|
||||||
|
info |= (decl->attr & CTF_QUAL);
|
||||||
|
decl->attr &= ~CTF_QUAL;
|
||||||
|
}
|
||||||
cp_push_type(decl, ctype_cid(info)); /* Unroll. */
|
cp_push_type(decl, ctype_cid(info)); /* Unroll. */
|
||||||
cp_push(decl, info & ~CTMASK_CID, size); /* Copy type. */
|
cp_push(decl, info & ~CTMASK_CID, size); /* Copy type. */
|
||||||
decl->stack[decl->pos].sib = 1; /* Mark as already checked and sized. */
|
decl->stack[decl->pos].sib = 1; /* Mark as already checked and sized. */
|
||||||
|
Loading…
Reference in New Issue
Block a user