[commit: ghc] wip/T14152: Run exitification before the main simplifier (b094ea8)
git at git.haskell.org
git at git.haskell.org
Fri Oct 27 01:30:31 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/T14152
Link : http://ghc.haskell.org/trac/ghc/changeset/b094ea8702b6e65304176c7ab42ba539fcb93ccd/ghc
>---------------------------------------------------------------
commit b094ea8702b6e65304176c7ab42ba539fcb93ccd
Author: Joachim Breitner <mail at joachim-breitner.de>
Date: Thu Oct 26 09:21:20 2017 -0400
Run exitification before the main simplifier
(This is series of commit to measure and optimize placement.)
>---------------------------------------------------------------
b094ea8702b6e65304176c7ab42ba539fcb93ccd
compiler/simplCore/SimplCore.hs | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/compiler/simplCore/SimplCore.hs b/compiler/simplCore/SimplCore.hs
index 45823d4..10115c4 100644
--- a/compiler/simplCore/SimplCore.hs
+++ b/compiler/simplCore/SimplCore.hs
@@ -282,10 +282,10 @@ getCoreToDo dflags
-- StaticPtrTable.
static_ptrs_float_outwards,
- runWhen exitification CoreDoExitify,
-
simpl_phases,
+ runWhen exitification CoreDoExitify,
+
-- Phase 0: allow all Ids to be inlined now
-- This gets foldr inlined before strictness analysis
More information about the ghc-commits
mailing list