`load-dnw' returns a single instruction, not a list.
authorChris Hanson <org/chris-hanson/cph>
Mon, 8 Jun 1987 14:50:15 +0000 (14:50 +0000)
committerChris Hanson <org/chris-hanson/cph>
Mon, 8 Jun 1987 14:50:15 +0000 (14:50 +0000)
v7/src/compiler/machines/bobcat/lapgen.scm

index de2caf9f53f7a3e097b2efbd1cf72919389702c8..7c8fecc9d2f8d98cc00cc09fd81fff72500d22dd 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/compiler/machines/bobcat/lapgen.scm,v 1.177 1987/06/04 15:56:01 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/compiler/machines/bobcat/lapgen.scm,v 1.178 1987/06/08 14:50:15 cph Exp $
 
 Copyright (c) 1987 Massachusetts Institute of Technology
 
@@ -887,7 +887,7 @@ MIT in each case. |#
                      `((LEA (@PCR ,(cdar references)) (A 1))
                        ,@(if (null? (cdr references))
                              `((JSR ,entry:compiler-cache-variable))
-                             `(,@(load-dnw (length references) 1)
+                             `(,(load-dnw (length references) 1)
                                (JSR ,entry:compiler-cache-variable-multiple)))
                        ,@(make-external-label (generate-label))))
                ,@(if (null? uuo-links)
@@ -895,7 +895,7 @@ MIT in each case. |#
                      `((LEA (@PCR ,(cdar uuo-links)) (A 1))
                        ,@(if (null? (cdr uuo-links))
                              `((JSR ,entry:compiler-uuo-link))
-                             `(,@(load-dnw (length uuo-links) 1)
+                             `(,(load-dnw (length uuo-links) 1)
                                (JSR ,entry:compiler-uuo-link-multiple)))
                        ,@(make-external-label (generate-label)))))
              '())))))