diff options
author | Simon Peyton Jones <simonpj@microsoft.com> | 2013-02-13 17:08:03 +0000 |
---|---|---|
committer | Simon Peyton Jones <simonpj@microsoft.com> | 2013-02-13 17:08:03 +0000 |
commit | 57e08839f11990647f1b083316e920a00666b3b6 (patch) | |
tree | 0ec35ffab0acbdafeb1ebf2c5bcb77b998e0bbae /compiler/iface | |
parent | 41288a1d37047b4046f43bb88f8aaf6bdefd8183 (diff) | |
download | haskell-57e08839f11990647f1b083316e920a00666b3b6.tar.gz |
Export tcIfaceExpr as requested by Trac #7683
Diffstat (limited to 'compiler/iface')
-rw-r--r-- | compiler/iface/TcIface.lhs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/compiler/iface/TcIface.lhs b/compiler/iface/TcIface.lhs index e7676c8c48..1748e94709 100644 --- a/compiler/iface/TcIface.lhs +++ b/compiler/iface/TcIface.lhs @@ -9,7 +9,10 @@ Type checking of type signatures in interface files module TcIface ( tcImportDecl, importDecl, checkWiredInTyCon, tcHiBootIface, typecheckIface, tcIfaceDecl, tcIfaceInst, tcIfaceFamInst, tcIfaceRules, - tcIfaceVectInfo, tcIfaceAnnotations, tcIfaceGlobal, tcExtCoreBindings + tcIfaceVectInfo, tcIfaceAnnotations, + tcIfaceExpr, -- Desired by HERMIT (Trac #7683) + tcIfaceGlobal, + tcExtCoreBindings ) where #include "HsVersions.h" |