Moved call to GRAPH/INTERESTING to before call to GRAPH/CLEANUP!
authorStephen Adams <edu/mit/csail/zurich/adams>
Mon, 1 May 1995 03:36:18 +0000 (03:36 +0000)
committerStephen Adams <edu/mit/csail/zurich/adams>
Mon, 1 May 1995 03:36:18 +0000 (03:36 +0000)
v8/src/compiler/midend/dataflow.scm

index 9aef63d1b24172fb721339668851bb3df67ea492..0afa63d34d9c446d1789fd0f464643f90042b01a 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: dataflow.scm,v 1.13 1995/04/30 17:22:37 adams Exp $
+$Id: dataflow.scm,v 1.14 1995/05/01 03:36:18 adams Exp $
 
 Copyright (c) 1994 Massachusetts Institute of Technology
 
@@ -91,6 +91,8 @@ MIT in each case. |#
             (lambda ()
               (graph/initialize-links! graph)
               (graph/dataflow! graph)
+              (if (graph/interesting? graph)
+                  (graph/display-statistics! graph))
               (graph/cleanup! graph)))
 
            (graph/substitite-simple-constants
@@ -98,8 +100,6 @@ MIT in each case. |#
            ;;(if compiler:guru?
            ;;  (graph/look-for-interesting-nodes graph))
            (graph/compiled-procedure-reductions graph)
-           (if (graph/interesting? graph)
-               (graph/display-statistics! graph))
 
            graph)))))