diff options
Diffstat (limited to 'ghc/compiler/main/Main.hs')
-rw-r--r-- | ghc/compiler/main/Main.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ghc/compiler/main/Main.hs b/ghc/compiler/main/Main.hs index 29039de23f..f9f64cbcf4 100644 --- a/ghc/compiler/main/Main.hs +++ b/ghc/compiler/main/Main.hs @@ -1,7 +1,7 @@ {-# OPTIONS -fno-warn-incomplete-patterns -optc-DNON_POSIX_SOURCE #-} ----------------------------------------------------------------------------- --- $Id: Main.hs,v 1.129 2003/07/16 13:33:55 simonmar Exp $ +-- $Id: Main.hs,v 1.130 2003/07/17 12:04:53 simonmar Exp $ -- -- GHC Driver program -- @@ -318,7 +318,7 @@ compileFile mode stop_flag src = do | mode==DoLink || mode==DoMkDLL = Nothing | otherwise = o_file - runPipeline mode stop_flag True maybe_o_file src + runPipeline mode stop_flag True maybe_o_file src Nothing{-no ModLocation-} -- ---------------------------------------------------------------------------- |