summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/test-apply-many-args.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/basic/test-apply-many-args.js')
-rw-r--r--js/src/jit-test/tests/basic/test-apply-many-args.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/basic/test-apply-many-args.js b/js/src/jit-test/tests/basic/test-apply-many-args.js
new file mode 100644
index 0000000000..ea02f4df35
--- /dev/null
+++ b/js/src/jit-test/tests/basic/test-apply-many-args.js
@@ -0,0 +1,14 @@
+function f(x) {
+ if (x == 0)
+ return;
+ arguments[0]--;
+ f.apply(null, arguments);
+}
+
+// When the apply-optimization isn't on, each recursive call chews up the C
+// stack, so don't push it.
+a = [20];
+
+for (var i = 0; i < 2000; ++i)
+ a.push(i);
+f.apply(null, a);