[project @ 2001-03-13 16:04:07 by simonpj]
authorsimonpj <unknown>
Tue, 13 Mar 2001 16:04:07 +0000 (16:04 +0000)
committersimonpj <unknown>
Tue, 13 Mar 2001 16:04:07 +0000 (16:04 +0000)
Remove debug print

ghc/compiler/main/CodeOutput.lhs

index 33357fc..c320964 100644 (file)
@@ -82,8 +82,7 @@ codeOutput dflags mod_name tycons core_binds stg_binds
 
 doOutput :: String -> (Handle -> IO ()) -> IO ()
 doOutput filenm io_action
-  = (do        hPutStr stderr ("Writing to" ++ filenm)
-       handle <- openFile filenm WriteMode
+  = (do        handle <- openFile filenm WriteMode
        io_action handle
        hClose handle)
     `catch` (\err -> pprPanic "Failed to open or write code output file"