summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1538083.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--js/src/jit-test/tests/ion/bug1538083.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/ion/bug1538083.js b/js/src/jit-test/tests/ion/bug1538083.js
new file mode 100644
index 0000000000..424c7fe1ef
--- /dev/null
+++ b/js/src/jit-test/tests/ion/bug1538083.js
@@ -0,0 +1,8 @@
+// Crashes with --no-threads --ion-eager.
+x = [8589934592, -0];
+y = [0, 0];
+for (let i = 0; i < 2; ++i) {
+ y[i] = Math.trunc(Math.tan(x[i]));
+}
+assertEq(Object.is(y[0], 1), true);
+assertEq(Object.is(y[1], -0), true);