Sign in
webkit
/
WebKit
/
e5474a94048a955c0042149e8ac8a8d40148ea9a
/
.
/
JSTests
/
stress
/
dont-assign-bogus-virtual-register-in-availability-analysis-before-stack-layout-runs.js
blob: c92f1afd65ec067ab81e04301a8e5c0e98572680 [
file
] [
log
] [
blame
]
function
bar
()
{
for
(
let i
=
0
;
i
<
100
;
i
++)
{
arguments
[
1
];
}
}
function
foo
()
{
for
(
let i
=
0
;
i
<
100000
;
i
++)
{
bar
(...
'aa'
);
}
}
foo
();