We should not use XGenerics in ghc-prim, for now at least.
authorjpm@cs.uu.nl <unknown>
Fri, 4 Feb 2011 13:52:44 +0000 (13:52 +0000)
committerjpm@cs.uu.nl <unknown>
Fri, 4 Feb 2011 13:52:44 +0000 (13:52 +0000)
GHC/Generics.hs
GHC/Ordering.hs
GHC/Tuple.hs
GHC/Types.hs
GHC/Unit.hs

index c1b962d..9dde8b1 100644 (file)
@@ -21,6 +21,7 @@ data (:*:) a b = a :*: b
 {-# OPTIONS_GHC -XTypeOperators          #-}
 {-# OPTIONS_GHC -XKindSignatures         #-}
 {-# OPTIONS_GHC -XFunctionalDependencies #-}
+{-# OPTIONS_GHC -XNoGenerics             #-}
 
 module GHC.Generics  (
   -- * Generic representation types
index ebc1e23..95831de 100644 (file)
@@ -1,5 +1,6 @@
 
 {-# OPTIONS_GHC -XNoImplicitPrelude #-}
+{-# OPTIONS_GHC -XNoGenerics        #-}
 
 module GHC.Ordering where
 
index 01ece26..334275a 100644 (file)
@@ -1,4 +1,5 @@
 {-# OPTIONS_GHC -XNoImplicitPrelude #-}
+{-# OPTIONS_GHC -XNoGenerics        #-}
 -----------------------------------------------------------------------------
 -- |
 -- Module      :  GHC.Tuple
index 0d7d7f8..ca63c31 100644 (file)
@@ -15,6 +15,7 @@
 -----------------------------------------------------------------------------
 
 {-# OPTIONS_GHC -XNoImplicitPrelude #-}
+{-# OPTIONS_GHC -XNoGenerics        #-}
 
 module GHC.Types (Bool(..), Char(..), Int(..), Float(..), Double(..), IO(..)) where
 
index 09ebe73..976881b 100644 (file)
@@ -1,5 +1,6 @@
 
 {-# OPTIONS_GHC -XNoImplicitPrelude #-}
+{-# OPTIONS_GHC -XNoGenerics        #-}
 
 module GHC.Unit where