Sign in
webkit
/
WebKit
/
00d9c36630c3b100532e86e2616da21d7c5e504a
/
.
/
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
();
}