comparison: js/src/jit-test/tests/ion/bug724975.js
js/src/jit-test/tests/ion/bug724975.js
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
1 LastIndexOf("hello", "ll", 5); |
|
2 function LastIndexOf(string, search, position) { |
|
3 var j = 0; |
|
4 for (;;) { |
|
5 for (;;) { |
|
6 if (string != search) break; |
|
7 } |
|
8 if (j++ > 100) |
|
9 break; |
|
10 } |
|
11 } |