diff options
Diffstat (limited to 'js/src/jit-test/tests/ion/bug1330662.js')
-rw-r--r-- | js/src/jit-test/tests/ion/bug1330662.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/ion/bug1330662.js b/js/src/jit-test/tests/ion/bug1330662.js new file mode 100644 index 0000000000..f4e561b7e0 --- /dev/null +++ b/js/src/jit-test/tests/ion/bug1330662.js @@ -0,0 +1,8 @@ +setJitCompilerOption("ion.warmup.trigger", 50); +setJitCompilerOption("offthread-compilation.enable", 0); +gcPreserveCode(); + +for (i=0;i<10000;++i) { + a = inIon() ? 0 : 300; + buf = new Uint8ClampedArray(a); +} |