summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/profiler/bug1135703.js
blob: 465b4026abae13e5ce09caf37f3c4adbd6be5b25 (plain)
1
2
3
4
5
6

for (var idx = 0; idx < 20; ++idx) {
  newFunc("enableSPSProfilingWithSlowAssertions(); disableSPSProfiling();");
}
newFunc("enableSPSProfiling();");
function newFunc(x) { new Function(x)(); };