From df130102cdeca8d35fec95a0c926fd1cfec54eab Mon Sep 17 00:00:00 2001 From: Erlang/OTP Date: Tue, 26 Feb 2019 11:28:27 +0100 Subject: Prepare release --- lib/compiler/doc/src/notes.xml | 47 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) (limited to 'lib/compiler/doc/src/notes.xml') diff --git a/lib/compiler/doc/src/notes.xml b/lib/compiler/doc/src/notes.xml index 02e6203137..12429cf561 100644 --- a/lib/compiler/doc/src/notes.xml +++ b/lib/compiler/doc/src/notes.xml @@ -32,6 +32,53 @@

This document describes the changes made to the Compiler application.

+
Compiler 7.4 + +
Improvements and New Features + + +

+ The compiler has been rewritten to internally use an + intermediate representation based on Static Single + Assignment (SSA). The new intermediate representation + makes more optimizations possible.

+

+ Most noticeable is that the binary matching optimizations + are now applicable in many more circumstances than + before.

+

+ Another noticeable change is that type optimizations are + now applied across local function calls, and will remove + a lot more redundant type tests than before.

+

+ Own Id: OTP-14894 Aux Id: ERL-714

+
+ +

Funs are no longer created when they are only used + locally, greatly improving the performance of named funs + and "fun-wrapped" macros.

+

+ Own Id: OTP-15273 Aux Id: ERL-639

+
+ +

All compiler options that can be given in the source + file can now also be given in the option list or from the + command line for erlc.

+

Specifically, the option + {nowarn_deprecated_function,MFAs} was only + recognized when given in the file with the attribute + -compile(). The option + {nowarn_unused_function,FAs} was incorrectly + documented to only work in a file, but it also worked + when given in the option list.

+

+ Own Id: OTP-15456

+
+
+
+ +
+
Compiler 7.3.1
Fixed Bugs and Malfunctions -- cgit v1.2.3