diff options
Diffstat (limited to 'js/src/jit-test/tests/auto-regress/bug1460436-2.js')
-rw-r--r-- | js/src/jit-test/tests/auto-regress/bug1460436-2.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/auto-regress/bug1460436-2.js b/js/src/jit-test/tests/auto-regress/bug1460436-2.js new file mode 100644 index 0000000000..5a6a7dc17a --- /dev/null +++ b/js/src/jit-test/tests/auto-regress/bug1460436-2.js @@ -0,0 +1,9 @@ +function f(y) { + Math.sign(y) ? n : undefined +} +f(); +function g() {}; +(function() { + for (var j = 0; j < 1100; ++j) + f(!1 ^ 1 ? undefined | 0 : +w()) +})(); |