summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2020-01-17 14:18:38 (GMT)
committerMarge Bot <ben+marge-bot@smart-cactus.org>2020-01-20 20:36:32 (GMT)
commit17e43a7cd48d862f38d3944d44024646f2e97b87 (patch)
tree8161ac3556960e1c064b442c26a3aa78f511fa77
parent7e0bb82b5e267596c18e1086afd6007a00d2c072 (diff)
downloadghc-17e43a7cd48d862f38d3944d44024646f2e97b87.zip
ghc-17e43a7cd48d862f38d3944d44024646f2e97b87.tar.gz
ghc-17e43a7cd48d862f38d3944d44024646f2e97b87.tar.bz2
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.
-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 5b23644..34ec3e5 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;