summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/warp/scalar-replace-array-apply-array-02.js
blob: e0689189ba49629f14046df93da2713af82f86fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
function foo(...args) {
  args[0] = 3;
  return bar.apply({}, args);
}

// |foo| must be small enough to be inlinable.
assertEq(isSmallFunction(foo), true);

function bar(x, y) {
  return x + y;
}

with ({}) {}

var sum = 0;
for (var i = 0; i < 100; i++) {
  sum += foo(1, 2);
}
assertEq(sum, 500);