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/cerl/cerl_hipeify.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/cerl/cerl_hipeify.erl')
-rw-r--r-- | lib/hipe/cerl/cerl_hipeify.erl | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/hipe/cerl/cerl_hipeify.erl b/lib/hipe/cerl/cerl_hipeify.erl index 8f6c3561c9..89b4ec147d 100644 --- a/lib/hipe/cerl/cerl_hipeify.erl +++ b/lib/hipe/cerl/cerl_hipeify.erl @@ -392,7 +392,6 @@ call_to_primop(erlang, '=<', 2) -> {yes, ?PRIMOP_LE}; call_to_primop(erlang, '>=', 2) -> {yes, ?PRIMOP_GE}; call_to_primop(erlang, is_atom, 1) -> {yes, ?PRIMOP_IS_ATOM}; call_to_primop(erlang, is_binary, 1) -> {yes, ?PRIMOP_IS_BINARY}; -call_to_primop(erlang, is_constant, 1) -> {yes, ?PRIMOP_IS_CONSTANT}; call_to_primop(erlang, is_float, 1) -> {yes, ?PRIMOP_IS_FLOAT}; call_to_primop(erlang, is_function, 1) -> {yes, ?PRIMOP_IS_FUNCTION}; call_to_primop(erlang, is_integer, 1) -> {yes, ?PRIMOP_IS_INTEGER}; |