diff options
author | Björn Gustavsson <[email protected]> | 2015-03-16 12:18:39 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2015-03-16 12:18:39 +0100 |
commit | 2617c55b3a4ef635812df7cb62f6710b235ad9ef (patch) | |
tree | d2767561f112ab70da883c28b1ef3398fe07fbd1 /lib/compiler/src/cerl.erl | |
parent | f1da7597dec858ee26dc68a6da66eb62742f82bb (diff) | |
parent | b4061dfd6ef6f84379fd8a0988eed79cb0bb1972 (diff) | |
download | otp-2617c55b3a4ef635812df7cb62f6710b235ad9ef.tar.gz otp-2617c55b3a4ef635812df7cb62f6710b235ad9ef.tar.bz2 otp-2617c55b3a4ef635812df7cb62f6710b235ad9ef.zip |
Merge branch 'bjorn/compiler/optimizations'
* bjorn/compiler/optimizations:
v3_life: Combine literal/2 and literal2/2
v3_codegen: Don't save options in the process dictionary
Don't inline core_parse
v3_core: Teach pat_alias/2 to eliminate duplicated variables
beam_dead: Improve optimization by eliminating fallthroughs
beam_dead: Optimize Var =:= Var
beam_peep: Optimize away redundant use of is_boolean tests
beam_bool: Correct initialized_regs/2
sys_core_fold: Generalize case optimization
sys_core_fold: Improve optimization of 'not'
sys_core_fold: Suppress compiler warnings when evaluating element/2
Clean up evaluation of setelement/3
Replace '==' with '=:=' when both operands are integers
Update type information based on BIFs that returns integers
sys_core_fold: Strengthen type optimization in lets
Diffstat (limited to 'lib/compiler/src/cerl.erl')
-rw-r--r-- | lib/compiler/src/cerl.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/compiler/src/cerl.erl b/lib/compiler/src/cerl.erl index 3d4b9ee0c6..8367a1e19e 100644 --- a/lib/compiler/src/cerl.erl +++ b/lib/compiler/src/cerl.erl @@ -138,7 +138,8 @@ ]). -export_type([c_binary/0, c_bitstr/0, c_call/0, c_clause/0, c_cons/0, c_fun/0, - c_literal/0, c_map/0, c_map_pair/0, c_module/0, c_tuple/0, + c_let/0, c_literal/0, c_map/0, c_map_pair/0, + c_module/0, c_tuple/0, c_values/0, c_var/0, cerl/0, var_name/0]). -include("core_parse.hrl"). |