summaryrefslogtreecommitdiff
path: root/compiler/prelude/TysPrim.hs
diff options
context:
space:
mode:
authorDavid Feuer <david.feuer@gmail.com>2018-10-04 13:52:23 -0400
committerBen Gamari <ben@smart-cactus.org>2018-10-04 22:27:54 -0400
commit228725747c3e493c36d6b6ad1034ca56581cb758 (patch)
treee22ffb0f30a5955b4cf483c653ddaf5d1f8691b4 /compiler/prelude/TysPrim.hs
parente5013a567b230018b5d39b562ce21faf54740d04 (diff)
downloadhaskell-228725747c3e493c36d6b6ad1034ca56581cb758.tar.gz
Stable name type role
Make the `StableName#` parameter phantom: There is actually never any reason to care about the type of the underlying object of a `StableName#`. The underlying object type shouldn't really even *be* a parameter. But at least we can mark it as phantom. Reviewers: hvr, bgamari, erikd, simonmar Reviewed By: simonmar Subscribers: ekmett, rwbarton, carter Differential Revision: https://phabricator.haskell.org/D5117
Diffstat (limited to 'compiler/prelude/TysPrim.hs')
-rw-r--r--compiler/prelude/TysPrim.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/prelude/TysPrim.hs b/compiler/prelude/TysPrim.hs
index c5af4a5121..4a69df8e3e 100644
--- a/compiler/prelude/TysPrim.hs
+++ b/compiler/prelude/TysPrim.hs
@@ -943,7 +943,7 @@ mkStablePtrPrimTy ty = TyConApp stablePtrPrimTyCon [ty]
-}
stableNamePrimTyCon :: TyCon
-stableNamePrimTyCon = pcPrimTyCon stableNamePrimTyConName [Representational] UnliftedRep
+stableNamePrimTyCon = pcPrimTyCon stableNamePrimTyConName [Phantom] UnliftedRep
mkStableNamePrimTy :: Type -> Type
mkStableNamePrimTy ty = TyConApp stableNamePrimTyCon [ty]