Skip to content
Snippets Groups Projects
Commit c7a3c69f authored by rtoy's avatar rtoy
Browse files

Use the fpu_mode_t enum when writing out the fpu mode word to the

core.
parent a1678487
Branches abcl-1.9.2
No related tags found
No related merge requests found
/*
$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
......
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