X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=compiler%2Fmain%2FDynFlags.hs;h=1d19f8e9ffa505cf9b53e759b1644072b93f3ad9;hb=f4e4060721bdbeee81d5e9fd3c8d909ece6195df;hp=4aea08345a04110861d43193f5b5fe4484ebff30;hpb=58916f710a0f4789925d62c5951b15ee1d11b1a1;p=ghc-hetmet.git diff --git a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs index 4aea083..1d19f8e 100644 --- a/compiler/main/DynFlags.hs +++ b/compiler/main/DynFlags.hs @@ -183,6 +183,8 @@ data DynFlag | Opt_RecordPuns | Opt_GADTs | Opt_RelaxedPolyRec -- -X=RelaxedPolyRec + | Opt_MagicHash + | Opt_EmptyDataDecls -- optimisation opts | Opt_Strictness @@ -1092,6 +1094,8 @@ fFlags = [ -- These -X flags can all be reversed with -Xno- xFlags :: [(String, DynFlag)] xFlags = [ + ( "MagicHash", Opt_MagicHash ), + ( "EmptyDataDecls", Opt_EmptyDataDecls ), ( "FI", Opt_FFI ), -- support `-ffi'... ( "FFI", Opt_FFI ), -- ...and also `-fffi' ( "ForeignFunctionInterface", Opt_FFI ), @@ -1135,6 +1139,8 @@ glasgowExtsFlags = [ Opt_GlasgowExts , Opt_GADTs , Opt_ImplicitParams , Opt_ScopedTypeVariables + , Opt_MagicHash + , Opt_EmptyDataDecls , Opt_TypeFamilies ] ------------------