diff options
Diffstat (limited to 'js/src/jit-test/tests/auto-regress/bug1500255.js')
-rw-r--r-- | js/src/jit-test/tests/auto-regress/bug1500255.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/auto-regress/bug1500255.js b/js/src/jit-test/tests/auto-regress/bug1500255.js new file mode 100644 index 0000000000..7a09cf2397 --- /dev/null +++ b/js/src/jit-test/tests/auto-regress/bug1500255.js @@ -0,0 +1,9 @@ + +setJitCompilerOption("offthread-compilation.enable", 0); +setJitCompilerOption("ion.warmup.trigger", 100); + +Array.prototype.__proto__ = function() {}; +var LENGTH = 1024; +var big = []; +for (var i = 0; i < LENGTH; i++) + big[i] = i; |