summaryrefslogtreecommitdiff
path: root/compiler/GHC/Runtime/Eval.hs
diff options
context:
space:
mode:
authorKrzysztof Gogolewski <krzysztof.gogolewski@tweag.io>2022-01-05 19:58:05 +0100
committerMarge Bot <ben+marge-bot@smart-cactus.org>2022-01-11 19:43:22 -0500
commit23d215fcb62c8bfe8d56396a0c9718a72ac0037b (patch)
tree520a04b518f1898c7c6685679aafafbb8f1d5942 /compiler/GHC/Runtime/Eval.hs
parent49731fed69cb67ebaa3481b6ed5395ccd760c051 (diff)
downloadhaskell-23d215fcb62c8bfe8d56396a0c9718a72ac0037b.tar.gz
warnPprTrace: pass separately the reason
This makes it more similar to pprTrace, pprPanic etc.
Diffstat (limited to 'compiler/GHC/Runtime/Eval.hs')
-rw-r--r--compiler/GHC/Runtime/Eval.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/GHC/Runtime/Eval.hs b/compiler/GHC/Runtime/Eval.hs
index 3d4e92d438..c514cd105b 100644
--- a/compiler/GHC/Runtime/Eval.hs
+++ b/compiler/GHC/Runtime/Eval.hs
@@ -669,8 +669,8 @@ rttiEnvironment hsc_env@HscEnv{hsc_IC=ic} = do
Just new_ty -> do
case improveRTTIType hsc_env old_ty new_ty of
Nothing -> return $
- warnPprTrace True (text (":print failed to calculate the "
- ++ "improvement for a type")) hsc_env
+ warnPprTrace True (":print failed to calculate the "
+ ++ "improvement for a type") empty hsc_env
Just subst -> do
let logger = hsc_logger hsc_env
putDumpFileMaybe logger Opt_D_dump_rtti "RTTI"