summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAustin Seipp <austin@well-typed.com>2013-09-26 01:42:51 -0500
committerAustin Seipp <austin@well-typed.com>2013-09-27 00:16:28 -0500
commitf71275155da69339a58eb470d59f5cc5d1a5071c (patch)
treeab6e9c3cce54d4d23a1db932957a30f983b07534
parent17112084f87d7ccebf639068b85948190d52c6ba (diff)
downloadhaskell-f71275155da69339a58eb470d59f5cc5d1a5071c.tar.gz
Make typeRep_RDR use typeRep# instead of typeRep
Authored-by: Edward Kmett <ekmett@gmail.com> Authored-by: Austin Seipp <austin@well-typed.com> Signed-off-by: Austin Seipp <austin@well-typed.com>
-rw-r--r--compiler/prelude/PrelNames.lhs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/prelude/PrelNames.lhs b/compiler/prelude/PrelNames.lhs
index 6b0c432367..a176cb6e75 100644
--- a/compiler/prelude/PrelNames.lhs
+++ b/compiler/prelude/PrelNames.lhs
@@ -636,7 +636,7 @@ showParen_RDR = varQual_RDR gHC_SHOW (fsLit "showParen")
typeRep_RDR, mkTyCon_RDR, mkTyConApp_RDR,
oldTypeOf_RDR, oldMkTyCon_RDR, oldMkTyConApp_RDR :: RdrName
-typeRep_RDR = varQual_RDR tYPEABLE_INTERNAL (fsLit "typeRep")
+typeRep_RDR = varQual_RDR tYPEABLE_INTERNAL (fsLit "typeRep#")
mkTyCon_RDR = varQual_RDR tYPEABLE_INTERNAL (fsLit "mkTyCon")
mkTyConApp_RDR = varQual_RDR tYPEABLE_INTERNAL (fsLit "mkTyConApp")
oldTypeOf_RDR = varQual_RDR oLDTYPEABLE_INTERNAL (fsLit "typeOf")