Sign in
webkit
/
WebKit
/
14cb98a360e661c1b39a648e8ccc3be2e2757789
/
.
/
JSTests
/
stress
/
allocation-sinking-puthint-control-flow-2.js
blob: 473de0652863c804cfba2b424aa7241f6d341ae0 [
file
] [
log
] [
blame
]
//@ runDefault("--useConcurrentJIT=0", "--jitPolicyScale=0")
function
f
()
{
var
x
=
{};
x
=
0
;
var
handler
=
{
construct
:
function
()
{
x
;
}
};
for
(
let i
=
0
;
i
<
1
;
i
++)
(
function
()
{
i
});
new
Proxy
(
function
()
{
},
handler
);
}
f
();
f
();