summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/auto-regress/bug739901.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--js/src/jit-test/tests/auto-regress/bug739901.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/auto-regress/bug739901.js b/js/src/jit-test/tests/auto-regress/bug739901.js
new file mode 100644
index 0000000000..9bb1e26fbd
--- /dev/null
+++ b/js/src/jit-test/tests/auto-regress/bug739901.js
@@ -0,0 +1,20 @@
+// Binary: cache/js-dbg-64-940078281bbf-linux
+// Flags: --ion-eager
+//
+function List(l) {
+ this.l = l;
+}
+function f(p) {
+ return g(p.l);
+};
+function g(p) {
+ return !(p instanceof List) ? null : f(p.l);
+};
+list =
+ new List(new List(
+ new List(new List(
+ new List(new List(
+ new List(new List(null))))))))
+for (let i = 0; i < 99999; i++) {
+ g(list);
+}