diff options
author | Björn Gustavsson <[email protected]> | 2016-04-06 07:13:26 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2016-04-07 15:28:29 +0200 |
commit | 921c838b8142d3c8d1739c6b30c6d88e39e5f147 (patch) | |
tree | 0f0186a02e24ecb1d9004cec433011945d323c63 /erts/emulator/beam/beam_emu.c | |
parent | 4f33597d52a0cef2e47b07578bc8a35a17c2f969 (diff) | |
download | otp-921c838b8142d3c8d1739c6b30c6d88e39e5f147.tar.gz otp-921c838b8142d3c8d1739c6b30c6d88e39e5f147.tar.bz2 otp-921c838b8142d3c8d1739c6b30c6d88e39e5f147.zip |
Eliminate unnecessary renaming of bs_put_utf16/3
There is no reason to rename bs_put_utf16/3.
(We rename instructions if we'll need to change the operands or
if we will need to avoid an endless transformation loop. Neither
of these reasons apply to bs_put_utf16/3.)
Diffstat (limited to 'erts/emulator/beam/beam_emu.c')
-rw-r--r-- | erts/emulator/beam/beam_emu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/beam_emu.c b/erts/emulator/beam/beam_emu.c index a390422040..09a41f2b56 100644 --- a/erts/emulator/beam/beam_emu.c +++ b/erts/emulator/beam/beam_emu.c @@ -4102,7 +4102,7 @@ do { \ StoreBifResult(1, result); } - OpCase(i_bs_put_utf16_jIs): { + OpCase(bs_put_utf16_jIs): { Eterm arg; GetArg1(2, arg); |