X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=compiler%2FsimplCore%2FOccurAnal.lhs;h=4082fcc757a7a35d7eec4acf4fba6223d626bdae;hb=29e736b7089d535b53e3f02ef04d36331921e42a;hp=eee357cb7c94d36aa6d0b1867aa52b9d60065a9b;hpb=0e98e80cfd63c35d4f1705d9ec5a2037ef920f16;p=ghc-hetmet.git diff --git a/compiler/simplCore/OccurAnal.lhs b/compiler/simplCore/OccurAnal.lhs index eee357c..4082fcc 100644 --- a/compiler/simplCore/OccurAnal.lhs +++ b/compiler/simplCore/OccurAnal.lhs @@ -455,6 +455,11 @@ occAnal env (Note note body) = case occAnal env body of { (usage, body') -> (usage, Note note body') } + +occAnal env (Cast expr co) + = case occAnal env expr of { (usage, expr') -> + (usage, Cast expr' co) + } \end{code} \begin{code}