Created
May 20, 2015 16:33
-
-
Save josevalim/d19deed5510ab7d35ec3 to your computer and use it in GitHub Desktop.
Revisions
-
José Valim created this gist
May 20, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ %% When compiled with: erlc +bin_opt_info foo.erl %% %% It prints: %% %% foo.erl:13: Warning: NOT OPTIMIZED: compiler limitation: instruction {get_map_elements, %% {f,3}, %% {x,1}, %% {list,[{atom,state},{x,6}]}} prevents delayed sub binary optimization -module(foo). -compile(export_all). bar(<<Type/integer, Size:32/integer, Data/binary>> = Tail, #{state := State}) -> {Type, Size, Data, Tail, State}; bar(Data, #{tail := Tail}) -> {Data, Tail}.