From ff5cab2bc5c17672796c82d3ad13a38402ccc32f Mon Sep 17 00:00:00 2001 From: simonpj Date: Thu, 2 Nov 2000 10:17:49 +0000 Subject: [PATCH] [project @ 2000-11-02 10:17:49 by simonpj] Omitted do-nothing case in SimplCore --- ghc/compiler/simplCore/SimplCore.lhs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ghc/compiler/simplCore/SimplCore.lhs b/ghc/compiler/simplCore/SimplCore.lhs index 15257e7..2bb6b93 100644 --- a/ghc/compiler/simplCore/SimplCore.lhs +++ b/ghc/compiler/simplCore/SimplCore.lhs @@ -132,6 +132,8 @@ doCorePass dfs rb us binds CoreDoUSPInf = _scc_ "CoreUsageSPInf" noStats dfs (doUsageSPInf dfs us binds) doCorePass dfs rb us binds CoreDoGlomBinds = noStats dfs (glomBinds dfs binds) +doCorePass dfs rb us binds CoreDoNothing + = noStats dfs (return binds) printCore binds = do dumpIfSet True "Print Core" (pprCoreBindings binds) -- 1.7.10.4