diff options
Diffstat (limited to 'js/src/jit-test/tests/ion/bug1308802.js')
-rw-r--r-- | js/src/jit-test/tests/ion/bug1308802.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/ion/bug1308802.js b/js/src/jit-test/tests/ion/bug1308802.js new file mode 100644 index 0000000000..eafe3c697c --- /dev/null +++ b/js/src/jit-test/tests/ion/bug1308802.js @@ -0,0 +1,8 @@ + +function test() { + for (var i = 0; i < 2; ++i) { + assertEq(Math.max(-0), -0); + } +} +test(); + |