Fix parenthesis bug.
authorGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Sun, 14 Feb 1993 22:14:09 +0000 (22:14 +0000)
committerGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Sun, 14 Feb 1993 22:14:09 +0000 (22:14 +0000)
v7/src/compiler/machines/spectrum/lapopt.scm

index eaea0af0e5697c8aeb8dd9c5eaef4e7c1ae452c0..a547591a97fedbadd06c8762fbd827d59c53067c 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: lapopt.scm,v 1.4 1993/02/14 22:02:38 gjr Exp $
+$Id: lapopt.scm,v 1.5 1993/02/14 22:14:09 gjr Exp $
 
 Copyright (c) 1991-1993 Massachusetts Institute of Technology
 
@@ -294,7 +294,7 @@ MIT in each case. |#
           (let* ((next (find-or-label (cdr instrs)))
                  (next* (and next (find-non-label (cdr next)))))
             (if (and next
-                     (memq (instruction-type (car next) '(MEMORY ALU)))
+                     (memq (instruction-type (car next)) '(MEMORY ALU))
                      (not (skips? (car next)))
                      (or (not next*)
                          (not (skips? (car next*)))))