From d70284c5ab69dddabc456d2cf009348d5e1860c6 Mon Sep 17 00:00:00 2001
From: dtc <dtc>
Date: Fri, 30 Apr 1999 11:54:53 +0000
Subject: [PATCH] Fix for the dependencies in the FNEG instruction, spotted by
 Ken Olum.

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

diff --git a/compiler/mips/insts.lisp b/compiler/mips/insts.lisp
index 416140dac..22b91ecaf 100644
--- a/compiler/mips/insts.lisp
+++ b/compiler/mips/insts.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/mips/insts.lisp,v 1.51 1997/08/23 16:00:13 pw Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/insts.lisp,v 1.52 1999/04/30 11:54:53 dtc Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -566,7 +566,7 @@
 (define-instruction fneg (segment format dst &optional (src dst))
   (:declare (type float-format format) (type tn dst src))
   (:printer float ((funct #b000111)) float-unop-printer)
-  (:dependencies (reads src) (reads dst))
+  (:dependencies (reads src) (writes dst))
   (:delay 0)
   (:emitter
    (emit-float-inst segment cop1-op 1 (float-format-value format)
-- 
GitLab