aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compiler/src/sys_core_fold.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2018-08-08 13:24:58 +0200
committerBjörn Gustavsson <[email protected]>2018-08-08 13:24:58 +0200
commitdf93c4203eed0f6dd424c91f53c3eee698eb88c5 (patch)
tree4fe02046cb48fdb32569da5aa2e4021806fd979a /lib/compiler/src/sys_core_fold.erl
parent83bf5bea4b872be40253a8f25c9aec3b79d6d66f (diff)
parent783172ca6d0453e115e038edbb46f892c0d35241 (diff)
downloadotp-df93c4203eed0f6dd424c91f53c3eee698eb88c5.tar.gz
otp-df93c4203eed0f6dd424c91f53c3eee698eb88c5.tar.bz2
otp-df93c4203eed0f6dd424c91f53c3eee698eb88c5.zip
Merge branch 'maint'
* maint: Eliminate double computation of next var beam_validator: Fix false diagnostic for a receive nested in a try
Diffstat (limited to 'lib/compiler/src/sys_core_fold.erl')
-rw-r--r--lib/compiler/src/sys_core_fold.erl7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/compiler/src/sys_core_fold.erl b/lib/compiler/src/sys_core_fold.erl
index 0aa58a46e4..5fdd089b6e 100644
--- a/lib/compiler/src/sys_core_fold.erl
+++ b/lib/compiler/src/sys_core_fold.erl
@@ -115,13 +115,6 @@ module(#c_module{defs=Ds0}=Mod, Opts) ->
{ok,Mod#c_module{defs=Ds1},get_warnings()}.
function_1({#c_var{name={F,Arity}}=Name,B0}) ->
- %% Find a suitable starting value for the variable counter. Note
- %% that this pass assumes that new_var_name/1 returns a variable
- %% name distinct from any variable used in the entire body of
- %% the function. We use integers as variable names to avoid
- %% filling up the atom table when compiling huge functions.
- Count = cerl_trees:next_free_variable_name(B0),
- put(new_var_num, Count),
try
%% Find a suitable starting value for the variable
%% counter. Note that this pass assumes that new_var_name/1