diff options
Diffstat (limited to 'js/src/jit-test/tests/jaeger/modConstDoubles.js')
-rw-r--r-- | js/src/jit-test/tests/jaeger/modConstDoubles.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/jaeger/modConstDoubles.js b/js/src/jit-test/tests/jaeger/modConstDoubles.js new file mode 100644 index 000000000..807782ce6 --- /dev/null +++ b/js/src/jit-test/tests/jaeger/modConstDoubles.js @@ -0,0 +1,8 @@ + +function f() { + var x = 2.6; + var y = 2.1; + return x % y; +} +assertEq(f(), 0.5); + |