comparison: js/src/jit-test/tests/jaeger/modConstDoubles.js
js/src/jit-test/tests/jaeger/modConstDoubles.js
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
1 |
|
2 function f() { |
|
3 var x = 2.6; |
|
4 var y = 2.1; |
|
5 return x % y; |
|
6 } |
|
7 assertEq(f(), 0.5); |
|
8 |