From 41b2252e0a99069ca590d70f48948de112d0d524 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Sat, 1 Dec 1990 22:34:45 +0000 Subject: [PATCH] Added a nop between fcmp and the fb insts. --- compiler/sparc/float.lisp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/compiler/sparc/float.lisp b/compiler/sparc/float.lisp index 75f839d27..2c45f8847 100644 --- a/compiler/sparc/float.lisp +++ b/compiler/sparc/float.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/float.lisp,v 1.1 1990/11/30 17:04:42 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/float.lisp,v 1.2 1990/12/01 22:34:45 wlott Exp $ ;;; ;;; This file contains floating point support for the MIPS. ;;; @@ -198,6 +198,7 @@ (ecase format (:single (inst fcmps x y)) (:double (inst fcmpd x y))) + (inst nop) (inst fb (if not-p nope yep) target) (inst nop))) -- GitLab