diff --git a/compiler/x86/insts.lisp b/compiler/x86/insts.lisp index f3d2ff48ca7e83dec3a5d7373bef934b7fd6b8ca..a175126b23d005bfa93fb04988c5ec9b2827332c 100644 --- a/compiler/x86/insts.lisp +++ b/compiler/x86/insts.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/insts.lisp,v 1.10 1997/09/29 16:51:18 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/insts.lisp,v 1.11 1997/10/18 04:09:50 dtc Exp $") ;;; ;;; ********************************************************************** ;;; @@ -2434,7 +2434,6 @@ ;;; (define-instruction fstp (segment dest) (:printer floating-point ((op '(#b001 #b011)))) - (:printer floating-point-fp ((op '(#b101 #b011)))) (:emitter (cond ((fp-reg-tn-p dest) (emit-byte segment #b11011101) @@ -2443,6 +2442,19 @@ (emit-byte segment #b11011001) (emit-fp-op segment dest #b011))))) ;;; +;;; store double from st(0) and pop +;;; +(define-instruction fstpd (segment dest) + (:printer floating-point ((op '(#b101 #b011)))) + (:printer floating-point-fp ((op '(#b101 #b011)))) + (:emitter + (cond ((fp-reg-tn-p dest) + (emit-byte segment #b11011101) + (emit-fp-op segment dest #b011)) + (t + (emit-byte segment #b11011101) + (emit-fp-op segment dest #b011))))) +;;; ;;; decrement stack-top pointer ;;; (define-instruction fdecstp (segment)