summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2017-07-28 21:09:03 +0200
committerGabor Greif <ggreif@gmail.com>2017-07-30 15:22:04 +0200
commitf2c12c391e8c855b208bb9b99d85bbf56b9ebbae (patch)
tree86aae6fcc7887c934e590c6a42650bc58b5fa178
parent969928602aa7b23bcaffe0dbfa885ffce87cea02 (diff)
downloadhaskell-f2c12c391e8c855b208bb9b99d85bbf56b9ebbae.tar.gz
Add haddock markup
-rw-r--r--compiler/simplStg/StgCse.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/simplStg/StgCse.hs b/compiler/simplStg/StgCse.hs
index ac8e82007e..f3e781b886 100644
--- a/compiler/simplStg/StgCse.hs
+++ b/compiler/simplStg/StgCse.hs
@@ -137,7 +137,7 @@ data CseEnv = CseEnv
-- * If we remove `let x = Con z` because `let y = Con z` is in scope,
-- we note this here as x ↦ y.
, ce_bndrMap :: IdEnv OutId
- -- If we come across a case expression case x as b of … with a trivial
+ -- ^ If we come across a case expression case x as b of … with a trivial
-- binder, we add b ↦ x to this.
-- This map is *only* used when looking something up in the ce_conAppMap.
-- See Note [Trivial case scrutinee]