diff options
author | Jan Stolarek <jan.stolarek@p.lodz.pl> | 2013-01-16 14:21:07 +0100 |
---|---|---|
committer | David Terei <davidterei@gmail.com> | 2013-01-28 16:09:00 -0800 |
commit | a7f9930a24a91cfb5e2579867e5a0b1d83b5a947 (patch) | |
tree | ceb591a7c38b6b1de8719e204b9343b3e819b714 /ghc | |
parent | 24644bb756950b486f988e0b2d5d55b79d8e1490 (diff) | |
download | haskell-a7f9930a24a91cfb5e2579867e5a0b1d83b5a947.tar.gz |
StaticFlags code cleanup (fixes #7595)
Function responsible for parsing the static flags, that were spread
across two modules (StaticFlags and StaticFlagParser), are now
in one file. This is analogous to dynamic flags parsing, which is
also contained within a single module.
Signed-off-by: David Terei <davidterei@gmail.com>
Diffstat (limited to 'ghc')
-rw-r--r-- | ghc/Main.hs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ghc/Main.hs b/ghc/Main.hs index cca4581061..bcc60c0cdb 100644 --- a/ghc/Main.hs +++ b/ghc/Main.hs @@ -37,7 +37,6 @@ import DriverPhases ( Phase(..), isSourceFilename, anyHsc, startPhase, isHaskellSrcFilename ) import BasicTypes ( failed ) import StaticFlags -import StaticFlagParser import DynFlags import ErrUtils import FastString |