diff options
author | Björn Gustavsson <[email protected]> | 2016-10-04 11:00:51 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2016-11-18 11:58:34 +0100 |
commit | 132d61e6f075f8e85da268e88953980c2f348987 (patch) | |
tree | 026011d995829dea51eade10164f9927fc8bb282 /lib/compiler/src/compile.erl | |
parent | 348b5e6bee2f83d10642558d511cc904f5015ab3 (diff) | |
download | otp-132d61e6f075f8e85da268e88953980c2f348987.tar.gz otp-132d61e6f075f8e85da268e88953980c2f348987.tar.bz2 otp-132d61e6f075f8e85da268e88953980c2f348987.zip |
Remove beam_bool
The guard optimizations in v3_kernel has removed the need for
beam_bool.
Diffstat (limited to 'lib/compiler/src/compile.erl')
-rw-r--r-- | lib/compiler/src/compile.erl | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/compiler/src/compile.erl b/lib/compiler/src/compile.erl index e4fb703939..37da045d25 100644 --- a/lib/compiler/src/compile.erl +++ b/lib/compiler/src/compile.erl @@ -707,8 +707,6 @@ asm_passes() -> {iff,dexcept,{listing,"except"}}, {unless,no_bs_opt,{pass,beam_bs}}, {iff,dbs,{listing,"bs"}}, - {unless,no_bopt,{pass,beam_bool}}, - {iff,dbool,{listing,"bool"}}, {unless,no_topt,{pass,beam_type}}, {iff,dtype,{listing,"type"}}, {pass,beam_split}, @@ -1780,7 +1778,6 @@ pre_load() -> L = [beam_a, beam_asm, beam_block, - beam_bool, beam_bs, beam_bsm, beam_clean, |