Sign in
webkit
/
WebKit
/
73d489c153bea24ba07ff63ba8b8ea61cc2bba7a
/
.
/
JSTests
/
microbenchmarks
/
string-concat-long.js
blob: 0946322288600dbbdef63559fec4978f9df40d92 [
file
] [
log
] [
blame
]
//@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
function
test
(
a
,
b
,
c
,
d
,
e
)
{
return
a
.
concat
(
b
,
c
,
d
,
e
);
}
noInline
(
test
);
for
(
var
i
=
0
;
i
<
1e6
;
++
i
)
test
(
"Cocoa"
,
"Cappuccino"
,
"Matcha"
,
"Rize"
,
"Kilimanjaro"
);