From: Christiaan Baaij Date: Thu, 23 Jul 2009 21:18:35 +0000 (+0200) Subject: Remove NoGenerics pragma, as the ghc bug 3391 is now fixed X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fmaster-project%2Fc%CE%BBash.git;a=commitdiff_plain;h=d30d9fe36698d9d9b5e44099fba9ba090e54064f Remove NoGenerics pragma, as the ghc bug 3391 is now fixed --- diff --git "a/c\316\273ash/CLasH/Normalize/NormalizeTypes.hs" "b/c\316\273ash/CLasH/Normalize/NormalizeTypes.hs" index 80d75fc..90589f8 100644 --- "a/c\316\273ash/CLasH/Normalize/NormalizeTypes.hs" +++ "b/c\316\273ash/CLasH/Normalize/NormalizeTypes.hs" @@ -1,4 +1,4 @@ -{-# LANGUAGE TemplateHaskell, NoGenerics #-} +{-# LANGUAGE TemplateHaskell #-} module CLasH.Normalize.NormalizeTypes where diff --git "a/c\316\273ash/CLasH/Translator/TranslatorTypes.hs" "b/c\316\273ash/CLasH/Translator/TranslatorTypes.hs" index 2b8777f..0ab3b87 100644 --- "a/c\316\273ash/CLasH/Translator/TranslatorTypes.hs" +++ "b/c\316\273ash/CLasH/Translator/TranslatorTypes.hs" @@ -2,7 +2,7 @@ -- Simple module providing some types used by Translator. These are in a -- separate module to prevent circular dependencies in Pretty for example. -- -{-# LANGUAGE TemplateHaskell, NoGenerics #-} +{-# LANGUAGE TemplateHaskell #-} module CLasH.Translator.TranslatorTypes where import qualified Control.Monad.Trans.State as State diff --git "a/c\316\273ash/CLasH/VHDL/VHDLTypes.hs" "b/c\316\273ash/CLasH/VHDL/VHDLTypes.hs" index e3e9ffb..52adab7 100644 --- "a/c\316\273ash/CLasH/VHDL/VHDLTypes.hs" +++ "b/c\316\273ash/CLasH/VHDL/VHDLTypes.hs" @@ -1,7 +1,7 @@ -- -- Some types used by the VHDL module. -- -{-# LANGUAGE TemplateHaskell, NoGenerics #-} +{-# LANGUAGE TemplateHaskell #-} module CLasH.VHDL.VHDLTypes where -- Standard imports