summaryrefslogtreecommitdiffstats
path: root/PerformanceTests/SunSpider/tests/ubench/function-sum.js
blob: 5de765767a98bcf6ca2956580d56090e6bbf4a9b (plain)
1
2
3
4
5
6
7
function f(x, y, z)
{
    return x + y + z;
}

for (var i = 0; i < 2500000; ++i)
    f(1, 2, 3);