diff options
author | HE, Tao <sighingnow@gmail.com> | 2018-05-27 11:48:20 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-05-30 10:02:10 -0400 |
commit | 49e423e9940a9122a4a417cfc7580b9984fb49eb (patch) | |
tree | 8906639676278962a50695921b21758627126d0e /compiler/main/DynamicLoading.hs | |
parent | c65159dcf401d36e8920f43fec300264533642b9 (diff) | |
download | haskell-49e423e9940a9122a4a417cfc7580b9984fb49eb.tar.gz |
Put the `ev_binds` of main function inside `runMainIO`
This ensures that the deferred type error can be emitted correctly.
For `main` function in `Main` module, we have
:Main.main = GHC.TopHandler.runMainIO main
When the type of `main` is not `IO t` and the
`-fdefer-type-errors` is enabled, the `ev_binds`
of `main` function will contain deferred type
errors.
Previously, the `ev_binds` are bound to `runMainIO main`,
rather than `main`, the type error exception at runtime
cannot be handled properly. See Trac #13838.
This patch fix that.
Test Plan: make test TEST="T13838"
Reviewers: bgamari
Reviewed By: bgamari
Subscribers: rwbarton, thomie, carter
GHC Trac Issues: #13838
Differential Revision: https://phabricator.haskell.org/D4708
Diffstat (limited to 'compiler/main/DynamicLoading.hs')
0 files changed, 0 insertions, 0 deletions