diff options
author | Naomi Liu <naomi@nliu.net> | 2022-06-21 17:57:04 -0700 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-06-27 08:04:13 -0400 |
commit | a51f4ecceff8817b906fc07e3fdf907f1f637eb0 (patch) | |
tree | 37650483c8dcf7f4c13f8e901dd383d0908a52ef /compiler | |
parent | 58530271e5e3044623b7e2343f2152ca0092b5a2 (diff) | |
download | haskell-a51f4ecceff8817b906fc07e3fdf907f1f637eb0.tar.gz |
add levity polymorphism to addrToAny#
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/GHC/Builtin/primops.txt.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/Builtin/primops.txt.pp b/compiler/GHC/Builtin/primops.txt.pp index a7c7c3a4cf..1e66fd2f2b 100644 --- a/compiler/GHC/Builtin/primops.txt.pp +++ b/compiler/GHC/Builtin/primops.txt.pp @@ -3311,7 +3311,7 @@ primtype BCO { Primitive bytecode type. } primop AddrToAnyOp "addrToAny#" GenPrimOp - Addr# -> (# a #) + Addr# -> (# v #) { Convert an 'Addr#' to a followable Any type. } with code_size = 0 |