summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/modConstDoubles.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/jaeger/modConstDoubles.js')
-rw-r--r--js/src/jit-test/tests/jaeger/modConstDoubles.js8
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 0000000000..807782ce6e
--- /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);
+