diff options
author | Thomas Miedema <thomasmiedema@gmail.com> | 2015-02-17 08:39:43 -0600 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2015-02-17 09:06:11 -0600 |
commit | 08102b3dcffb715938cf197b455f873e615d2bc2 (patch) | |
tree | 603cc096c5c49bb223851e39bc50c74ad3931013 /compiler | |
parent | e7fab334b31dc516d2e8f2285630cbffe9825b76 (diff) | |
download | haskell-08102b3dcffb715938cf197b455f873e615d2bc2.tar.gz |
Delete vestigial external core code (#9402)
Test Plan: harbormaster
Reviewers: austin
Reviewed By: austin
Subscribers: thomie
Differential Revision: https://phabricator.haskell.org/D659
GHC Trac Issues: #9402
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/main/DynFlags.hs | 3 | ||||
-rw-r--r-- | compiler/main/HscTypes.hs | 3 |
2 files changed, 1 insertions, 5 deletions
diff --git a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs index eccb14ed78..de768c0315 100644 --- a/compiler/main/DynFlags.hs +++ b/compiler/main/DynFlags.hs @@ -395,7 +395,6 @@ data GeneralFlag | Opt_PrintBindContents | Opt_GenManifest | Opt_EmbedManifest - | Opt_EmitExternalCore | Opt_SharedImplib | Opt_BuildingCabalPackage | Opt_IgnoreDotGhci @@ -2939,8 +2938,6 @@ fFlags = [ flagSpec "error-spans" Opt_ErrorSpans, flagSpec "excess-precision" Opt_ExcessPrecision, flagSpec "expose-all-unfoldings" Opt_ExposeAllUnfoldings, - flagSpec' "ext-core" Opt_EmitExternalCore - (\_ -> deprecate "it has no effect, and will be removed in GHC 7.12"), flagSpec "flat-cache" Opt_FlatCache, flagSpec "float-in" Opt_FloatIn, flagSpec "force-recomp" Opt_ForceRecomp, diff --git a/compiler/main/HscTypes.hs b/compiler/main/HscTypes.hs index 067e9a94e0..2f635305f9 100644 --- a/compiler/main/HscTypes.hs +++ b/compiler/main/HscTypes.hs @@ -2343,14 +2343,13 @@ emptyMG = [] -- -- * A regular Haskell source module -- * A hi-boot source module --- * An external-core source module -- data ModSummary = ModSummary { ms_mod :: Module, -- ^ Identity of the module ms_hsc_src :: HscSource, - -- ^ The module source either plain Haskell, hs-boot or external core + -- ^ The module source either plain Haskell or hs-boot ms_location :: ModLocation, -- ^ Location of the various files belonging to the module ms_hs_date :: UTCTime, |