Sign in
webkit
/
WebKit
/
9f8388ebdf099a98ce75d93c131e5941dc4da269
/
.
/
JSTests
/
stress
/
set-argument-maybe-maximal-flush-should-not-extend-liveness.js
blob: b0a751cf66db893daddbab2d9f9646eaa3dc85df [
file
] [
log
] [
blame
]
//@ runDefault("--validateGraphAtEachPhase=1")
function
f1
()
{
}
function
f2
()
{
}
const
a
=
[
0
];
function
foo
()
{
f1
(...
a
);
for
(
let i
=
0
;
i
<
2
;
i
++)
{
f2
([]
>
0
);
}
}
for
(
var
i
=
0
;
i
<
1000000
;
++
i
)
{
foo
();
}