aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/beam/instrs.tab
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2017-09-01 12:30:58 +0200
committerBjörn Gustavsson <[email protected]>2017-09-04 12:57:39 +0200
commitcc39ad3445291c15a7f8460f892c115b4125be9e (patch)
treecf7fd747f5934a51cf3a23c295f7ab5bba07bee9 /erts/emulator/beam/instrs.tab
parent9b832080feadc764f7981739174df06084a2eeaa (diff)
downloadotp-cc39ad3445291c15a7f8460f892c115b4125be9e.tar.gz
otp-cc39ad3445291c15a7f8460f892c115b4125be9e.tar.bz2
otp-cc39ad3445291c15a7f8460f892c115b4125be9e.zip
Eliminate unecessary instruction macro i_move_call_only()
Diffstat (limited to 'erts/emulator/beam/instrs.tab')
-rw-r--r--erts/emulator/beam/instrs.tab6
1 files changed, 1 insertions, 5 deletions
diff --git a/erts/emulator/beam/instrs.tab b/erts/emulator/beam/instrs.tab
index 9c3e615cea..e9d1f6a305 100644
--- a/erts/emulator/beam/instrs.tab
+++ b/erts/emulator/beam/instrs.tab
@@ -110,15 +110,11 @@ i_call_only(CallDest) {
$DISPATCH($CallDest);
}
-i_move_call_only(CallDest, Src) {
+move_call_only(Src, CallDest) {
x(0) = $Src;
$i_call_only($CallDest);
}
-move_call_only(Src, CallDest) {
- $i_move_call_only($CallDest, $Src);
-}
-
DISPATCHX(Dest) {
//| -no_next
DTRACE_GLOBAL_CALL_FROM_EXPORT(c_p, $Dest);