aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compiler/src/beam_disasm.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2010-04-28 11:02:51 +0200
committerRaimo Niskanen <[email protected]>2010-05-20 12:20:50 +0200
commited80dcf76968bcb039d3d5ea273421916a007454 (patch)
tree48434e407af5be06507fd570e494e65033dfe80c /lib/compiler/src/beam_disasm.erl
parentea404afa892da6523e07168718722b8b47e048f6 (diff)
downloadotp-ed80dcf76968bcb039d3d5ea273421916a007454.tar.gz
otp-ed80dcf76968bcb039d3d5ea273421916a007454.tar.bz2
otp-ed80dcf76968bcb039d3d5ea273421916a007454.zip
Remove stray support for the bs_bits_to_bytes2/2 instruction
bs_bits_to_bytes2/2 was an experimental instruction added in R11, but was removed in R12. Although the beam_disasm and beam_validator modules do support instructions in older releases, there is no reason to have them support experimental instructions.
Diffstat (limited to 'lib/compiler/src/beam_disasm.erl')
-rw-r--r--lib/compiler/src/beam_disasm.erl3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/compiler/src/beam_disasm.erl b/lib/compiler/src/beam_disasm.erl
index 920ce07396..a55e107a00 100644
--- a/lib/compiler/src/beam_disasm.erl
+++ b/lib/compiler/src/beam_disasm.erl
@@ -1015,9 +1015,6 @@ resolve_inst({gc_bif3,Args},Imports,_,_) ->
%%
%% New instructions for creating non-byte aligned binaries.
%%
-resolve_inst({bs_bits_to_bytes2,[_Arg2,_Arg3]=Args},_,_,_) ->
- [A2,A3] = resolve_args(Args),
- {bs_bits_to_bytes2,A2,A3};
resolve_inst({bs_final2,[X,Y]},_,_,_) ->
{bs_final2,X,Y};