This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "CMU Common Lisp".
The branch, master has been updated via 74c59b7679c19e07fa0866c4aeb1d652856a7ed9 (commit) from 8895c013f61f55b8e561e0efa56962038b578213 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 74c59b7679c19e07fa0866c4aeb1d652856a7ed9 Author: Raymond Toy rtoy@google.com Date: Fri Feb 24 09:22:58 2012 -0800
Oops. Always write the fpu mode to the core file on x86. (Previously only wrote the mode when compiling with sse2.)
diff --git a/src/compiler/generic/new-genesis.lisp b/src/compiler/generic/new-genesis.lisp index ee417f4..9523d41 100644 --- a/src/compiler/generic/new-genesis.lisp +++ b/src/compiler/generic/new-genesis.lisp @@ -2928,9 +2928,8 @@
;; For x86, identify the core as using either x87 or sse2 ;; instructions. - (cond ((and (eql (c:backend-fasl-file-implementation c:*backend*) - c:x86-fasl-file-implementation) - (c:backend-featurep :sse2)) + (cond ((eql (c:backend-fasl-file-implementation c:*backend*) + c:x86-fasl-file-implementation) (write-long 4) (write-long version) ;; See the definition of fpu_mode_t in lisp.h for correct
-----------------------------------------------------------------------
Summary of changes: src/compiler/generic/new-genesis.lisp | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-)
hooks/post-receive