diff options
Diffstat (limited to 'libraries/ghc-prim/GHC/Prim/PtrEq.hs')
-rw-r--r-- | libraries/ghc-prim/GHC/Prim/PtrEq.hs | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/libraries/ghc-prim/GHC/Prim/PtrEq.hs b/libraries/ghc-prim/GHC/Prim/PtrEq.hs index 5e9d2e564b..5cc3e511e6 100644 --- a/libraries/ghc-prim/GHC/Prim/PtrEq.hs +++ b/libraries/ghc-prim/GHC/Prim/PtrEq.hs @@ -26,8 +26,6 @@ module GHC.Prim.PtrEq sameSmallMutableArray#, sameByteArray#, sameMutableByteArray#, - sameArrayArray#, - sameMutableArrayArray#, sameMutVar#, sameTVar#, sameMVar#, @@ -100,14 +98,6 @@ sameByteArray# = reallyUnsafePtrEquality# sameMutableByteArray# :: MutableByteArray# s -> MutableByteArray# s -> Int# sameMutableByteArray# = reallyUnsafePtrEquality# --- | Compare the underlying pointers of two arrays of arrays. -sameArrayArray# :: ArrayArray# -> ArrayArray# -> Int# -sameArrayArray# = reallyUnsafePtrEquality# - --- | Compare the underlying pointers of two mutable arrays of arrays. -sameMutableArrayArray# :: MutableArrayArray# s -> MutableArrayArray# s -> Int# -sameMutableArrayArray# = reallyUnsafePtrEquality# - -- | Compare the underlying pointers of two 'MutVar#'s. sameMutVar# :: MutVar# s a -> MutVar# s a -> Int# sameMutVar# = reallyUnsafePtrEquality# |