From 9ce0a900512b678333f8f5ec1a5d8d19e8e4b701 Mon Sep 17 00:00:00 2001 From: toy <toy> Date: Thu, 10 May 2001 18:38:23 +0000 Subject: [PATCH] Fix a typo: the optional :pt argument for the branch instruction was in the wrong spot. --- compiler/sparc/float.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/sparc/float.lisp b/compiler/sparc/float.lisp index 2b48da227..48ffe04ee 100644 --- a/compiler/sparc/float.lisp +++ b/compiler/sparc/float.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/float.lisp,v 1.31 2001/01/23 17:25:19 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/float.lisp,v 1.32 2001/05/10 18:38:23 toy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -2359,7 +2359,7 @@ (inst ,fcmp xi yi) (inst cmove (if not-p :eq :ne) true null-tn :fcc0) (inst cmp true null-tn) - (inst b (if not-p :eq :ne) target :icc :pt) + (inst b (if not-p :eq :ne) target :pt) (inst nop))))))) (frob single fcmps) (frob double fcmpd)) -- GitLab