[commit: ghc] master: Use throwGhcExceptionIO rather than throwGhcException in main/DynFlags.hs (426b9b0)
Ian Lynagh
igloo at earth.li
Thu Jan 31 01:29:46 CET 2013
Repository : ssh://darcs.haskell.org//srv/darcs/ghc
On branch : master
http://hackage.haskell.org/trac/ghc/changeset/426b9b058bebb4b3c10e055c42c6e4924b3b9b0c
>---------------------------------------------------------------
commit 426b9b058bebb4b3c10e055c42c6e4924b3b9b0c
Author: Ian Lynagh <ian at well-typed.com>
Date: Wed Jan 30 13:48:41 2013 +0000
Use throwGhcExceptionIO rather than throwGhcException in main/DynFlags.hs
>---------------------------------------------------------------
compiler/main/DynFlags.hs | 11 ++++++-----
1 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs
index 5160f5a..6fbf606 100644
--- a/compiler/main/DynFlags.hs
+++ b/compiler/main/DynFlags.hs
@@ -1795,16 +1795,17 @@ parseDynamicFlagsFull activeFlags cmdline dflags0 args = do
let ((leftover, errs, warns), dflags1)
= runCmdLine (processArgs activeFlags args') dflags0
- when (not (null errs)) $ throwGhcException $ errorsToGhcException errs
+ when (not (null errs)) $ liftIO $
+ throwGhcExceptionIO $ errorsToGhcException errs
-- check for disabled flags in safe haskell
let (dflags2, sh_warns) = safeFlagCheck cmdline dflags1
dflags3 = updateWays dflags2
theWays = ways dflags3
- unless (allowed_combination theWays) $
- throwGhcException (CmdLineError ("combination not supported: " ++
- intercalate "/" (map wayDesc theWays)))
+ unless (allowed_combination theWays) $ liftIO $
+ throwGhcExceptionIO (CmdLineError ("combination not supported: " ++
+ intercalate "/" (map wayDesc theWays)))
-- TODO: This is an ugly hack. Do something better.
-- -fPIC affects the CMM code we generate, so if
@@ -1822,7 +1823,7 @@ parseDynamicFlagsFull activeFlags cmdline dflags0 args = do
when e.g. compiling a C file, only when compiling Haskell files.
when doingDynamicToo $
unless (isJust (outputFile dflags4) == isJust (dynOutputFile dflags4)) $
- throwGhcException $ CmdLineError
+ liftIO $ throwGhcExceptionIO $ CmdLineError
"With -dynamic-too, must give -dyno iff giving -o"
-}
More information about the ghc-commits
mailing list