Home | History | Annotate | Download | only in ubench
      1 function f(x, y, z)
      2 {
      3     return x + y + z;
      4 }
      5 
      6 for (var i = 0; i < 2500000; ++i)
      7     f(1, 2, 3);
      8