Change definition of NOP instruction to match that used by MIPS
authorChris Hanson <org/chris-hanson/cph>
Fri, 13 Mar 1992 11:04:26 +0000 (11:04 +0000)
committerChris Hanson <org/chris-hanson/cph>
Fri, 13 Mar 1992 11:04:26 +0000 (11:04 +0000)
compilers.  Otherwise machine-language debuggers like GDB won't show
this instruction as a NOP.

v7/src/compiler/machines/mips/instr1.scm

index d61252f5abf0c784aa4071961ffea2a9d053ceaf..8b272b8add47c4962419c834d6577a97d5967125 100644 (file)
@@ -1,8 +1,8 @@
 #| -*-Scheme-*-
 
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/compiler/machines/mips/instr1.scm,v 1.4 1991/08/21 04:11:46 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/compiler/machines/mips/instr1.scm,v 1.5 1992/03/13 11:04:26 cph Exp $
 
-Copyright (c) 1987-91 Massachusetts Institute of Technology
+Copyright (c) 1987-92 Massachusetts Institute of Technology
 
 This material was developed by the Scheme project at the Massachusetts
 Institute of Technology, Department of Electrical Engineering and
@@ -356,6 +356,6 @@ MIT in each case. |#
             (16 label BLOCK-OFFSET)))))
 
 (define-instruction NOP
-  ;; ADDI 0, 0
+  ;; (SLL 0 0 0)
   (()
-   (LONG (6 8) (5 0) (5 0) (16 0))))
\ No newline at end of file
+   (LONG (6 0) (5 0) (5 0) (5 0) (5 0) (6 0))))
\ No newline at end of file