<feed xmlns='http://www.w3.org/2005/Atom'>
<title>otp.git/lib/compiler/test, branch OTP-20.2.4</title>
<subtitle>Mirror of Erlang/OTP repository.
</subtitle>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/'/>
<entry>
<title>Merge branch 'lukas/compiler/add_to_dis/OTP-14784' into maint</title>
<updated>2017-11-20T09:32:25+00:00</updated>
<author>
<name>Lukas Larsson</name>
<email>lukas@erlang.org</email>
</author>
<published>2017-11-20T09:32:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=3b5fced77873fa6ee87a81a6162acf9d9f43c6de'/>
<id>3b5fced77873fa6ee87a81a6162acf9d9f43c6de</id>
<content type='text'>
* lukas/compiler/add_to_dis/OTP-14784:
  compiler: Add +to_dis option that dumps loaded asm
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lukas/compiler/add_to_dis/OTP-14784:
  compiler: Add +to_dis option that dumps loaded asm
</pre>
</div>
</content>
</entry>
<entry>
<title>compiler: Add +to_dis option that dumps loaded asm</title>
<updated>2017-11-20T09:31:17+00:00</updated>
<author>
<name>Lukas Larsson</name>
<email>lukas@erlang.org</email>
</author>
<published>2017-10-19T12:50:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=d8d07a7593d811a6adad060951bc425ee0d81446'/>
<id>d8d07a7593d811a6adad060951bc425ee0d81446</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Recognize 'deterministic' when given in a -compile() attribute</title>
<updated>2017-11-10T05:51:22+00:00</updated>
<author>
<name>Björn Gustavsson</name>
<email>bjorn@erlang.org</email>
</author>
<published>2017-11-10T05:26:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=9fc2d48a6de8b95b0d36c4439bff8e59710f4360'/>
<id>9fc2d48a6de8b95b0d36c4439bff8e59710f4360</id>
<content type='text'>
The compiler option 'deterministic' was only recognized when given
as an option to the compiler, not when it was specified in a
-compile() attribute in the source file.

https://bugs.erlang.org/browse/ERL-498
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The compiler option 'deterministic' was only recognized when given
as an option to the compiler, not when it was specified in a
-compile() attribute in the source file.

https://bugs.erlang.org/browse/ERL-498
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix incorrect internal consistency failure for binary matching code</title>
<updated>2017-09-29T05:46:49+00:00</updated>
<author>
<name>Björn Gustavsson</name>
<email>bjorn@erlang.org</email>
</author>
<published>2017-09-29T05:17:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=7715f437ab9a789e0500873b6002a49bfe69009c'/>
<id>7715f437ab9a789e0500873b6002a49bfe69009c</id>
<content type='text'>
4c31fd0b9665 made the merging of match contexts stricter;
in fact, a little bit too strict.

Two match contexts with different number of slots would
be downgraded to the 'term' type. The correct way is to
keep the match context but set the number of slots to the
lowest number of slots of the two match contexts.

https://bugs.erlang.org/browse/ERL-490
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
4c31fd0b9665 made the merging of match contexts stricter;
in fact, a little bit too strict.

Two match contexts with different number of slots would
be downgraded to the 'term' type. The correct way is to
keep the match context but set the number of slots to the
lowest number of slots of the two match contexts.

