summaryrefslogtreecommitdiff
path: root/lib/compiler/src/Makefile
diff options
context:
space:
mode:
authorBjörn Gustavsson <bjorn@erlang.org>2018-10-31 19:45:22 +0100
committerBjörn Gustavsson <bjorn@erlang.org>2018-11-28 11:36:33 +0100
commit555b633acadc39b4b38d920fd678d7a2cc7407e6 (patch)
tree9e94a6d7232f6c3e233d66a085dbac46ca5ebf4b /lib/compiler/src/Makefile
parent5d698dd744cde1b9bad612726f491cc8ff6b129e (diff)
downloaderlang-555b633acadc39b4b38d920fd678d7a2cc7407e6.tar.gz
Share the code for semantically equivalent blocks
Share code for semantically equivalent blocks referred to to by `br` and `switch` instructions. A similar optimization is done in `beam_jump`, but doing it here as well is beneficial as it may enable other optimizations. Also, if there are many semantically equivalent clauses, this optimization can substanstially decrease compilation times.
Diffstat (limited to 'lib/compiler/src/Makefile')
-rw-r--r--lib/compiler/src/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/compiler/src/Makefile b/lib/compiler/src/Makefile
index d475e5a19a..961dacc6c9 100644
--- a/lib/compiler/src/Makefile
+++ b/lib/compiler/src/Makefile
@@ -69,6 +69,7 @@ MODULES = \
beam_ssa_pp \
beam_ssa_pre_codegen \
beam_ssa_recv \
+ beam_ssa_share \
beam_ssa_type \
beam_kernel_to_ssa \
beam_trim \