mkIfThenElse
Max Bolingbroke
batterseapower at hotmail.com
Sun Mar 22 14:15:18 EDT 2009
It moved to MkCore:
mkIfThenElse :: CoreExpr -> CoreExpr -> CoreExpr -> CoreExpr
mkIfThenElse guard then_expr else_expr
-- Not going to be refining, so okay to take the type of the "then" clause
= mkWildCase guard boolTy (exprType then_expr)
[ (DataAlt falseDataCon, [], else_expr), -- Increasing order of tag!
(DataAlt trueDataCon, [], then_expr) ]
Cheers,
Max
2009/3/22 Colin Paul Adams <colin at colina.demon.co.uk>:
> This function has disappeard from CoreUtils in recent release(s). I am
> portfing some code which uses this function (just once). What should I
> be looking to use instead?
> --
> Colin Adams
> Preston Lancashire
> _______________________________________________
> Glasgow-haskell-users mailing list
> Glasgow-haskell-users at haskell.org
> http://www.haskell.org/mailman/listinfo/glasgow-haskell-users
>
>
More information about the Glasgow-haskell-users
mailing list