diff options
author | Björn Gustavsson <[email protected]> | 2012-01-04 11:28:31 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2012-01-26 10:53:07 +0100 |
commit | ad4a6862a45258b605ab7a799a5cc15c57f6f807 (patch) | |
tree | 4347fbd70d2f29c53522108ead8d365291d7e14a /lib/hipe/icode/hipe_icode_inline_bifs.erl | |
parent | 81812b34873a71ed7904456da864f426850cbe8a (diff) | |
download | otp-ad4a6862a45258b605ab7a799a5cc15c57f6f807.tar.gz otp-ad4a6862a45258b605ab7a799a5cc15c57f6f807.tar.bz2 otp-ad4a6862a45258b605ab7a799a5cc15c57f6f807.zip |
HiPE: Remove support for is_constant/1
Diffstat (limited to 'lib/hipe/icode/hipe_icode_inline_bifs.erl')
-rw-r--r-- | lib/hipe/icode/hipe_icode_inline_bifs.erl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/hipe/icode/hipe_icode_inline_bifs.erl b/lib/hipe/icode/hipe_icode_inline_bifs.erl index 27296dcad5..9a2fb7846a 100644 --- a/lib/hipe/icode/hipe_icode_inline_bifs.erl +++ b/lib/hipe/icode/hipe_icode_inline_bifs.erl @@ -29,7 +29,7 @@ %% Currently inlined BIFs: %% and, or, xor, not, <, >, >=, =<, ==, /=, =/=, =:= -%% is_atom, is_boolean, is_binary, is_constant, is_float, is_function, +%% is_atom, is_boolean, is_binary, is_float, is_function, %% is_integer, is_list, is_pid, is_port, is_reference, is_tuple -module(hipe_icode_inline_bifs). @@ -131,7 +131,6 @@ is_type_test(Name) -> is_boolean -> {true, boolean}; is_function -> {true, function}; is_reference -> {true, reference}; - is_constant -> {true, constant}; is_port -> {true, port}; _ -> false end. |