diff options
author | Nick Terrell <terrelln@umich.edu> | 2015-06-14 20:32:22 -0500 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2015-06-14 20:33:19 -0500 |
commit | dd3080fe0263082f65bf2570f49189c277b12e28 (patch) | |
tree | 2d81fd6e5d3d12158750a7b1e691ac9cb38bdeff /compiler/main/Constants.hs | |
parent | 1cf7fc0f182602b18ac04427b248f0374d2e626e (diff) | |
download | haskell-dd3080fe0263082f65bf2570f49189c277b12e28.tar.gz |
Increase constraint tuple limit to 62 (Trac #10451)
* Increase max constraint tuple size to 62
* Modify test case to reflect change
Reviewed By: austin
Differential Revision: https://phabricator.haskell.org/D986
GHC Trac Issues: #10451
Diffstat (limited to 'compiler/main/Constants.hs')
-rw-r--r-- | compiler/main/Constants.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/main/Constants.hs b/compiler/main/Constants.hs index 6e48539ec5..6a442e02ab 100644 --- a/compiler/main/Constants.hs +++ b/compiler/main/Constants.hs @@ -18,7 +18,7 @@ mAX_TUPLE_SIZE = 62 -- Should really match the number -- of decls in Data.Tuple mAX_CTUPLE_SIZE :: Int -- Constraint tuples -mAX_CTUPLE_SIZE = 16 -- Should match the number of decls in GHC.Classes +mAX_CTUPLE_SIZE = 62 -- Should match the number of decls in GHC.Classes -- | Default maximum depth for both class instance search and type family -- reduction. See also Trac #5395. |