https://bugs.erlang.org/browse/ERL-490
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'maint-20' into maint</title>
<updated>2017-08-24T07:37:16+00:00</updated>
<author>
<name>Raimo Niskanen</name>
<email>raimo@erlang.org</email>
</author>
<published>2017-08-24T07:37:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=710f9437498a8a9df62a6c7cecd6eb632561754b'/>
<id>710f9437498a8a9df62a6c7cecd6eb632561754b</id>
<content type='text'>
* maint-20:
  Updated OTP version
  Prepare release
  Accept non-binary options as socket-options
  Bump version
  Fix broken handling of default values in extensions for PER
  compiler: Fix live regs update on allocate in validator
  Take fail labels into account when determining liveness in block ops
  Check for overflow when appending binaries, and error out with system_limit
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* maint-20:
  Updated OTP version
  Prepare release
  Accept non-binary options as socket-options
  Bump version
  Fix broken handling of default values in extensions for PER
  compiler: Fix live regs update on allocate in validator
  Take fail labels into account when determining liveness in block ops
  Check for overflow when appending binaries, and error out with system_limit
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'john/compiler/fail-labels-in-blocks-otp-19/ERIERL-48/OTP-14522' into maint-20</title>
<updated>2017-08-23T08:39:20+00:00</updated>
<author>
<name>Erlang/OTP</name>
<email>otp@erlang.org</email>
</author>
<published>2017-08-23T08:39:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=345a79ac188caa24229195991ed134e1e4df8179'/>
<id>345a79ac188caa24229195991ed134e1e4df8179</id>
<content type='text'>
* john/compiler/fail-labels-in-blocks-otp-19/ERIERL-48/OTP-14522:
  compiler: Fix live regs update on allocate in validator
  Take fail labels into account when determining liveness in block ops
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* john/compiler/fail-labels-in-blocks-otp-19/ERIERL-48/OTP-14522:
  compiler: Fix live regs update on allocate in validator
  Take fail labels into account when determining liveness in block ops
</pre>
</div>
</content>
</entry>
<entry>
<title>Take fail labels into account when determining liveness in block ops</title>
<updated>2017-08-16T10:52:02+00:00</updated>
<author>
<name>John Högberg</name>
<email>john@erlang.org</email>
</author>
<published>2017-08-07T11:21:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=b6d68726e39b13721fe7cce77b0a2ef90bdc53c9'/>
<id>b6d68726e39b13721fe7cce77b0a2ef90bdc53c9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>sys_core_fold: Fix unsafe optimization of non-variable apply</title>
<updated>2017-08-07T05:20:29+00:00</updated>
<author>
<name>Björn Gustavsson</name>
<email>bjorn@erlang.org</email>
</author>
<published>2017-08-07T05:00:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=f59e70ce61913356a67d58e03d6b68c29e983363'/>
<id>f59e70ce61913356a67d58e03d6b68c29e983363</id>
<content type='text'>
The sys_core_fold pass would do an unsafe "optimization" when an
apply operation did not have a variable in the function position
as in the following example:

&gt; cat test1.core
module 'test1' ['test1'/2]
    attributes []
'i'/1 =
  fun (_f) -&gt; _f
'test1'/2 =
  fun (_f, _x) -&gt;
    apply apply 'i'/1 (_f) (_x)
end
&gt; erlc test1.core
no_file: Warning: invalid function call

Reported-by: Mikael Pettersson
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The sys_core_fold pass would do an unsafe "optimization" when an
apply operation did not have a variable in the function position
as in the following example:

&gt; cat test1.core
module 'test1' ['test1'/2]
    attributes []
'i'/1 =
  fun (_f) -&gt; _f
'test1'/2 =
  fun (_f, _x) -&gt;
    apply apply 'i'/1 (_f) (_x)
end
&gt; erlc test1.core
no_file: Warning: invalid function call

Reported-by: Mikael Pettersson
</pre>
</div>
</content>
</entry>
<entry>
<title>Update copyright year</title>
<updated>2017-06-14T13:36:21+00:00</updated>
<author>
<name>Hans Nilsson</name>
<email>hans@erlang.org</email>
</author>
<published>2017-06-14T13:36:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=43718d3b81d7f3d08e25047e22d579801bbe5044'/>
<id>43718d3b81d7f3d08e25047e22d579801bbe5044</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>beam_type_SUITE: Add a test case for an already fixed bug</title>
<updated>2017-06-12T08:50:12+00:00</updated>
<author>
<name>Björn Gustavsson</name>
<email>bjorn@erlang.org</email>
</author>
<published>2017-06-12T08:47:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=808c828c30cbb0fb57847675cc579d989c687710'/>
<id>808c828c30cbb0fb57847675cc579d989c687710</id>
<content type='text'>
https://bugs.erlang.org/browse/ERL-433
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://bugs.erlang.org/browse/ERL-433
</pre>
</div>
</content>
</entry>
</feed>
