diff options
author | Brian Smith <brian@dbsoft.org> | 2023-07-24 23:30:27 -0500 |
---|---|---|
committer | Brian Smith <brian@dbsoft.org> | 2023-07-24 23:30:27 -0500 |
commit | edacbbd96538a60495dd50010b5549defc1ea35c (patch) | |
tree | cce9a88046cf1ddccc37bebc7cb11fb0ec1e0e71 /js/src/jit/x86-shared | |
parent | b4ddadd8b98a83e833eb01223dbb3858955e868d (diff) | |
download | uxp-edacbbd96538a60495dd50010b5549defc1ea35c.tar.gz |
Issue #2026 - Part 1 - Implement BigInt64 and BigUint64Array.
https://bugzilla.mozilla.org/show_bug.cgi?id=1456569
Diffstat (limited to 'js/src/jit/x86-shared')
-rw-r--r-- | js/src/jit/x86-shared/CodeGenerator-x86-shared.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/js/src/jit/x86-shared/CodeGenerator-x86-shared.cpp b/js/src/jit/x86-shared/CodeGenerator-x86-shared.cpp index 3111ae4c92..5ec00da849 100644 --- a/js/src/jit/x86-shared/CodeGenerator-x86-shared.cpp +++ b/js/src/jit/x86-shared/CodeGenerator-x86-shared.cpp @@ -402,6 +402,8 @@ CodeGeneratorX86Shared::visitOutOfLineLoadTypedArrayOutOfBounds(OutOfLineLoadTyp case Scalar::Int8x16: case Scalar::Int16x8: case Scalar::Int32x4: + case Scalar::BigInt64: + case Scalar::BigUint64: case Scalar::MaxTypedArrayViewType: MOZ_CRASH("unexpected array type"); case Scalar::Float32: |