Stupid bug in call (car) of procedure get-instruction-info.
authorssmith <ssmith>
Thu, 12 Jan 1995 16:22:32 +0000 (16:22 +0000)
committerssmith <ssmith>
Thu, 12 Jan 1995 16:22:32 +0000 (16:22 +0000)
v8/src/compiler/machines/i386/lapopt.scm

index a783c24c99ab1b9a01fd8452a2bd9bc221319c8c..5ac0f00233fe82e4ffd140d582b5ed3c4e53ce2f 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/compiler/machines/i386/lapopt.scm,v 1.3 1995/01/12 16:16:21 ssmith Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/compiler/machines/i386/lapopt.scm,v 1.4 1995/01/12 16:22:32 ssmith Exp $
 
 Copyright (c) 1992 Massachusetts Institute of Technology
 
@@ -124,5 +124,5 @@ MIT in each case. |#
     (if (null? inst)
        (pp times)
        (loop (cdr inst)
-             (+ times (car get-instruction-info)))))
+             (+ times (car (get-instruction-info (car inst)))))))
   instructions)