diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-11-09 12:00:37 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-11-19 11:53:55 -0500 |
commit | a8adb5b4d782b6166160a80adbf6c59452dc964d (patch) | |
tree | d9fcb911a5332f3c40605b42fa474bcc64b07fad | |
parent | 88013b784d77c069b7c083244d04a59ac2da2895 (diff) | |
download | haskell-a8adb5b4d782b6166160a80adbf6c59452dc964d.tar.gz |
desugar: Drop stale Note [Matching seqId]
The need for this note vanished in
eae703aa60f41fd232be5478e196b661839ec3de.
-rw-r--r-- | compiler/deSugar/DsBinds.hs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/compiler/deSugar/DsBinds.hs b/compiler/deSugar/DsBinds.hs index 6498ed7f6f..20a3b23e96 100644 --- a/compiler/deSugar/DsBinds.hs +++ b/compiler/deSugar/DsBinds.hs @@ -1073,12 +1073,6 @@ simplOptExpr occurrence-analyses and simplifies the LHS: otherwise we don't match when given an argument like augment (\a. h a a) (build h) -Note [Matching seqId] -~~~~~~~~~~~~~~~~~~~ -The desugarer turns (seq e r) into (case e of _ -> r), via a special-case hack -and this code turns it back into an application of seq! -See Note [Rules for seq] in MkId for the details. - Note [Unused spec binders] ~~~~~~~~~~~~~~~~~~~~~~~~~~ Consider |