From: jpm@cs.uu.nl Date: Wed, 27 Oct 2010 12:30:53 +0000 (+0000) Subject: Follow GHC.Types changes X-Git-Tag: ghc-darcs-git-switchover~5 X-Git-Url: http://git.megacz.com/?p=ghc-prim.git;a=commitdiff_plain;h=f7c04d870a2193e003fdb730c99748253a8fac14 Follow GHC.Types changes --- diff --git a/GHC/Bool.hs-boot b/GHC/Bool.hs-boot deleted file mode 100644 index aab8f17..0000000 --- a/GHC/Bool.hs-boot +++ /dev/null @@ -1,7 +0,0 @@ - -{-# OPTIONS_GHC -XNoImplicitPrelude #-} - -module GHC.Bool where - -data Bool = False | True - diff --git a/GHC/Generics.hs b/GHC/Generics.hs index 8b0efef..7f5b86f 100644 --- a/GHC/Generics.hs +++ b/GHC/Generics.hs @@ -45,8 +45,7 @@ module GHC.Generics ( -} ) where -import {-# SOURCE #-} GHC.Types -- ([](..), Int, Char) -import {-# SOURCE #-} GHC.Bool (Bool(..)) +import {-# SOURCE #-} GHC.Types -------------------------------------------------------------------------------- -- Representation types diff --git a/GHC/Types.hs-boot b/GHC/Types.hs-boot index 25f88c4..be0e3bd 100644 --- a/GHC/Types.hs-boot +++ b/GHC/Types.hs-boot @@ -13,3 +13,5 @@ data Char = C# Char# data Int = I# Int# +data Bool = False | True +