[project @ 2001-08-03 23:38:50 by ken]
authorken <unknown>
Fri, 3 Aug 2001 23:38:50 +0000 (23:38 +0000)
committerken <unknown>
Fri, 3 Aug 2001 23:38:50 +0000 (23:38 +0000)
Fixed: ExitException doesn't exist in __GLASGOW_HASKELL__ < 501,
so references to ExitException should be preprocessed out.

ghc/compiler/main/Main.hs

index 930735e..5a7d6c5 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -fno-warn-incomplete-patterns #-}
 -----------------------------------------------------------------------------
--- $Id: Main.hs,v 1.82 2001/08/03 20:40:43 sof Exp $
+-- $Id: Main.hs,v 1.83 2001/08/03 23:38:50 ken Exp $
 --
 -- GHC Driver program
 --
@@ -115,8 +115,10 @@ main =
           case exception of
                -- an IO exception probably isn't our fault, so don't panic
                IOException _   ->  hPutStr stderr (show exception)
+#if __GLASGOW_HASKELL__ >= 501
                  -- let exit exceptions bubble all the way out.
                ExitException e ->  exitWith e
+#endif
                _other          ->  hPutStr stderr (show (Panic (show exception)))
           exitWith (ExitFailure 1)
          ) $ do