diff options
Diffstat (limited to 'js/src/jit-test/tests/warp/scalar-replace-array-apply-array-01.js')
-rw-r--r-- | js/src/jit-test/tests/warp/scalar-replace-array-apply-array-01.js | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/warp/scalar-replace-array-apply-array-01.js b/js/src/jit-test/tests/warp/scalar-replace-array-apply-array-01.js new file mode 100644 index 0000000000..0f88843615 --- /dev/null +++ b/js/src/jit-test/tests/warp/scalar-replace-array-apply-array-01.js @@ -0,0 +1,21 @@ +function escape(x) { with ({}) {} } + +function foo(...args) { + escape(args); + 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, 300); |