Sign in
webkit
/
WebKit
/
9a43d7e8bb9093ccc493831ef3377ee933abb11e
/
.
/
JSTests
/
stress
/
inserted-gettypedarraylengthasint52-should-have-int52-result-for-put-by-val.js
blob: 3773b68e0e1f9bb2ea891ea27a9fb65cb9b83e05 [
file
] [
log
] [
blame
]
//@ runDefault("--useOSRExitFuzz=1", "--fireOSRExitFuzzAtOrAfter=1", "--jitPolicyScale=0", "--useConcurrentJIT=0")
const
ta
=
new
Uint8Array
();
function
foo
()
{
function
bar
()
{
ta
[
0
]
=
0
;
}
for
(
let i
=
0
;
i
<
100000
;
i
++)
{
bar
();
}
}
foo
();