summaryrefslogtreecommitdiff
path: root/compiler/GHC/Settings
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/GHC/Settings')
-rw-r--r--compiler/GHC/Settings/Constants.hs8
1 files changed, 4 insertions, 4 deletions
diff --git a/compiler/GHC/Settings/Constants.hs b/compiler/GHC/Settings/Constants.hs
index 6eeaab84df..95dfe6a177 100644
--- a/compiler/GHC/Settings/Constants.hs
+++ b/compiler/GHC/Settings/Constants.hs
@@ -11,14 +11,14 @@ hiVersion = read (cProjectVersionInt ++ cProjectPatchLevel) :: Integer
-- All pretty arbitrary:
mAX_TUPLE_SIZE :: Int
-mAX_TUPLE_SIZE = 62 -- Should really match the number
- -- of decls in Data.Tuple
+mAX_TUPLE_SIZE = 64 -- Should really match the number
+ -- of decls in GHC.Tuple
mAX_CTUPLE_SIZE :: Int -- Constraint tuples
-mAX_CTUPLE_SIZE = 62 -- Should match the number of decls in GHC.Classes
+mAX_CTUPLE_SIZE = 64 -- Should match the number of decls in GHC.Classes
mAX_SUM_SIZE :: Int
-mAX_SUM_SIZE = 62
+mAX_SUM_SIZE = 64
-- | Default maximum depth for both class instance search and type family
-- reduction. See also #5395.