Sign in
webkit
/
WebKit
/
2451ef9a6f07697711cff954a3812f59820a6e05
/
.
/
JSTests
/
stress
/
array-allocation-profile-should-not-update-itself-in-concurrent-compiler.js
blob: 4cb36355237f884878281942860a8c2f20617008 [
file
] [
log
] [
blame
]
//@ runDefault("--jitPolicyScale=0", "--useArrayAllocationProfiling=0")
function
foo
()
{
for
(
let i
=
0
;
i
<
30
;
i
++)
{
const
ar
=
[];
for
(
let j
=
0
;
j
<=
1500
;
j
++)
{
ar
[
j
]
=
null
;
}
}
}
foo
();