From c0794e1e84229bf61816c26f8f90b43488cd57c6 Mon Sep 17 00:00:00 2001
From: "Iavor S. Diatchki" <diatchki@galois.com>
Date: Mon, 9 Feb 2015 17:06:52 -0800
Subject: [PATCH] Update for new representation of TypeRep

---
 Control/DeepSeq.hs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Control/DeepSeq.hs b/Control/DeepSeq.hs
index 31a42d7..207e19f 100644
--- a/Control/DeepSeq.hs
+++ b/Control/DeepSeq.hs
@@ -380,7 +380,7 @@ instance NFData Unique where
 --
 -- /Since: 1.4.0.0/
 instance NFData TypeRep where
-    rnf (TypeRep _ tycon tyrep) = rnf tycon `seq` rnf tyrep
+    rnf (TypeRep _ tycon kis tyrep) = rnf tycon `seq` rnf kis `seq` rnf tyrep
 
 -- | __NOTE__: Only defined for @base-4.8.0.0@ and later
 --
-- 
GitLab