diff options
Diffstat (limited to 'compiler/nativeGen/PprBase.hs')
-rw-r--r-- | compiler/nativeGen/PprBase.hs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/compiler/nativeGen/PprBase.hs b/compiler/nativeGen/PprBase.hs index 5b9000cfca..5a50a79cae 100644 --- a/compiler/nativeGen/PprBase.hs +++ b/compiler/nativeGen/PprBase.hs @@ -18,6 +18,7 @@ module PprBase ( where import qualified Outputable +import Platform import CLabel import Pretty @@ -40,9 +41,9 @@ asmSDoc d = Outputable.withPprStyleDoc (Outputable.mkCodeStyle Outputable.AsmStyle) d -pprCLabel_asm :: CLabel -> Doc -pprCLabel_asm l - = asmSDoc (pprCLabel l) +pprCLabel_asm :: Platform -> CLabel -> Doc +pprCLabel_asm platform l + = asmSDoc (pprCLabel platform l) -- ----------------------------------------------------------------------------- |