Sign in
webkit
/
WebKit
/
14cb98a360e661c1b39a648e8ccc3be2e2757789
/
.
/
JSTests
/
stress
/
codeBlock-should-not-add-remove-loop-hint-execution-counters-due-to-cached-unlinked-baseline-code.js
blob: ae9225507011baa2545e90f056253442edb43555 [
file
] [
log
] [
blame
]
//@ runDefault("--returnEarlyFromInfiniteLoopsForFuzzing=true", "--forceCodeBlockToJettisonDueToOldAge=true", "--collectContinuously=true")
async
function
foo
()
{
for
(
let i
=
0
;
i
<
1000
;
i
++);
}
for
(
let i
=
0
;
i
<
1000
;
i
++)
{
foo
();
edenGC
();
}