diff options
Diffstat (limited to 'compiler/nativeGen/AsmCodeGen.hs')
-rw-r--r-- | compiler/nativeGen/AsmCodeGen.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/nativeGen/AsmCodeGen.hs b/compiler/nativeGen/AsmCodeGen.hs index fc18c6bbe1..6bb7f8a875 100644 --- a/compiler/nativeGen/AsmCodeGen.hs +++ b/compiler/nativeGen/AsmCodeGen.hs @@ -433,7 +433,7 @@ cmmNativeGens dflags this_mod modLoc ncgImpl h dbgMap us -- used. Note that it is important that we generate these in -- ascending order, as Clang's 3.6 assembler complains. let newFileIds = sortBy (comparing snd) $ eltsUFM $ fileIds' `minusUFM` fileIds - pprDecl (f,n) = ptext (sLit "\t.file ") <> ppr n <+> + pprDecl (f,n) = text "\t.file " <> ppr n <+> doubleQuotes (ftext f) emitNativeCode dflags h $ vcat $ |