diff options
author | Alexander Vershilov <alexander.vershilov@gmail.com> | 2015-02-05 17:43:32 -0600 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2015-02-05 17:43:32 -0600 |
commit | 73f976c47f00060baaeead9e0331ab265a84251c (patch) | |
tree | 4f0d2a8e577627a8f3962f7895a68e839603e16e /compiler/vectorise/Vectorise/Monad.hs | |
parent | 7cf87fc6928f0252d9f61719e2344e6c69237079 (diff) | |
download | haskell-73f976c47f00060baaeead9e0331ab265a84251c.tar.gz |
Make -ddump-splices output to stdout (fixes #8796)
Summary:
Fixes debug output so all info messages will use
stdout. Fixes #8796.
Make -ddump-splices output to stdout (fixes #8796)
Make -dverbose-core2core use stdout (fixes #8796)
Reviewers: simonpj, austin
Reviewed By: austin
Subscribers: thomie
Differential Revision: https://phabricator.haskell.org/D627
GHC Trac Issues: #8796
Diffstat (limited to 'compiler/vectorise/Vectorise/Monad.hs')
-rw-r--r-- | compiler/vectorise/Vectorise/Monad.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/vectorise/Vectorise/Monad.hs b/compiler/vectorise/Vectorise/Monad.hs index 3e6c33ac7d..4e9726a598 100644 --- a/compiler/vectorise/Vectorise/Monad.hs +++ b/compiler/vectorise/Vectorise/Monad.hs @@ -105,7 +105,7 @@ initV hsc_env guts info thing_inside Yes genv _ x -> return $ Just (new_info genv, x) No reason -> do { unqual <- mkPrintUnqualifiedDs ; liftIO $ - printInfoForUser dflags unqual $ + printOutputForUser dflags unqual $ mkDumpDoc "Warning: vectorisation failure:" reason ; return Nothing } |