summaryrefslogtreecommitdiff
path: root/compiler/GHC/Unit/Types.hs
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/GHC/Unit/Types.hs')
-rw-r--r--compiler/GHC/Unit/Types.hs8
1 files changed, 4 insertions, 4 deletions
diff --git a/compiler/GHC/Unit/Types.hs b/compiler/GHC/Unit/Types.hs
index a42f0c0c78..7282b385b6 100644
--- a/compiler/GHC/Unit/Types.hs
+++ b/compiler/GHC/Unit/Types.hs
@@ -506,10 +506,10 @@ instance Uniquable UnitId where
instance Outputable UnitId where
ppr uid@(UnitId fs) =
- getPprStyle $ \sty ->
+ getPprDebug $ \debug ->
sdocWithDynFlags $ \dflags ->
case displayUnitId (pkgState dflags) uid of
- Just str | not (debugStyle sty) -> text str
+ Just str | not debug -> text str
_ -> ftext fs
-- | A 'DefUnitId' is an 'UnitId' with the invariant that
@@ -562,8 +562,8 @@ instance Uniquable unit => Uniquable (Indefinite unit) where
instance Outputable unit => Outputable (Indefinite unit) where
ppr (Indefinite uid Nothing) = ppr uid
ppr (Indefinite uid (Just pprinfo)) =
- getPprStyle $ \sty ->
- if debugStyle sty
+ getPprDebug $ \debug ->
+ if debug
then ppr uid
else ppr pprinfo