diff options
| -rw-r--r-- | lib/compiler/src/beam_utils.erl | 2 | ||||
| -rw-r--r-- | lib/compiler/test/receive_SUITE.erl | 1 | 
2 files changed, 3 insertions, 0 deletions
diff --git a/lib/compiler/src/beam_utils.erl b/lib/compiler/src/beam_utils.erl index 27034aecce..8ca368c167 100644 --- a/lib/compiler/src/beam_utils.erl +++ b/lib/compiler/src/beam_utils.erl @@ -748,6 +748,8 @@ live_opt([{try_end,_}=I|Is], Regs, D, Acc) ->      live_opt(Is, Regs, D, [I|Acc]);  live_opt([{loop_rec_end,_}=I|Is], Regs, D, Acc) ->      live_opt(Is, Regs, D, [I|Acc]); +live_opt([{wait_timeout,_,nil}=I|Is], Regs, D, Acc) -> +    live_opt(Is, Regs, D, [I|Acc]);  live_opt([{wait_timeout,_,{Tag,_}}=I|Is], Regs, D, Acc) when Tag =/= x ->      live_opt(Is, Regs, D, [I|Acc]);  live_opt([{line,_}=I|Is], Regs, D, Acc) -> diff --git a/lib/compiler/test/receive_SUITE.erl b/lib/compiler/test/receive_SUITE.erl index ec49267ded..00a6e900d4 100644 --- a/lib/compiler/test/receive_SUITE.erl +++ b/lib/compiler/test/receive_SUITE.erl @@ -257,6 +257,7 @@ wait(Config) when is_list(Config) ->      self() ! <<42>>,      <<42>> = wait_1(r, 1, 2),      {1,2,3} = wait_1(1, 2, 3), +    {'EXIT',{timeout_value,_}} = (catch receive after [] -> timeout end),      ok.  wait_1(r, _, _) ->  | 
