X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=compiler%2Fvectorise%2FVectCore.hs;h=cdae4dd9968a17ce6054ede5096828d961402276;hb=3a90968fac18bbf931420afff6ef866614ecdd7f;hp=c98c03c610a874fa6b24ed6e568c69ecd044db38;hpb=39a924f10cb4fed95d8fc0caf209876a693ab1f9;p=ghc-hetmet.git diff --git a/compiler/vectorise/VectCore.hs b/compiler/vectorise/VectCore.hs index c98c03c..cdae4dd 100644 --- a/compiler/vectorise/VectCore.hs +++ b/compiler/vectorise/VectCore.hs @@ -10,13 +10,12 @@ module VectCore ( vVar, vType, vNote, vLet, vLams, vLamsWithoutLC, vVarApps, - vCaseDEFAULT, vInlineMe + vCaseDEFAULT ) where #include "HsVersions.h" import CoreSyn -import CoreUtils ( mkInlineMe ) import Type ( Type ) import Var @@ -83,6 +82,3 @@ vCaseDEFAULT (vscrut, lscrut) (vbndr, lbndr) vty lty (vbody, lbody) where mkDEFAULT e = [(DEFAULT, [], e)] -vInlineMe :: VExpr -> VExpr -vInlineMe (vexpr, lexpr) = (mkInlineMe vexpr, mkInlineMe lexpr) -