Skip to content
Snippets Groups Projects
Forked from Glasgow Haskell Compiler / GHC
5498 commits behind the upstream repository.
user avatar
Sylvain Henry authored
StgCse can revive dead binders:

  case foo of dead { Foo x y -> Foo x y; ... }
  ===>
  case foo of dead { Foo x y -> dead; ... } -- dead is no longer dead

So we must zap occurrence information on case binders.

Fix #14895 and #24233
7ac6006e
History