Raymond Toy pushed to branch issue-435-add-core-math-lisp-support at cmucl / cmucl Commits: b2c03d5d by Raymond Toy at 2026-02-27T19:16:48-08:00 Revert "Use the same floating-point-modes for all x86." This reverts commit 4e342cc5337cbed20601b8aca7e3d37fe86f9e7d. - - - - - 1 changed file: - src/code/float-trap.lisp Changes: ===================================== src/code/float-trap.lisp ===================================== @@ -92,7 +92,7 @@ (setf (x87-floating-point-modes) x87-modes))) ) -#+(and sse2) +#+(and sse2 (not darwin)) (progn (defun floating-point-modes () ;; Combine the modes from the FPU and SSE2 units. Since the sse @@ -133,7 +133,7 @@ (setf (vm::x87-floating-point-modes) (ldb (byte 30 0) x87-modes))) new-mode)) -#+(and nil sse2 darwin) +#+(and sse2 darwin) (progn (defun floating-point-modes () ;; Get just the SSE2 mode bits. View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/b2c03d5dcb8ef100b932ddae... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/b2c03d5dcb8ef100b932ddae... You're receiving this email because of your account on gitlab.common-lisp.net.
participants (1)
-
Raymond Toy (@rtoy)