Move VectCore to Vectorise tree
[ghc-hetmet.git] / compiler / vectorise / Vectorise / Vect.hs
similarity index 92%
rename from compiler/vectorise/VectCore.hs
rename to compiler/vectorise/Vectorise/Vect.hs
index 39341ef..6dcffa2 100644 (file)
@@ -1,22 +1,24 @@
 
 -- | Simple vectorised constructors and projections.
-module VectCore (
-  Vect, VVar, VExpr, VBind,
-
-  vectorised, lifted,
-  mapVect,
-
-  vVarType,
-
-  vNonRec, vRec,
-
-  vVar, vType, vNote, vLet,
-  vLams, vLamsWithoutLC, vVarApps,
-  vCaseDEFAULT
+module Vectorise.Vect (
+       Vect, VVar, VExpr, VBind,
+
+       vectorised,
+       lifted,
+       mapVect,
+
+       vVarType,
+       vNonRec,
+       vRec,
+       vVar,
+       vType,
+       vNote,
+       vLet,
+       vLams,
+       vLamsWithoutLC,
+       vVarApps,
+       vCaseDEFAULT
 ) where
-
-#include "HsVersions.h"
-
 import CoreSyn
 import Type           ( Type )
 import Var