diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2019-12-20 09:23:03 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-01-04 15:55:46 -0500 |
commit | d561c8f6244f8280a2483e8753c38e39d34c1f01 (patch) | |
tree | b5eeb26d3ba6e94c729e2c6efb8add69a6f69a90 /testsuite/tests/parser | |
parent | 3c9dc06ba2034e867c9169e60e854539875654fd (diff) | |
download | haskell-d561c8f6244f8280a2483e8753c38e39d34c1f01.tar.gz |
Add Cmm related hooks
* stgToCmm hook
* cmmToRawCmm hook
These hooks are used by Asterius and could be useful to other clients of
the GHC API.
It increases the Parser dependencies (test CountParserDeps) to 184. It's
still less than 200 which was the initial request (cf
https://mail.haskell.org/pipermail/ghc-devs/2019-September/018122.html)
so I think it's ok to merge this.
Diffstat (limited to 'testsuite/tests/parser')
-rw-r--r-- | testsuite/tests/parser/should_run/CountParserDeps.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/parser/should_run/CountParserDeps.hs b/testsuite/tests/parser/should_run/CountParserDeps.hs index 67a2eef8c8..b035c98e0d 100644 --- a/testsuite/tests/parser/should_run/CountParserDeps.hs +++ b/testsuite/tests/parser/should_run/CountParserDeps.hs @@ -31,7 +31,7 @@ main = do let num = sizeUniqSet modules -- print num -- print (map moduleNameString $ nonDetEltsUniqSet modules) - unless (num < 165) $ exitWith (ExitFailure num) + unless (num < 190) $ exitWith (ExitFailure num) parserDeps :: FilePath -> IO (UniqSet ModuleName) parserDeps libdir = |