diff options
author | Stavros Aronis <[email protected]> | 2011-09-27 20:04:29 +0300 |
---|---|---|
committer | Stavros Aronis <[email protected]> | 2011-09-27 20:04:29 +0300 |
commit | 7fc2604feb7d3887eb9271d1b9ef38e99db5176b (patch) | |
tree | 2e39a7246b4dcad13bf8ad341825f86a0d5c9e66 /lib/hipe | |
parent | e36b171c318ba8c475fe0727fe2d0d35f86a4a73 (diff) | |
download | otp-7fc2604feb7d3887eb9271d1b9ef38e99db5176b.tar.gz otp-7fc2604feb7d3887eb9271d1b9ef38e99db5176b.tar.bz2 otp-7fc2604feb7d3887eb9271d1b9ef38e99db5176b.zip |
Decrease tuple arity limit
This fixes a memory related crash.
Diffstat (limited to 'lib/hipe')
-rw-r--r-- | lib/hipe/cerl/erl_types.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hipe/cerl/erl_types.erl b/lib/hipe/cerl/erl_types.erl index 1748c1cc16..0a76938799 100644 --- a/lib/hipe/cerl/erl_types.erl +++ b/lib/hipe/cerl/erl_types.erl @@ -242,7 +242,7 @@ -define(REC_TYPE_LIMIT, 2). -define(TUPLE_TAG_LIMIT, 5). --define(TUPLE_ARITY_LIMIT, 10). +-define(TUPLE_ARITY_LIMIT, 8). -define(SET_LIMIT, 13). -define(MAX_BYTE, 255). -define(MAX_CHAR, 16#10ffff). |