Sign in
webkit
/
WebKit
/
fff5469af9e21121a01bc52b64d66a2e93b51665
/
.
/
JSTests
/
stress
/
read-dead-bytecode-locals-in-must-handle-values2.js
blob: 0ea1bd4e524c9401f2dde9d06b20b64fcc04cdb5 [
file
] [
log
] [
blame
]
//@ runDefault("--useConcurrentJIT=0")
function
bar
(
c
)
{
if
(
c
>
1
)
{
bar
(
parseInt
(
c
*
2
))
}
c
*=
2
;
}
function
foo
()
{
var
i
=
0
;
if
(
''
.
match
(
/^/
))
{
while
(
i
<
1e5
)
{
bar
(
2
);
++
i
;
}
}
}
foo
();