From: Stephen Adams Date: Mon, 1 May 1995 03:36:18 +0000 (+0000) Subject: Moved call to GRAPH/INTERESTING to before call to GRAPH/CLEANUP! X-Git-Tag: 20090517-FFI~6362 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=6bec4b5aa33ce09fd777eea81a1b187f2bcfc744;p=mit-scheme.git Moved call to GRAPH/INTERESTING to before call to GRAPH/CLEANUP! --- diff --git a/v8/src/compiler/midend/dataflow.scm b/v8/src/compiler/midend/dataflow.scm index 9aef63d1b..0afa63d34 100644 --- a/v8/src/compiler/midend/dataflow.scm +++ b/v8/src/compiler/midend/dataflow.scm @@ -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)))))