diff options
author | Björn-Egil Dahlberg <[email protected]> | 2014-03-25 15:35:54 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2014-03-25 15:35:54 +0100 |
commit | 66014ea66f2f93b2fd10cc8673602024a5581346 (patch) | |
tree | b730b2feefd22a70edb1d3d189955ce1b975de5b /lib/hipe/rtl/hipe_icode2rtl.erl | |
parent | e6e095de8cf834269fa5936221222363144eb47f (diff) | |
parent | 889bafdfa1a65e2681e9e719b7e907eb7f6024e0 (diff) | |
download | otp-66014ea66f2f93b2fd10cc8673602024a5581346.tar.gz otp-66014ea66f2f93b2fd10cc8673602024a5581346.tar.bz2 otp-66014ea66f2f93b2fd10cc8673602024a5581346.zip |
Merge branch 'ks/hipe-rtl-remove-constant/OTP-11822'
* ks/hipe-rtl-remove-constant/OTP-11822:
Remove RTL code that handled the (is_)constant guard
Diffstat (limited to 'lib/hipe/rtl/hipe_icode2rtl.erl')
-rw-r--r-- | lib/hipe/rtl/hipe_icode2rtl.erl | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/hipe/rtl/hipe_icode2rtl.erl b/lib/hipe/rtl/hipe_icode2rtl.erl index 034153a3cb..6ab40adcc8 100644 --- a/lib/hipe/rtl/hipe_icode2rtl.erl +++ b/lib/hipe/rtl/hipe_icode2rtl.erl @@ -427,8 +427,6 @@ gen_type_test([X], Type, TrueLbl, FalseLbl, Pred, ConstTab) -> hipe_rtl:mk_branch(X, eq, TmpF, TrueLbl, FalseLbl, Pred)], ConstTab}; cons -> {hipe_tagscheme:test_cons(X, TrueLbl, FalseLbl, Pred), ConstTab}; - constant -> - {hipe_tagscheme:test_constant(X, TrueLbl, FalseLbl, Pred), ConstTab}; fixnum -> {hipe_tagscheme:test_fixnum(X, TrueLbl, FalseLbl, Pred), ConstTab}; float -> |