From: simonmar Date: Wed, 20 Dec 2000 10:33:25 +0000 (+0000) Subject: [project @ 2000-12-20 10:33:25 by simonmar] X-Git-Tag: Approximately_9120_patches~3039 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=9cba633f71add332310c8a03ef550ac0fcd5bcf5;p=ghc-hetmet.git [project @ 2000-12-20 10:33:25 by simonmar] oops, better exit(1) if we bomb out with an uncaught exception. --- 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