Sign in
webkit
/
WebKit
/
e83748a3d986d861713edbad6b20589c06c9b99f
/
.
/
JSTests
/
stress
/
set-argument-maybe-maximal-flush-should-not-extend-liveness-2.js
blob: 42f03e3a35e3dc1d26bf08910f8904b53fc3f43a [
file
] [
log
] [
blame
]
//@ runDefault("--jitPolicyScale=0", "--useConcurrentJIT=0")
function
f0
()
{
}
function
bar
()
{
f0
(...
arguments
);
}
const
a
=
new
Uint8Array
(
1
);
function
foo
()
{
bar
(
0
,
0
);
a
.
find
(()=>{});
}
for
(
let i
=
0
;
i
<
3
;
i
++)
{
foo
();
}