Sign in
webkit
/
WebKit
/
53593e9541a2df2f62253c48cfc36324561ef5c4
/
.
/
JSTests
/
stress
/
shadow-chicken-reading-from-scope-after-ftl-osr-exit-bytecode-liveness.js
blob: fd918f869eb916fd69b5b55b40e406ec45f34312 [
file
] [
log
] [
blame
]
//@ runNoCJIT("--forceDebuggerBytecodeGeneration=true", "--alwaysUseShadowChicken=true")
"use strict"
;
function
foo
(
b
)
{
if
(
b
)
throw
"foo"
;
return
b
;
}
noInline
(
foo
);
for
(
let i
=
0
;
i
<
10000
;
i
++)
foo
(
false
);
try
{
foo
(
true
);
}
catch
(
e
)
{
}