diff options
Diffstat (limited to '')
-rw-r--r-- | js/src/jit-test/tests/auto-regress/bug1343513-2.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/auto-regress/bug1343513-2.js b/js/src/jit-test/tests/auto-regress/bug1343513-2.js new file mode 100644 index 0000000000..e2bbe7bc95 --- /dev/null +++ b/js/src/jit-test/tests/auto-regress/bug1343513-2.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() ? 0x20000001 : 1); +} while (!inIon()); |