diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2022-03-03 12:17:12 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-03-04 12:45:42 -0500 |
commit | 3570eda512d157a38da391b6f1d57dfbab72dd09 (patch) | |
tree | 7686999d36b75ad8967da732cb07ee14466738b8 | |
parent | c0a392599af6f704de8cc2cd107f7b7600ec7990 (diff) | |
download | haskell-3570eda512d157a38da391b6f1d57dfbab72dd09.tar.gz |
Fix comments about Int64/Word64 primops
-rw-r--r-- | compiler/GHC/Builtin/primops.txt.pp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/compiler/GHC/Builtin/primops.txt.pp b/compiler/GHC/Builtin/primops.txt.pp index 10dc9af4dc..0c2671ee81 100644 --- a/compiler/GHC/Builtin/primops.txt.pp +++ b/compiler/GHC/Builtin/primops.txt.pp @@ -583,9 +583,7 @@ primop Word32NeOp "neWord32#" Compare Word32# -> Word32# -> Int# ------------------------------------------------------------------------ section "Int64#" - {Operations on 64-bit unsigned words. This type is only used - if plain {\tt Int\#} has less than 64 bits. In any case, the operations - are not primops; they are implemented (if needed) as ccalls instead.} + {Operations on 64-bit signed words.} ------------------------------------------------------------------------ primtype Int64# @@ -629,9 +627,7 @@ primop Int64NeOp "neInt64#" Compare Int64# -> Int64# -> Int# ------------------------------------------------------------------------ section "Word64#" - {Operations on 64-bit unsigned words. This type is only used - if plain {\tt Word\#} has less than 64 bits. In any case, the operations - are not primops; they are implemented (if needed) as ccalls instead.} + {Operations on 64-bit unsigned words.} ------------------------------------------------------------------------ primtype Word64# |