Sign in
webkit
/
WebKit
/
14cb98a360e661c1b39a648e8ccc3be2e2757789
/
.
/
JSTests
/
stress
/
checkpoint-osr-exit-needs-to-reload-baseline-jit-constant-pool-gpr.js
blob: f9d84d0ed080248df2bd123f2a692ac3b1e8965b [
file
] [
log
] [
blame
]
function
empty
()
{}
function
empty2
()
{}
function
test
(
arr
)
{
empty
.
apply
(
undefined
,
arr
);
empty2
();
}
for
(
let i
=
0
;
i
<
10000
;
i
++)
{
let arr
=
[];
for
(
let j
=
0
;
j
<
i
+
10000
;
j
++)
{
arr
.
push
(
undefined
);
}
test
(
arr
);
}