We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b67a30 commit 820e565Copy full SHA for 820e565
gibbon-compiler/src/Gibbon/L0/ElimNewtype.hs
@@ -68,7 +68,7 @@ elimE cns tns dds e0 = case e0 of
68
MkProdE es -> MkProdE (f <$> es)
69
ProjE n e -> ProjE n (f e)
70
CaseE e1 [(s, [(var, t)], e2)]
71
- | S.member s cns -> LetE (var, [], g t, e1) (f e2)
+ | S.member s cns -> LetE (var, [], g t, f e1) (f e2)
72
CaseE e x -> CaseE (f e) ((\(c, v, e1) -> (c, v, f e1)) <$> x)
73
TimeIt e t b -> TimeIt (f e) (g t) b
74
WithArenaE var e -> WithArenaE var (f e)
0 commit comments