summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2020-01-17 09:18:38 -0500
committerBen Gamari <ben@well-typed.com>2020-01-17 18:55:22 -0500
commit981f1abe85bedfd13199b94e90a284fc5c2afde7 (patch)
treed1c2b834879a5477258ad100146410774fc4bdb2
parenta71323ffebf7663c50025d2731bf9de2d04f82c3 (diff)
downloadhaskell-wip/unreg-no-finalizer.tar.gz
unregisterised: Fix declaration for stg_NO_FINALIZERwip/unreg-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.
-rw-r--r--includes/stg/MiscClosures.h2
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;