summaryrefslogtreecommitdiff
path: root/compiler/GHC/Stg/Subst.hs
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/GHC/Stg/Subst.hs')
-rw-r--r--compiler/GHC/Stg/Subst.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/Stg/Subst.hs b/compiler/GHC/Stg/Subst.hs
index 487b8b8adc..fa7107fc86 100644
--- a/compiler/GHC/Stg/Subst.hs
+++ b/compiler/GHC/Stg/Subst.hs
@@ -54,7 +54,7 @@ lookupIdSubst id (Subst in_scope env)
| not (isLocalId id) = id
| Just id' <- lookupVarEnv env id = id'
| Just id' <- lookupInScope in_scope id = id'
- | otherwise = warnPprTrace True (text "StgSubst.lookupIdSubst" <+> ppr id $$ ppr in_scope) id
+ | otherwise = warnPprTrace True "StgSubst.lookupIdSubst" (ppr id $$ ppr in_scope) id
-- | Substitutes an occurrence of an identifier for its counterpart recorded
-- in the 'Subst'. Does not generate a debug warning if the identifier to