diff options
Diffstat (limited to 'compiler/GHC/CmmToAsm/X86/Ppr.hs')
-rw-r--r-- | compiler/GHC/CmmToAsm/X86/Ppr.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/CmmToAsm/X86/Ppr.hs b/compiler/GHC/CmmToAsm/X86/Ppr.hs index e284e618da..b06e7f0596 100644 --- a/compiler/GHC/CmmToAsm/X86/Ppr.hs +++ b/compiler/GHC/CmmToAsm/X86/Ppr.hs @@ -572,7 +572,7 @@ asmComment c = whenPprDebug $ text "# " <> c pprInstr :: Platform -> Instr -> SDoc pprInstr platform i = case i of COMMENT s - -> asmComment (ftext s) + -> asmComment s LOCATION file line col _name -> text "\t.loc " <> ppr file <+> ppr line <+> ppr col |