comparison: js/src/jit-test/tests/ion/bug714397.js
js/src/jit-test/tests/ion/bug714397.js
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
1 // Don't assert. Reduced from a modified SS 1.0 crypto-md5. |
|
2 |
|
3 function g() |
|
4 { |
|
5 return 0; |
|
6 } |
|
7 |
|
8 function f() |
|
9 { |
|
10 for(var i = 0; i < 100; i++) { |
|
11 g(0); |
|
12 g(0); |
|
13 } |
|
14 } |
|
15 |
|
16 |
|
17 f(); |