StgOpApp (StgPrimOp op) args' res_ty
-- A call to some primitive Cmm function.
- FCallId (CCall (CCallSpec (StaticTarget lbl (Just pkgId) True) PrimCallConv _))
+ FCallId (CCall (CCallSpec (StaticTarget _ lbl (Just pkgId) True)
+ PrimCallConv _))
-> ASSERT( saturated )
StgOpApp (StgPrimCallOp (PrimCall lbl pkgId)) args' res_ty
fmap = liftM
instance Applicative LneM where
- pure = return
+ pure = returnLne
(<*>) = ap
instance Monad LneM where
- return = returnLne
+ return = pure
(>>=) = thenLne
instance MonadFix LneM where