diff options
-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 |