From 2c2d669dbc7b8f456c694cf9aaa2c207834f338c Mon Sep 17 00:00:00 2001
From: rswindells <rswindells>
Date: Fri, 16 Oct 2009 13:38:02 +0000
Subject: [PATCH] Test fpu_mode instead of calling arch_support_sse2() to match
 Linux and FreeBSD.

---
 lisp/NetBSD-os.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/NetBSD-os.c b/lisp/NetBSD-os.c
index 714d45dde..903f80a89 100644
--- a/lisp/NetBSD-os.c
+++ b/lisp/NetBSD-os.c
@@ -15,7 +15,7 @@
  * Frobbed for OpenBSD by Pierre R. Mai, 2001.
  * Frobbed for NetBSD by Pierre R. Mai, 2002.
  *
- * $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/NetBSD-os.c,v 1.12 2009/08/30 19:17:55 rswindells Rel $
+ * $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/NetBSD-os.c,v 1.13 2009/10/16 13:38:02 rswindells Exp $
  *
  */
 
@@ -379,7 +379,7 @@ restore_fpu(ucontext_t *scp)
     DPRINTF(0, (stderr, "restore_fpu:  cw = %08x\n", (int)cw));
     __asm__ __volatile__ ("fldcw %0"::"m"(*&cw));
 
-    if (arch_support_sse2()) {
+    if (fpu_mode == SSE2) {
 	u_int32_t mxcsr = env_xmm->en_mxcsr;
 
 	DPRINTF(0, (stderr, "restore_fpu:  mxcsr (raw) = %04x\n", mxcsr));
-- 
GitLab