[commit: ghc] master: Remove obsolete `digitsTyConKey :: Unique` (96d0418)

git at git.haskell.org git at git.haskell.org
Sun Aug 17 11:24:07 UTC 2014


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

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/96d04186e00fe2202b9953688492bb370d818bf1/ghc

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

commit 96d04186e00fe2202b9953688492bb370d818bf1
Author: Herbert Valerio Riedel <hvr at gnu.org>
Date:   Sat Aug 16 20:31:21 2014 +0200

    Remove obsolete `digitsTyConKey :: Unique`
    
    This became dead with 1e87c0a6e485e1dbef8e9ed19191e54f6cdc54e0
    and was probably just missed.
    
    I plan to re-use the freed up `mkPreludeTyConUnique 23` slot soon
    for a new `bigNatTyConKey` (as part of the #9281 effort)


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

96d04186e00fe2202b9953688492bb370d818bf1
 compiler/prelude/PrelNames.lhs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/compiler/prelude/PrelNames.lhs b/compiler/prelude/PrelNames.lhs
index b2dec88..5757ba1 100644
--- a/compiler/prelude/PrelNames.lhs
+++ b/compiler/prelude/PrelNames.lhs
@@ -1328,7 +1328,7 @@ addrPrimTyConKey, arrayPrimTyConKey, arrayArrayPrimTyConKey, boolTyConKey, byteA
     floatPrimTyConKey, floatTyConKey, funTyConKey, intPrimTyConKey,
     intTyConKey, int8TyConKey, int16TyConKey, int32PrimTyConKey,
     int32TyConKey, int64PrimTyConKey, int64TyConKey,
-    integerTyConKey, digitsTyConKey,
+    integerTyConKey,
     listTyConKey, foreignObjPrimTyConKey, weakPrimTyConKey,
     mutableArrayPrimTyConKey, mutableArrayArrayPrimTyConKey, mutableByteArrayPrimTyConKey,
     orderingTyConKey, mVarPrimTyConKey, ratioTyConKey, rationalTyConKey,
@@ -1355,7 +1355,7 @@ int32TyConKey                           = mkPreludeTyConUnique 19
 int64PrimTyConKey                       = mkPreludeTyConUnique 20
 int64TyConKey                           = mkPreludeTyConUnique 21
 integerTyConKey                         = mkPreludeTyConUnique 22
-digitsTyConKey                          = mkPreludeTyConUnique 23
+
 listTyConKey                            = mkPreludeTyConUnique 24
 foreignObjPrimTyConKey                  = mkPreludeTyConUnique 25
 weakPrimTyConKey                        = mkPreludeTyConUnique 27



More information about the ghc-commits mailing list