diff options
author | Björn Gustavsson <[email protected]> | 2015-03-20 15:07:24 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2015-04-13 12:37:54 +0200 |
commit | ee91c4291212035b8e054072407c74afdd66f1d0 (patch) | |
tree | 404c672d4f2ccaced3c088f3f54bfb6c7a8fe608 /erts/emulator/beam/beam_debug.c | |
parent | 8c5a577ed55a607841989763d78b3950eebd5b5f (diff) | |
download | otp-ee91c4291212035b8e054072407c74afdd66f1d0.tar.gz otp-ee91c4291212035b8e054072407c74afdd66f1d0.tar.bz2 otp-ee91c4291212035b8e054072407c74afdd66f1d0.zip |
Remove the fail label operand of the new_map instruction
The new_map instruction cannot fail, and thus needs no fail label.
Diffstat (limited to 'erts/emulator/beam/beam_debug.c')
-rw-r--r-- | erts/emulator/beam/beam_debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/beam_debug.c b/erts/emulator/beam/beam_debug.c index 6bb987985d..38e54e9d1a 100644 --- a/erts/emulator/beam/beam_debug.c +++ b/erts/emulator/beam/beam_debug.c @@ -661,7 +661,7 @@ print_op(int to, void *to_arg, int op, int size, BeamInstr* addr) case op_i_put_tuple_rI: case op_i_put_tuple_xI: case op_i_put_tuple_yI: - case op_new_map_jdII: + case op_new_map_dII: case op_update_map_assoc_jsdII: case op_update_map_exact_jsdII: case op_i_has_map_fields_fsI: |