summaryrefslogtreecommitdiff
path: root/test/src
diff options
context:
space:
mode:
authorAndrea Corallo <akrl@sdf.org>2021-03-02 17:23:12 +0100
committerAndrea Corallo <akrl@sdf.org>2021-03-03 20:36:12 +0100
commit0c5ba41b72a19f5353083431a1817d86bc3b7fad (patch)
tree354266f25e8a38b611314a0c7658b55f9675d168 /test/src
parent30810905de7662b36b7ac9275bb9cbb2a563c277 (diff)
downloademacs-0c5ba41b72a19f5353083431a1817d86bc3b7fad.tar.gz
emacs-0c5ba41b72a19f5353083431a1817d86bc3b7fad.tar.bz2
emacs-0c5ba41b72a19f5353083431a1817d86bc3b7fad.zip
Fix two compiler ICEs dealing with nan and infinity
* lisp/emacs-lisp/comp-cstr.el (comp-cstr-=): Don't crash when truncate fails. * test/src/comp-test-funcs.el (comp-test-=-nan): Add two functions to be compiled.
Diffstat (limited to 'test/src')
-rw-r--r--test/src/comp-test-funcs.el8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/src/comp-test-funcs.el b/test/src/comp-test-funcs.el
index 5bae743d153..a465026fb37 100644
--- a/test/src/comp-test-funcs.el
+++ b/test/src/comp-test-funcs.el
@@ -667,6 +667,14 @@
(while (comp-test-no-return-3)
(comp-test-no-return-3))))
+(defun comp-test-=-nan (x)
+ (when (= x 0.0e+NaN)
+ x))
+
+(defun comp-test-=-infinity (x)
+ (when (= x 1.0e+INF)
+ x))
+
(provide 'comp-test-funcs)
;;; comp-test-funcs.el ends here