From: simonpj Date: Thu, 2 Nov 2000 10:17:49 +0000 (+0000) Subject: [project @ 2000-11-02 10:17:49 by simonpj] X-Git-Tag: Approximately_9120_patches~3446 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=ff5cab2bc5c17672796c82d3ad13a38402ccc32f;p=ghc-hetmet.git [project @ 2000-11-02 10:17:49 by simonpj] Omitted do-nothing case in SimplCore --- 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)