comparison: js/src/jit-test/tests/basic/bug645293.js
js/src/jit-test/tests/basic/bug645293.js
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
1 /* Don't assert. */ |
|
2 function f() { |
|
3 NaN++; |
|
4 --NaN; |
|
5 Infinity--; |
|
6 ++Infinity; |
|
7 undefined++; |
|
8 --undefined; |
|
9 ++Math; |
|
10 Math--; |
|
11 } |
|
12 f(); |