From 6738d356a279835222b951fd213ed4cf9897eb7e Mon Sep 17 00:00:00 2001
From: Erlang/OTP
Date: Mon, 21 Sep 2015 17:09:23 +0200
Subject: Prepare release
---
lib/compiler/doc/src/notes.xml | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
(limited to 'lib/compiler/doc/src')
diff --git a/lib/compiler/doc/src/notes.xml b/lib/compiler/doc/src/notes.xml
index 6db8d19b5a..bd85f22462 100644
--- a/lib/compiler/doc/src/notes.xml
+++ b/lib/compiler/doc/src/notes.xml
@@ -32,6 +32,26 @@
This document describes the changes made to the Compiler
application.
+Compiler 6.0.1
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Fix get_map_elements register corruption
+
+ Instruction get_map_elements might destroy target
+ registers when the fail-label is taken. Only seen for
+ patterns with two, and only two, target registers.
+ Specifically if we copy one register and then jump.
+
+ Own Id: OTP-12967
+
+
+
+
+
+
Compiler 6.0
Fixed Bugs and Malfunctions
--
cgit v1.2.3
From 6f50633829adc53d20a2c2aee454aef8caece907 Mon Sep 17 00:00:00 2001
From: Hans Bolinder
Date: Tue, 13 Oct 2015 14:01:18 +0200
Subject: [compiler] Correct documentation
Fix mistakes found by 'xmllint'.
---
lib/compiler/doc/src/notes.xml | 26 ++++++++++++++++----------
1 file changed, 16 insertions(+), 10 deletions(-)
(limited to 'lib/compiler/doc/src')
diff --git a/lib/compiler/doc/src/notes.xml b/lib/compiler/doc/src/notes.xml
index bd85f22462..daf3bd3af9 100644
--- a/lib/compiler/doc/src/notes.xml
+++ b/lib/compiler/doc/src/notes.xml
@@ -458,22 +458,28 @@
EEP43: New data type - Maps
- With Maps you may for instance: - M0 =
- #{ a => 1, b => 2}, % create
- associations
- M1 = M0#{ a := 10 }, %
- update values
- M2 = M1#{ "hi" =>
- "hello"}, % add new associations
- #{
- "hi" := V1, a := V2, b := V3} = M2. % match keys with
- values
+ With Maps you may for instance:
+
+ - M0 = #{ a => 1, b => 2}, % create
+ associations
+ - M1 = M0#{ a := 10 }, % update values
+ - M2 = M1#{ "hi" =>
+ "hello"}, % add new associations
+ - #{ "hi" := V1, a := V2, b := V3} = M2.
+ % match keys with values
+
For information on how to use Maps please see Map Expressions in the
Reference Manual.
The current implementation is without the following
- features: - No variable keys
- - No single value access
- No map
- comprehensions
+ features:
+
+ - No variable keys
+ - No single value access
+ - No map comprehensions
+
Note that Maps is experimental during OTP 17.0.
--
cgit v1.2.3
From f4a0ae1736216feac5ae053610644bba2e12ed34 Mon Sep 17 00:00:00 2001
From: Erlang/OTP
Date: Tue, 15 Dec 2015 09:45:27 +0100
Subject: Update release notes
---
lib/compiler/doc/src/notes.xml | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
(limited to 'lib/compiler/doc/src')
diff --git a/lib/compiler/doc/src/notes.xml b/lib/compiler/doc/src/notes.xml
index daf3bd3af9..3c06e4f98e 100644
--- a/lib/compiler/doc/src/notes.xml
+++ b/lib/compiler/doc/src/notes.xml
@@ -32,6 +32,29 @@
This document describes the changes made to the Compiler
application.
+Compiler 6.0.2
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Fix cerl_trees:label/2 bug with map K/V swap
+
+ Own Id: OTP-13091
+
+ -
+
+ Warnings produced when the 'bin_opt_info' option
+ was given could sometimes lack filenames and line
+ numbers. (Thanks to José Valim for reporting this bug.)
+
+ Own Id: OTP-13113
+
+
+
+
+
+
Compiler 6.0.1
Fixed Bugs and Malfunctions
--
cgit v1.2.3