Sign in
webkit
/
WebKit
/
9c67cd80f9fb5e3bf0f07d348f1d17932ddab816
/
.
/
PerformanceTests
/
SunSpider
/
tests
/
ubench
/
function-sum.js
blob: 5de765767a98bcf6ca2956580d56090e6bbf4a9b [
file
] [
log
] [
blame
]
function
f
(
x
,
y
,
z
)
{
return
x
+
y
+
z
;
}
for
(
var
i
=
0
;
i
<
2500000
;
++
i
)
f
(
1
,
2
,
3
);