comparison: js/src/jit-test/tests/ion/bug827659-1.js
js/src/jit-test/tests/ion/bug827659-1.js
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
1 function f() { |
|
2 return y.byteOffset; |
|
3 } |
|
4 var y; |
|
5 for (var j = 0; j < 1; ++j) { |
|
6 y = new Float32Array(); |
|
7 } |
|
8 f(); |
|
9 y = 0; |
|
10 assertEq(f(), undefined); |
|
11 assertEq(f(), undefined); |