Skip to content

Commit 5a2a5ae

Browse files
authored
Rewrite maps, tuples, lists as BDDs and improve performance (#14693)
1 parent 0685a35 commit 5a2a5ae

File tree

7 files changed

+1120
-657
lines changed

7 files changed

+1120
-657
lines changed

lib/elixir/lib/module/parallel_checker.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ defmodule Module.ParallelChecker do
423423
mode =
424424
with {^module, binary, _filename} <- object_code,
425425
{:ok, {^module, [{~c"ExCk", chunk}]}} <- :beam_lib.chunks(binary, [~c"ExCk"]),
426-
{:elixir_checker_v2, contents} <- :erlang.binary_to_term(chunk) do
426+
{:elixir_checker_v3, contents} <- :erlang.binary_to_term(chunk) do
427427
# The chunk has more information, so that's our preference
428428
cache_chunk(table, module, contents)
429429
else

0 commit comments

Comments
 (0)