summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/auto-regress/bug1805881.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/auto-regress/bug1805881.js')
-rw-r--r--js/src/jit-test/tests/auto-regress/bug1805881.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/auto-regress/bug1805881.js b/js/src/jit-test/tests/auto-regress/bug1805881.js
new file mode 100644
index 0000000000..8f3df42198
--- /dev/null
+++ b/js/src/jit-test/tests/auto-regress/bug1805881.js
@@ -0,0 +1,21 @@
+// |jit-test| --baseline-warmup-threshold=10; --ion-warmup-threshold=100
+
+function blackhole() {
+ with ({});
+}
+
+function main() {
+ for (let i = 0; i < 100; i++) {
+ try {
+ const v3 = 0..toString(i);
+ for (let j = 0; j < 100; j++) {
+ }
+ blackhole(v3);
+ } catch {
+ }
+ for (let j = 0; j < 6; ++j) {
+ }
+ }
+}
+
+main();