comparison: js/src/jit-test/tests/jaeger/loops/hoist-08.js
js/src/jit-test/tests/jaeger/loops/hoist-08.js
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
1 |
|
2 function foo(x,n) { |
|
3 for (var i = -5; i < n; i++) { |
|
4 x[i] = 10; |
|
5 } |
|
6 } |
|
7 foo([1,2,3,4,5],5); |