X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Fcompiler%2Fmain%2FMain.hs;h=d0f0ffd54f415c4b55cdec0294e3447eae6a0a12;hb=9cba633f71add332310c8a03ef550ac0fcd5bcf5;hp=21b506dddb64ba014b31e7627c33a70455e7b7d5;hpb=e6312f8c083dcf7e08d1b085e2d3cdbebd663795;p=ghc-hetmet.git diff --git a/ghc/compiler/main/Main.hs b/ghc/compiler/main/Main.hs index 21b506d..d0f0ffd 100644 --- a/ghc/compiler/main/Main.hs +++ b/ghc/compiler/main/Main.hs @@ -1,6 +1,6 @@ {-# OPTIONS -fno-warn-incomplete-patterns #-} ----------------------------------------------------------------------------- --- $Id: Main.hs,v 1.40 2000/12/18 15:18:11 simonmar Exp $ +-- $Id: Main.hs,v 1.41 2000/12/20 10:33:25 simonmar Exp $ -- -- GHC Driver program -- @@ -91,7 +91,9 @@ import Maybe main = -- top-level exception handler: any unrecognised exception is a compiler bug. - handle (\exception -> hPutStr stderr (show (Panic (show exception)))) $ do + handle (\exception -> do hPutStr stderr (show (Panic (show exception))) + exitWith (ExitFailure 1) + ) $ do -- all error messages are propagated as exceptions handleDyn (\dyn -> case dyn of @@ -99,7 +101,7 @@ main = Interrupted -> exitWith (ExitFailure 1) _ -> do hPutStrLn stderr (show (dyn :: GhcException)) exitWith (ExitFailure 1) - ) $ do + ) $ do -- make sure we clean up after ourselves later (do forget_it <- readIORef v_Keep_tmp_files