comparison: js/src/jit-test/tests/ion/bug906035.js
js/src/jit-test/tests/ion/bug906035.js
- branch
- TOR_BUG_3246
- changeset 7
- 129ffea94266
equal
deleted
inserted
replaced
|
1 // |jit-test| ion-eager |
|
2 function y() { return "foo,bar"; } |
|
3 function x() { |
|
4 var z = y().split(','); |
|
5 for (var i = 0; i < z.length; i++) {} |
|
6 } |
|
7 gczeal(2); |
|
8 Object.prototype.length = function () {}; |
|
9 x(); |