summaryrefslogtreecommitdiff
path: root/compiler/deSugar/Desugar.hs
diff options
context:
space:
mode:
authorAndreas Klebinger <klebinger.andreas@gmx.at>2019-10-20 02:30:01 +0200
committerMarge Bot <ben+marge-bot@smart-cactus.org>2019-10-23 05:59:04 -0400
commit6beea836094383eea96b15e526f31b5426aea630 (patch)
treeeedb44be3fa4f86d085f3cfa2bb905b13cefccf4 /compiler/deSugar/Desugar.hs
parent9c1f0f7c384eb2e38911b9a9b083ecda0970a060 (diff)
downloadhaskell-6beea836094383eea96b15e526f31b5426aea630.tar.gz
Make dynflag argument for withTiming pure.
19 times out of 20 we already have dynflags in scope. We could just always use `return dflags`. But this is in fact not free. When looking at some STG code I noticed that we always allocate a closure for this expression in the heap. Clearly a waste in these cases. For the other cases we can either just modify the callsite to get dynflags or use the _D variants of withTiming I added which will use getDynFlags under the hood.
Diffstat (limited to 'compiler/deSugar/Desugar.hs')
-rw-r--r--compiler/deSugar/Desugar.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/deSugar/Desugar.hs b/compiler/deSugar/Desugar.hs
index 5df52c3df9..5ecc4da00e 100644
--- a/compiler/deSugar/Desugar.hs
+++ b/compiler/deSugar/Desugar.hs
@@ -114,7 +114,7 @@ deSugar hsc_env
= do { let dflags = hsc_dflags hsc_env
print_unqual = mkPrintUnqualified dflags rdr_env
- ; withTiming (pure dflags)
+ ; withTiming dflags
(text "Desugar"<+>brackets (ppr mod))
(const ()) $
do { -- Desugar the program