From 66a8e1b8861c4cc49fcb67bb9bab4c7fd5c31801 Mon Sep 17 00:00:00 2001
From: dtc <dtc>
Date: Sat, 26 Jul 1997 17:05:10 +0000
Subject: [PATCH] Correct the check for the fp-double-constant immediate
 constant SC.

---
 compiler/x86/vm.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/compiler/x86/vm.lisp b/compiler/x86/vm.lisp
index c59121517..5c34c2cee 100644
--- a/compiler/x86/vm.lisp
+++ b/compiler/x86/vm.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
- "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/vm.lisp,v 1.2 1997/03/29 10:49:43 dtc Exp $")
+ "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/vm.lisp,v 1.3 1997/07/26 17:05:10 dtc Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -420,7 +420,7 @@
      (when (or (eql value 0f0) (eql value 1f0))
        (sc-number-or-lose 'fp-single-constant *backend*)))
     (double-float
-     (when (or (eql value 0f0) (eql value 1f0))
+     (when (or (eql value 0d0) (eql value 1d0))
        (sc-number-or-lose 'fp-double-constant *backend*)))))
 
 
-- 
GitLab