diff options
author | Gabor Greif <ggreif@gmail.com> | 2017-07-28 21:09:03 +0200 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2017-07-30 15:22:04 +0200 |
commit | f2c12c391e8c855b208bb9b99d85bbf56b9ebbae (patch) | |
tree | 86aae6fcc7887c934e590c6a42650bc58b5fa178 | |
parent | 969928602aa7b23bcaffe0dbfa885ffce87cea02 (diff) | |
download | haskell-f2c12c391e8c855b208bb9b99d85bbf56b9ebbae.tar.gz |
Add haddock markup
-rw-r--r-- | compiler/simplStg/StgCse.hs | 2 |
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] |