diff options
author | Ben Gamari <ben@smart-cactus.org> | 2020-01-17 09:18:38 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-01-20 15:36:32 -0500 |
commit | 17e43a7cd48d862f38d3944d44024646f2e97b87 (patch) | |
tree | 8161ac3556960e1c064b442c26a3aa78f511fa77 /includes | |
parent | 7e0bb82b5e267596c18e1086afd6007a00d2c072 (diff) | |
download | haskell-17e43a7cd48d862f38d3944d44024646f2e97b87.tar.gz |
unregisterised: Fix declaration for stg_NO_FINALIZER
Previously it had a redundant _entry suffix. We never noticed this
previously presumably because we never generated references to it
(however hard to believe this may be). However, it did start failing in
!1304.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/stg/MiscClosures.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/stg/MiscClosures.h b/includes/stg/MiscClosures.h index 5b2364407f..34ec3e5f7b 100644 --- a/includes/stg/MiscClosures.h +++ b/includes/stg/MiscClosures.h @@ -179,7 +179,7 @@ RTS_CLOSURE(stg_END_STM_WATCH_QUEUE_closure); RTS_CLOSURE(stg_END_STM_CHUNK_LIST_closure); RTS_CLOSURE(stg_NO_TREC_closure); -RTS_ENTRY(stg_NO_FINALIZER_entry); +RTS_ENTRY(stg_NO_FINALIZER); #if IN_STG_CODE extern DLL_IMPORT_RTS StgWordArray stg_CHARLIKE_closure; |