Sign in
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
refs/heads/main
/
.
/
JSTests
/
stress
/
dont-emit-osr-exits-for-every-call-ftl.js
blob: ef0b4a969a321e45eb0cb7c5a2f0f28f7c01c819 [
file
] [
edit
]
//@ runDefault("--useConcurrentJIT=0", "--validateFTLOSRExitLiveness=1")
function
foo
(
o
,
p
)
{
p
=
null
;
try
{
o
.
f
=
null
;
p
=
null
;
}
catch
(
e
)
{
}
}
noInline
(
foo
);
for
(
var
i
=
0
;
i
<
testLoopCount
;
++
i
)
{
foo
({});
}