Sign in
webkit
/
WebKit
/
7c2d2b06cff0bde1c85f11402729e2b90317522d
/
.
/
JSTests
/
stress
/
constant-fold-double-rep-into-double-constant.js
blob: 4591c1ca8f8105809a182f0dcc2501ccf26f1551 [
file
] [
log
] [
blame
]
function
bar
(
o
)
{
for
(
let i
=
0
;
i
<
2
;
i
++)
o
[
i
]
=
undefined
;
o
.
length
=
undefined
;
return
o
;
}
function
foo
(
a
)
{
bar
(
a
);
undefined
+
bar
(
0
)
+
bar
(
0
);
for
(
let i
=
0
;
i
<
10000000
;
i
++)
{}
}
foo
({});