diff options
author | Tamar Christina <tamar@zhox.com> | 2017-01-16 08:14:28 +0000 |
---|---|---|
committer | Tamar Christina <tamar@zhox.com> | 2017-01-16 08:14:28 +0000 |
commit | be79289037138d4f6447c21f65e80adf2acd65f7 (patch) | |
tree | 4c517850da1299360c142cd4fdc1d676d503bd43 | |
parent | 4bfe3d4d13806202be7fc4a90106b200171588e6 (diff) | |
download | haskell-be79289037138d4f6447c21f65e80adf2acd65f7.tar.gz |
Unbreak libGHCi by adding missing symbol.
Summary:
Someone committed a new public symbol `purgeObj` again
without adding it to the symbols table.
Test Plan: ./validate
Reviewers: austin, bgamari, simonmar, erikd
Reviewed By: erikd
Subscribers: thomie
Differential Revision: https://phabricator.haskell.org/D2980
-rw-r--r-- | rts/RtsSymbols.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rts/RtsSymbols.c b/rts/RtsSymbols.c index 4c21c2ac52..be61388501 100644 --- a/rts/RtsSymbols.c +++ b/rts/RtsSymbols.c @@ -637,6 +637,7 @@ SymI_HasProto(stg_killThreadzh) \ SymI_HasProto(loadArchive) \ SymI_HasProto(loadObj) \ + SymI_HasProto(purgeObj) \ SymI_HasProto(insertSymbol) \ SymI_HasProto(lookupSymbol) \ SymI_HasProto(stg_makeStablePtrzh) \ |