aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compiler/src
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2019-05-23 10:41:55 +0200
committerBjörn Gustavsson <[email protected]>2019-05-23 10:41:55 +0200
commitdb4c234f442f43a0160dee71d9ca02c08c353ae9 (patch)
tree1bf3bd419c1428449ac2972f805a70856831bf6d /lib/compiler/src
parent5f1699c81d82e67b561c2759b0220b71a6a8ba80 (diff)
parent7173fb8984d1822cc9c081f094841fb755f800fc (diff)
downloadotp-db4c234f442f43a0160dee71d9ca02c08c353ae9.tar.gz
otp-db4c234f442f43a0160dee71d9ca02c08c353ae9.tar.bz2
otp-db4c234f442f43a0160dee71d9ca02c08c353ae9.zip
Merge branch 'bjorn/compiler/fix-receive-patch/ERL-950/OTP-15832' into maint
* bjorn/compiler/fix-receive-patch/ERL-950/OTP-15832: Eliminate compiler crash when compiling complex receive statements
Diffstat (limited to 'lib/compiler/src')
-rw-r--r--lib/compiler/src/beam_ssa_pre_codegen.erl11
1 files changed, 7 insertions, 4 deletions
diff --git a/lib/compiler/src/beam_ssa_pre_codegen.erl b/lib/compiler/src/beam_ssa_pre_codegen.erl
index bf99e8fc26..9af72afca7 100644
--- a/lib/compiler/src/beam_ssa_pre_codegen.erl
+++ b/lib/compiler/src/beam_ssa_pre_codegen.erl
@@ -1415,12 +1415,15 @@ fix_receive([], _Defs, Blocks, Count) ->
find_loop_exit([L1,L2|_Ls], Blocks) ->
Path1 = beam_ssa:rpo([L1], Blocks),
Path2 = beam_ssa:rpo([L2], Blocks),
- find_loop_exit_1(reverse(Path1), reverse(Path2), none);
+ find_loop_exit_1(Path1, cerl_sets:from_list(Path2));
find_loop_exit(_, _) -> none.
-find_loop_exit_1([H|T1], [H|T2], _) ->
- find_loop_exit_1(T1, T2, H);
-find_loop_exit_1(_, _, Exit) -> Exit.
+find_loop_exit_1([H|T], OtherPath) ->
+ case cerl_sets:is_element(H, OtherPath) of
+ true -> H;
+ false -> find_loop_exit_1(T, OtherPath)
+ end;
+find_loop_exit_1([], _) -> none.
%% find_rm_blocks(StartLabel, Blocks) -> [Label].
%% Find all blocks that start with remove_message within the receive