summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/auto-regress/bug1343513.js
blob: 03f48d39123ada03662a9fe129f85f6245cca935 (plain)
1
2
3
4
5
6
7
8
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());