Sign in
webkit
/
WebKit
/
55c462f894c77130084c8539f1536870519ed808
/
.
/
JSTests
/
stress
/
read-dead-bytecode-locals-in-must-handle-values1.js
blob: 9e2ae386da5dd1e66ec01e91d5483834fc73fee7 [
file
] [
log
] [
blame
]
//@ runDefault("--useMaximalFlushInsertionPhase=1", "--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
();
}