diff options
author | Adam Gundry <adam@well-typed.com> | 2014-04-22 02:12:03 -0500 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2014-04-22 06:16:50 -0500 |
commit | fe77cbf15dd44bb72943357d65bd8adf9f4deee5 (patch) | |
tree | 04724d7fcf4b2696d2342c5b31c1f59ebaa92cb1 /compiler/ghc.mk | |
parent | 33e585d6eacae19e83862a05b650373b536095fa (diff) | |
download | haskell-wip/orf.tar.gz |
ghc: implement OverloadedRecordFieldswip/orf
This fully implements the new ORF extension, developed during the Google
Summer of Code 2013, and as described on the wiki:
https://ghc.haskell.org/trac/ghc/wiki/Records/OverloadedRecordFields
This also updates the Haddock submodule.
Reviewed-by: Simon Peyton Jones <simonpj@microsoft.com>
Signed-off-by: Austin Seipp <austin@well-typed.com>
Diffstat (limited to 'compiler/ghc.mk')
-rw-r--r-- | compiler/ghc.mk | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/compiler/ghc.mk b/compiler/ghc.mk index 4977e28769..5f66681e9c 100644 --- a/compiler/ghc.mk +++ b/compiler/ghc.mk @@ -520,7 +520,9 @@ compiler_stage2_dll0_MODULES = \ FastFunctions \ FastMutInt \ FastString \ + FastStringEnv \ FastTypes \ + FieldLabel \ Finder \ Fingerprint \ FiniteMap \ @@ -585,6 +587,9 @@ compiler_stage2_dll0_MODULES = \ RdrName \ Reg \ RegClass \ + RnEnv \ + RnHsDoc \ + RnNames \ Rules \ SMRep \ Serialized \ @@ -601,8 +606,10 @@ compiler_stage2_dll0_MODULES = \ StgSyn \ Stream \ StringBuffer \ + TcEnv \ TcEvidence \ TcIface \ + TcMType \ TcRnMonad \ TcRnTypes \ TcType \ |