summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/SIMD/bug1241872.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/SIMD/bug1241872.js')
-rw-r--r--js/src/jit-test/tests/SIMD/bug1241872.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/SIMD/bug1241872.js b/js/src/jit-test/tests/SIMD/bug1241872.js
new file mode 100644
index 000000000..c36ebcc6b
--- /dev/null
+++ b/js/src/jit-test/tests/SIMD/bug1241872.js
@@ -0,0 +1,10 @@
+if (typeof SIMD !== 'object')
+ quit(0);
+
+function test() {
+ return SIMD.Float32x4().toSource();
+}
+
+var r = '';
+for (var i = 0; i < 10000; i++)
+ r = test();