From 0118046f9bda8dcf3594184fa439b79267db8017 Mon Sep 17 00:00:00 2001 From: Erlang/OTP Date: Mon, 25 Mar 2019 18:25:04 +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 d45dfef8f3..0c34497823 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.2
Fixed Bugs and Malfunctions -- cgit v1.2.3