diff options
| author | Fredrik Gustafsson <[email protected]> | 2013-04-03 12:23:57 +0200 |
|---|---|---|
| committer | Fredrik Gustafsson <[email protected]> | 2013-04-03 12:23:57 +0200 |
| commit | 4aeae59a6359d29b165f7f62c9717bb2986dbe4d (patch) | |
| tree | da7da1b1d96d71c0c7c04e374f27e0fa4b8159bf /lib/compiler/src/compile.erl | |
| parent | f77675dfc1a3a9bfd65fdbe44ec412c5f0de5bb7 (diff) | |
| parent | fa4f5ba69957ce79e5f7781af26d183cdb0b77b0 (diff) | |
| download | otp-4aeae59a6359d29b165f7f62c9717bb2986dbe4d.tar.gz otp-4aeae59a6359d29b165f7f62c9717bb2986dbe4d.tar.bz2 otp-4aeae59a6359d29b165f7f62c9717bb2986dbe4d.zip | |
Merge branch 'nox/fix-bc-optim/OTP-11005' into maint
* nox/fix-bc-optim/OTP-11005:
Add a new option +clint0 to the compiler
Fix optimization of some binary comprehensions
Diffstat (limited to 'lib/compiler/src/compile.erl')
| -rw-r--r-- | lib/compiler/src/compile.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/compiler/src/compile.erl b/lib/compiler/src/compile.erl index 497af2b52c..745f1d5cf9 100644 --- a/lib/compiler/src/compile.erl +++ b/lib/compiler/src/compile.erl @@ -599,7 +599,8 @@ standard_passes() -> core_passes() -> %% Optimization and transforms of Core Erlang code. - [{delay, + [{iff,clint0,?pass(core_lint_module)}, + {delay, [{unless,no_copt, [{core_old_inliner,fun test_old_inliner/1,fun core_old_inliner/1}, {iff,doldinline,{listing,"oldinline"}}, |
