Sign in
webkit
/
WebKit
/
7d815df5a5eb5a0a67d72260d5639681d50d7f66
/
.
/
JSTests
/
stress
/
regress-170896-with-double-shape-profile.js
blob: abda98beef0e567ab06a9659b658de10e5ef398c [
file
] [
log
] [
blame
]
function
test
()
{
let a
=
[,,,,,,,,,];
return
a
.
concat
();
}
noInline
(
test
);
test
()[
0
]
=
1.2345
;
// Set the ArrayAllocationProfile to DoubleShape.
for
(
let i
=
0
;
i
<
20000
;
++
i
)
{
var
result
=
test
();
if
(
result
[
0
])
throw
result
.
toString
();
}