[commit: ghc] wip/T9858-typeable-ben2: Fix missing PrelNames (e6ae13a)

git at git.haskell.org git at git.haskell.org
Tue Sep 22 21:57:50 UTC 2015


Repository : ssh://git@git.haskell.org/ghc

On branch  : wip/T9858-typeable-ben2
Link       : http://ghc.haskell.org/trac/ghc/changeset/e6ae13ac233fbdfea2102852f43f5cf84766a51c/ghc

>---------------------------------------------------------------

commit e6ae13ac233fbdfea2102852f43f5cf84766a51c
Author: Ben Gamari <ben at smart-cactus.org>
Date:   Tue Sep 22 23:58:46 2015 +0200

    Fix missing PrelNames


>---------------------------------------------------------------

e6ae13ac233fbdfea2102852f43f5cf84766a51c
 compiler/prelude/PrelNames.hs | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/compiler/prelude/PrelNames.hs b/compiler/prelude/PrelNames.hs
index 7cda68d..a3e3742 100644
--- a/compiler/prelude/PrelNames.hs
+++ b/compiler/prelude/PrelNames.hs
@@ -208,7 +208,9 @@ basicKnownKeyNames
         typeRepTyConName,
         mkPolyTyConAppName,
         mkAppTyName,
+        typeRepIdName,
         typeLitTypeRepName,
+        trTyConDataConName, trModuleDataConName, trNameSDataConName,
 
         -- Dynamic
         toDynName,
@@ -659,11 +661,6 @@ showString_RDR          = varQual_RDR gHC_SHOW (fsLit "showString")
 showSpace_RDR           = varQual_RDR gHC_SHOW (fsLit "showSpace")
 showParen_RDR           = varQual_RDR gHC_SHOW (fsLit "showParen")
 
-typeRep_RDR, mkTyCon_RDR, mkTyConApp_RDR :: RdrName
-typeRep_RDR       = varQual_RDR tYPEABLE_INTERNAL    (fsLit "typeRep#")
-mkTyCon_RDR       = varQual_RDR tYPEABLE_INTERNAL    (fsLit "mkTyCon")
-mkTyConApp_RDR    = varQual_RDR tYPEABLE_INTERNAL    (fsLit "mkTyConApp")
-
 undefined_RDR :: RdrName
 undefined_RDR = varQual_RDR gHC_ERR (fsLit "undefined")
 



More information about the ghc-commits mailing list