diff options
author | Ian Lynagh <igloo@earth.li> | 2012-05-28 23:25:03 +0100 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2012-05-28 23:25:03 +0100 |
commit | 6c8cb17158af7687c076aa2a3bbbf647cd183e1f (patch) | |
tree | f7c2ca2f78bf03e3598c570abae495d1b63e5dd3 | |
parent | 4c0f04ca654b46e9d2ef925973fb1393be71505c (diff) | |
download | haskell-6c8cb17158af7687c076aa2a3bbbf647cd183e1f.tar.gz |
Remove printOutput; it's not used.
-rw-r--r-- | compiler/utils/Outputable.lhs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/compiler/utils/Outputable.lhs b/compiler/utils/Outputable.lhs index bc6e832870..25c3a91616 100644 --- a/compiler/utils/Outputable.lhs +++ b/compiler/utils/Outputable.lhs @@ -39,7 +39,7 @@ module Outputable ( colBinder, bold, keyword, -- * Converting 'SDoc' into strings and outputing it - printOutput, hPrintDump, printDump, + hPrintDump, printDump, printForC, printForAsm, printForUser, printForUserPartWay, pprCode, mkCodeStyle, showSDoc, showSDocOneLine, @@ -318,9 +318,6 @@ ifPprDebug d = SDoc $ \ctx -> \end{code} \begin{code} -printOutput :: Doc -> IO () -printOutput doc = Pretty.printDoc PageMode stdout doc - printDump :: SDoc -> IO () printDump doc = hPrintDump stdout doc |