diff options
author | Björn Gustavsson <[email protected]> | 2012-09-05 12:16:44 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2012-10-10 15:37:28 +0200 |
commit | 47d109fc4eda1288e8d21a31b603b3cfc300536a (patch) | |
tree | 12c4692c6a4c19147b417cd91925bd26af1a5bd0 /lib/compiler/src/beam_bsm.erl | |
parent | 531aa719de264c81876da2db1ca9882f8f5db663 (diff) | |
download | otp-47d109fc4eda1288e8d21a31b603b3cfc300536a.tar.gz otp-47d109fc4eda1288e8d21a31b603b3cfc300536a.tar.bz2 otp-47d109fc4eda1288e8d21a31b603b3cfc300536a.zip |
Represent the 'send' instruction as a call_ext/2 instruction
Somewhat reduce code bloat.
Diffstat (limited to 'lib/compiler/src/beam_bsm.erl')
-rw-r--r-- | lib/compiler/src/beam_bsm.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compiler/src/beam_bsm.erl b/lib/compiler/src/beam_bsm.erl index 2f4649dac7..ed0abd6fb9 100644 --- a/lib/compiler/src/beam_bsm.erl +++ b/lib/compiler/src/beam_bsm.erl @@ -222,10 +222,10 @@ btb_reaches_match_2([{call_fun,Live}=I|Is], Regs, D) -> btb_call(Live, I, Regs, Is, D); btb_reaches_match_2([{make_fun2,_,_,_,Live}|Is], Regs, D) -> btb_call(Live, make_fun2, Regs, Is, D); -btb_reaches_match_2([{call_ext,Arity,{extfunc,Mod,Name,Arity}=Func}|Is], Regs0, D) -> +btb_reaches_match_2([{call_ext,Arity,Func}=I|Is], Regs0, D) -> %% Allow us scanning beyond the call in case the match %% context is saved on the stack. - case erl_bifs:is_exit_bif(Mod, Name, Arity) of + case beam_jump:is_exit_instruction(I) of false -> btb_call(Arity, Func, Regs0, Is, D); true -> |