summaryrefslogtreecommitdiff
path: root/js/src/jit-test/tests/SIMD/bug1123631.js
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2023-09-18 16:57:09 +0200
committerMoonchild <moonchild@palemoon.org>2023-09-18 16:57:09 +0200
commit7003ea7dc4e6164fc2451e4255da0cc1a7b4d22f (patch)
tree3a098fa1b2914b1c7cd6eea39fc0fc53ce3b9fa1 /js/src/jit-test/tests/SIMD/bug1123631.js
parent8635073418a294520172bf5b05d886b35e4bcdc3 (diff)
downloaduxp-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.js9
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();