From 2c0188fca52f73de0d97a7f03bc42f133807126f Mon Sep 17 00:00:00 2001 From: Roman Leshchinskiy Date: Wed, 4 Jul 2007 05:56:52 +0000 Subject: [PATCH] Vectorise unlifted and tuple tycons --- compiler/vectorise/Vectorise.hs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/compiler/vectorise/Vectorise.hs b/compiler/vectorise/Vectorise.hs index 648f0ab..0bf4f66 100644 --- a/compiler/vectorise/Vectorise.hs +++ b/compiler/vectorise/Vectorise.hs @@ -204,7 +204,9 @@ paArgType' ty k vectTyCon :: TyCon -> VM TyCon vectTyCon tc - | isFunTyCon tc = builtin closureTyCon + | isFunTyCon tc = builtin closureTyCon + | isBoxedTupleTyCon tc = return tc + | isUnLiftedTyCon tc = return tc | otherwise = do r <- lookupTyCon tc case r of -- 1.7.10.4