[commit: ghc] wip/faster-stats: Silly (b94eeb5)
git at git.haskell.org
git at git.haskell.org
Thu Jul 6 02:23:26 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/faster-stats
Link : http://ghc.haskell.org/trac/ghc/changeset/b94eeb5cd1fadcc2a2df90e8e128ab0a08f68cfd/ghc
>---------------------------------------------------------------
commit b94eeb5cd1fadcc2a2df90e8e128ab0a08f68cfd
Author: David Feuer <David.Feuer at gmail.com>
Date: Wed Jul 5 22:24:10 2017 -0400
Silly
>---------------------------------------------------------------
b94eeb5cd1fadcc2a2df90e8e128ab0a08f68cfd
compiler/coreSyn/CoreStats.hs | 1 +
1 file changed, 1 insertion(+)
diff --git a/compiler/coreSyn/CoreStats.hs b/compiler/coreSyn/CoreStats.hs
index 5827f16..afcc5e5 100644
--- a/compiler/coreSyn/CoreStats.hs
+++ b/compiler/coreSyn/CoreStats.hs
@@ -37,6 +37,7 @@ instance Outputable CoreStats where
text "joins:" <+> intWithCommas i5 <> char '/' <>
intWithCommas (i4 + i5) ])
+
plusCS :: CoreStats -> CoreStats -> CoreStats
plusCS (CS { cs_tm = p1, cs_ty = q1, cs_co = r1, cs_vb = v1, cs_jb = j1 })
(CS { cs_tm = p2, cs_ty = q2, cs_co = r2, cs_vb = v2, cs_jb = j2 })
More information about the ghc-commits
mailing list