comparison: js/src/jit-test/tests/profiler/enterjit-osr-enabling-earlyret.js
js/src/jit-test/tests/profiler/enterjit-osr-enabling-earlyret.js
- branch
- TOR_BUG_3246
- changeset 7
- 129ffea94266
equal
deleted
inserted
replaced
|
1 setJitCompilerOption("baseline.usecount.trigger", 10); |
|
2 setJitCompilerOption("ion.usecount.trigger", 20); |
|
3 |
|
4 (function() { |
|
5 var n = 50; |
|
6 while (n--) { |
|
7 enableSPSProfilingAssertions(true); |
|
8 if (!n) |
|
9 return; |
|
10 disableSPSProfiling(); |
|
11 } |
|
12 })(); |