summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1054047.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/ion/bug1054047.js')
-rw-r--r--js/src/jit-test/tests/ion/bug1054047.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/ion/bug1054047.js b/js/src/jit-test/tests/ion/bug1054047.js
new file mode 100644
index 0000000000..42dedd718c
--- /dev/null
+++ b/js/src/jit-test/tests/ion/bug1054047.js
@@ -0,0 +1,12 @@
+
+function f() {}
+function g() {
+ f.apply(this, arguments);
+}
+
+var arr = [];
+for (var j = 0; j < 128 /* 127 */; j++)
+ arr.push(0);
+
+for (var j = 0; j < 10000; j++)
+ g.apply(null, arr);