Fixed errant paren.
authorStephen Adams <edu/mit/csail/zurich/adams>
Tue, 5 Sep 1995 18:48:37 +0000 (18:48 +0000)
committerStephen Adams <edu/mit/csail/zurich/adams>
Tue, 5 Sep 1995 18:48:37 +0000 (18:48 +0000)
v8/src/compiler/midend/dataflow.scm

index 9e69aa7c4a6105a64c23372d437e767afc54f48a..a83ced1f125d41c7e5ddc26838100042064e500c 100644 (file)
@@ -1,8 +1,8 @@
 #| -*-Scheme-*-
 
-$Id: dataflow.scm,v 1.19 1995/08/19 22:43:34 adams Exp $
+$Id: dataflow.scm,v 1.20 1995/09/05 18:48:37 adams Exp $
 
-Copyright (c) 1994 Massachusetts Institute of Technology
+Copyright (c) 1994-1995 Massachusetts Institute of Technology
 
 This material was developed by the Scheme project at the Massachusetts
 Institute of Technology, Department of Electrical Engineering and
@@ -1465,7 +1465,7 @@ MIT in each case. |#
 (define (graph/dataflow! graph)
   (graph/for-each-node graph
     (lambda (node) (set-node/values! node 'NOT-CACHED)))
-  (graph/for-each-node graph node/initialize-cache!)))
+  (graph/for-each-node graph node/initialize-cache!)
   ;; Trivial closures need to
   (graph/initialize-closure-procedures! graph)
   (let ((queue  (queue/make)))