diff options
author | Kostis Sagonas <[email protected]> | 2012-08-24 14:09:00 +0200 |
---|---|---|
committer | Kostis Sagonas <[email protected]> | 2012-08-24 14:09:00 +0200 |
commit | 18173b4637d4ea2f7f060ba8a68d4dbf81809c31 (patch) | |
tree | 83ae6c90757f3b37b857608ff208562b401fc11c /lib/hipe | |
parent | 1379d90ffdc9271deb7edcccc5b3ac4d51dbde09 (diff) | |
download | otp-18173b4637d4ea2f7f060ba8a68d4dbf81809c31.tar.gz otp-18173b4637d4ea2f7f060ba8a68d4dbf81809c31.tar.bz2 otp-18173b4637d4ea2f7f060ba8a68d4dbf81809c31.zip |
Remove unused imports
Diffstat (limited to 'lib/hipe')
-rw-r--r-- | lib/hipe/icode/hipe_icode_type.erl | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/hipe/icode/hipe_icode_type.erl b/lib/hipe/icode/hipe_icode_type.erl index f98d859822..046949d2f2 100644 --- a/lib/hipe/icode/hipe_icode_type.erl +++ b/lib/hipe/icode/hipe_icode_type.erl @@ -79,13 +79,13 @@ -import(erl_types, [number_min/1, number_max/1, t_any/0, t_atom/1, t_atom/0, t_atom_vals/1, t_binary/0, t_bitstr/0, t_bitstr_base/1, t_bitstr_unit/1, - t_boolean/0, t_cons/0, t_constant/0, + t_boolean/0, t_cons/0, t_float/0, t_from_term/1, t_from_range/2, t_fun/0, t_fun/1, t_fun/2, t_fun_args/1, t_fun_arity/1, t_inf/2, t_inf_lists/2, t_integer/0, t_integer/1, t_is_atom/1, t_is_any/1, t_is_binary/1, t_is_bitstr/1, t_is_bitwidth/1, t_is_boolean/1, - t_is_fixnum/1, t_is_cons/1, t_is_constant/1, + t_is_fixnum/1, t_is_cons/1, t_is_maybe_improper_list/1, t_is_equal/2, t_is_float/1, t_is_fun/1, t_is_integer/1, t_is_non_neg_integer/1, t_is_number/1, t_is_matchstate/1, @@ -587,7 +587,6 @@ do_type(I, Info, Var) -> TrueLab = hipe_icode:type_true_label(I), FalseLab = hipe_icode:type_false_label(I), None = t_none(), - case lookup(Var, Info) of None -> [{TrueLab, Info}, {FalseLab, Info}]; @@ -1699,7 +1698,6 @@ lookup_list0([H|T], Info, Acc) -> lookup_list0([], _, Acc) -> lists:reverse(Acc). - %% safe_lookup treats anything that is neither in the map nor a %% constant as t_any(). Use this during transformations. |