summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2019-08-30 14:57:30 +0100
committerMatthew Pickering <matthewtpickering@gmail.com>2019-08-30 14:57:30 +0100
commit18a6075ce6d53fe9b164748a95e4ec052b30a7c6 (patch)
tree7ceb98bfde186507331f0c3489e4e9aa76c36160
parentdf8fa00c185f2577983b2cc309109e5128824c5c (diff)
downloadhaskell-wip/faststring-weak.tar.gz
Try disabling sharedCAFwip/faststring-weak
-rw-r--r--compiler/utils/FastString.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/utils/FastString.hs b/compiler/utils/FastString.hs
index b1024bd41b..4d75e683cb 100644
--- a/compiler/utils/FastString.hs
+++ b/compiler/utils/FastString.hs
@@ -412,7 +412,8 @@ stringTable = unsafePerformIO $ do
#if STAGE < 2
return tab
#else
- sharedCAF tab getOrSetLibHSghcFastStringTable
+ return tab
+-- sharedCAF tab getOrSetLibHSghcFastStringTable
-- from the RTS; thus we cannot use this mechanism when STAGE<2; the previous
-- RTS might not have this symbol