Merge remote-tracking branch 'origin/tracking' into custom

This commit is contained in:
roytam1 2023-07-29 23:43:29 +08:00
commit 65de5a7185
57 changed files with 1144 additions and 341 deletions

View file

@ -6005,7 +6005,14 @@ jit::ElementAccessIsTypedArray(CompilerConstraintList* constraints,
return false;
*arrayType = types->getTypedArrayType(constraints);
return *arrayType != Scalar::MaxTypedArrayViewType;
// FIXME: https://bugzil.la/1536699
if (*arrayType == Scalar::MaxTypedArrayViewType ||
Scalar::isBigIntType(*arrayType)) {
return false;
}
return true;
}
bool