summaryrefslogtreecommitdiff
path: root/libraries/ghc-prim
diff options
context:
space:
mode:
authorSylvain Henry <sylvain@haskus.fr>2022-02-10 16:28:22 +0100
committerMarge Bot <ben+marge-bot@smart-cactus.org>2022-02-11 22:28:34 -0500
commit90a26f8b0dd99129d3fd7fe28127cb69abd46328 (patch)
treefdf000f864fcc562db7f6b85d099d75bea9e5402 /libraries/ghc-prim
parent4bce35758ca2f94b3f1056211fa0c2d5da550b3e (diff)
downloadhaskell-90a26f8b0dd99129d3fd7fe28127cb69abd46328.tar.gz
Fix documentation about Word64Rep/Int64Rep (#16964)
Diffstat (limited to 'libraries/ghc-prim')
-rw-r--r--libraries/ghc-prim/GHC/Types.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/libraries/ghc-prim/GHC/Types.hs b/libraries/ghc-prim/GHC/Types.hs
index eaffc5c6d0..145b5ff179 100644
--- a/libraries/ghc-prim/GHC/Types.hs
+++ b/libraries/ghc-prim/GHC/Types.hs
@@ -460,12 +460,12 @@ data RuntimeRep = VecRep VecCount VecElem -- ^ a SIMD vector type
| Int8Rep -- ^ signed, 8-bit value
| Int16Rep -- ^ signed, 16-bit value
| Int32Rep -- ^ signed, 32-bit value
- | Int64Rep -- ^ signed, 64-bit value (on 32-bit only)
+ | Int64Rep -- ^ signed, 64-bit value
| WordRep -- ^ unsigned, word-sized value
| Word8Rep -- ^ unsigned, 8-bit value
| Word16Rep -- ^ unsigned, 16-bit value
| Word32Rep -- ^ unsigned, 32-bit value
- | Word64Rep -- ^ unsigned, 64-bit value (on 32-bit only)
+ | Word64Rep -- ^ unsigned, 64-bit value
| AddrRep -- ^ A pointer, but /not/ to a Haskell value
| FloatRep -- ^ a 32-bit floating point number
| DoubleRep -- ^ a 64-bit floating point number