diff options
author | Hans Bolinder <[email protected]> | 2012-07-04 12:53:26 +0200 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2012-08-21 10:30:26 +0200 |
commit | 03689627871fce1a0aac7dad314448bb138e88ac (patch) | |
tree | d1156281ddb1c8af7f4273395afb704755506a05 /lib/hipe/cerl | |
parent | 53adc16177c9c8029a5e3348f0542b42af15d3ab (diff) | |
download | otp-03689627871fce1a0aac7dad314448bb138e88ac.tar.gz otp-03689627871fce1a0aac7dad314448bb138e88ac.tar.bz2 otp-03689627871fce1a0aac7dad314448bb138e88ac.zip |
Let t_inf() substitute any() for variables in a few more cases
The clauses handling opaque types haven't been fixed here.
Diffstat (limited to 'lib/hipe/cerl')
-rw-r--r-- | lib/hipe/cerl/erl_types.erl | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/lib/hipe/cerl/erl_types.erl b/lib/hipe/cerl/erl_types.erl index 1789fc79fa..410e29d269 100644 --- a/lib/hipe/cerl/erl_types.erl +++ b/lib/hipe/cerl/erl_types.erl @@ -2318,10 +2318,14 @@ t_inf(?product(_), _, _Mode) -> ?none; t_inf(_, ?product(_), _Mode) -> ?none; -t_inf(?tuple(?any, ?any, ?any), ?tuple(_, _, _) = T, _Mode) -> T; -t_inf(?tuple(_, _, _) = T, ?tuple(?any, ?any, ?any), _Mode) -> T; -t_inf(?tuple(?any, ?any, ?any), ?tuple_set(_) = T, _Mode) -> T; -t_inf(?tuple_set(_) = T, ?tuple(?any, ?any, ?any), _Mode) -> T; +t_inf(?tuple(?any, ?any, ?any), ?tuple(_, _, _) = T, _Mode) -> + subst_all_vars_to_any(T); +t_inf(?tuple(_, _, _) = T, ?tuple(?any, ?any, ?any), _Mode) -> + subst_all_vars_to_any(T); +t_inf(?tuple(?any, ?any, ?any), ?tuple_set(_) = T, _Mode) -> + subst_all_vars_to_any(T); +t_inf(?tuple_set(_) = T, ?tuple(?any, ?any, ?any), _Mode) -> + subst_all_vars_to_any(T); t_inf(?tuple(Elements1, Arity, _Tag1), ?tuple(Elements2, Arity, _Tag2), Mode) -> case t_inf_lists_strict(Elements1, Elements2, Mode) of bottom -> ?none; |