Sign in
webkit
/
WebKit
/
9f8388ebdf099a98ce75d93c131e5941dc4da269
/
.
/
JSTests
/
stress
/
read-dead-bytecode-locals-in-must-handle-values1.js
blob: 439bfacd47526bcf95f56b8012076358ce7fbae9 [
file
] [
log
] [
blame
]
//@ runDefault("--useConcurrentJIT=0")
function
bar
(
x
)
{
if
(
x
)
{
return
;
}
x
=
x
**
0
;
x
=
x
*
2
;
}
function
foo
()
{
bar
();
for
(
let i
=
0
;
i
<
10
;
++
i
)
{
}
}
for
(
var
i
=
0
;
i
<
10000
;
++
i
)
{
foo
();
}