From c7a3c69f73333e0d819be58aced3b07615d42f31 Mon Sep 17 00:00:00 2001 From: rtoy <rtoy> Date: Mon, 20 Oct 2008 18:12:43 +0000 Subject: [PATCH] Use the fpu_mode_t enum when writing out the fpu mode word to the core. --- lisp/save.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lisp/save.c b/lisp/save.c index 179568bef..bde26ecec 100644 --- a/lisp/save.c +++ b/lisp/save.c @@ -1,6 +1,6 @@ /* - $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/save.c,v 1.19.8.2 2008/10/06 16:32:31 rtoy Exp $ + $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/save.c,v 1.19.8.2.2.1 2008/10/20 18:12:43 rtoy Exp $ This code was written as part of the CMU Common Lisp project at Carnegie Mellon University, and has been placed in the public domain. @@ -156,9 +156,9 @@ save(char *filename, lispobj init_function) putw(version, file); #ifdef i386 #ifdef FEATURE_SSE2 - putw(1, file); + putw(SSE2, file); #else - putw(0, file); + putw(X87, file); #endif #endif -- GitLab