diff options
author | Henrik Nord <[email protected]> | 2011-09-29 17:32:47 +0200 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2011-09-29 17:32:50 +0200 |
commit | 0911888f960502e4ee789e82141090c31a2a83a8 (patch) | |
tree | 8fa7583c72397df898f3412849a72bbcfaca411a /lib/hipe/cerl | |
parent | f9a8c0bd1de8693b8fbb9c2480bd45f6775f65b1 (diff) | |
parent | e4d5a206975e7718f6a95d5610ddc45b1d801c49 (diff) | |
download | otp-0911888f960502e4ee789e82141090c31a2a83a8.tar.gz otp-0911888f960502e4ee789e82141090c31a2a83a8.tar.bz2 otp-0911888f960502e4ee789e82141090c31a2a83a8.zip |
Merge branch 'sa/dialyzer-bug-fixes' into dev
* sa/dialyzer-bug-fixes:
Fix typer's crash for nonexisting files
Remove unused macro
Decrease tuple arity limit
Fix bug in dataflow
OTP-9597
Diffstat (limited to 'lib/hipe/cerl')
-rw-r--r-- | lib/hipe/cerl/erl_types.erl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/hipe/cerl/erl_types.erl b/lib/hipe/cerl/erl_types.erl index 7ff170776e..0ff827ac37 100644 --- a/lib/hipe/cerl/erl_types.erl +++ b/lib/hipe/cerl/erl_types.erl @@ -243,12 +243,11 @@ -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). --define(WIDENING_LIMIT, 7). -define(UNIT_MULTIPLIER, 8). -define(TAG_IMMED1_SIZE, 4). |