Skip to content
Snippets Groups Projects
Unverified Commit 00224cc1 authored by Lennart Kolmodin's avatar Lennart Kolmodin Committed by GitHub
Browse files

Merge pull request #155 from bgamari/master

Add support for Int8Rep/Word8Rep added in GHC 8.7
parents 1cd855a6 64b5414b
No related branches found
No related tags found
No related merge requests found
......@@ -882,6 +882,10 @@ instance Binary RuntimeRep where
put AddrRep = putWord8 9
put FloatRep = putWord8 10
put DoubleRep = putWord8 11
#if __GLASGOW_HASKELL__ >= 807
put Int8Rep = putWord8 12
put Word8Rep = putWord8 13
#endif
get = do
tag <- getWord8
......@@ -898,6 +902,10 @@ instance Binary RuntimeRep where
9 -> pure AddrRep
10 -> pure FloatRep
11 -> pure DoubleRep
#if __GLASGOW_HASKELL__ >= 807
12 -> pure Int8Rep
13 -> pure Word8Rep
#endif
_ -> fail "GHCi.TH.Binary.putRuntimeRep: invalid tag"
-- | @since 0.8.5.0. See #typeable-instances#
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment