Skip to content
Snippets Groups Projects
Commit b57f6029 authored by Raymond Toy's avatar Raymond Toy
Browse files

The SIGFPE with no exceptions clause really only applies when we're

not running on solaris/x86.
parent afbe47a0
No related branches found
No related tags found
No related merge requests found
......@@ -299,10 +299,10 @@
;; actually save the status word of the FPU. The
;; operands also seem to be missing. Signal a general
;; arithmetic error.
#+solaris
#+(and x86 solaris)
(error 'arithmetic-error :operands operands)
#-solaris
(error (intl:gettext "SIGFPE with no exceptions currently enabled?")))))))
#-(and x86 solaris)
(error _"SIGFPE with no exceptions currently enabled?"))))))
;;; WITH-FLOAT-TRAPS-MASKED -- Public
;;;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment