diff options
Diffstat (limited to 'js/src/jit-test/tests/auto-regress/bug1343513.js')
-rw-r--r-- | js/src/jit-test/tests/auto-regress/bug1343513.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/auto-regress/bug1343513.js b/js/src/jit-test/tests/auto-regress/bug1343513.js new file mode 100644 index 0000000000..03f48d3912 --- /dev/null +++ b/js/src/jit-test/tests/auto-regress/bug1343513.js @@ -0,0 +1,9 @@ +// |jit-test| error:RangeError; skip-if: largeArrayBufferSupported(); --ion-warmup-threshold=50 +setJitCompilerOption("offthread-compilation.enable", 0); +gcPreserveCode(); + +var i = 0; +do { + i++; + var ta = new Int32Array(inIon() ? 0x7fffffff : 1); +} while (!inIon()); |