[commit: ghc] wip/ttypeable: CoreLint: Improve debug output (f11a313)
git at git.haskell.org
git at git.haskell.org
Sat Oct 1 21:33:27 UTC 2016
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/ttypeable
Link : http://ghc.haskell.org/trac/ghc/changeset/f11a31346384342fbf32a3710c71a4a8b3ad3f1c/ghc
>---------------------------------------------------------------
commit f11a31346384342fbf32a3710c71a4a8b3ad3f1c
Author: Ben Gamari <ben at smart-cactus.org>
Date: Sun Jan 31 21:35:20 2016 +0100
CoreLint: Improve debug output
>---------------------------------------------------------------
f11a31346384342fbf32a3710c71a4a8b3ad3f1c
compiler/coreSyn/CoreLint.hs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/compiler/coreSyn/CoreLint.hs b/compiler/coreSyn/CoreLint.hs
index f4c0646..b5ecb58 100644
--- a/compiler/coreSyn/CoreLint.hs
+++ b/compiler/coreSyn/CoreLint.hs
@@ -860,7 +860,7 @@ lintTyKind tyvar arg_ty
-- and then apply it to both boxed and unboxed types.
= do { arg_kind <- lintType arg_ty
; unless (arg_kind `eqType` tyvar_kind)
- (addErrL (mkKindErrMsg tyvar arg_ty $$ (text "xx" <+> ppr arg_kind))) }
+ (addErrL (mkKindErrMsg tyvar arg_ty $$ (text "Linted Arg kind:" <+> ppr arg_kind))) }
where
tyvar_kind = tyVarKind tyvar
More information about the ghc-commits
mailing list