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