summaryrefslogtreecommitdiff
path: root/compiler/GHC/CmmToAsm/SPARC/Ppr.hs
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/GHC/CmmToAsm/SPARC/Ppr.hs')
-rw-r--r--compiler/GHC/CmmToAsm/SPARC/Ppr.hs9
1 files changed, 6 insertions, 3 deletions
diff --git a/compiler/GHC/CmmToAsm/SPARC/Ppr.hs b/compiler/GHC/CmmToAsm/SPARC/Ppr.hs
index b4028fe3b4..2b0d9675fd 100644
--- a/compiler/GHC/CmmToAsm/SPARC/Ppr.hs
+++ b/compiler/GHC/CmmToAsm/SPARC/Ppr.hs
@@ -56,7 +56,6 @@ import GHC.Types.Unique ( pprUniqueAlways )
import GHC.Utils.Outputable
import GHC.Utils.Panic
import GHC.Platform
-import GHC.Data.FastString
-- -----------------------------------------------------------------------------
-- Printing this stuff out
@@ -388,11 +387,15 @@ castFloatToWord8Array :: STUArray s Int Float -> ST s (STUArray s Int Word8)
castFloatToWord8Array = U.castSTUArray
+asmComment :: SDoc -> SDoc
+asmComment c = whenPprDebug $ text "#" <+> c
+
+
-- | Pretty print an instruction.
pprInstr :: Platform -> Instr -> SDoc
pprInstr platform = \case
- COMMENT _ -> empty -- nuke comments.
- DELTA d -> pprInstr platform (COMMENT (mkFastString ("\tdelta = " ++ show d)))
+ COMMENT s -> asmComment s
+ DELTA d -> asmComment $ text ("\tdelta = " ++ show d)
-- Newblocks and LData should have been slurped out before producing the .s file.
NEWBLOCK _ -> panic "X86.Ppr.pprInstr: NEWBLOCK"