From: Ian Lynagh Date: Sat, 12 Apr 2008 13:59:34 +0000 (+0000) Subject: (F)SLIT -> (f)sLit in PprCmmZ X-Git-Tag: 2008-05-28~286 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=5a5557b62bc10c97c58c37bc480a55afb3012175 (F)SLIT -> (f)sLit in PprCmmZ --- diff --git a/compiler/cmm/PprCmmZ.hs b/compiler/cmm/PprCmmZ.hs index e9b2d6c..0359fe2 100644 --- a/compiler/cmm/PprCmmZ.hs +++ b/compiler/cmm/PprCmmZ.hs @@ -4,8 +4,6 @@ module PprCmmZ ) where -#include "HsVersions.h" - import Cmm import CmmExpr import ForeignCall @@ -83,7 +81,7 @@ pprCmmGraphLikeCmm g = vcat (swallow blocks) let call = CmmCall tgt' ress args (CmmSafe srt) CmmMayReturn tgt' = CmmCallee tgt (cconv_of_conv conv) delayed = - ptext SLIT("// delayed CopyIn follows previous call") + ptext (sLit "// delayed CopyIn follows previous call") in tail id (delayed : ppr call : prev') Nothing t bs | otherwise -> endblock $ with_out out l findCopyIn (Z.ZTail (G.CopyIn _ ress srt) _) = Just (ress, srt) @@ -112,14 +110,14 @@ pprCmmGraphLikeCmm g = vcat (swallow blocks) cconv_of_conv (G.ConventionPrivate {}) = CmmCallConv -- XXX totally bogus with_out :: Maybe (G.Convention, CmmActuals) -> G.Last -> SDoc -with_out Nothing l = ptext SLIT("??no-arguments??") <+> ppr l +with_out Nothing l = ptext (sLit "??no-arguments??") <+> ppr l with_out (Just (conv, args)) l = last l where last (G.LastCall e k) = - hcat [ptext SLIT("... = foreign "), + hcat [ptext (sLit "... = foreign "), doubleQuotes(ppr conv), space, ppr_target e, parens ( commafy $ map ppr args ), - ptext SLIT(" \"safe\""), - case k of Nothing -> ptext SLIT(" never returns") + ptext (sLit " \"safe\""), + case k of Nothing -> ptext (sLit " never returns") Just _ -> empty, semi ] last (G.LastReturn) = ppr (CmmReturn args)