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