Sign in
webkit
/
WebKit
/
e5474a94048a955c0042149e8ac8a8d40148ea9a
/
.
/
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
();