comparison: js/src/jit-test/tests/ion/bug966926.js
js/src/jit-test/tests/ion/bug966926.js
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
1 var f32 = new Float32Array(32); |
|
2 function f(n) { |
|
3 var x; |
|
4 if (n > 10000) { |
|
5 x = (0); |
|
6 } else { |
|
7 x = f32[0]; |
|
8 } |
|
9 g('' + (x)); |
|
10 } |
|
11 function g(y){} |
|
12 f(0); |