diff options
author | Moonchild <moonchild@palemoon.org> | 2023-09-18 16:57:09 +0200 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2023-09-18 16:57:09 +0200 |
commit | 7003ea7dc4e6164fc2451e4255da0cc1a7b4d22f (patch) | |
tree | 3a098fa1b2914b1c7cd6eea39fc0fc53ce3b9fa1 /js/src/jit-test/tests/SIMD/bug1123631.js | |
parent | 8635073418a294520172bf5b05d886b35e4bcdc3 (diff) | |
download | uxp-7003ea7dc4e6164fc2451e4255da0cc1a7b4d22f.tar.gz |
Issue #2307 - Part 3: Remove SIMD.js support
This gets rid of the SIMD-specific scalar types in JS.
This considerably deviates from Mozilla's work because of our divergent
path.
Diffstat (limited to 'js/src/jit-test/tests/SIMD/bug1123631.js')
-rw-r--r-- | js/src/jit-test/tests/SIMD/bug1123631.js | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/js/src/jit-test/tests/SIMD/bug1123631.js b/js/src/jit-test/tests/SIMD/bug1123631.js deleted file mode 100644 index 28c0e0aa15..0000000000 --- a/js/src/jit-test/tests/SIMD/bug1123631.js +++ /dev/null @@ -1,9 +0,0 @@ -if (!this.hasOwnProperty("SIMD")) - quit(); - -var Float64x2 = SIMD.Float64x2; -function test() { - var a = Float64x2(1, 2); -} -test(); -test(); |