From c50860ee4a2267aac858403bf9ee8a72000fc21a Mon Sep 17 00:00:00 2001
From: dtc <dtc>
Date: Thu, 3 Feb 2000 15:35:59 +0000
Subject: [PATCH] Fix for the fexp VOP. Prior patch had incorrectly converted a
 'fstp fr1' into a fp-pop which is a 'fstp fr0'. Noted by Peter Van Eynde.

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

diff --git a/compiler/x86/float.lisp b/compiler/x86/float.lisp
index 8038f2a86..7e176afcf 100644
--- a/compiler/x86/float.lisp
+++ b/compiler/x86/float.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/float.lisp,v 1.33 1999/12/05 16:23:07 dtc Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/float.lisp,v 1.34 2000/02/03 15:35:59 dtc Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -2494,7 +2494,7 @@
      (inst fldz)
      (inst jmp-short DONE)
      NOINFNAN
-     (fp-pop)
+     (inst fstp fr1)
      (inst fldl2e)
      (inst fmul fr1)
      ;; Now fr0=x log2(e)
-- 
GitLab