diff options
author | simonpj@microsoft.com <unknown> | 2010-09-14 11:36:35 +0000 |
---|---|---|
committer | simonpj@microsoft.com <unknown> | 2010-09-14 11:36:35 +0000 |
commit | 7fc01c4671980ea3c66d549c0ece4d82fd3f5ade (patch) | |
tree | 8101b68ac419cc06c114c8b5badebc3ccc3b7e33 /compiler/prelude/PrelInfo.lhs | |
parent | 1285cf63bc086f323d6b935948388970ce047f59 (diff) | |
download | haskell-7fc01c4671980ea3c66d549c0ece4d82fd3f5ade.tar.gz |
Move error-ids to MkCore (from PrelRules)
and adjust imports accordingly
Diffstat (limited to 'compiler/prelude/PrelInfo.lhs')
-rw-r--r-- | compiler/prelude/PrelInfo.lhs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/compiler/prelude/PrelInfo.lhs b/compiler/prelude/PrelInfo.lhs index dbeb6de00b..48981b3ab5 100644 --- a/compiler/prelude/PrelInfo.lhs +++ b/compiler/prelude/PrelInfo.lhs @@ -5,7 +5,8 @@ \begin{code} module PrelInfo ( - module MkId, + wiredInIds, ghcPrimIds, + primOpRules, builtinRules, ghcPrimExports, wiredInThings, basicKnownKeyNames, @@ -24,7 +25,7 @@ module PrelInfo ( import PrelNames ( basicKnownKeyNames, hasKey, charDataConKey, intDataConKey, numericClassKeys, standardClassKeys ) - +import PrelRules import PrimOp ( PrimOp, allThePrimOps, primOpOcc, primOpTag, maxPrimOpTag ) import DataCon ( DataCon ) import Id ( Id, idName ) |