aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/beam/beam_load.c
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2017-09-09 12:30:35 +0200
committerBjörn Gustavsson <[email protected]>2017-09-14 10:16:15 +0200
commite8ee9f4cba07c7aa05685207c54ae1d773bf1814 (patch)
treee3d63c6080c85195339603853ae278a8d2cd5b84 /erts/emulator/beam/beam_load.c
parent6f45ff73583aa7d0352b8a16df78872f47defd35 (diff)
downloadotp-e8ee9f4cba07c7aa05685207c54ae1d773bf1814.tar.gz
otp-e8ee9f4cba07c7aa05685207c54ae1d773bf1814.tar.bz2
otp-e8ee9f4cba07c7aa05685207c54ae1d773bf1814.zip
Pack failure labels in i_select_val2 and i_select_tuple_arity2
Diffstat (limited to 'erts/emulator/beam/beam_load.c')
-rw-r--r--erts/emulator/beam/beam_load.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/emulator/beam/beam_load.c b/erts/emulator/beam/beam_load.c
index 944ff7bc4c..3f9dc2c1aa 100644
--- a/erts/emulator/beam/beam_load.c
+++ b/erts/emulator/beam/beam_load.c
@@ -3749,7 +3749,7 @@ gen_select_tuple_arity(LoaderState* stp, GenOpArg S, GenOpArg Fail,
if (size == 2) {
NEW_GENOP(stp, op);
op->next = NULL;
- op->op = genop_i_select_tuple_arity2_6;
+ op->op = genop_i_select_tuple_arity2_4;
GENOP_ARITY(op, arity - 1);
op->a[0] = S;
op->a[1] = Fail;
@@ -4045,7 +4045,7 @@ gen_select_val(LoaderState* stp, GenOpArg S, GenOpArg Fail,
NEW_GENOP(stp, op);
op->next = NULL;
- op->op = genop_i_select_val2_6;
+ op->op = genop_i_select_val2_4;
GENOP_ARITY(op, arity - 1);
op->a[0] = S;
op->a[1] = Fail;