Sign in
webkit
/
WebKit
/
075931ac30dcae1739e575539dfc139918725298
/
.
/
JSTests
/
stress
/
jneq-ptr-opcode-variable-only-live-on-taken-branch.js
blob: aaf4454cf6800c55ef7e6c314584482df31f1d57 [
file
] [
log
] [
blame
]
function
bar
()
{}
function
foo
()
{
let x
=
0
;
try
{
undefined
instanceof
{};
}
catch
{}
bar
.
apply
(
0
,
[],
x
);
}
noInline
(
foo
);
for
(
let i
=
0
;
i
<
10000
;
i
++)
{
foo
();
}