diff options
author | John Högberg <[email protected]> | 2019-01-10 17:06:31 +0100 |
---|---|---|
committer | John Högberg <[email protected]> | 2019-01-24 08:25:28 +0100 |
commit | 1c73a313e72909d054f55e321c1929d2be55ff11 (patch) | |
tree | 7e3a45c2ee9b62ba2a889d4984576b9cee5de438 /lib/compiler/src/Makefile | |
parent | b7db13e2f3ef6990367fb2cc08263da8a57e7414 (diff) | |
download | otp-1c73a313e72909d054f55e321c1929d2be55ff11.tar.gz otp-1c73a313e72909d054f55e321c1929d2be55ff11.tar.bz2 otp-1c73a313e72909d054f55e321c1929d2be55ff11.zip |
beam_ssa_opt: Add a scaffold for module-level optimizations
This serves as a base for the upcoming module-level type
optimization, but may come in handy for other passes like
beam_ssa_funs and beam_ssa_bsm that have their own ad-hoc
implementations.
Diffstat (limited to 'lib/compiler/src/Makefile')
-rw-r--r-- | lib/compiler/src/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/compiler/src/Makefile b/lib/compiler/src/Makefile index 074d9b881b..97c73d0e07 100644 --- a/lib/compiler/src/Makefile +++ b/lib/compiler/src/Makefile @@ -103,6 +103,7 @@ BEAM_H = $(wildcard ../priv/beam_h/*.h) HRL_FILES= \ beam_disasm.hrl \ + beam_ssa_opt.hrl \ beam_ssa.hrl \ core_parse.hrl \ v3_kernel.hrl |