summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/auto-regress/bug1343513-2.js
blob: 184359cf4359bdf317bb56b8cbcc662a7030c02c (plain)
1
2
3
4
5
6
7
8
9
10
// |jit-test| error:RangeError
setJitCompilerOption("ion.warmup.trigger", 50);
setJitCompilerOption("offthread-compilation.enable", 0);
gcPreserveCode();

var i = 0;
do {
    i++;
    var ta = new Int32Array(inIon() ? 0x20000001 : 1);
} while (!inIon());